| 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 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |