diff options
Diffstat (limited to 'chrome/browser/resources/shared/css/throbber.css')
-rw-r--r-- | chrome/browser/resources/shared/css/throbber.css | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/chrome/browser/resources/shared/css/throbber.css b/chrome/browser/resources/shared/css/throbber.css new file mode 100644 index 0000000..5c84e774 --- /dev/null +++ b/chrome/browser/resources/shared/css/throbber.css @@ -0,0 +1,17 @@ +.throbber { + -webkit-animation: throbber-animation 1s steps(36, end) 0 infinite; + background-image: url("../../../../../app/resources/throbber.png"); + background-position: 0; + display: inline-block; + height: 16px; + width: 16px; +} + +@-webkit-keyframes throbber-animation { + from { + background-position-x: 0; + } + to { + background-position-x: -576px; + } +} |