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

Side by Side Diff: chrome/browser/resources/network_menu.css

Issue 8687012: Moved ChromeOS-specific resources from chrome/browser/resources to chrome/browser/resources/chrom... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years 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
« no previous file with comments | « chrome/browser/resources/mobile_setup.js ('k') | chrome/browser/resources/network_menu.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 input:invalid {
2 background-color: #ff6666;
3 }
4
5 .left-icon {
6 background-position: 4px top !important;
7 }
8
9 .network-menu-item {
10 width: 100%;
11 }
12
13 .network-label-icon {
14 -webkit-box-align: center;
15 display: -webkit-box;
16 min-height: 24px;
17 }
18
19 .network-label {
20 -webkit-box-flex: 1;
21 }
22
23 .network-icon {
24 width: 24px;
25 height: 24px;
26
27 background-position: 50% 50%;
28 background-repeat: no-repeat;
29 }
30
31 .network-status {
32 color: grey;
33 }
34
35 .spinner {
36 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 }
43
44 @-webkit-keyframes spin {
45 from {
46 -webkit-transform: rotate(0deg);
47 }
48 to {
49 -webkit-transform: rotate(360deg);
50 }
51 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/mobile_setup.js ('k') | chrome/browser/resources/network_menu.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698