| 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 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 cr-network-select { |
| 24 align-items: center; | 24 padding: 5px; |
| 25 display: flex; | 25 width: 500px; |
| 26 flex-direction: row; | |
| 27 padding: 4px; | |
| 28 } | |
| 29 | |
| 30 #default-network-text { | |
| 31 -webkit-padding-start: 8px; | |
| 32 font-size: 14px; | |
| 33 font-weight: bold; | |
| 34 } | 26 } |
| 35 | 27 |
| 36 #refresh { | 28 #refresh { |
| 37 margin: 4px; | 29 margin-top: 10px; |
| 30 padding: 5px; |
| 38 } | 31 } |
| 39 | 32 |
| 40 .state-table { | 33 .state-table { |
| 41 border-collapse: collapse; | 34 border-collapse: collapse; |
| 42 } | 35 } |
| 43 | 36 |
| 44 .state-table tr td { | 37 .state-table tr td { |
| 45 border: 1px solid rgb(220, 220, 220); | 38 border: 1px solid rgb(220, 220, 220); |
| 46 font-size: 13px; | 39 font-size: 13px; |
| 47 } | 40 } |
| (...skipping 21 matching lines...) Expand all Loading... |
| 69 } | 62 } |
| 70 | 63 |
| 71 .state-table cr-network-icon { | 64 .state-table cr-network-icon { |
| 72 height: 25px; | 65 height: 25px; |
| 73 width: 25px; | 66 width: 25px; |
| 74 } | 67 } |
| 75 | 68 |
| 76 #advanced-options { | 69 #advanced-options { |
| 77 margin-top: 10px; | 70 margin-top: 10px; |
| 78 } | 71 } |
| OLD | NEW |