| 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 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 236 } | 236 } |
| 237 | 237 |
| 238 .text-editor-row-message:first-child { | 238 .text-editor-row-message:first-child { |
| 239 border-top-width: 0px; | 239 border-top-width: 0px; |
| 240 } | 240 } |
| 241 | 241 |
| 242 .text-editor-row-message { | 242 .text-editor-row-message { |
| 243 border-top: 1px solid rgb(215, 215, 215); | 243 border-top: 1px solid rgb(215, 215, 215); |
| 244 line-height: 1.2; | 244 line-height: 1.2; |
| 245 white-space: nowrap; | 245 white-space: nowrap; |
| 246 display: flex; |
| 246 } | 247 } |
| 247 | 248 |
| 248 .text-editor-row-message .bubble-repeat-count { | 249 .text-editor-row-message .bubble-repeat-count { |
| 249 margin-right: 1ex; | 250 margin-right: 1ex; |
| 250 margin-top: -1px; | 251 margin-top: -1px; |
| 251 } | 252 } |
| 252 | 253 |
| 253 .text-editor-row-message-icon { | 254 .text-editor-row-message-icon { |
| 254 margin-right: 1ex; | 255 margin-right: 1ex; |
| 256 margin-top: 2px; |
| 255 } | 257 } |
| 256 | 258 |
| 257 .CodeMirror .text-editor-line-decoration-icon { | 259 .CodeMirror .text-editor-line-decoration-icon { |
| 258 position: absolute; | 260 position: absolute; |
| 259 cursor: pointer; | 261 cursor: pointer; |
| 260 right: -16px; | 262 right: -16px; |
| 261 top: -9px; | 263 top: -9px; |
| 262 } | 264 } |
| 263 | 265 |
| 264 .CodeMirror .text-editor-line-with-warning:not(.cm-execution-line) { | 266 .CodeMirror .text-editor-line-with-warning:not(.cm-execution-line) { |
| (...skipping 12 matching lines...) Expand all Loading... |
| 277 @media (-webkit-min-device-pixel-ratio: 1.5) { | 279 @media (-webkit-min-device-pixel-ratio: 1.5) { |
| 278 .CodeMirror .text-editor-line-decoration-wave { | 280 .CodeMirror .text-editor-line-decoration-wave { |
| 279 background-image: url(Images/errorWave_2x.png); | 281 background-image: url(Images/errorWave_2x.png); |
| 280 } | 282 } |
| 281 } /* media */ | 283 } /* media */ |
| 282 | 284 |
| 283 /** @see crbug.com/358161 */ | 285 /** @see crbug.com/358161 */ |
| 284 .CodeMirror .CodeMirror-vscrollbar, .CodeMirror .CodeMirror-hscrollbar { | 286 .CodeMirror .CodeMirror-vscrollbar, .CodeMirror .CodeMirror-hscrollbar { |
| 285 -webkit-transform: translateZ(0); | 287 -webkit-transform: translateZ(0); |
| 286 } | 288 } |
| OLD | NEW |