Changeset 199085 in webkit


Ignore:
Timestamp:
Apr 5, 2016 4:56:48 PM (8 years ago)
Author:
timothy@apple.com
Message:

Web Inspector: Make the Timelines sidebar wider

https://bugs.webkit.org/show_bug.cgi?id=156257
rdar://problem/25564218

Reviewed by Joseph Pecoraro.

  • UserInterface/Views/TimelineOverview.css:

(.timeline-overview): Added. Set define --timeline-sidebar-width.
(.timeline-overview > .navigation-bar.timelines): Use --timeline-sidebar-width.
(.timeline-overview > .tree-outline.timelines): Ditto.
(.timeline-overview > .scroll-container): Ditto.
(.timeline-overview > .timeline-ruler): Ditto.
(.timeline-overview > .graphs-container): Ditto.

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r199082 r199085  
     12016-04-05  Timothy Hatcher  <timothy@apple.com>
     2
     3        Web Inspector: Make the Timelines sidebar wider
     4
     5        https://bugs.webkit.org/show_bug.cgi?id=156257
     6        rdar://problem/25564218
     7
     8        Reviewed by Joseph Pecoraro.
     9
     10        * UserInterface/Views/TimelineOverview.css:
     11        (.timeline-overview): Added. Set define --timeline-sidebar-width.
     12        (.timeline-overview > .navigation-bar.timelines): Use --timeline-sidebar-width.
     13        (.timeline-overview > .tree-outline.timelines): Ditto.
     14        (.timeline-overview > .scroll-container): Ditto.
     15        (.timeline-overview > .timeline-ruler): Ditto.
     16        (.timeline-overview > .graphs-container): Ditto.
     17
    1182016-04-05  Timothy Hatcher  <timothy@apple.com>
    219
  • trunk/Source/WebInspectorUI/UserInterface/Views/TimelineOverview.css

    r198537 r199085  
    2424 */
    2525
     26.timeline-overview {
     27    --timeline-sidebar-width: 197px;
     28}
     29
    2630.timeline-overview > .navigation-bar.timelines {
    2731    justify-content: flex-start;
     
    2933    top: 0;
    3034    left: 0;
    31     width: 185px;
     35    width: var(--timeline-sidebar-width);
    3236    height: 23px;
    3337
     
    6064    top: 23px;
    6165    left: 0;
    62     width: 185px;
     66    width: var(--timeline-sidebar-width);
    6367    z-index: var(--z-index-header);
    6468    background-color: var(--panel-background-color);
     
    115119.timeline-overview > .scroll-container {
    116120    position: absolute;
    117     left: 185px;
     121    left: var(--timeline-sidebar-width);
    118122    right: 0;
    119123    bottom: 0;
     
    146150    position: absolute;
    147151    top: 0;
    148     left: 185px;
     152    left: var(--timeline-sidebar-width);
    149153    bottom: 0;
    150154    right: 0;
     
    179183    position: absolute;
    180184    top: 23px;
    181     left: 185px;
     185    left: var(--timeline-sidebar-width);
    182186    bottom: 0;
    183187    right: 0;
Note: See TracChangeset for help on using the changeset viewer.