| 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 .help-window-main { | 7 .help-window-main { |
| 8 color: rgb(48, 57, 66); | 8 color: rgb(48, 57, 66); |
| 9 background-color: white; | 9 background-color: white; |
| 10 padding: 11px 0 0 0; | 10 padding: 11px 0 0 0; |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 bottom: 0; | 153 bottom: 0; |
| 154 overflow: auto; | 154 overflow: auto; |
| 155 padding-top: 9px; | 155 padding-top: 9px; |
| 156 } | 156 } |
| 157 | 157 |
| 158 .settings-tab.help-content { | 158 .settings-tab.help-content { |
| 159 margin: 0; | 159 margin: 0; |
| 160 padding: 0; | 160 padding: 0; |
| 161 } | 161 } |
| 162 | 162 |
| 163 .settings-tab input:not([type]), | |
| 164 .settings-tab input[type="text"] { | |
| 165 border: 1px solid rgb(213, 213, 213); | |
| 166 border-radius: 2px; | |
| 167 padding: 3px; | |
| 168 } | |
| 169 | |
| 170 .settings-tab input.numeric { | 163 .settings-tab input.numeric { |
| 171 text-align: right; | 164 text-align: right; |
| 172 } | 165 } |
| 173 | 166 |
| 174 .settings-tab-container { | 167 .settings-tab-container { |
| 175 flex: auto; | 168 flex: auto; |
| 176 overflow: hidden; | 169 overflow: hidden; |
| 177 } | 170 } |
| 178 | 171 |
| 179 .settings-tab-container header { | 172 .settings-tab-container header { |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 display: none; | 219 display: none; |
| 227 } | 220 } |
| 228 | 221 |
| 229 .settings-experiment-hidden label { | 222 .settings-experiment-hidden label { |
| 230 background-color: #ddd; | 223 background-color: #ddd; |
| 231 } | 224 } |
| 232 | 225 |
| 233 .settings-developer-mode .settings-experiment-hidden { | 226 .settings-developer-mode .settings-experiment-hidden { |
| 234 display: block; | 227 display: block; |
| 235 } | 228 } |
| OLD | NEW |