| 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 } | 4 } |
| 5 | 5 |
| 6 .CodeMirror-linewidget { | 6 .CodeMirror-linewidget { |
| 7 overflow: visible !important; | 7 overflow: visible !important; |
| 8 } | 8 } |
| 9 | 9 |
| 10 .CodeMirror .source-frame-eval-expression { | 10 .CodeMirror .source-frame-eval-expression { |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 border-top-right-radius: 1px; | 227 border-top-right-radius: 1px; |
| 228 border-bottom-right-radius: 1px; | 228 border-bottom-right-radius: 1px; |
| 229 } | 229 } |
| 230 | 230 |
| 231 .cm-line-with-selection .cm-column-with-selection.cm-search-highlight:before { | 231 .cm-line-with-selection .cm-column-with-selection.cm-search-highlight:before { |
| 232 margin: -1px -1px -1px -1px; | 232 margin: -1px -1px -1px -1px; |
| 233 background-color: rgb(241, 234, 0); | 233 background-color: rgb(241, 234, 0); |
| 234 z-index: -1; | 234 z-index: -1; |
| 235 } | 235 } |
| 236 | 236 |
| 237 .-theme-with-dark-background .cm-line-with-selection .cm-column-with-selection.c
m-search-highlight:before { |
| 238 background-color: hsl(133, 100%, 30%); |
| 239 } |
| 240 |
| 241 .-theme-with-dark-background.cm-line-with-selection .cm-search-highlight { |
| 242 color: #333; |
| 243 } |
| 244 |
| 237 .CodeMirror .text-editor-line-decoration { | 245 .CodeMirror .text-editor-line-decoration { |
| 238 position: absolute; | 246 position: absolute; |
| 239 } | 247 } |
| 240 | 248 |
| 241 .CodeMirror .text-editor-line-decoration-wave { | 249 .CodeMirror .text-editor-line-decoration-wave { |
| 242 position: absolute; | 250 position: absolute; |
| 243 top: -2px; | 251 top: -2px; |
| 244 cursor: pointer; | 252 cursor: pointer; |
| 245 height: 4px; | 253 height: 4px; |
| 246 } | 254 } |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 325 background-color: rgba(255, 0, 0, 0.05); | 333 background-color: rgba(255, 0, 0, 0.05); |
| 326 } | 334 } |
| 327 | 335 |
| 328 .CodeMirror-activeline .cm-trailing-whitespace { | 336 .CodeMirror-activeline .cm-trailing-whitespace { |
| 329 background-color: transparent; | 337 background-color: transparent; |
| 330 } | 338 } |
| 331 | 339 |
| 332 .-theme-with-dark-background .CodeMirror .CodeMirror-selected { | 340 .-theme-with-dark-background .CodeMirror .CodeMirror-selected { |
| 333 background-color: #454545; | 341 background-color: #454545; |
| 334 } | 342 } |
| OLD | NEW |