| 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 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 380 } | 380 } |
| 381 | 381 |
| 382 .force-white-icons [is=ui-icon].spritesheet-resourceicons, [is=ui-icon].force-wh
ite-icons.spritesheet-resourceicons { | 382 .force-white-icons [is=ui-icon].spritesheet-resourceicons, [is=ui-icon].force-wh
ite-icons.spritesheet-resourceicons { |
| 383 -webkit-mask-image: -webkit-image-set(url(Images/resourceGlyphs.png) 1x, url
(Images/resourceGlyphs_2x.png) 2x); | 383 -webkit-mask-image: -webkit-image-set(url(Images/resourceGlyphs.png) 1x, url
(Images/resourceGlyphs_2x.png) 2x); |
| 384 -webkit-mask-size: 140px 20px; | 384 -webkit-mask-size: 140px 20px; |
| 385 background-image: unset; | 385 background-image: unset; |
| 386 background-size: unset; | 386 background-size: unset; |
| 387 background: unset; | 387 background: unset; |
| 388 background-color: white; | 388 background-color: white; |
| 389 } | 389 } |
| 390 | |
| 391 .glass-pane { | |
| 392 position: absolute; | |
| 393 top: 0; | |
| 394 bottom: 0; | |
| 395 left: 0; | |
| 396 right: 0; | |
| 397 overflow: hidden; | |
| 398 contain: strict; | |
| 399 } | |
| 400 | |
| 401 .glass-pane-content { | |
| 402 display: flex; | |
| 403 } | |
| OLD | NEW |