Chromium Code Reviews| 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-gutter-performance { | 10 .CodeMirror-gutter-performance { |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 68 } | 68 } |
| 69 @-webkit-keyframes fadeout-execution-line { | 69 @-webkit-keyframes fadeout-execution-line { |
| 70 from {background-color: rgb(121, 141, 254); } | 70 from {background-color: rgb(121, 141, 254); } |
| 71 to { background-color: rgb(171, 191, 254); } | 71 to { background-color: rgb(171, 191, 254); } |
| 72 } | 72 } |
| 73 | 73 |
| 74 .cm-breakpoint .CodeMirror-linenumber { | 74 .cm-breakpoint .CodeMirror-linenumber { |
| 75 color: white; | 75 color: white; |
| 76 border-width: 1px 4px 1px 1px !important; | 76 border-width: 1px 4px 1px 1px !important; |
| 77 -webkit-border-image: url(Images/breakpoint.png) 1 4 1 1; | 77 -webkit-border-image: url(Images/breakpoint.png) 1 4 1 1; |
| 78 border-style: solid; | |
| 78 margin: 0 0 0 3px !important; | 79 margin: 0 0 0 3px !important; |
| 79 padding-right: 3px; | 80 padding-right: 3px; |
| 80 padding-left: 1px; | 81 padding-left: 1px; |
| 81 height: 11px; | 82 height: 11px; |
| 82 line-height: 12px !important; | 83 line-height: 12px !important; |
| 83 } | 84 } |
| 84 | 85 |
| 85 .cm-line-without-source-mapping { | 86 .cm-line-without-source-mapping { |
| 86 background-color: #fafafa; | 87 background-color: #fafafa; |
| 87 } | 88 } |
| 88 | 89 |
| 89 .cm-breakpoint.cm-breakpoint-conditional .CodeMirror-linenumber { | 90 .cm-breakpoint.cm-breakpoint-conditional .CodeMirror-linenumber { |
| 90 -webkit-border-image: url(Images/breakpointConditional.png) 1 4 1 1; | 91 -webkit-border-image: url(Images/breakpointConditional.png) 1 4 1 1; |
| 92 border-style: solid; | |
| 91 } | 93 } |
| 92 | 94 |
| 93 @media (-webkit-min-device-pixel-ratio: 1.5) { | 95 @media (-webkit-min-device-pixel-ratio: 1.5) { |
| 94 .cm-breakpoint .CodeMirror-linenumber { | 96 .cm-breakpoint .CodeMirror-linenumber { |
| 95 -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 border-style: solid; | |
| 96 } | 99 } |
| 97 .cm-breakpoint.cm-breakpoint-conditional .CodeMirror-linenumber { | 100 .cm-breakpoint.cm-breakpoint-conditional .CodeMirror-linenumber { |
| 98 -webkit-border-image: url(Images/breakpointConditional_2x.png) 2 8 2 2; | 101 -webkit-border-image: url(Images/breakpointConditional_2x.png) 2 8 2 2; |
| 102 border-style: solid; | |
|
lushnikov
2016/03/23 22:10:49
no need to change this file altogether - this has
| |
| 99 } | 103 } |
| 100 } /* media */ | 104 } /* media */ |
| 101 | 105 |
| 102 .cm-breakpoint-disabled .CodeMirror-linenumber { | 106 .cm-breakpoint-disabled .CodeMirror-linenumber { |
| 103 opacity: 0.5; | 107 opacity: 0.5; |
| 104 } | 108 } |
| 105 | 109 |
| 106 .breakpoints-deactivated .cm-breakpoint .CodeMirror-linenumber { | 110 .breakpoints-deactivated .cm-breakpoint .CodeMirror-linenumber { |
| 107 opacity: 0.5; | 111 opacity: 0.5; |
| 108 } | 112 } |
| (...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 344 background-color: rgba(255, 0, 0, 0.05); | 348 background-color: rgba(255, 0, 0, 0.05); |
| 345 } | 349 } |
| 346 | 350 |
| 347 .CodeMirror-activeline .cm-trailing-whitespace { | 351 .CodeMirror-activeline .cm-trailing-whitespace { |
| 348 background-color: transparent; | 352 background-color: transparent; |
| 349 } | 353 } |
| 350 | 354 |
| 351 .-theme-with-dark-background .CodeMirror .CodeMirror-selected { | 355 .-theme-with-dark-background .CodeMirror .CodeMirror-selected { |
| 352 background-color: #454545; | 356 background-color: #454545; |
| 353 } | 357 } |
| OLD | NEW |