OLD | NEW |
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 div { |
| 6 margin: 10px 0; |
| 7 } |
| 8 |
5 paper-button[raised].colored { | 9 paper-button[raised].colored { |
6 background: rgb(66, 133, 244); | 10 background: rgb(66, 133, 244); |
7 color: white; | 11 color: white; |
8 } | 12 } |
9 | 13 |
10 #header { | 14 #select-div { |
11 margin: 5px; | 15 height: 100px; |
12 } | |
13 | |
14 #header a { | |
15 padding: 0 4px; | |
16 } | |
17 | |
18 cr-network-select { | |
19 padding: 5px; | |
20 width: 500px; | 16 width: 500px; |
21 } | 17 } |
22 | 18 |
23 #refresh { | |
24 margin-top: 10px; | |
25 padding: 5px; | |
26 } | |
27 | |
28 .state-table { | 19 .state-table { |
29 border-collapse: collapse; | 20 border-collapse: collapse; |
30 } | 21 } |
31 | 22 |
32 .state-table tr td { | 23 .state-table tr td { |
33 border: 1px solid rgb(220, 220, 220); | 24 border: 1px solid rgb(220, 220, 220); |
34 font-size: 13px; | 25 font-size: 13px; |
35 } | 26 } |
36 | 27 |
37 .state-table-header { | 28 .state-table-header { |
(...skipping 15 matching lines...) Expand all Loading... |
53 } | 44 } |
54 | 45 |
55 .state-table-expanded-cell { | 46 .state-table-expanded-cell { |
56 white-space: pre-wrap; | 47 white-space: pre-wrap; |
57 } | 48 } |
58 | 49 |
59 .state-table-icon-cell { | 50 .state-table-icon-cell { |
60 height: 32px; | 51 height: 32px; |
61 width: 32px; | 52 width: 32px; |
62 } | 53 } |
63 | |
64 #advanced-options { | |
65 margin-top: 10px; | |
66 text-align: center; | |
67 } | |
OLD | NEW |