| 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 364 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); | 375 -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); | 376 -webkit-mask-position: var(--spritesheet-position); |
| 377 background: white !important; | 377 background: white !important; |
| 378 } | 378 } |
| 379 | 379 |
| 380 .force-white-icons [is=ui-icon].spritesheet-mediumicons, [is=ui-icon].force-whit
e-icons.spritesheet-mediumicons { | 380 .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); | 381 -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); | 382 -webkit-mask-position: var(--spritesheet-position); |
| 383 background: white !important; | 383 background: white !important; |
| 384 } | 384 } |
| 385 |
| 386 button.material-button { |
| 387 display: inline-block; |
| 388 text-shadow: none; |
| 389 padding: 6px 10px; |
| 390 background-color: #ffffff !important; |
| 391 color: gray; |
| 392 background-image: unset !important; |
| 393 box-shadow: none !important; |
| 394 cursor: pointer; |
| 395 } |
| 396 |
| 397 button.material-button.default { |
| 398 color: white; |
| 399 background-color: #4285f4 !important; |
| 400 } |
| 401 |
| 402 button.material-button.default:not(:disabled):hover { |
| 403 background-color: hsla(217, 89%, 58%, 1) !important; |
| 404 color: white !important; |
| 405 } |
| 406 |
| 407 button.material-button:not(:disabled):hover { |
| 408 background-color: #eee !important; |
| 409 color: gray !important; |
| 410 } |
| OLD | NEW |