| 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 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 330 .spritesheet-smallicons { | 330 .spritesheet-smallicons { |
| 331 background-image: -webkit-image-set(url(Images/smallIcons.png) 1x, url(Image
s/smallIcons_2x.png) 2x); | 331 background-image: -webkit-image-set(url(Images/smallIcons.png) 1x, url(Image
s/smallIcons_2x.png) 2x); |
| 332 background-size: 190px 30px; | 332 background-size: 190px 30px; |
| 333 } | 333 } |
| 334 | 334 |
| 335 .spritesheet-smallicons.icon-mask { | 335 .spritesheet-smallicons.icon-mask { |
| 336 -webkit-mask-image: -webkit-image-set(url(Images/smallIcons.png) 1x, url(Ima
ges/smallIcons_2x.png) 2x); | 336 -webkit-mask-image: -webkit-image-set(url(Images/smallIcons.png) 1x, url(Ima
ges/smallIcons_2x.png) 2x); |
| 337 -webkit-mask-size: 190px 30px; | 337 -webkit-mask-size: 190px 30px; |
| 338 } | 338 } |
| 339 | 339 |
| 340 .spritesheet-largeicons { |
| 341 background-image: -webkit-image-set(url(Images/toolbarButtonGlyphs.png) 1x,
url(Images/toolbarButtonGlyphs_2x.png) 2x); |
| 342 background-size: 352px 168px; |
| 343 } |
| 344 |
| 340 .spritesheet-largeicons.icon-mask { | 345 .spritesheet-largeicons.icon-mask { |
| 341 -webkit-mask-image: -webkit-image-set(url(Images/toolbarButtonGlyphs.png) 1x
, url(Images/toolbarButtonGlyphs_2x.png) 2x); | 346 -webkit-mask-image: -webkit-image-set(url(Images/toolbarButtonGlyphs.png) 1x
, url(Images/toolbarButtonGlyphs_2x.png) 2x); |
| 342 -webkit-mask-size: 352px 168px; | 347 -webkit-mask-size: 352px 168px; |
| 343 } | 348 } |
| 344 | 349 |
| 345 .force-white-icons .spritesheet-smallicons, .force-white-icons.spritesheet-small
icons { | 350 .force-white-icons .spritesheet-smallicons, .force-white-icons.spritesheet-small
icons { |
| 346 -webkit-mask-image: -webkit-image-set(url(Images/smallIcons.png) 1x, url(Ima
ges/smallIcons_2x.png) 2x); | 351 -webkit-mask-image: -webkit-image-set(url(Images/smallIcons.png) 1x, url(Ima
ges/smallIcons_2x.png) 2x); |
| 347 -webkit-mask-size: 190px 30px; | 352 -webkit-mask-size: 190px 30px; |
| 348 background-image: unset; | 353 background-image: unset; |
| 349 background-size: unset; | 354 background-size: unset; |
| 350 background-color: white; | 355 background-color: white; |
| 351 } | 356 } |
| 352 | 357 |
| 353 .force-white-icons .spritesheet-largeicons, .force-white-icons.spritesheet-large
icons { | 358 .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); | 359 -webkit-mask-image: -webkit-image-set(url(Images/toolbarButtonGlyphs.png) 1x
, url(Images/toolbarButtonGlyphs_2x.png) 2x); |
| 355 -webkit-mask-size: 352px 168px; | 360 -webkit-mask-size: 352px 168px; |
| 356 background-image: unset; | 361 background-image: unset; |
| 357 background-size: unset; | 362 background-size: unset; |
| 358 background-color: white; | 363 background-color: white; |
| 359 } | 364 } |
| OLD | NEW |