| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2015 The Chromium Authors. All rights reserved. | 2 * Copyright 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 * { | 7 * { |
| 8 /* This is required for correct sizing of flex items because we rely | 8 /* This is required for correct sizing of flex items because we rely |
| 9 * on an old version of the flexbox spec. | 9 * on an old version of the flexbox spec. |
| 10 * Longer-term we should remove this, see crbug.com/473625 */ | 10 * Longer-term we should remove this, see crbug.com/473625 */ |
| (...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 } | 195 } |
| 196 | 196 |
| 197 .editing, | 197 .editing, |
| 198 .editing * { | 198 .editing * { |
| 199 color: #222 !important; | 199 color: #222 !important; |
| 200 text-decoration: none !important; | 200 text-decoration: none !important; |
| 201 } | 201 } |
| 202 | 202 |
| 203 .error-input { | 203 .error-input { |
| 204 outline: auto 2px red !important; | 204 outline: auto 2px red !important; |
| 205 outline-offset: -2px !important; |
| 205 } | 206 } |
| 206 | 207 |
| 207 .chrome-select { | 208 .chrome-select { |
| 208 -webkit-appearance: none; | 209 -webkit-appearance: none; |
| 209 -webkit-user-select: none; | 210 -webkit-user-select: none; |
| 210 border: 1px solid rgb(160, 160, 160); | 211 border: 1px solid rgb(160, 160, 160); |
| 211 border-radius: 2px; | 212 border-radius: 2px; |
| 212 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08), | 213 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08), |
| 213 inset 0 1px 2px rgba(255, 255, 255, 0.75); | 214 inset 0 1px 2px rgba(255, 255, 255, 0.75); |
| 214 color: #444; | 215 color: #444; |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 269 :not(.platform-mac).-theme-with-dark-background ::-webkit-scrollbar-thumb, | 270 :not(.platform-mac).-theme-with-dark-background ::-webkit-scrollbar-thumb, |
| 270 :host-context(:not(.platform-mac).-theme-with-dark-background) .-theme-with-dark
-background ::-webkit-scrollbar-thumb { | 271 :host-context(:not(.platform-mac).-theme-with-dark-background) .-theme-with-dark
-background ::-webkit-scrollbar-thumb { |
| 271 border-radius: 2px; | 272 border-radius: 2px; |
| 272 background-color: #333; | 273 background-color: #333; |
| 273 -webkit-box-shadow: inset 0 0 1px rgba(255,255,255,0.5); | 274 -webkit-box-shadow: inset 0 0 1px rgba(255,255,255,0.5); |
| 274 } | 275 } |
| 275 | 276 |
| 276 label[is=dt-icon-label] { | 277 label[is=dt-icon-label] { |
| 277 flex: none; | 278 flex: none; |
| 278 } | 279 } |
| OLD | NEW |