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

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

Issue 874283006: Add custom Polymer network icon element (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: JS Formatting feedback. Created 5 years, 10 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
OLDNEW
1 /* 1 /*
2 * Copyright 2013 The Chromium Authors. All rights reserved. 2 * Copyright 2013 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be 3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 4 * found in the LICENSE file.
5 */ 5 */
6 6
7 paper-button[raised].colored {
8 background: rgb(66, 133, 244);
9 color: rgb(255, 255, 255);
Dan Beam 2015/02/21 01:07:56 rgb(255, 255, 255) -> white
stevenjb 2015/02/23 21:31:57 Done.
10 }
11
7 #header { 12 #header {
8 margin: 5px; 13 margin: 5px;
9 } 14 }
10 15
11 #header a { 16 #header a {
12 padding: 0 4px; 17 padding: 0 4px;
13 } 18 }
14 19
20 #header cr-network-icon {
21 height: 40px;
22 width: 40px;
23 }
24
25 #default-network {
26 align-items: center;
27 display: flex;
28 flex-direction: row;
29 padding: 4px;
30 }
31
32 #default-network-text {
33 -webkit-padding-start: 8px;
34 font-size: 14px;
35 font-weight: bold;
36 }
37
38 #refresh {
39 margin: 4px;
40 }
41
15 .state-table { 42 .state-table {
16 border-collapse: collapse; 43 border-collapse: collapse;
17 } 44 }
18 45
19 .state-table tr td { 46 .state-table tr td {
20 border: 1px solid rgb(220, 220, 220); 47 border: 1px solid rgb(220, 220, 220);
21 font-size: 13px; 48 font-size: 13px;
22 } 49 }
23 50
24 .state-table-header { 51 .state-table-header {
(...skipping 11 matching lines...) Expand all
36 margin: 0; 63 margin: 0;
37 outline: none; 64 outline: none;
38 padding: 0; 65 padding: 0;
39 width: 20px; 66 width: 20px;
40 } 67 }
41 68
42 .state-table-expanded-cell { 69 .state-table-expanded-cell {
43 white-space: pre-wrap; 70 white-space: pre-wrap;
44 } 71 }
45 72
73 .state-table cr-network-icon {
74 height: 25px;
75 width: 25px;
76 }
77
46 #advanced-options { 78 #advanced-options {
47 margin-top: 10px; 79 margin-top: 10px;
48 } 80 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698