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

Unified Diff: Source/devtools/front_end/ui/helpScreen.css

Issue 1292673002: [DevTools] Group options in network presets select. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 4 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
Index: Source/devtools/front_end/ui/helpScreen.css
diff --git a/Source/devtools/front_end/ui/helpScreen.css b/Source/devtools/front_end/ui/helpScreen.css
index b7f5bd8e75cdbd7097f2b97c941ae2ee40ed076d..e930e874dce3ca768e8e914d458c58be4847c2c2 100644
--- a/Source/devtools/front_end/ui/helpScreen.css
+++ b/Source/devtools/front_end/ui/helpScreen.css
@@ -558,3 +558,15 @@ select.list-column-editor {
.settings-developer-mode .settings-experiment-hidden {
display: block;
}
+
+.highlighted-setting {
+ animation: highlight-animation 5s linear;
+ animation-iteration-count: 1;
+}
+
+@keyframes highlight-animation {
+ 0% { outline: auto 3px transparent; }
+ 20% { outline: auto 3px rgb(255, 156, 0); }
+ 80% { outline: auto 3px rgb(255, 156, 0); }
+ 100% { outline: auto 3px transparent; }
+}

Powered by Google App Engine
This is Rietveld 408576698