Changeset 225595 in webkit


Ignore:
Timestamp:
Dec 6, 2017 2:21:09 PM (6 years ago)
Author:
Matt Baker
Message:

Web Inspector: Details section headers overlap Classes container in the Computed Styles panel
https://bugs.webkit.org/show_bug.cgi?id=180380

Reviewed by Timothy Hatcher.

  • UserInterface/Views/CSSStyleDetailsSidebarPanel.css:

(.sidebar > .panel.details.css-style > .content ~ :matches(.options-container, .class-list-container)):

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r225587 r225595  
     12017-12-06  Matt Baker  <mattbaker@apple.com>
     2
     3        Web Inspector: Details section headers overlap Classes container in the Computed Styles panel
     4        https://bugs.webkit.org/show_bug.cgi?id=180380
     5
     6        Reviewed by Timothy Hatcher.
     7
     8        * UserInterface/Views/CSSStyleDetailsSidebarPanel.css:
     9        (.sidebar > .panel.details.css-style > .content ~ :matches(.options-container, .class-list-container)):
     10
    1112017-12-06  Matt Baker  <mattbaker@apple.com>
    212
  • trunk/Source/WebInspectorUI/UserInterface/Views/GeneralStyleDetailsSidebarPanel.css

    r225547 r225595  
    6868    align-items: center;
    6969    position: absolute;
    70     z-index: 1;
     70    /* Make sure options and class containers are above details section headers, but below popovers. */
     71    z-index: calc(var(--z-index-header) + 1);
    7172    width: 100%;
    7273    border-top: 1px solid var(--border-color);
Note: See TracChangeset for help on using the changeset viewer.