File tree Expand file tree Collapse file tree 3 files changed +24
-1
lines changed Expand file tree Collapse file tree 3 files changed +24
-1
lines changed Original file line number Diff line number Diff line change 10
10
*/
11
11
.ui-progressbar { height : 2em ; text-align : left; overflow : hidden; }
12
12
.ui-progressbar .ui-progressbar-value { margin : -1px ; height : 100% ; }
13
- .ui-progressbar .ui-progressbar-indeterminate { background : url ("images/pbar-ani.gif" ); }
13
+ @-webkit-keyframes bg-anim {
14
+ from { background-position : 0 0 }
15
+ to { background-position : 40px 0 }
16
+ }
17
+ @-moz-keyframes bg-anim {
18
+ from { background-position : 0 0 }
19
+ to { background-position : 40px 0 }
20
+ }
21
+ @-ms-keyframes bg-anim {
22
+ from { background-position : 0 0 }
23
+ to { background-position : 40px 0 }
24
+ }
25
+ @keyframes bg-anim {
26
+ from { background-position : 0 0 }
27
+ to { background-position : 40px 0 }
28
+ }
29
+
30
+ .ui-progressbar .ui-progressbar-indeterminate {
31
+ background : url ("images/ui-bg_diagonals-thick_20_666666_40x40.png" );
32
+ -webkit-animation : bg-anim 1s linear infinite;
33
+ -moz-animation : bg-anim 1s linear infinite;
34
+ -ms-animation : bg-anim 1s linear infinite;
35
+ animation : bg-anim 1s linear infinite;
36
+ }
You can’t perform that action at this time.
0 commit comments