OLD | NEW |
---|---|
(Empty) | |
1 .throbber { | |
2 background-image: url("../../../../../app/resources/throbber.png"); | |
3 background-position: 0; | |
4 display: inline-block; | |
5 height: 16px; | |
6 width: 16px; | |
7 -webkit-animation: throbber-animation 1s steps(36, end) 0 infinite; | |
James Hawkins
2011/01/20 21:21:08
nit: -webkit-animation should be moved to the top.
Sergey Ulanov
2011/01/21 03:01:49
Done.
| |
8 } | |
9 | |
10 @-webkit-keyframes throbber-animation { | |
11 from { | |
12 background-position-x: 0; | |
13 } | |
14 to { | |
15 background-position-x: -576px; | |
16 } | |
17 } | |
OLD | NEW |