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 background-color: transparent !important; | 7 background-color: transparent !important; |
8 } | 8 } |
9 | 9 |
10 .CodeMirror .source-frame-eval-expression { | 10 .CodeMirror .source-frame-eval-expression { |
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
235 | 235 |
236 .CodeMirror .webkit-html-warning-message { | 236 .CodeMirror .webkit-html-warning-message { |
237 background-color: rgb(100%, 62%, 42%); | 237 background-color: rgb(100%, 62%, 42%); |
238 border: 2px solid rgb(100%, 52%, 21%); | 238 border: 2px solid rgb(100%, 52%, 21%); |
239 } | 239 } |
240 | 240 |
241 .CodeMirror .webkit-html-error-message { | 241 .CodeMirror .webkit-html-error-message { |
242 background-color: rgb(100%, 42%, 42%); | 242 background-color: rgb(100%, 42%, 42%); |
243 border: 2px solid rgb(100%, 31%, 31%); | 243 border: 2px solid rgb(100%, 31%, 31%); |
244 } | 244 } |
| 245 |
| 246 /** @see crbug.com/358161 */ |
| 247 .CodeMirror .CodeMirror-vscrollbar, .CodeMirror .CodeMirror-hscrollbar { |
| 248 -webkit-transform: translateZ(0); |
| 249 } |
OLD | NEW |