| 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 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 276 :host-context(:not(.platform-mac).-theme-with-dark-background) ::-webkit-scrollb
ar { | 276 :host-context(:not(.platform-mac).-theme-with-dark-background) ::-webkit-scrollb
ar { |
| 277 width: 14px; | 277 width: 14px; |
| 278 } | 278 } |
| 279 | 279 |
| 280 :not(.platform-mac).-theme-with-dark-background ::-webkit-scrollbar-track, | 280 :not(.platform-mac).-theme-with-dark-background ::-webkit-scrollbar-track, |
| 281 :host-context(:not(.platform-mac).-theme-with-dark-background) ::-webkit-scrollb
ar-track { | 281 :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); | 282 -webkit-box-shadow: inset 0 0 1px rgba(255,255,255,0.3); |
| 283 } | 283 } |
| 284 | 284 |
| 285 :not(.platform-mac).-theme-with-dark-background ::-webkit-scrollbar-thumb, | 285 :not(.platform-mac).-theme-with-dark-background ::-webkit-scrollbar-thumb, |
| 286 :host-context(:not(.platform-mac).-theme-with-dark-background) .-theme-with-dark
-background ::-webkit-scrollbar-thumb { | 286 :host-context(:not(.platform-mac).-theme-with-dark-background) ::-webkit-scrollb
ar-thumb { |
| 287 border-radius: 2px; | 287 border-radius: 2px; |
| 288 background-color: #333; | 288 background-color: #333; |
| 289 -webkit-box-shadow: inset 0 0 1px rgba(255,255,255,0.5); | 289 -webkit-box-shadow: inset 0 0 1px rgba(255,255,255,0.5); |
| 290 } | 290 } |
| 291 | 291 |
| 292 .gray-info-message { | 292 .gray-info-message { |
| 293 text-align: center; | 293 text-align: center; |
| 294 font-style: italic; | 294 font-style: italic; |
| 295 padding: 6px; | 295 padding: 6px; |
| 296 color: #888; | 296 color: #888; |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 350 background-color: white; | 350 background-color: white; |
| 351 } | 351 } |
| 352 | 352 |
| 353 .force-white-icons .spritesheet-largeicons, .force-white-icons.spritesheet-large
icons { | 353 .force-white-icons .spritesheet-largeicons, .force-white-icons.spritesheet-large
icons { |
| 354 -webkit-mask-image: -webkit-image-set(url(Images/toolbarButtonGlyphs.png) 1x
, url(Images/toolbarButtonGlyphs_2x.png) 2x); | 354 -webkit-mask-image: -webkit-image-set(url(Images/toolbarButtonGlyphs.png) 1x
, url(Images/toolbarButtonGlyphs_2x.png) 2x); |
| 355 -webkit-mask-size: 352px 168px; | 355 -webkit-mask-size: 352px 168px; |
| 356 background-image: unset; | 356 background-image: unset; |
| 357 background-size: unset; | 357 background-size: unset; |
| 358 background-color: white; | 358 background-color: white; |
| 359 } | 359 } |
| OLD | NEW |