| 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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 select { | 150 select { |
| 151 font-family: inherit; | 151 font-family: inherit; |
| 152 font-size: inherit; | 152 font-size: inherit; |
| 153 color: inherit; | 153 color: inherit; |
| 154 } | 154 } |
| 155 | 155 |
| 156 input { | 156 input { |
| 157 background-color: white; | 157 background-color: white; |
| 158 } | 158 } |
| 159 | 159 |
| 160 :host-context(.-theme-with-dark-background) input[type="checkbox"] { | 160 :host-context(.-theme-with-dark-background) input[type="checkbox"]::not(.-theme-
preserve) { |
| 161 -webkit-filter: invert(80%); | 161 -webkit-filter: invert(80%); |
| 162 } | 162 } |
| 163 | 163 |
| 164 input[type="search"]:focus, | 164 input[type="search"]:focus, |
| 165 input[type="text"]:focus { | 165 input[type="text"]:focus { |
| 166 outline: auto rgb(56, 121, 217); | 166 outline: auto rgb(56, 121, 217); |
| 167 } | 167 } |
| 168 | 168 |
| 169 | |
| 170 .highlighted-search-result.current-search-result { | 169 .highlighted-search-result.current-search-result { |
| 171 border-radius: 1px; | 170 border-radius: 1px; |
| 172 padding: 1px; | 171 padding: 1px; |
| 173 margin: -1px; | 172 margin: -1px; |
| 174 background-color: rgba(255, 127, 0, 0.8); | 173 background-color: rgba(255, 127, 0, 0.8); |
| 175 } | 174 } |
| 176 | 175 |
| 177 .dimmed { | 176 .dimmed { |
| 178 opacity: 0.6; | 177 opacity: 0.6; |
| 179 } | 178 } |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 270 :not(.platform-mac).-theme-with-dark-background ::-webkit-scrollbar-thumb, | 269 :not(.platform-mac).-theme-with-dark-background ::-webkit-scrollbar-thumb, |
| 271 :host-context(:not(.platform-mac).-theme-with-dark-background) .-theme-with-dark
-background ::-webkit-scrollbar-thumb { | 270 :host-context(:not(.platform-mac).-theme-with-dark-background) .-theme-with-dark
-background ::-webkit-scrollbar-thumb { |
| 272 border-radius: 2px; | 271 border-radius: 2px; |
| 273 background-color: #333; | 272 background-color: #333; |
| 274 -webkit-box-shadow: inset 0 0 1px rgba(255,255,255,0.5); | 273 -webkit-box-shadow: inset 0 0 1px rgba(255,255,255,0.5); |
| 275 } | 274 } |
| 276 | 275 |
| 277 label[is=dt-icon-label] { | 276 label[is=dt-icon-label] { |
| 278 flex: none; | 277 flex: none; |
| 279 } | 278 } |
| OLD | NEW |