| 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 } | 76 } |
| 77 | 77 |
| 78 .network-config-ua input[readonly] { | 78 .network-config-ua input[readonly] { |
| 79 background-color: rgb(235, 235, 228); | 79 background-color: rgb(235, 235, 228); |
| 80 } | 80 } |
| 81 | 81 |
| 82 .network-config-ua input[type=text], .network-config-ua .chrome-select { | 82 .network-config-ua input[type=text], .network-config-ua .chrome-select { |
| 83 margin-top: 8px; | 83 margin-top: 8px; |
| 84 } | 84 } |
| 85 | 85 |
| 86 .network-config-ua input[type="text"]:invalid { |
| 87 outline: auto red; |
| 88 } |
| 89 |
| 86 .network-config-ua .chrome-select { | 90 .network-config-ua .chrome-select { |
| 87 width: calc(100% - 20px); | 91 width: calc(100% - 20px); |
| 88 max-width: 250px; | 92 max-width: 250px; |
| 89 } | 93 } |
| 90 | 94 |
| 91 .network-config-ua label[is="dt-radio"] { | 95 .network-config-ua label[is="dt-radio"] { |
| 92 display: block; | 96 display: block; |
| 93 } | 97 } |
| 94 | 98 |
| 95 .network-config-ua-auto, .network-config-ua-custom { | 99 .network-config-ua-auto, .network-config-ua-custom { |
| 96 opacity: 0.5; | 100 opacity: 0.5; |
| 97 } | 101 } |
| 98 | 102 |
| 99 .network-config-ua-auto.checked, .network-config-ua-custom.checked { | 103 .network-config-ua-auto.checked, .network-config-ua-custom.checked { |
| 100 opacity: 1; | 104 opacity: 1; |
| 101 } | 105 } |
| OLD | NEW |