OLD | NEW |
1 .CodeMirror * { | 1 .CodeMirror * { |
2 box-sizing: content-box; | 2 box-sizing: content-box; |
3 } | 3 } |
4 | 4 |
5 .CodeMirror { | 5 .CodeMirror { |
6 line-height: 1.2em !important; | 6 line-height: 1.2em !important; |
7 height: 100% !important; | 7 height: 100% !important; |
8 background-color: transparent !important; | 8 background-color: transparent !important; |
9 } | 9 } |
10 | 10 |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 padding-left: 1px; | 47 padding-left: 1px; |
48 height: 10px; | 48 height: 10px; |
49 line-height: 11px !important; | 49 line-height: 11px !important; |
50 } | 50 } |
51 | 51 |
52 .cm-breakpoint.cm-breakpoint-conditional .CodeMirror-linenumber { | 52 .cm-breakpoint.cm-breakpoint-conditional .CodeMirror-linenumber { |
53 -webkit-border-image: url(Images/breakpointConditional2.png) 1 4 1 1; | 53 -webkit-border-image: url(Images/breakpointConditional2.png) 1 4 1 1; |
54 } | 54 } |
55 | 55 |
56 @media (-webkit-min-device-pixel-ratio: 1.5) { | 56 @media (-webkit-min-device-pixel-ratio: 1.5) { |
57 .cm-breakpoint .CodeMirror-linenumber { | 57 .cm-breakpoint .CodeMirror-linenumber { |
58 -webkit-border-image: url(Images/breakpoint2_2x.png) 2 8 2 2; | 58 -webkit-border-image: url(Images/breakpoint2_2x.png) 2 8 2 2; |
59 } | |
60 .cm-breakpoint.cm-breakpoint-conditional .CodeMirror-linenumber { | |
61 -webkit-border-image: url(Images/breakpointConditional2_2x.png) 2 8 2 2; | |
62 } | |
63 } | 59 } |
| 60 .cm-breakpoint.cm-breakpoint-conditional .CodeMirror-linenumber { |
| 61 -webkit-border-image: url(Images/breakpointConditional2_2x.png) 2 8 2 2; |
| 62 } |
| 63 } /* media */ |
64 | 64 |
65 .cm-breakpoint-disabled .CodeMirror-linenumber { | 65 .cm-breakpoint-disabled .CodeMirror-linenumber { |
66 opacity: 0.5; | 66 opacity: 0.5; |
67 } | 67 } |
68 | 68 |
69 .CodeMirror-matchingbracket { | 69 .CodeMirror-matchingbracket { |
70 border-bottom: 1px solid black; | 70 border-bottom: 1px solid black; |
71 color: #222 !important; | 71 color: #222 !important; |
72 } | 72 } |
73 | 73 |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
147 | 147 |
148 .CodeMirror .webkit-html-warning-message { | 148 .CodeMirror .webkit-html-warning-message { |
149 background-color: rgb(100%, 62%, 42%); | 149 background-color: rgb(100%, 62%, 42%); |
150 border: 2px solid rgb(100%, 52%, 21%); | 150 border: 2px solid rgb(100%, 52%, 21%); |
151 } | 151 } |
152 | 152 |
153 .CodeMirror .webkit-html-error-message { | 153 .CodeMirror .webkit-html-error-message { |
154 background-color: rgb(100%, 42%, 42%); | 154 background-color: rgb(100%, 42%, 42%); |
155 border: 2px solid rgb(100%, 31%, 31%); | 155 border: 2px solid rgb(100%, 31%, 31%); |
156 } | 156 } |
OLD | NEW |