| 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 padding: 0 2px; | 9 padding: 0 2px; |
| 10 } | 10 } |
| (...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 286 } | 286 } |
| 287 | 287 |
| 288 .visibility-off-toolbar-item.toolbar-glyph { | 288 .visibility-off-toolbar-item.toolbar-glyph { |
| 289 -webkit-mask-position: -192px 0; | 289 -webkit-mask-position: -192px 0; |
| 290 } | 290 } |
| 291 | 291 |
| 292 .large-list-toolbar-item.toolbar-glyph { | 292 .large-list-toolbar-item.toolbar-glyph { |
| 293 -webkit-mask-position: -224px 0; | 293 -webkit-mask-position: -224px 0; |
| 294 } | 294 } |
| 295 | 295 |
| 296 .edit-toolbar-item.toolbar-glyph { | |
| 297 -webkit-mask-position: -224px -72px; | |
| 298 } | |
| 299 | |
| 300 .record-toolbar-item.toolbar-glyph { | 296 .record-toolbar-item.toolbar-glyph { |
| 301 -webkit-mask-position: -288px 0; | 297 -webkit-mask-position: -288px 0; |
| 302 } | 298 } |
| 303 | 299 |
| 304 .toolbar-state-on .record-toolbar-item.toolbar-glyph { | 300 .toolbar-state-on .record-toolbar-item.toolbar-glyph { |
| 305 -webkit-mask-position: -288px -24px; | 301 -webkit-mask-position: -288px -24px; |
| 306 } | 302 } |
| 307 | 303 |
| 308 .camera-toolbar-item.toolbar-glyph { | 304 .camera-toolbar-item.toolbar-glyph { |
| 309 -webkit-mask-position: -96px -24px; | 305 -webkit-mask-position: -96px -24px; |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 469 } | 465 } |
| 470 | 466 |
| 471 .enter-fullscreen-toolbar-item.toolbar-glyph { | 467 .enter-fullscreen-toolbar-item.toolbar-glyph { |
| 472 -webkit-mask-position: -256px -96px; | 468 -webkit-mask-position: -256px -96px; |
| 473 } | 469 } |
| 474 | 470 |
| 475 .responsive-toolbar-item.toolbar-glyph { | 471 .responsive-toolbar-item.toolbar-glyph { |
| 476 -webkit-mask-position: -288px -96px; | 472 -webkit-mask-position: -288px -96px; |
| 477 } | 473 } |
| 478 | 474 |
| 475 .frame-toolbar-item.toolbar-glyph { |
| 476 -webkit-mask-position: -256px -144px; |
| 477 } |
| 478 |
| 479 .domain-toolbar-item.toolbar-glyph { |
| 480 -webkit-mask-position: -160px -144px; |
| 481 } |
| 482 |
| 483 .folder-toolbar-item.toolbar-glyph { |
| 484 -webkit-mask-position: -224px -144px; |
| 485 } |
| 486 |
| 479 .toolbar-state-on .record-toolbar-item.toolbar-glyph, | 487 .toolbar-state-on .record-toolbar-item.toolbar-glyph, |
| 480 .toolbar-state-active .filter-toolbar-item.toolbar-glyph, | 488 .toolbar-state-active .filter-toolbar-item.toolbar-glyph, |
| 481 .toolbar-state-active .block-toolbar-item.toolbar-glyph { | 489 .toolbar-state-active .block-toolbar-item.toolbar-glyph { |
| 482 background-color: rgb(216, 0, 0) !important; | 490 background-color: rgb(216, 0, 0) !important; |
| 483 } | 491 } |
| 484 | 492 |
| 485 :host-context(.-theme-with-dark-background) .toolbar-state-active .filter-toolba
r-item.toolbar-glyph, | 493 :host-context(.-theme-with-dark-background) .toolbar-state-active .filter-toolba
r-item.toolbar-glyph, |
| 486 :host-context(.-theme-with-dark-background) .toolbar-state-active .block-toolbar
-item.toolbar-glyph, | 494 :host-context(.-theme-with-dark-background) .toolbar-state-active .block-toolbar
-item.toolbar-glyph, |
| 487 :host-context(.-theme-with-dark-background) .toolbar-state-on .record-toolbar-it
em.toolbar-glyph { | 495 :host-context(.-theme-with-dark-background) .toolbar-state-on .record-toolbar-it
em.toolbar-glyph { |
| 488 background-color: hsl(0, 100%, 65%) !important; | 496 background-color: hsl(0, 100%, 65%) !important; |
| 489 } | 497 } |
| OLD | NEW |