Changeset 248490 in webkit


Ignore:
Timestamp:
Aug 9, 2019 4:55:55 PM (5 years ago)
Author:
Devin Rousso
Message:

Web Inspector: REGRESSION(r248480): Sources: the Pause Reason section takes the entire vertical space when there are few breakpoints/resources
https://bugs.webkit.org/show_bug.cgi?id=200597

Reviewed by Joseph Pecoraro.

  • UserInterface/Views/SourcesNavigationSidebarPanel.css:

(@media (min-height: 650px) .sidebar > .panel.navigation.sources > .content > .pause-reason-container): Deleted.
Don't flex-grow or flex-shrink the Pause Reason section so it always displays its full
content. The rest of the sections can grow/shrink as needed.

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r248485 r248490  
     12019-08-09  Devin Rousso  <drousso@apple.com>
     2
     3        Web Inspector: REGRESSION(r248480): Sources: the Pause Reason section takes the entire vertical space when there are few breakpoints/resources
     4        https://bugs.webkit.org/show_bug.cgi?id=200597
     5
     6        Reviewed by Joseph Pecoraro.
     7
     8        * UserInterface/Views/SourcesNavigationSidebarPanel.css:
     9        (@media (min-height: 650px) .sidebar > .panel.navigation.sources > .content > .pause-reason-container): Deleted.
     10        Don't `flex-grow` or `flex-shrink` the Pause Reason section so it always displays its full
     11        content. The rest of the sections can grow/shrink as needed.
     12
    1132019-08-09  Devin Rousso  <drousso@apple.com>
    214
  • trunk/Source/WebInspectorUI/UserInterface/Views/SourcesNavigationSidebarPanel.css

    r248480 r248490  
    112112    }
    113113
    114     .sidebar > .panel.navigation.sources > .content > .pause-reason-container {
    115         flex-grow: 4;
    116         flex-shrink: 1;
    117     }
    118 
    119114    .sidebar > .panel.navigation.sources > .content > :matches(.call-stack-container, .breakpoints-container, .resources) {
    120115        height: 100%;
Note: See TracChangeset for help on using the changeset viewer.