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

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

Issue 632573002: Adding regex support to search bar in dev tools console (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: Implement regex search similar to Sublime Text Created 6 years, 2 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
OLDNEW
1 html { 1 html {
2 height: 100%; 2 height: 100%;
3 } 3 }
4 4
5 body { 5 body {
6 cursor: default; 6 cursor: default;
7 position: relative; 7 position: relative;
8 height: 100%; 8 height: 100%;
9 width: 100%; 9 width: 100%;
10 overflow: hidden; 10 overflow: hidden;
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 font-size: 10px !important; 65 font-size: 10px !important;
66 font-family: monospace; 66 font-family: monospace;
67 } 67 }
68 68
69 .highlighted-search-result { 69 .highlighted-search-result {
70 border-radius: 1px; 70 border-radius: 1px;
71 padding: 1px; 71 padding: 1px;
72 margin: -1px; 72 margin: -1px;
73 background-color: rgba(255, 255, 0, 0.8); 73 background-color: rgba(255, 255, 0, 0.8);
74 } 74 }
75
76 /* TODO: Come up with a design */
77 .current-search-result {
78 border-radius: 1px;
79 padding: 1px;
80 margin: -1px;
81 background-color: rgba(255, 127, 0, 0.8);
82 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/console/ConsoleViewMessage.js ('k') | Source/devtools/front_end/searchable.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698