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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/ui/toolbar.css
diff --git a/Source/devtools/front_end/ui/toolbar.css b/Source/devtools/front_end/ui/toolbar.css
index eb2ff6926da4dcf7b912b8b7907cb44a9a055ee5..68579fbb0f79c0b4888ae3c7b56085715f34fdb5 100644
--- a/Source/devtools/front_end/ui/toolbar.css
+++ b/Source/devtools/front_end/ui/toolbar.css
@@ -323,6 +323,15 @@ button.record-toolbar-item.toggled-on .glyph {
background-color: rgb(216, 0, 0) !important;
}
+:host-context(.network) button.record-toolbar-item.toggled-on .glyph {
+ animation: pulse-effect 2.5s infinite alternate ease-in-out;
+}
+
+@keyframes pulse-effect {
+ from { transform: scale(0.8); }
+ to { transform: scale(1.1); }
+}
+
.camera-toolbar-item .glyph {
-webkit-mask-position: -96px -24px;
}
« 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