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

Log Message

Web Inspector: Clicking on sortable Table headers should expand vertical borders
https://bugs.webkit.org/show_bug.cgi?id=215140

Reviewed by Devin Rousso.

* UserInterface/Views/Table.css:
(.table > .header .cell:not(:first-child):active::before,):

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (265506 => 265507)


--- trunk/Source/WebInspectorUI/ChangeLog	2020-08-11 17:30:56 UTC (rev 265506)
+++ trunk/Source/WebInspectorUI/ChangeLog	2020-08-11 18:12:31 UTC (rev 265507)
@@ -1,5 +1,15 @@
 2020-08-11  Nikita Vasilyev  <nvasil...@apple.com>
 
+        Web Inspector: Clicking on sortable Table headers should expand vertical borders
+        https://bugs.webkit.org/show_bug.cgi?id=215140
+
+        Reviewed by Devin Rousso.
+
+        * UserInterface/Views/Table.css:
+        (.table > .header .cell:not(:first-child):active::before,):
+
+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>

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/Table.css (265506 => 265507)


--- trunk/Source/WebInspectorUI/UserInterface/Views/Table.css	2020-08-11 17:30:56 UTC (rev 265506)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/Table.css	2020-08-11 18:12:31 UTC (rev 265507)
@@ -166,6 +166,12 @@
     background-color: var(--separator-color);
 }
 
+.table > .header .cell:not(:first-child):active::before,
+.table > .header .cell:active + .cell::before {
+    top: 0;
+    bottom: 0;
+}
+
 body[dir=ltr] .table > .header .cell:not(:first-child)::before {
     left: 0;
 }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to