| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2014 The Chromium Authors. All rights reserved. | 2 * Copyright (c) 2014 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 :host { | 7 :host { |
| 8 flex: none; | 8 flex: none; |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 | 117 |
| 118 button.toolbar-item { | 118 button.toolbar-item { |
| 119 width: 30px; | 119 width: 30px; |
| 120 } | 120 } |
| 121 | 121 |
| 122 :host-context(.material) button.toolbar-item { | 122 :host-context(.material) button.toolbar-item { |
| 123 width: 32px; | 123 width: 32px; |
| 124 } | 124 } |
| 125 | 125 |
| 126 :host-context(.material) button.toolbar-item:hover { | 126 :host-context(.material) button.toolbar-item:hover { |
| 127 background-color: rgba(105, 105, 105, 0.1); | 127 background-color: #eee; |
| 128 } | 128 } |
| 129 | 129 |
| 130 button.toolbar-item.toggled-on .glyph { | 130 button.toolbar-item.toggled-on .glyph { |
| 131 background-color: rgb(66, 129, 235) !important; | 131 background-color: rgb(66, 129, 235) !important; |
| 132 } | 132 } |
| 133 | 133 |
| 134 button.toolbar-item:hover .glyph { | 134 button.toolbar-item:hover .glyph { |
| 135 opacity: 1; | 135 opacity: 1; |
| 136 } | 136 } |
| 137 | 137 |
| (...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 442 } | 442 } |
| 443 | 443 |
| 444 .filter-toolbar-item > .glyph { | 444 .filter-toolbar-item > .glyph { |
| 445 -webkit-mask-position: -32px -48px; | 445 -webkit-mask-position: -32px -48px; |
| 446 } | 446 } |
| 447 | 447 |
| 448 .filter-toolbar-item.toggled-shown .glyph { | 448 .filter-toolbar-item.toggled-shown .glyph { |
| 449 background-color: rgb(66, 129, 235); | 449 background-color: rgb(66, 129, 235); |
| 450 } | 450 } |
| 451 | 451 |
| 452 .filter-toolbar-item.toggled-shown { |
| 453 background-color: rgba(105, 105, 105, 0.1); |
| 454 } |
| 455 |
| 452 .filter-toolbar-item.toggled-active .glyph { | 456 .filter-toolbar-item.toggled-active .glyph { |
| 453 background-color: rgb(216, 0, 0); | 457 background-color: rgb(216, 0, 0); |
| 454 } | 458 } |
| 455 | 459 |
| 456 .waterfall-toolbar-item .glyph { | 460 .waterfall-toolbar-item .glyph { |
| 457 -webkit-mask-position: -128px -48px; | 461 -webkit-mask-position: -128px -48px; |
| 458 } | 462 } |
| 459 | 463 |
| 460 .pan-toolbar-item .glyph { | 464 .pan-toolbar-item .glyph { |
| 461 -webkit-mask-position: -98px -120px; | 465 -webkit-mask-position: -98px -120px; |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 510 } | 514 } |
| 511 | 515 |
| 512 .playback-rate-button.toggled-on > .toolbar-button-text { | 516 .playback-rate-button.toggled-on > .toolbar-button-text { |
| 513 color: rgb(66, 129, 235); | 517 color: rgb(66, 129, 235); |
| 514 } | 518 } |
| 515 | 519 |
| 516 button.playback-rate-button { | 520 button.playback-rate-button { |
| 517 width: auto; | 521 width: auto; |
| 518 margin-right: 10px; | 522 margin-right: 10px; |
| 519 } | 523 } |
| OLD | NEW |