Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(99)

Side by Side Diff: chrome/browser/resources/shared/css/throbber.css

Issue 6378006: Add Throbber control for DOMUI. Use it everywhere in options and in Sync setup UI. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use -webkit-animation instead of a timer Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/options/options.html ('k') | chrome/browser/resources/shared_resources.grd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698