| 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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 } | 112 } |
| 113 | 113 |
| 114 .breakpoints-deactivated .cm-breakpoint .CodeMirror-linenumber { | 114 .breakpoints-deactivated .cm-breakpoint .CodeMirror-linenumber { |
| 115 opacity: 0.5; | 115 opacity: 0.5; |
| 116 } | 116 } |
| 117 | 117 |
| 118 .breakpoints-deactivated .cm-breakpoint-disabled .CodeMirror-linenumber { | 118 .breakpoints-deactivated .cm-breakpoint-disabled .CodeMirror-linenumber { |
| 119 opacity: 0.3; | 119 opacity: 0.3; |
| 120 } | 120 } |
| 121 | 121 |
| 122 .cm-inline-breakpoint { |
| 123 position:relative; |
| 124 top: 1px; |
| 125 cursor: pointer; |
| 126 display: inline; |
| 127 } |
| 128 |
| 129 .cm-execution-line-tail + .CodeMirror-widget { |
| 130 background-color: #abbffe; |
| 131 } |
| 132 |
| 133 .source-frame-eval-expression + .CodeMirror-widget { |
| 134 border: 1px solid rgb(163, 41, 34); |
| 135 border-left-width: 0; |
| 136 border-right-width: 0; |
| 137 background-color: rgb(255, 255, 194); |
| 138 } |
| 139 |
| 140 .cm-inline-breakpoint.cm-execution-line-tail { |
| 141 background-color: #698cfe; |
| 142 } |
| 143 |
| 144 .cm-execution-line-tail .cm-inline-breakpoint { |
| 145 background-color: white |
| 146 } |
| 147 |
| 148 .cm-inline-breakpoint.cm-inline-conditional { |
| 149 background-color: #ef9d0d; |
| 150 } |
| 151 |
| 152 .cm-inline-breakpoint.cm-inline-disabled { |
| 153 opacity: 0.5; |
| 154 } |
| 155 |
| 122 div.CodeMirror span.CodeMirror-matchingbracket { | 156 div.CodeMirror span.CodeMirror-matchingbracket { |
| 123 background-color: rgba(0, 0, 0, 0.07); | 157 background-color: rgba(0, 0, 0, 0.07); |
| 124 border-bottom: 1px solid rgba(0, 0, 0, 0.5); | 158 border-bottom: 1px solid rgba(0, 0, 0, 0.5); |
| 125 color: unset; | 159 color: unset; |
| 126 } | 160 } |
| 127 | 161 |
| 128 div.CodeMirror span.CodeMirror-nonmatchingbracket { | 162 div.CodeMirror span.CodeMirror-nonmatchingbracket { |
| 129 background-color: rgba(255, 0, 0, 0.07); | 163 background-color: rgba(255, 0, 0, 0.07); |
| 130 border-bottom: 1px solid rgba(255, 0, 0, 0.5); | 164 border-bottom: 1px solid rgba(255, 0, 0, 0.5); |
| 131 color: unset; | 165 color: unset; |
| (...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 388 | 422 |
| 389 .CodeMirror .auto-complete-text { | 423 .CodeMirror .auto-complete-text { |
| 390 color: rgb(128,128,128); | 424 color: rgb(128,128,128); |
| 391 } | 425 } |
| 392 | 426 |
| 393 /** Prevent the codemirror textarea from stealing PageUp events **/ | 427 /** Prevent the codemirror textarea from stealing PageUp events **/ |
| 394 .CodeMirror textarea { | 428 .CodeMirror textarea { |
| 395 resize: none; | 429 resize: none; |
| 396 overflow: hidden; | 430 overflow: hidden; |
| 397 } | 431 } |
| OLD | NEW |