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

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

Issue 2865573003: DevTools: support live coverage (Closed)
Patch Set: minor polish on corner cases Created 3 years, 7 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/InplaceFormatterEditorAction.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 346 matching lines...) Expand 10 before | Expand all | Expand 10 after
357 .CodeMirror .text-editor-coverage-unused-marker { 357 .CodeMirror .text-editor-coverage-unused-marker {
358 text-align: right; 358 text-align: right;
359 padding-right: 2px; 359 padding-right: 2px;
360 background-color: #E57373; 360 background-color: #E57373;
361 } 361 }
362 362
363 .CodeMirror .text-editor-coverage-unused-marker::after { 363 .CodeMirror .text-editor-coverage-unused-marker::after {
364 content: " "; 364 content: " ";
365 } 365 }
366 366
367 .CodeMirror .text-editor-coverage-used-marker, 367 .CodeMirror .text-editor-coverage-used-marker {
368 .CodeMirror .text-editor-coverage-mixed-marker {
369 text-align: right; 368 text-align: right;
370 padding-right: 2px; 369 padding-right: 2px;
371 background-color: #81C784; 370 background-color: #81C784;
372 } 371 }
373 372
374 .CodeMirror .text-editor-coverage-used-marker::after { 373 .CodeMirror .text-editor-coverage-used-marker::after {
375 content: " "; 374 content: " ";
376 } 375 }
377 376
378 .CodeMirror .text-editor-coverage-mixed-marker::after {
379 content: " ";
380 }
381
382 .CodeMirror .text-editor-line-decoration { 377 .CodeMirror .text-editor-line-decoration {
383 position: absolute; 378 position: absolute;
384 } 379 }
385 380
386 .CodeMirror .text-editor-line-decoration-wave { 381 .CodeMirror .text-editor-line-decoration-wave {
387 position: absolute; 382 position: absolute;
388 top: -2px; 383 top: -2px;
389 right: -4px; 384 right: -4px;
390 left: 4px; 385 left: 4px;
391 cursor: pointer; 386 cursor: pointer;
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
462 457
463 .CodeMirror .auto-complete-text { 458 .CodeMirror .auto-complete-text {
464 color: rgb(128,128,128); 459 color: rgb(128,128,128);
465 } 460 }
466 461
467 /** Prevent the codemirror textarea from stealing PageUp events **/ 462 /** Prevent the codemirror textarea from stealing PageUp events **/
468 .CodeMirror textarea { 463 .CodeMirror textarea {
469 resize: none; 464 resize: none;
470 overflow: hidden; 465 overflow: hidden;
471 } 466 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/sources/InplaceFormatterEditorAction.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698