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

Side by Side Diff: chrome/browser/resources/chromeos/choose_mobile_network.css

Issue 8680003: Clean-up: Change chrome/browser's CSS time units from s to ms. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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
1 .scanning-msg { 1 .scanning-msg {
2 margin-left: 50px; 2 margin-left: 50px;
3 } 3 }
4 4
5 .spinner { 5 .spinner {
6 width: 32px; 6 width: 32px;
7 height: 32px; 7 height: 32px;
8 float: left; 8 float: left;
9 9
10 background-position: 50% 50%; 10 background-position: 50% 50%;
11 background-repeat: no-repeat; 11 background-repeat: no-repeat;
12 12
13 background-image: -webkit-canvas(spinner-circle); 13 background-image: -webkit-canvas(spinner-circle);
14 14
15 -webkit-animation-name: spin; 15 -webkit-animation-name: spin;
16 -webkit-animation-duration: 2s; 16 -webkit-animation-duration: 2000ms;
17 -webkit-animation-iteration-count: infinite; 17 -webkit-animation-iteration-count: infinite;
18 -webkit-animation-timing-function: linear; 18 -webkit-animation-timing-function: linear;
19 } 19 }
20 20
21 .content-area { 21 .content-area {
22 height: 120px; 22 height: 120px;
23 overflow: auto; 23 overflow: auto;
24 } 24 }
25 25
26 .disabled { 26 .disabled {
27 opacity: 0.7; 27 opacity: 0.7;
28 } 28 }
29 29
30 @-webkit-keyframes spin { 30 @-webkit-keyframes spin {
31 from { 31 from {
32 -webkit-transform: rotate(0deg); 32 -webkit-transform: rotate(0deg);
33 } 33 }
34 to { 34 to {
35 -webkit-transform: rotate(360deg); 35 -webkit-transform: rotate(360deg);
36 } 36 }
37 } 37 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698