Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(204)

Side by Side Diff: Source/devtools/front_end/ui/toolbar.css

Issue 1212463003: Devtools: Provide affordance during network recording using a pulsing anim (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698