Title: [239432] trunk/Source/WebInspectorUI
Revision
239432
Author
[email protected]
Date
2018-12-19 22:39:19 -0800 (Wed, 19 Dec 2018)

Log Message

Web Inspector: "E" icon on debugger dashboard is too close to current function name
https://bugs.webkit.org/show_bug.cgi?id=192915

Reviewed by Matt Baker.

* UserInterface/Views/DebuggerDashboardView.css:
(.dashboard.debugger > .location):
(body[dir=ltr] .dashboard.debugger > .location :matches(.function-icon, .event-listener-icon)):
(body[dir=rtl] .dashboard.debugger > .location :matches(.function-icon, .event-listener-icon)):
(.dashboard.debugger > .location .function-icon): Deleted.
(body[dir=ltr] .dashboard.debugger > .location .function-icon): Deleted.
(body[dir=rtl] .dashboard.debugger > .location .function-icon): Deleted.

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (239431 => 239432)


--- trunk/Source/WebInspectorUI/ChangeLog	2018-12-20 06:24:05 UTC (rev 239431)
+++ trunk/Source/WebInspectorUI/ChangeLog	2018-12-20 06:39:19 UTC (rev 239432)
@@ -1,5 +1,20 @@
 2018-12-19  Nikita Vasilyev  <[email protected]>
 
+        Web Inspector: "E" icon on debugger dashboard is too close to current function name
+        https://bugs.webkit.org/show_bug.cgi?id=192915
+
+        Reviewed by Matt Baker.
+
+        * UserInterface/Views/DebuggerDashboardView.css:
+        (.dashboard.debugger > .location):
+        (body[dir=ltr] .dashboard.debugger > .location :matches(.function-icon, .event-listener-icon)):
+        (body[dir=rtl] .dashboard.debugger > .location :matches(.function-icon, .event-listener-icon)):
+        (.dashboard.debugger > .location .function-icon): Deleted.
+        (body[dir=ltr] .dashboard.debugger > .location .function-icon): Deleted.
+        (body[dir=rtl] .dashboard.debugger > .location .function-icon): Deleted.
+
+2018-12-19  Nikita Vasilyev  <[email protected]>
+
         Web Inspector: Dark Mode: ThreadTreeElement status icon is hard to see when hovered
         https://bugs.webkit.org/show_bug.cgi?id=192097
         <rdar://problem/46318421>

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/DebuggerDashboardView.css (239431 => 239432)


--- trunk/Source/WebInspectorUI/UserInterface/Views/DebuggerDashboardView.css	2018-12-20 06:24:05 UTC (rev 239431)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/DebuggerDashboardView.css	2018-12-20 06:39:19 UTC (rev 239432)
@@ -157,15 +157,15 @@
     height: 16px;
 }
 
-.dashboard.debugger > .location .function-icon {
+.dashboard.debugger > .location {
     --debugger-dashboard-function-icon-margin-end: 3px;
 }
 
-body[dir=ltr] .dashboard.debugger > .location .function-icon {
+body[dir=ltr] .dashboard.debugger > .location :matches(.function-icon, .event-listener-icon) {
     margin-right: var(--debugger-dashboard-function-icon-margin-end);
 }
 
-body[dir=rtl] .dashboard.debugger > .location .function-icon {
+body[dir=rtl] .dashboard.debugger > .location :matches(.function-icon, .event-listener-icon) {
     margin-left: var(--debugger-dashboard-function-icon-margin-end);
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to