Changeset 221157 in webkit


Ignore:
Timestamp:
Aug 24, 2017 1:18:15 PM (7 years ago)
Author:
webkit@devinrousso.com
Message:

Web Inspector: Table grid shouldn't show behind empty state
https://bugs.webkit.org/show_bug.cgi?id=175943

Reviewed by Brian Burg.

  • UserInterface/Views/RecordingNavigationSidebarPanel.css:

(.sidebar > .panel.navigation.recording > .content > .tree-outline):
(.sidebar > .panel.navigation.recording > .content > .tree-outline:not(:empty)):
Only apply the background when the TreeOutline has children.

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r221090 r221157  
     12017-08-24  Devin Rousso  <webkit@devinrousso.com>
     2
     3        Web Inspector: Table grid shouldn't show behind empty state
     4        https://bugs.webkit.org/show_bug.cgi?id=175943
     5
     6        Reviewed by Brian Burg.
     7
     8        * UserInterface/Views/RecordingNavigationSidebarPanel.css:
     9        (.sidebar > .panel.navigation.recording > .content > .tree-outline):
     10        (.sidebar > .panel.navigation.recording > .content > .tree-outline:not(:empty)):
     11        Only apply the background when the TreeOutline has children.
     12
    1132017-08-23  Nikita Vasilyev  <nvasilyev@apple.com>
    214
  • trunk/Source/WebInspectorUI/UserInterface/Views/RecordingNavigationSidebarPanel.css

    r220114 r221157  
    3030.sidebar > .panel.navigation.recording > .content > .tree-outline {
    3131    min-height: 100%;
     32}
     33
     34.sidebar > .panel.navigation.recording > .content > .tree-outline:not(:empty) {
    3235    background: var(--transparent-stripe-background-gradient);
    3336}
Note: See TracChangeset for help on using the changeset viewer.