| 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 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 316 | 316 |
| 317 .record-toolbar-item .glyph { | 317 .record-toolbar-item .glyph { |
| 318 -webkit-mask-position: -288px 0; | 318 -webkit-mask-position: -288px 0; |
| 319 } | 319 } |
| 320 | 320 |
| 321 button.record-toolbar-item.toggled-on .glyph { | 321 button.record-toolbar-item.toggled-on .glyph { |
| 322 -webkit-mask-position: -288px -24px; | 322 -webkit-mask-position: -288px -24px; |
| 323 background-color: rgb(216, 0, 0) !important; | 323 background-color: rgb(216, 0, 0) !important; |
| 324 } | 324 } |
| 325 | 325 |
| 326 :host-context(.network) button.record-toolbar-item.toggled-on .glyph { |
| 327 animation: pulse-effect 2.5s infinite alternate ease-in-out; |
| 328 } |
| 329 |
| 330 @keyframes pulse-effect { |
| 331 from { transform: scale(0.8); } |
| 332 to { transform: scale(1.1); } |
| 333 } |
| 334 |
| 326 .camera-toolbar-item .glyph { | 335 .camera-toolbar-item .glyph { |
| 327 -webkit-mask-position: -96px -24px; | 336 -webkit-mask-position: -96px -24px; |
| 328 } | 337 } |
| 329 | 338 |
| 330 .last-step-toolbar-item .glyph { | 339 .last-step-toolbar-item .glyph { |
| 331 -webkit-mask-position: 0 -72px; | 340 -webkit-mask-position: 0 -72px; |
| 332 } | 341 } |
| 333 | 342 |
| 334 .first-step-toolbar-item .glyph { | 343 .first-step-toolbar-item .glyph { |
| 335 -webkit-mask-position: 0 -72px; | 344 -webkit-mask-position: 0 -72px; |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 486 } | 495 } |
| 487 | 496 |
| 488 .playback-rate-button.toggled-on > .toolbar-button-text { | 497 .playback-rate-button.toggled-on > .toolbar-button-text { |
| 489 color: rgb(66, 129, 235); | 498 color: rgb(66, 129, 235); |
| 490 } | 499 } |
| 491 | 500 |
| 492 button.playback-rate-button { | 501 button.playback-rate-button { |
| 493 width: auto; | 502 width: auto; |
| 494 margin-right: 10px; | 503 margin-right: 10px; |
| 495 } | 504 } |
| OLD | NEW |