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

Side by Side Diff: chrome/browser/resources/chromeos/network_menu.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: removing screen_account_picker.css 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 input:invalid { 6 input:invalid {
2 background-color: #ff6666; 7 background-color: rgb(255, 102, 102);
3 } 8 }
4 9
5 .left-icon { 10 .left-icon {
6 background-position: 4px top !important; 11 background-position: 4px top !important;
7 } 12 }
8 13
9 .network-menu-item { 14 .network-menu-item {
10 width: 100%; 15 width: 100%;
11 } 16 }
12 17
13 .network-label-icon { 18 .network-label-icon {
14 -webkit-box-align: center; 19 -webkit-box-align: center;
15 display: -webkit-box; 20 display: -webkit-box;
16 min-height: 24px; 21 min-height: 24px;
17 } 22 }
18 23
19 .network-label { 24 .network-label {
20 -webkit-box-flex: 1; 25 -webkit-box-flex: 1;
21 } 26 }
22 27
23 .network-icon { 28 .network-icon {
24 width: 24px;
25 height: 24px;
26
27 background-position: 50% 50%; 29 background-position: 50% 50%;
28 background-repeat: no-repeat; 30 background-repeat: no-repeat;
31 height: 24px;
32 width: 24px;
29 } 33 }
30 34
31 .network-status { 35 .network-status {
32 color: grey; 36 color: grey;
33 } 37 }
34 38
35 .spinner { 39 .spinner {
40 -webkit-animation-duration: 2s;
41 -webkit-animation-iteration-count: infinite;
42 -webkit-animation-name: spin;
43 -webkit-animation-timing-function: linear;
36 background-image: -webkit-canvas(spinner-circle); 44 background-image: -webkit-canvas(spinner-circle);
37
38 -webkit-animation-name: spin;
39 -webkit-animation-duration:2s;
40 -webkit-animation-iteration-count:infinite;
41 -webkit-animation-timing-function:linear;
42 } 45 }
43 46
44 @-webkit-keyframes spin { 47 @-webkit-keyframes spin {
45 from { 48 from {
46 -webkit-transform: rotate(0deg); 49 -webkit-transform: rotate(0);
47 } 50 }
48 to { 51 to {
49 -webkit-transform: rotate(360deg); 52 -webkit-transform: rotate(360deg);
50 } 53 }
51 } 54 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/chromeos/mobile_dialogs.css ('k') | chrome/browser/resources/chromeos/sim_unlock.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698