OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |