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

Side by Side Diff: Source/devtools/front_end/inspectorCommon.css

Issue 676193002: Navigate between individual search matches in DevTools console (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: Add tests Created 6 years, 1 month 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
OLDNEW
1 html { 1 html {
2 height: 100%; 2 height: 100%;
3 } 3 }
4 4
5 body { 5 body {
6 height: 100%; 6 height: 100%;
7 width: 100%; 7 width: 100%;
8 position: relative; 8 position: relative;
9 overflow: hidden; 9 overflow: hidden;
10 margin: 0; 10 margin: 0;
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 font-size: 10px !important; 92 font-size: 10px !important;
93 font-family: monospace; 93 font-family: monospace;
94 } 94 }
95 95
96 body /deep/ .highlighted-search-result { 96 body /deep/ .highlighted-search-result {
97 border-radius: 1px; 97 border-radius: 1px;
98 padding: 1px; 98 padding: 1px;
99 margin: -1px; 99 margin: -1px;
100 background-color: rgba(255, 255, 0, 0.8); 100 background-color: rgba(255, 255, 0, 0.8);
101 } 101 }
102
103
104 /* TODO: Come up with a design */
lushnikov 2014/11/07 16:27:19 Please, remove the comment. We'll anyway land this
aknudsen 2014/11/08 12:00:53 Acknowledged.
aknudsen 2014/11/09 00:02:14 Done.
105 .current-search-result {
lushnikov 2014/11/07 16:27:19 given the suggestion in one of other comments to n
aknudsen 2014/11/08 12:00:52 Acknowledged.
aknudsen 2014/11/09 00:02:14 Done.
106 border-radius: 1px;
107 padding: 1px;
108 margin: -1px;
109 background-color: rgba(255, 127, 0, 0.8);
110 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698