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 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
265 inset 0 1px 2px rgba(255, 255, 255, 0.75); | 265 inset 0 1px 2px rgba(255, 255, 255, 0.75); |
266 color: #aaa; | 266 color: #aaa; |
267 } | 267 } |
268 | 268 |
269 .chrome-select optgroup, | 269 .chrome-select optgroup, |
270 .chrome-select option { | 270 .chrome-select option { |
271 background-color: #EEEEEE; | 271 background-color: #EEEEEE; |
272 color: #222; | 272 color: #222; |
273 } | 273 } |
274 | 274 |
| 275 .select-subtitle { |
| 276 color: gray; |
| 277 margin-bottom: 2px; |
| 278 } |
| 279 |
275 :not(.platform-mac).-theme-with-dark-background ::-webkit-scrollbar, | 280 :not(.platform-mac).-theme-with-dark-background ::-webkit-scrollbar, |
276 :host-context(:not(.platform-mac).-theme-with-dark-background) ::-webkit-scrollb
ar { | 281 :host-context(:not(.platform-mac).-theme-with-dark-background) ::-webkit-scrollb
ar { |
277 width: 14px; | 282 width: 14px; |
278 } | 283 } |
279 | 284 |
280 :not(.platform-mac).-theme-with-dark-background ::-webkit-scrollbar-track, | 285 :not(.platform-mac).-theme-with-dark-background ::-webkit-scrollbar-track, |
281 :host-context(:not(.platform-mac).-theme-with-dark-background) ::-webkit-scrollb
ar-track { | 286 :host-context(:not(.platform-mac).-theme-with-dark-background) ::-webkit-scrollb
ar-track { |
282 -webkit-box-shadow: inset 0 0 1px rgba(255,255,255,0.3); | 287 -webkit-box-shadow: inset 0 0 1px rgba(255,255,255,0.3); |
283 } | 288 } |
284 | 289 |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
375 -webkit-mask-image: -webkit-image-set(url(Images/largeIcons.png) 1x, url(Ima
ges/largeIcons_2x.png) 2x); | 380 -webkit-mask-image: -webkit-image-set(url(Images/largeIcons.png) 1x, url(Ima
ges/largeIcons_2x.png) 2x); |
376 -webkit-mask-position: var(--spritesheet-position); | 381 -webkit-mask-position: var(--spritesheet-position); |
377 background: white !important; | 382 background: white !important; |
378 } | 383 } |
379 | 384 |
380 .force-white-icons [is=ui-icon].spritesheet-mediumicons, [is=ui-icon].force-whit
e-icons.spritesheet-mediumicons { | 385 .force-white-icons [is=ui-icon].spritesheet-mediumicons, [is=ui-icon].force-whit
e-icons.spritesheet-mediumicons { |
381 -webkit-mask-image: -webkit-image-set(url(Images/mediumIcons.png) 1x, url(Im
ages/mediumIcons_2x.png) 2x); | 386 -webkit-mask-image: -webkit-image-set(url(Images/mediumIcons.png) 1x, url(Im
ages/mediumIcons_2x.png) 2x); |
382 -webkit-mask-position: var(--spritesheet-position); | 387 -webkit-mask-position: var(--spritesheet-position); |
383 background: white !important; | 388 background: white !important; |
384 } | 389 } |
OLD | NEW |