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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 .help-window-outer { 1 .help-window-outer {
2 position: absolute !important; 2 position: absolute !important;
3 top: 0; 3 top: 0;
4 left: 0; 4 left: 0;
5 right: 0; 5 right: 0;
6 bottom: 0; 6 bottom: 0;
7 z-index: 2000; 7 z-index: 2000;
8 } 8 }
9 9
10 .help-window-main { 10 .help-window-main {
(...skipping 540 matching lines...) Expand 10 before | Expand all | Expand 10 after
551 display: none; 551 display: none;
552 } 552 }
553 553
554 .settings-experiment-hidden label { 554 .settings-experiment-hidden label {
555 background-color: #ddd; 555 background-color: #ddd;
556 } 556 }
557 557
558 .settings-developer-mode .settings-experiment-hidden { 558 .settings-developer-mode .settings-experiment-hidden {
559 display: block; 559 display: block;
560 } 560 }
561
562 .highlighted-setting {
563 animation: highlight-animation 5s linear;
564 animation-iteration-count: 1;
565 }
566
567 @keyframes highlight-animation {
568 0% { outline: auto 3px transparent; }
569 20% { outline: auto 3px rgb(255, 156, 0); }
570 80% { outline: auto 3px rgb(255, 156, 0); }
571 100% { outline: auto 3px transparent; }
572 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698