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

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

Issue 1277223002: Add cr-network-select element for selecting a Chrome OS network (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@issue_515987_network_configure
Patch Set: Created 5 years, 4 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 /* Copyright 2013 The Chromium Authors. All rights reserved. 1 /* Copyright 2013 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */ 3 * found in the LICENSE file. */
4 4
5 paper-button[raised].colored { 5 paper-button[raised].colored {
6 background: rgb(66, 133, 244); 6 background: rgb(66, 133, 244);
7 color: white; 7 color: white;
8 } 8 }
9 9
10 #header { 10 #header {
11 margin: 5px; 11 margin: 5px;
12 } 12 }
13 13
14 #header a { 14 #header a {
15 padding: 0 4px; 15 padding: 0 4px;
16 } 16 }
17 17
18 #header cr-network-icon { 18 #header cr-network-icon {
19 height: 40px; 19 height: 40px;
20 width: 40px; 20 width: 40px;
21 } 21 }
22 22
23 #default-network { 23 #default-network {
24 align-items: center; 24 align-items: center;
michaelpg 2015/08/10 07:35:03 this doesn't do anything now (I think)
stevenjb 2015/08/10 19:19:47 Removed the div.
25 display: flex; 25 display: flex;
26 flex-direction: row; 26 flex-direction: row;
27 padding: 4px; 27 padding: 5px;
28 }
29
30 #default-network-text {
31 -webkit-padding-start: 8px;
32 font-size: 14px;
33 font-weight: bold;
34 } 28 }
35 29
36 #refresh { 30 #refresh {
37 margin: 4px; 31 margin-top: 10px;
32 padding: 5px;
38 } 33 }
39 34
40 .state-table { 35 .state-table {
41 border-collapse: collapse; 36 border-collapse: collapse;
42 } 37 }
43 38
44 .state-table tr td { 39 .state-table tr td {
45 border: 1px solid rgb(220, 220, 220); 40 border: 1px solid rgb(220, 220, 220);
46 font-size: 13px; 41 font-size: 13px;
47 } 42 }
(...skipping 21 matching lines...) Expand all
69 } 64 }
70 65
71 .state-table cr-network-icon { 66 .state-table cr-network-icon {
72 height: 25px; 67 height: 25px;
73 width: 25px; 68 width: 25px;
74 } 69 }
75 70
76 #advanced-options { 71 #advanced-options {
77 margin-top: 10px; 72 margin-top: 10px;
78 } 73 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698