Changeset 183455 in webkit


Ignore:
Timestamp:
Apr 27, 2015, 10:13:45 PM (10 years ago)
Author:
commit-queue@webkit.org
Message:

Web Inspector: Cannot scroll Timeline Overview horizontally, scrollbar cannot be interacted with
https://bugs.webkit.org/show_bug.cgi?id=144302

Patch by Joseph Pecoraro <Joseph Pecoraro> on 2015-04-27
Reviewed by Timothy Hatcher.

  • UserInterface/Views/TimelineOverview.css:

(.timeline-overview > .scroll-container):
Increase the z-index of the scroll container over anything in the
overview so that it can be interacted with.

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r183425 r183455  
     12015-04-27  Joseph Pecoraro  <pecoraro@apple.com>
     2
     3        Web Inspector: Cannot scroll Timeline Overview horizontally, scrollbar cannot be interacted with
     4        https://bugs.webkit.org/show_bug.cgi?id=144302
     5
     6        Reviewed by Timothy Hatcher.
     7
     8        * UserInterface/Views/TimelineOverview.css:
     9        (.timeline-overview > .scroll-container):
     10        Increase the z-index of the scroll container over anything in the
     11        overview so that it can be interacted with.
     12
    1132015-04-27  Timothy Hatcher  <timothy@apple.com>
    214
  • trunk/Source/WebInspectorUI/UserInterface/Views/TimelineOverview.css

    r164543 r183455  
    3333    overflow-y: hidden;
    3434    opacity: 0;
     35
     36 /* Allows the horizontal scroll bar to be interacted with. */
     37    z-index: 1000;
    3538}
    3639
Note: See TracChangeset for help on using the changeset viewer.