| 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 | 86 |
| 87 .cm-line-without-source-mapping .CodeMirror-linenumber { | 87 .cm-line-without-source-mapping .CodeMirror-linenumber { |
| 88 color: rgba(128, 128, 128, 0.4); | 88 color: rgba(128, 128, 128, 0.4); |
| 89 } | 89 } |
| 90 | 90 |
| 91 .cm-breakpoint.cm-breakpoint-conditional .CodeMirror-linenumber { | 91 .cm-breakpoint.cm-breakpoint-conditional .CodeMirror-linenumber { |
| 92 -webkit-border-image: url(Images/breakpointConditional.png) 1 4 1 1; | 92 -webkit-border-image: url(Images/breakpointConditional.png) 1 4 1 1; |
| 93 } | 93 } |
| 94 | 94 |
| 95 @media (-webkit-min-device-pixel-ratio: 1.5) { | 95 @media (-webkit-min-device-pixel-ratio: 1.5) { |
| 96 .cm-breakpoint .CodeMirror-linenumber { | 96 .cm-breakpoint .CodeMirror-gutter-wrapper .CodeMirror-linenumber { |
| 97 -webkit-border-image: url(Images/breakpoint_2x.png) 2 8 2 2; | 97 -webkit-border-image: url(Images/breakpoint_2x.png) 2 8 2 2; |
| 98 } | 98 } |
| 99 .cm-breakpoint.cm-breakpoint-conditional .CodeMirror-linenumber { | 99 .cm-breakpoint.cm-breakpoint-conditional .CodeMirror-linenumber { |
| 100 -webkit-border-image: url(Images/breakpointConditional_2x.png) 2 8 2 2; | 100 -webkit-border-image: url(Images/breakpointConditional_2x.png) 2 8 2 2; |
| 101 } | 101 } |
| 102 } /* media */ | 102 } /* media */ |
| 103 | 103 |
| 104 .cm-breakpoint-disabled .CodeMirror-linenumber { | 104 .cm-breakpoint-disabled .CodeMirror-linenumber { |
| 105 opacity: 0.5; | 105 opacity: 0.5; |
| 106 } | 106 } |
| (...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 350 background-color: transparent; | 350 background-color: transparent; |
| 351 } | 351 } |
| 352 | 352 |
| 353 .-theme-with-dark-background .CodeMirror .CodeMirror-selected { | 353 .-theme-with-dark-background .CodeMirror .CodeMirror-selected { |
| 354 background-color: #454545; | 354 background-color: #454545; |
| 355 } | 355 } |
| 356 | 356 |
| 357 .CodeMirror .auto-complete-text{ | 357 .CodeMirror .auto-complete-text{ |
| 358 color: rgb(128,128,128); | 358 color: rgb(128,128,128); |
| 359 } | 359 } |
| OLD | NEW |