Title: [186042] trunk/Source/WebInspectorUI
Revision
186042
Author
nvasil...@apple.com
Date
2015-06-28 00:43:13 -0700 (Sun, 28 Jun 2015)

Log Message

Web Inspector: Wrong border color of console messages when filters are enabled
https://bugs.webkit.org/show_bug.cgi?id=146392

Reviewed by Timothy Hatcher.

* UserInterface/Views/LogContentView.css:
(.console-error-level:not(.filtered-out, .filtered-out-by-search) + .console-item):
(.console-warning-level:not(.filtered-out, .filtered-out-by-search) + .console-item):

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (186041 => 186042)


--- trunk/Source/WebInspectorUI/ChangeLog	2015-06-28 03:47:00 UTC (rev 186041)
+++ trunk/Source/WebInspectorUI/ChangeLog	2015-06-28 07:43:13 UTC (rev 186042)
@@ -1,3 +1,14 @@
+2015-06-28  Nikita Vasilyev  <nvasil...@apple.com>
+
+        Web Inspector: Wrong border color of console messages when filters are enabled
+        https://bugs.webkit.org/show_bug.cgi?id=146392
+
+        Reviewed by Timothy Hatcher.
+
+        * UserInterface/Views/LogContentView.css:
+        (.console-error-level:not(.filtered-out, .filtered-out-by-search) + .console-item):
+        (.console-warning-level:not(.filtered-out, .filtered-out-by-search) + .console-item):
+
 2015-06-25  Matt Baker  <mattba...@apple.com>
 
         Web Inspector: Wrong timeline selected after switching from Rendering Frames to Timelines

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/LogContentView.css (186041 => 186042)


--- trunk/Source/WebInspectorUI/UserInterface/Views/LogContentView.css	2015-06-28 03:47:00 UTC (rev 186041)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/LogContentView.css	2015-06-28 07:43:13 UTC (rev 186042)
@@ -50,11 +50,13 @@
     border-top: 1px solid rgb(240, 240, 240);
 }
 
-.console-error-level + .console-item {
+.console-error-level:not(.filtered-out, .filtered-out-by-search),
+.console-error-level:not(.filtered-out, .filtered-out-by-search) + .console-item {
     border-top-color: hsl(0, 100%, 92%);
 }
 
-.console-warning-level + .console-item {
+.console-warning-level:not(.filtered-out, .filtered-out-by-search),
+.console-warning-level:not(.filtered-out, .filtered-out-by-search) + .console-item {
     border-top-color: hsl(40, 100%, 90%);
 }
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to