Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(538)

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui/inspectorSyntaxHighlight.css

Issue 2334073002: DevTools: Show a red background under unmatched brackets (Closed)
Patch Set: Dark mode Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/devtools/front_end/ui/inspectorSyntaxHighlight.css
diff --git a/third_party/WebKit/Source/devtools/front_end/ui/inspectorSyntaxHighlight.css b/third_party/WebKit/Source/devtools/front_end/ui/inspectorSyntaxHighlight.css
index 546ec66a70c8ebcc9a6d7a012da8a1d12325d515..32748430712e66175ed93baffd9ddee76d1396db 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui/inspectorSyntaxHighlight.css
+++ b/third_party/WebKit/Source/devtools/front_end/ui/inspectorSyntaxHighlight.css
@@ -27,34 +27,34 @@
*/
.cm-js-keyword {color: rgb(170, 13, 145);}
.cm-js-number {color: rgb(28, 0, 207);}
-.cm-js-comment {color: rgb(0, 116, 0);}
-.cm-js-string {color: rgb(196, 26, 22);}
-.cm-js-string-2 {color: rgb(196, 26, 22);}
+.cm-js-comment {color: rgb(0, 116, 0) !important;}
+.cm-js-string {color: rgb(196, 26, 22) !important;}
+.cm-js-string-2 {color: rgb(196, 26, 22) !important;}
.cm-js-atom {color: rgb(170, 13, 145);}
.cm-css-keyword { color: rgb(7, 144, 154);}
.cm-css-number {color: rgb(50, 0, 255);}
-.cm-css-comment {color: rgb(0, 116, 0);}
+.cm-css-comment {color: rgb(0, 116, 0) !important;}
.cm-css-def {color: rgb(200, 0, 0);}
.cm-css-meta {color: rgb(200, 0, 0);}
.cm-css-atom {color: rgb(7, 144, 154);}
-.cm-css-string {color: rgb(7, 144, 154);}
-.cm-css-string-2 {color: rgb(7, 144, 154);}
-.cm-css-link {color: rgb(7, 144, 154);}
+.cm-css-string {color: rgb(7, 144, 154) !important;}
+.cm-css-string-2 {color: rgb(7, 144, 154) !important;}
+.cm-css-link {color: rgb(7, 144, 154) !important;}
.cm-css-variable {color: rgb(200, 0, 0);}
.cm-css-variable-2 {color: rgb(0, 0, 128);}
.cm-css-property, .webkit-css-property {color: rgb(200, 0, 0);}
.cm-xml-meta {color: rgb(192, 192, 192);}
-.cm-xml-comment {color: rgb(35, 110, 37);}
-.cm-xml-string {color: rgb(26, 26, 166);}
+.cm-xml-comment {color: rgb(35, 110, 37) !important;}
+.cm-xml-string {color: rgb(26, 26, 166) !important;}
.cm-xml-tag {color: rgb(136, 18, 128);}
.cm-xml-attribute {color: rgb(153, 69, 0);}
-.cm-xml-link {color: #00e;}
+.cm-xml-link {color: #00e !important;}
.webkit-html-comment {
/* Keep this in sync with view-source.css (.webkit-html-comment) */
- color: rgb(35, 110, 37);
+ color: rgb(35, 110, 37) !important;
}
.webkit-html-tag {

Powered by Google App Engine
This is Rietveld 408576698