| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 } | 42 } |
| 43 | 43 |
| 44 .cm-highlight { | 44 .cm-highlight { |
| 45 -webkit-animation: "fadeout" 2s 0s; | 45 -webkit-animation: "fadeout" 2s 0s; |
| 46 } | 46 } |
| 47 @-webkit-keyframes fadeout { | 47 @-webkit-keyframes fadeout { |
| 48 from {background-color: rgb(255, 255, 120); } | 48 from {background-color: rgb(255, 255, 120); } |
| 49 to { background-color: white; } | 49 to { background-color: white; } |
| 50 } | 50 } |
| 51 | 51 |
| 52 .cm-highlight.cm-execution-line { |
| 53 -webkit-animation: "fadeout-execution-line" 1s 0s; |
| 54 } |
| 55 @-webkit-keyframes fadeout-execution-line { |
| 56 from {background-color: rgb(121, 141, 254); } |
| 57 to { background-color: rgb(171, 191, 254); } |
| 58 } |
| 59 |
| 52 .cm-breakpoint .CodeMirror-linenumber { | 60 .cm-breakpoint .CodeMirror-linenumber { |
| 53 color: white; | 61 color: white; |
| 54 border-width: 1px 4px 1px 1px !important; | 62 border-width: 1px 4px 1px 1px !important; |
| 55 -webkit-border-image: url(Images/breakpoint2.png) 1 4 1 1; | 63 -webkit-border-image: url(Images/breakpoint.png) 1 4 1 1; |
| 56 margin: 0px 0px 0px 3px !important; | 64 margin: 0px 0px 0px 3px !important; |
| 57 padding-right: 3px; | 65 padding-right: 3px; |
| 58 padding-left: 1px; | 66 padding-left: 1px; |
| 59 height: 11px; | 67 height: 11px; |
| 60 line-height: 12px !important; | 68 line-height: 12px !important; |
| 61 } | 69 } |
| 62 | 70 |
| 63 .cm-breakpoint.cm-breakpoint-conditional .CodeMirror-linenumber { | 71 .cm-breakpoint.cm-breakpoint-conditional .CodeMirror-linenumber { |
| 64 -webkit-border-image: url(Images/breakpointConditional2.png) 1 4 1 1; | 72 -webkit-border-image: url(Images/breakpointConditional.png) 1 4 1 1; |
| 65 } | 73 } |
| 66 | 74 |
| 67 @media (-webkit-min-device-pixel-ratio: 1.5) { | 75 @media (-webkit-min-device-pixel-ratio: 1.5) { |
| 68 .cm-breakpoint .CodeMirror-linenumber { | 76 .cm-breakpoint .CodeMirror-linenumber { |
| 69 -webkit-border-image: url(Images/breakpoint2_2x.png) 2 8 2 2; | 77 -webkit-border-image: url(Images/breakpoint_2x.png) 2 8 2 2; |
| 70 } | 78 } |
| 71 .cm-breakpoint.cm-breakpoint-conditional .CodeMirror-linenumber { | 79 .cm-breakpoint.cm-breakpoint-conditional .CodeMirror-linenumber { |
| 72 -webkit-border-image: url(Images/breakpointConditional2_2x.png) 2 8 2 2; | 80 -webkit-border-image: url(Images/breakpointConditional_2x.png) 2 8 2 2; |
| 73 } | 81 } |
| 74 } /* media */ | 82 } /* media */ |
| 75 | 83 |
| 76 .cm-breakpoint-disabled .CodeMirror-linenumber { | 84 .cm-breakpoint-disabled .CodeMirror-linenumber { |
| 77 opacity: 0.5; | 85 opacity: 0.5; |
| 78 } | 86 } |
| 79 | 87 |
| 80 .breakpoints-deactivated .cm-breakpoint .CodeMirror-linenumber { | 88 .breakpoints-deactivated .cm-breakpoint .CodeMirror-linenumber { |
| 81 opacity: 0.5; | 89 opacity: 0.5; |
| 82 } | 90 } |
| (...skipping 30 matching lines...) Expand all Loading... |
| 113 width: 90%; | 121 width: 90%; |
| 114 bottom: 50%; | 122 bottom: 50%; |
| 115 left: 5%; | 123 left: 5%; |
| 116 } | 124 } |
| 117 | 125 |
| 118 .show-whitespaces .CodeMirror .cm-tab:before { | 126 .show-whitespaces .CodeMirror .cm-tab:before { |
| 119 display: block !important; | 127 display: block !important; |
| 120 } | 128 } |
| 121 | 129 |
| 122 .cm-execution-line { | 130 .cm-execution-line { |
| 123 background-color: rgb(171, 191, 254) !important; | 131 background-color: rgb(171, 191, 254); |
| 124 outline: 1px solid rgb(64, 115, 244); | 132 outline: 1px solid rgb(64, 115, 244); |
| 125 } | 133 } |
| 126 | 134 |
| 127 .cm-execution-line .CodeMirror-linenumber { | 135 .cm-execution-line .CodeMirror-linenumber { |
| 128 border-right: 1px solid rgb(64, 115, 244); | 136 border-right: 1px solid rgb(64, 115, 244); |
| 129 } | 137 } |
| 130 | 138 |
| 131 .cm-token-highlight { | 139 .cm-token-highlight { |
| 132 position: relative; | 140 position: relative; |
| 133 } | 141 } |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 | 235 |
| 228 .CodeMirror .webkit-html-warning-message { | 236 .CodeMirror .webkit-html-warning-message { |
| 229 background-color: rgb(100%, 62%, 42%); | 237 background-color: rgb(100%, 62%, 42%); |
| 230 border: 2px solid rgb(100%, 52%, 21%); | 238 border: 2px solid rgb(100%, 52%, 21%); |
| 231 } | 239 } |
| 232 | 240 |
| 233 .CodeMirror .webkit-html-error-message { | 241 .CodeMirror .webkit-html-error-message { |
| 234 background-color: rgb(100%, 42%, 42%); | 242 background-color: rgb(100%, 42%, 42%); |
| 235 border: 2px solid rgb(100%, 31%, 31%); | 243 border: 2px solid rgb(100%, 31%, 31%); |
| 236 } | 244 } |
| 245 |
| 246 /** @see crbug.com/358161 */ |
| 247 .CodeMirror .CodeMirror-vscrollbar, .CodeMirror .CodeMirror-hscrollbar { |
| 248 -webkit-transform: translateZ(0); |
| 249 } |
| OLD | NEW |