Chromium Code Reviews| Index: chrome/browser/resources/shared/css/throbber.css |
| diff --git a/chrome/browser/resources/shared/css/throbber.css b/chrome/browser/resources/shared/css/throbber.css |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..b4c1d19158d02c3b26b1184f0843cd40762e099e |
| --- /dev/null |
| +++ b/chrome/browser/resources/shared/css/throbber.css |
| @@ -0,0 +1,17 @@ |
| +.throbber { |
| + background-image: url("../../../../../app/resources/throbber.png"); |
| + background-position: 0; |
| + display: inline-block; |
| + height: 16px; |
| + width: 16px; |
| + -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.
|
| +} |
| + |
| +@-webkit-keyframes throbber-animation { |
| + from { |
| + background-position-x: 0; |
| + } |
| + to { |
| + background-position-x: -576px; |
| + } |
| +} |