Changeset 243781 in webkit
- Timestamp:
- Apr 2, 2019, 5:44:42 PM (7 years ago)
- Location:
- trunk/Source/WebInspectorUI
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
UserInterface/Views/DOMTreeContentView.css (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebInspectorUI/ChangeLog
r243727 r243781 1 2019-04-02 Devin Rousso <drousso@apple.com> 2 3 Web Inspector: Elements: DOM breakpoint icon should stroke when hovering selection area 4 https://bugs.webkit.org/show_bug.cgi?id=196516 5 <rdar://problem/49540494> 6 7 Reviewed by Timothy Hatcher. 8 9 * UserInterface/Views/DOMTreeContentView.css: 10 (body:not(.window-inactive) .content-view.dom-tree .tree-outline.dom:focus li:matches(.selected, .hovered) .status-image.breakpoint,): Added. 11 (body:not(.window-inactive) .content-view.dom-tree .tree-outline.dom:focus li:matches(.selected, .hovered) .status-image.breakpoint.subtree): Added. 12 (body:not(.window-inactive) .content-view.dom-tree .tree-outline.dom:focus li:matches(.selected, :hover) .status-image.breakpoint): Deleted. 13 (body:not(.window-inactive) .content-view.dom-tree .tree-outline.dom:focus li:matches(.selected, :hover) .status-image.breakpoint.subtree): Deleted. 14 1 15 2019-04-01 Devin Rousso <drousso@apple.com> 2 16 -
trunk/Source/WebInspectorUI/UserInterface/Views/DOMTreeContentView.css
r242768 r243781 59 59 } 60 60 61 body:not(.window-inactive) .content-view.dom-tree .tree-outline.dom:focus li:matches(.selected, :hover) .status-image.breakpoint {61 body:not(.window-inactive) .content-view.dom-tree .tree-outline.dom:focus li:matches(.selected, .hovered) .status-image.breakpoint { 62 62 stroke: var(--selected-foreground-color); 63 63 } … … 76 76 } 77 77 78 body:not(.window-inactive) .content-view.dom-tree .tree-outline.dom:focus li:matches(.selected, :hover) .status-image.breakpoint.subtree {78 body:not(.window-inactive) .content-view.dom-tree .tree-outline.dom:focus li:matches(.selected, .hovered) .status-image.breakpoint.subtree { 79 79 stroke: var(--selected-foreground-color); 80 80 }
Note:
See TracChangeset
for help on using the changeset viewer.