Changeset 246686 in webkit


Ignore:
Timestamp:
Jun 21, 2019 11:21:17 AM (5 years ago)
Author:
Matt Baker
Message:

Web Inspector: remove unused DataGrid style .force-focus
https://bugs.webkit.org/show_bug.cgi?id=199112
<rdar://problem/51993412>

Reviewed by Timothy Hatcher.

  • UserInterface/Views/HeapAllocationsTimelineView.css:

(.timeline-view.heap-allocations > .data-grid:not(:focus) tr.selected.invalid):
(.timeline-view.heap-allocations > .data-grid:not(:focus, .force-focus) tr.selected.invalid): Deleted.

  • UserInterface/Views/ResourceTreeElement.css:

(.item.resource.resource-type-websocket:not(.selected) .status .ready-state.open,):
(.item.resource.resource-type-websocket:not(.selected) .status .ready-state.connecting,):
Missed in https://bugs.webkit.org/show_bug.cgi?id=190480.

Location:
trunk/Source/WebInspectorUI
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r246684 r246686  
     12019-06-21  Matt Baker  <mattbaker@apple.com>
     2
     3        Web Inspector: remove unused DataGrid style .force-focus
     4        https://bugs.webkit.org/show_bug.cgi?id=199112
     5        <rdar://problem/51993412>
     6
     7        Reviewed by Timothy Hatcher.
     8
     9        * UserInterface/Views/HeapAllocationsTimelineView.css:
     10        (.timeline-view.heap-allocations > .data-grid:not(:focus) tr.selected.invalid):
     11        (.timeline-view.heap-allocations > .data-grid:not(:focus, .force-focus) tr.selected.invalid): Deleted.
     12
     13        * UserInterface/Views/ResourceTreeElement.css:
     14        (.item.resource.resource-type-websocket:not(.selected) .status .ready-state.open,):
     15        (.item.resource.resource-type-websocket:not(.selected) .status .ready-state.connecting,):
     16        Missed in https://bugs.webkit.org/show_bug.cgi?id=190480.
     17
    1182019-06-21  Matt Baker  <mattbaker@apple.com>
    219
  • trunk/Source/WebInspectorUI/UserInterface/Views/HeapAllocationsTimelineView.css

    r202383 r246686  
    4040}
    4141
    42 .timeline-view.heap-allocations > .data-grid:not(:focus, .force-focus) tr.selected.invalid {
     42.timeline-view.heap-allocations > .data-grid:not(:focus) tr.selected.invalid {
    4343    color: gray !important;
    4444}
  • trunk/Source/WebInspectorUI/UserInterface/Views/ResourceTreeElement.css

    r214839 r246686  
    4242
    4343.item.resource.resource-type-websocket:not(.selected) .status .ready-state.open,
    44 .tree-outline:not(:focus, .force-focus) .item.resource.resource-type-websocket.selected .status .ready-state.open,
     44.tree-outline:not(:focus) .item.resource.resource-type-websocket.selected .status .ready-state.open,
    4545body:matches(.window-inactive, .window-docked-inactive) .item.resource.resource-type-websocket.selected .status .ready-state.open {
    4646    background-color: limegreen;
     
    4848
    4949.item.resource.resource-type-websocket:not(.selected) .status .ready-state.connecting,
    50 .tree-outline:not(:focus, .force-focus) .item.resource.resource-type-websocket.selected .status .ready-state.connecting,
     50.tree-outline:not(:focus) .item.resource.resource-type-websocket.selected .status .ready-state.connecting,
    5151body:matches(.window-inactive, .window-docked-inactive) .item.resource.resource-type-websocket.selected .status .ready-state.connecting {
    5252    background-color: yellow;
Note: See TracChangeset for help on using the changeset viewer.