Title: [261362] trunk/Source/WebInspectorUI
Revision
261362
Author
nvasil...@apple.com
Date
2020-05-07 18:04:02 -0700 (Thu, 07 May 2020)

Log Message

Web Inspector: Timelines: visible outline after clicking the close X button
https://bugs.webkit.org/show_bug.cgi?id=211604
<rdar://problem/62998871>

Reviewed by Timothy Hatcher.

Never display focus outline for TreeOutline items.

* UserInterface/Views/TreeOutline.css:
(.tree-outline .item):
(body:not(.window-inactive, .window-docked-inactive) .tree-outline:focus-within .item.selected):

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (261361 => 261362)


--- trunk/Source/WebInspectorUI/ChangeLog	2020-05-08 00:39:24 UTC (rev 261361)
+++ trunk/Source/WebInspectorUI/ChangeLog	2020-05-08 01:04:02 UTC (rev 261362)
@@ -1,3 +1,17 @@
+2020-05-07  Nikita Vasilyev  <nvasil...@apple.com>
+
+        Web Inspector: Timelines: visible outline after clicking the close X button
+        https://bugs.webkit.org/show_bug.cgi?id=211604
+        <rdar://problem/62998871>
+
+        Reviewed by Timothy Hatcher.
+
+        Never display focus outline for TreeOutline items.
+
+        * UserInterface/Views/TreeOutline.css:
+        (.tree-outline .item):
+        (body:not(.window-inactive, .window-docked-inactive) .tree-outline:focus-within .item.selected):
+
 2020-05-07  Devin Rousso  <drou...@apple.com>
 
         Web Inspector: Uncaught Exception: TypeError: null is not an object (evaluating 'mimeType.endsWith')

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/TreeOutline.css (261361 => 261362)


--- trunk/Source/WebInspectorUI/UserInterface/Views/TreeOutline.css	2020-05-08 00:39:24 UTC (rev 261361)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/TreeOutline.css	2020-05-08 01:04:02 UTC (rev 261362)
@@ -52,6 +52,7 @@
     border-top: 1px solid transparent;
 
     white-space: nowrap;
+    outline: none;
 }
 
 .tree-outline.compact .item {
@@ -178,7 +179,6 @@
 body:not(.window-inactive, .window-docked-inactive) .tree-outline:focus-within .item.selected {
     color: var(--selected-foreground-color);
     background-color: var(--selected-background-color);
-    outline: none;
 }
 
 .tree-outline .item .titles {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to