Title: [187404] trunk/Source/WebInspectorUI
- Revision
- 187404
- Author
- [email protected]
- Date
- 2015-07-25 23:23:10 -0700 (Sat, 25 Jul 2015)
Log Message
Web Inspector: Fix color declaration for not-executed comments
https://bugs.webkit.org/show_bug.cgi?id=147305
Reviewed by Timothy Hatcher.
* UserInterface/Views/SyntaxHighlightingDefaultTheme.css:
(.cm-s-default .basic-block-has-not-executed.cm-comment):
This was an RGB color mispelled as HSL. Replace "hsl" with "rgb"
and convert it to HSL.
Modified Paths
Diff
Modified: trunk/Source/WebInspectorUI/ChangeLog (187403 => 187404)
--- trunk/Source/WebInspectorUI/ChangeLog 2015-07-26 06:19:48 UTC (rev 187403)
+++ trunk/Source/WebInspectorUI/ChangeLog 2015-07-26 06:23:10 UTC (rev 187404)
@@ -1,5 +1,17 @@
2015-07-25 Nikita Vasilyev <[email protected]>
+ Web Inspector: Fix color declaration for not-executed comments
+ https://bugs.webkit.org/show_bug.cgi?id=147305
+
+ Reviewed by Timothy Hatcher.
+
+ * UserInterface/Views/SyntaxHighlightingDefaultTheme.css:
+ (.cm-s-default .basic-block-has-not-executed.cm-comment):
+ This was an RGB color mispelled as HSL. Replace "hsl" with "rgb"
+ and convert it to HSL.
+
+2015-07-25 Nikita Vasilyev <[email protected]>
+
Web Inspector: Start using Node.prototype.replaceWith
https://bugs.webkit.org/show_bug.cgi?id=147303
Modified: trunk/Source/WebInspectorUI/UserInterface/Views/SyntaxHighlightingDefaultTheme.css (187403 => 187404)
--- trunk/Source/WebInspectorUI/UserInterface/Views/SyntaxHighlightingDefaultTheme.css 2015-07-26 06:19:48 UTC (rev 187403)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/SyntaxHighlightingDefaultTheme.css 2015-07-26 06:23:10 UTC (rev 187404)
@@ -101,7 +101,7 @@
}
.cm-s-default .basic-block-has-not-executed.cm-comment {
- color: hsl(143, 191, 143);
+ color: hsl(119, 27%, 65%);
}
.cm-s-default .basic-block-has-not-executed:matches(.cm-tag, .cm-bracket, .cm-atom, .cm-keyword, .cm-m-_javascript_.cm-builtin),
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes