2 Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
3 This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
4 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
5 The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
6 Code distributed by Google as part of the polymer project is also
7 subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
11 display: inline-block
;
19 background-color: #c8c8c8;
25 -webkit-transform-origin: left center
;
26 transform-origin: left center
;
27 -webkit-transform: scaleX
(0);
32 background-color: #0f9d58;
36 background-color: #87ceac;
39 #activeProgress.indeterminate
{
40 -webkit-transform-origin: center center
;
41 transform-origin: center center
;
42 -webkit-animation: indeterminate-bar
1s linear infinite
;
43 animation: indeterminate-bar
1s linear infinite
;
46 @-webkit-keyframes indeterminate-bar
{
48 -webkit-transform: translate
(-50%) scaleX
(0);
51 -webkit-transform: translate
(0%) scaleX
(0.3);
54 -webkit-transform: translate
(50%) scaleX
(0);
58 @keyframes indeterminate-bar
{
60 transform: translate
(-50%) scaleX
(0);
63 transform: translate
(0%) scaleX
(0.3);
66 transform: translate
(50%) scaleX
(0);