| 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 362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 373 -webkit-mask-image: -webkit-image-set(url(Images/largeIcons.png) 1x, url(Ima
ges/largeIcons_2x.png) 2x); | 373 -webkit-mask-image: -webkit-image-set(url(Images/largeIcons.png) 1x, url(Ima
ges/largeIcons_2x.png) 2x); |
| 374 -webkit-mask-position: var(--spritesheet-position); | 374 -webkit-mask-position: var(--spritesheet-position); |
| 375 background: white !important; | 375 background: white !important; |
| 376 } | 376 } |
| 377 | 377 |
| 378 .force-white-icons [is=ui-icon].spritesheet-mediumicons, [is=ui-icon].force-whit
e-icons.spritesheet-mediumicons { | 378 .force-white-icons [is=ui-icon].spritesheet-mediumicons, [is=ui-icon].force-whit
e-icons.spritesheet-mediumicons { |
| 379 -webkit-mask-image: -webkit-image-set(url(Images/mediumIcons.png) 1x, url(Im
ages/mediumIcons_2x.png) 2x); | 379 -webkit-mask-image: -webkit-image-set(url(Images/mediumIcons.png) 1x, url(Im
ages/mediumIcons_2x.png) 2x); |
| 380 -webkit-mask-position: var(--spritesheet-position); | 380 -webkit-mask-position: var(--spritesheet-position); |
| 381 background: white !important; | 381 background: white !important; |
| 382 } | 382 } |
| 383 | |
| 384 button.material-button { | |
| 385 display: inline-block; | |
| 386 text-shadow: none; | |
| 387 padding: 6px 10px; | |
| 388 background-color: #ffffff !important; | |
| 389 color: gray; | |
| 390 background-image: unset !important; | |
| 391 box-shadow: none !important; | |
| 392 cursor: pointer; | |
| 393 } | |
| 394 | |
| 395 button.material-button.default { | |
| 396 color: white; | |
| 397 background-color: #4285f4 !important; | |
| 398 } | |
| 399 | |
| 400 button.material-button.default:disabled { | |
| 401 background-color: #ffffff !important; | |
| 402 color: gray; | |
| 403 } | |
| 404 | |
| 405 button.material-button.default:not(:disabled):hover { | |
| 406 background-color: hsla(217, 89%, 58%, 1) !important; | |
| 407 color: white !important; | |
| 408 } | |
| 409 | |
| 410 button.material-button:not(:disabled):hover { | |
| 411 background-color: #eee !important; | |
| 412 color: gray !important; | |
| 413 } | |
| OLD | NEW |