| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2015 The Chromium Authors. All rights reserved. | 2 * Copyright (c) 2015 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 .network-config { | 7 .network-config { |
| 8 padding: 12px; | 8 padding: 12px; |
| 9 display: block; | 9 display: block; |
| 10 } | 10 } |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 .network-config-ua label[is="dt-radio"].checked > * { | 60 .network-config-ua label[is="dt-radio"].checked > * { |
| 61 display: none | 61 display: none |
| 62 } | 62 } |
| 63 | 63 |
| 64 .network-config-ua input:not(.dt-radio-button) { | 64 .network-config-ua input:not(.dt-radio-button) { |
| 65 display: block; | 65 display: block; |
| 66 width: calc(100% - 20px); | 66 width: calc(100% - 20px); |
| 67 max-width: 250px; | 67 max-width: 250px; |
| 68 border: 1px solid #bfbfbf; | 68 border: 1px solid #bfbfbf; |
| 69 border-radius: 2px; | 69 border-radius: 2px; |
| 70 box-sizing: border-box; | |
| 71 color: #444; | |
| 72 font: inherit; | |
| 73 border-width: 1px; | |
| 74 min-height: 2em; | 70 min-height: 2em; |
| 75 padding: 3px; | 71 padding: 3px; |
| 76 } | 72 } |
| 77 | 73 |
| 78 .network-config-ua input[readonly] { | 74 .network-config-ua input[readonly] { |
| 79 background-color: rgb(235, 235, 228); | 75 background-color: rgb(235, 235, 228); |
| 80 } | 76 } |
| 81 | 77 |
| 82 .network-config-ua input[type=text], .network-config-ua .chrome-select { | 78 .network-config-ua input[type=text], .network-config-ua .chrome-select { |
| 83 margin-top: 8px; | 79 margin-top: 8px; |
| (...skipping 13 matching lines...) Expand all Loading... |
| 97 display: block; | 93 display: block; |
| 98 } | 94 } |
| 99 | 95 |
| 100 .network-config-ua-auto, .network-config-ua-custom { | 96 .network-config-ua-auto, .network-config-ua-custom { |
| 101 opacity: 0.5; | 97 opacity: 0.5; |
| 102 } | 98 } |
| 103 | 99 |
| 104 .network-config-ua-auto.checked, .network-config-ua-custom.checked { | 100 .network-config-ua-auto.checked, .network-config-ua-custom.checked { |
| 105 opacity: 1; | 101 opacity: 1; |
| 106 } | 102 } |
| OLD | NEW |