Title: [171716] trunk/Source/WebInspectorUI
Revision
171716
Author
timo...@apple.com
Date
2014-07-28 17:58:10 -0700 (Mon, 28 Jul 2014)

Log Message

Web Inspector: Unexpected dark border on selected but window inactive timeline
https://bugs.webkit.org/show_bug.cgi?id=135360

Update the border-top colors for the item adjacent to the selected item.

Reviewed by Joseph Pecoraro.

* UserInterface/Views/TimelineSidebarPanel.css:
(.sidebar > .panel.navigation.timeline > .timelines-content li.item.selected + li.item):
(.sidebar > .panel.navigation.timeline > .timelines-content :focus li.item.selected + li.item):
(body.mac-platform.legacy .sidebar > .panel.navigation.timeline > .timelines-content li.item.selected + li.item):
(body.mac-platform.legacy .sidebar > .panel.navigation.timeline > .timelines-content :focus li.item.selected + li.item):

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (171715 => 171716)


--- trunk/Source/WebInspectorUI/ChangeLog	2014-07-29 00:56:18 UTC (rev 171715)
+++ trunk/Source/WebInspectorUI/ChangeLog	2014-07-29 00:58:10 UTC (rev 171716)
@@ -1,3 +1,18 @@
+2014-07-28  Timothy Hatcher  <timo...@apple.com>
+
+        Web Inspector: Unexpected dark border on selected but window inactive timeline
+        https://bugs.webkit.org/show_bug.cgi?id=135360
+
+        Update the border-top colors for the item adjacent to the selected item.
+
+        Reviewed by Joseph Pecoraro.
+
+        * UserInterface/Views/TimelineSidebarPanel.css:
+        (.sidebar > .panel.navigation.timeline > .timelines-content li.item.selected + li.item):
+        (.sidebar > .panel.navigation.timeline > .timelines-content :focus li.item.selected + li.item):
+        (body.mac-platform.legacy .sidebar > .panel.navigation.timeline > .timelines-content li.item.selected + li.item):
+        (body.mac-platform.legacy .sidebar > .panel.navigation.timeline > .timelines-content :focus li.item.selected + li.item):
+
 2014-07-28  Joseph Pecoraro  <pecor...@apple.com>
 
         Web Inspector: Disable Copy Row in Timelines DataGrids, it does not currently provide value

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/TimelineSidebarPanel.css (171715 => 171716)


--- trunk/Source/WebInspectorUI/UserInterface/Views/TimelineSidebarPanel.css	2014-07-29 00:56:18 UTC (rev 171715)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/TimelineSidebarPanel.css	2014-07-29 00:58:10 UTC (rev 171716)
@@ -166,10 +166,22 @@
 }
 
 .sidebar > .panel.navigation.timeline > .timelines-content li.item.selected + li.item {
+    border-top-color: rgb(185, 184, 185);
+}
+
+body.window-inactive .sidebar > .panel.navigation.timeline > .timelines-content li.item.selected + li.item {
+    border-top-color: rgb(212, 212, 212);
+}
+
+.sidebar > .panel.navigation.timeline > .timelines-content :focus li.item.selected + li.item {
+    border-top-color: rgb(0, 128, 252);
+}
+
+body.mac-platform.legacy .sidebar > .panel.navigation.timeline > .timelines-content li.item.selected + li.item {
     border-top-color: rgb(120, 139, 168);
 }
 
-.sidebar > .panel.navigation.timeline > .timelines-content :focus li.item.selected + li.item {
+body.mac-platform.legacy .sidebar > .panel.navigation.timeline > .timelines-content :focus li.item.selected + li.item {
     border-top-color: rgb(107, 130, 164);
 }
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to