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

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: 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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 font-size: 10px !important; 102 font-size: 10px !important;
103 font-family: monospace; 103 font-family: monospace;
104 } 104 }
105 105
106 body /deep/ .highlighted-search-result { 106 body /deep/ .highlighted-search-result {
107 border-radius: 1px; 107 border-radius: 1px;
108 padding: 1px; 108 padding: 1px;
109 margin: -1px; 109 margin: -1px;
110 background-color: rgba(255, 255, 0, 0.8); 110 background-color: rgba(255, 255, 0, 0.8);
111 } 111 }
112
113
114 /* TODO: Come up with a design */
115 .current-search-result {
116 border-radius: 1px;
117 padding: 1px;
118 margin: -1px;
119 background-color: rgba(255, 127, 0, 0.8);
120 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698