Title: [165039] trunk/Source/WebInspectorUI
Revision
165039
Author
commit-qu...@webkit.org
Date
2014-03-03 22:52:56 -0800 (Mon, 03 Mar 2014)

Log Message

Web Inspector: Match color of regex in source view with a popover
https://bugs.webkit.org/show_bug.cgi?id=129645

Patch by Jonathan Wells <jonowe...@apple.com> on 2014-03-03
Reviewed by Timothy Hatcher.

* UserInterface/Views/LogContentView.css:
(.console-formatted-string):
(.console-formatted-regexp):

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (165038 => 165039)


--- trunk/Source/WebInspectorUI/ChangeLog	2014-03-04 06:38:09 UTC (rev 165038)
+++ trunk/Source/WebInspectorUI/ChangeLog	2014-03-04 06:52:56 UTC (rev 165039)
@@ -1,5 +1,16 @@
 2014-03-03  Jonathan Wells  <jonowe...@apple.com>
 
+        Web Inspector: Match color of regex in source view with a popover
+        https://bugs.webkit.org/show_bug.cgi?id=129645
+
+        Reviewed by Timothy Hatcher.
+
+        * UserInterface/Views/LogContentView.css:
+        (.console-formatted-string):
+        (.console-formatted-regexp):
+
+2014-03-03  Jonathan Wells  <jonowe...@apple.com>
+
         Web Inspector: Better Debugger popovers for RegExp values
         https://bugs.webkit.org/show_bug.cgi?id=129633
 

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/LogContentView.css (165038 => 165039)


--- trunk/Source/WebInspectorUI/UserInterface/Views/LogContentView.css	2014-03-04 06:38:09 UTC (rev 165038)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/LogContentView.css	2014-03-04 06:52:56 UTC (rev 165039)
@@ -267,10 +267,17 @@
 }
 
 .console-formatted-string, .console-formatted-regexp {
-    color: rgb(196, 26, 22);
     white-space: pre;
 }
 
+.console-formatted-string {
+    color: rgb(196, 26, 22);
+}
+
+.console-formatted-regexp {
+    color: rgb(255, 88, 0);
+}
+
 .console-formatted-null, .console-formatted-undefined {
     color: rgb(128, 128, 128);
 }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to