| Index: third_party/WebKit/Source/devtools/front_end/text_editor/cmdevtools.css
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/text_editor/cmdevtools.css b/third_party/WebKit/Source/devtools/front_end/text_editor/cmdevtools.css
|
| index 969daea5acdbf78529e86030d050ab322b6e296d..c1438686a2eaaf1875a030124157d82b6ac96d9c 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/text_editor/cmdevtools.css
|
| +++ b/third_party/WebKit/Source/devtools/front_end/text_editor/cmdevtools.css
|
| @@ -70,6 +70,14 @@
|
| to { background-color: transparent; }
|
| }
|
|
|
| +.cm-readonly-highlight {
|
| + background-color: rgb(255, 255, 120);
|
| +}
|
| +
|
| +.-theme-with-dark-background .cm-readonly-highlight {
|
| + background-color: hsla(133, 100%, 30%, 0.5);
|
| +}
|
| +
|
| .cm-highlight.cm-execution-line {
|
| -webkit-animation: fadeout-execution-line 1s 0s;
|
| }
|
| @@ -378,11 +386,11 @@ div.CodeMirror span.CodeMirror-nonmatchingbracket {
|
| top: -9px;
|
| }
|
|
|
| -.CodeMirror .text-editor-line-with-warning:not(.cm-execution-line) {
|
| +.CodeMirror .text-editor-line-with-warning:not(.cm-execution-line):not(.cm-readonly-highlight) {
|
| background-color: rgba(241, 230, 0, 0.1);
|
| }
|
|
|
| -.CodeMirror .text-editor-line-with-error:not(.cm-execution-line) {
|
| +.CodeMirror .text-editor-line-with-error:not(.cm-execution-line):not(.cm-readonly-highlight) {
|
| background-color: rgba(255, 0, 0, 0.05);
|
| }
|
|
|
|
|