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

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

Issue 9864032: [WebUI] Fix all CSS nits in chrome/browser/resources/chromeos. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: copyright fix Created 8 years, 8 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
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file.
4 */
5
1 .scanning-msg { 6 .scanning-msg {
2 margin-left: 50px; 7 margin-left: 50px;
3 } 8 }
4 9
5 .spinner { 10 .spinner {
6 width: 32px; 11 -webkit-animation-duration: 2s;
7 height: 32px; 12 -webkit-animation-iteration-count: infinite;
8 float: left; 13 -webkit-animation-name: spin;
9 14 -webkit-animation-timing-function: linear;
15 background-image: -webkit-canvas(spinner-circle);
10 background-position: 50% 50%; 16 background-position: 50% 50%;
11 background-repeat: no-repeat; 17 background-repeat: no-repeat;
12 18 float: left;
13 background-image: -webkit-canvas(spinner-circle); 19 height: 32px;
14 20 width: 32px;
15 -webkit-animation-name: spin;
16 -webkit-animation-duration: 2s;
17 -webkit-animation-iteration-count: infinite;
18 -webkit-animation-timing-function: linear;
19 } 21 }
20 22
21 .content-area { 23 .content-area {
22 height: 120px; 24 height: 120px;
23 overflow: auto; 25 overflow: auto;
24 } 26 }
25 27
26 .disabled { 28 .disabled {
27 opacity: 0.7; 29 opacity: 0.7;
28 } 30 }
29 31
30 @-webkit-keyframes spin { 32 @-webkit-keyframes spin {
31 from { 33 from {
32 -webkit-transform: rotate(0deg); 34 -webkit-transform: rotate(0);
33 } 35 }
34 to { 36 to {
35 -webkit-transform: rotate(360deg); 37 -webkit-transform: rotate(360deg);
36 } 38 }
37 } 39 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698