Title: [265498] trunk/Source/WebInspectorUI
Revision
265498
Author
nvasil...@apple.com
Date
2020-08-11 08:54:57 -0700 (Tue, 11 Aug 2020)

Log Message

Web Inspector: Dark Mode: Timelines: wrong background colors of even/odd items
https://bugs.webkit.org/show_bug.cgi?id=214565
<rdar://problem/65841762>

Reviewed by Darin Adler.

* UserInterface/Views/TimelineOverview.css:
(.timeline-overview.edit-instruments > .tree-outline.timelines .item:nth-child(even),):
(.timeline-overview:not(.frames) > .graphs-container > .timeline-overview-graph:not(:first-child)):

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (265497 => 265498)


--- trunk/Source/WebInspectorUI/ChangeLog	2020-08-11 15:22:27 UTC (rev 265497)
+++ trunk/Source/WebInspectorUI/ChangeLog	2020-08-11 15:54:57 UTC (rev 265498)
@@ -1,3 +1,15 @@
+2020-08-11  Nikita Vasilyev  <nvasil...@apple.com>
+
+        Web Inspector: Dark Mode: Timelines: wrong background colors of even/odd items
+        https://bugs.webkit.org/show_bug.cgi?id=214565
+        <rdar://problem/65841762>
+
+        Reviewed by Darin Adler.
+
+        * UserInterface/Views/TimelineOverview.css:
+        (.timeline-overview.edit-instruments > .tree-outline.timelines .item:nth-child(even),):
+        (.timeline-overview:not(.frames) > .graphs-container > .timeline-overview-graph:not(:first-child)):
+
 2020-08-06  Nikita Vasilyev  <nvasil...@apple.com>
 
         Web Inspector: Media & Animations timeline shouldn't shift when sorting

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/TimelineOverview.css (265497 => 265498)


--- trunk/Source/WebInspectorUI/UserInterface/Views/TimelineOverview.css	2020-08-11 15:22:27 UTC (rev 265497)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/TimelineOverview.css	2020-08-11 15:54:57 UTC (rev 265498)
@@ -107,7 +107,7 @@
 
 .timeline-overview.edit-instruments > .tree-outline.timelines .item:nth-child(even),
 .timeline-overview > .tree-outline.timelines .item:not(.selected):nth-child(even) {
-    background-color: hsla(0, 0%, 0%, 0.03);
+    background-color: hsla(0, 0%, var(--foreground-lightness), 0.03);
     background-clip: padding-box;
 }
 
@@ -211,7 +211,7 @@
 }
 
 .timeline-overview:not(.frames) > .graphs-container > .timeline-overview-graph:not(:first-child) {
-    border-top: 1px solid hsla(0, 0%, 0%, 0.09);
+    border-top: 1px solid hsla(0, 0%, var(--foreground-lightness), 0.09);
 }
 
 .timeline-overview:not(.has-scrollbar) > .scroll-container {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to