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

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

Issue 2763183002: DevTools: remove nesting depth tracking from coverage (Closed)
Patch Set: DevTools: remove nesting depth tracking from coverage 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
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 328 matching lines...) Expand 10 before | Expand all | Expand 10 after
339 .CodeMirror .text-editor-coverage-used-marker { 339 .CodeMirror .text-editor-coverage-used-marker {
340 text-align: right; 340 text-align: right;
341 padding-right: 2px; 341 padding-right: 2px;
342 background-color: #81C784; 342 background-color: #81C784;
343 } 343 }
344 344
345 .CodeMirror .text-editor-coverage-used-marker::after { 345 .CodeMirror .text-editor-coverage-used-marker::after {
346 content: " "; 346 content: " ";
347 } 347 }
348 348
349 .CodeMirror .text-editor-coverage-mixed-marker {
350 text-align: right;
351 padding-right: 2px;
352 background-repeat: repeat;
353 background-size: 5px 5px;
354 background-image: linear-gradient(0, #81C784 0px, #81C784 2.5px, #E57373 2.5 px, #E57373 5px);
355 }
356
357 .CodeMirror .text-editor-coverage-mixed-marker::after {
358 content: " ";
359 }
360
349 .CodeMirror .text-editor-line-decoration { 361 .CodeMirror .text-editor-line-decoration {
350 position: absolute; 362 position: absolute;
351 } 363 }
352 364
353 .CodeMirror .text-editor-line-decoration-wave { 365 .CodeMirror .text-editor-line-decoration-wave {
354 position: absolute; 366 position: absolute;
355 top: -2px; 367 top: -2px;
356 right: -4px; 368 right: -4px;
357 left: 4px; 369 left: 4px;
358 cursor: pointer; 370 cursor: pointer;
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
429 441
430 .CodeMirror .auto-complete-text { 442 .CodeMirror .auto-complete-text {
431 color: rgb(128,128,128); 443 color: rgb(128,128,128);
432 } 444 }
433 445
434 /** Prevent the codemirror textarea from stealing PageUp events **/ 446 /** Prevent the codemirror textarea from stealing PageUp events **/
435 .CodeMirror textarea { 447 .CodeMirror textarea {
436 resize: none; 448 resize: none;
437 overflow: hidden; 449 overflow: hidden;
438 } 450 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698