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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/text_editor/cmdevtools.css

Issue 2710203003: [DevTools] show inlined shortcuts for go to location (Closed)
Patch Set: addressed comments Created 3 years, 9 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
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 .CodeMirror { 1 .CodeMirror {
2 line-height: 1.2em !important; 2 line-height: 1.2em !important;
3 background-color: transparent !important; 3 background-color: transparent !important;
4 color: #222; 4 color: #222;
5 } 5 }
6 6
7 .CodeMirror-linewidget { 7 .CodeMirror-linewidget {
8 overflow: visible !important; 8 overflow: visible !important;
9 } 9 }
10 10
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 } 153 }
154 154
155 .cm-inline-breakpoint.cm-inline-conditional { 155 .cm-inline-breakpoint.cm-inline-conditional {
156 background-color: #ef9d0d; 156 background-color: #ef9d0d;
157 } 157 }
158 158
159 .cm-inline-breakpoint.cm-inline-disabled { 159 .cm-inline-breakpoint.cm-inline-disabled {
160 opacity: 0.5; 160 opacity: 0.5;
161 } 161 }
162 162
163 .cm-continue-to-location {
164 cursor: pointer;
165 transform: scale(0.7);
166 }
167
163 div.CodeMirror span.CodeMirror-matchingbracket { 168 div.CodeMirror span.CodeMirror-matchingbracket {
164 background-color: rgba(0, 0, 0, 0.07); 169 background-color: rgba(0, 0, 0, 0.07);
165 border-bottom: 1px solid rgba(0, 0, 0, 0.5); 170 border-bottom: 1px solid rgba(0, 0, 0, 0.5);
166 color: unset; 171 color: unset;
167 } 172 }
168 173
169 div.CodeMirror span.CodeMirror-nonmatchingbracket { 174 div.CodeMirror span.CodeMirror-nonmatchingbracket {
170 background-color: rgba(255, 0, 0, 0.07); 175 background-color: rgba(255, 0, 0, 0.07);
171 border-bottom: 1px solid rgba(255, 0, 0, 0.5); 176 border-bottom: 1px solid rgba(255, 0, 0, 0.5);
172 color: unset; 177 color: unset;
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
418 423
419 .CodeMirror .auto-complete-text { 424 .CodeMirror .auto-complete-text {
420 color: rgb(128,128,128); 425 color: rgb(128,128,128);
421 } 426 }
422 427
423 /** Prevent the codemirror textarea from stealing PageUp events **/ 428 /** Prevent the codemirror textarea from stealing PageUp events **/
424 .CodeMirror textarea { 429 .CodeMirror textarea {
425 resize: none; 430 resize: none;
426 overflow: hidden; 431 overflow: hidden;
427 } 432 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698