| OLD | NEW |
| 1 /* | 1 /* 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 | 2 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. | 3 * found in the LICENSE file. */ |
| 5 */ | 4 |
| 5 paper-button[raised].colored { |
| 6 background: rgb(66, 133, 244); |
| 7 color: white; |
| 8 } |
| 6 | 9 |
| 7 #header { | 10 #header { |
| 8 margin: 5px; | 11 margin: 5px; |
| 9 } | 12 } |
| 10 | 13 |
| 11 #header a { | 14 #header a { |
| 12 padding: 0 4px; | 15 padding: 0 4px; |
| 13 } | 16 } |
| 14 | 17 |
| 18 #header cr-network-icon { |
| 19 height: 40px; |
| 20 width: 40px; |
| 21 } |
| 22 |
| 23 #default-network { |
| 24 align-items: center; |
| 25 display: flex; |
| 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 } |
| 35 |
| 36 #refresh { |
| 37 margin: 4px; |
| 38 } |
| 39 |
| 15 .state-table { | 40 .state-table { |
| 16 border-collapse: collapse; | 41 border-collapse: collapse; |
| 17 } | 42 } |
| 18 | 43 |
| 19 .state-table tr td { | 44 .state-table tr td { |
| 20 border: 1px solid rgb(220, 220, 220); | 45 border: 1px solid rgb(220, 220, 220); |
| 21 font-size: 13px; | 46 font-size: 13px; |
| 22 } | 47 } |
| 23 | 48 |
| 24 .state-table-header { | 49 .state-table-header { |
| (...skipping 11 matching lines...) Expand all Loading... |
| 36 margin: 0; | 61 margin: 0; |
| 37 outline: none; | 62 outline: none; |
| 38 padding: 0; | 63 padding: 0; |
| 39 width: 20px; | 64 width: 20px; |
| 40 } | 65 } |
| 41 | 66 |
| 42 .state-table-expanded-cell { | 67 .state-table-expanded-cell { |
| 43 white-space: pre-wrap; | 68 white-space: pre-wrap; |
| 44 } | 69 } |
| 45 | 70 |
| 71 .state-table cr-network-icon { |
| 72 height: 25px; |
| 73 width: 25px; |
| 74 } |
| 75 |
| 46 #advanced-options { | 76 #advanced-options { |
| 47 margin-top: 10px; | 77 margin-top: 10px; |
| 48 } | 78 } |
| OLD | NEW |