Changeset 181675 in webkit


Ignore:
Timestamp:
Mar 17, 2015, 6:13:14 PM (10 years ago)
Author:
commit-queue@webkit.org
Message:

Web Inspector: Debugger Sidebar Icons Misaligned
https://bugs.webkit.org/show_bug.cgi?id=142654

Patch by Joseph Pecoraro <Joseph Pecoraro> on 2015-03-17
Reviewed by Timothy Hatcher.

The debugger sidebar content was accidentally 1px too small. The
TreeOutline being inside of a .detail-section was getting a smaller
font-size. We should just have the normal font-size for the
debugger navigation sidebar. This matches the Resources sidebar
in the TreeOutline, and icons line up better.

  • UserInterface/Views/DebuggerSidebarPanel.css:

(.sidebar > .panel.navigation.debugger .details-section):

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r181672 r181675  
     12015-03-17  Joseph Pecoraro  <pecoraro@apple.com>
     2
     3        Web Inspector: Debugger Sidebar Icons Misaligned
     4        https://bugs.webkit.org/show_bug.cgi?id=142654
     5
     6        Reviewed by Timothy Hatcher.
     7
     8        The debugger sidebar content was accidentally 1px too small. The
     9        TreeOutline being inside of a .detail-section was getting a smaller
     10        font-size. We should just have the normal font-size for the
     11        debugger navigation sidebar. This matches the Resources sidebar
     12        in the TreeOutline, and icons line up better.
     13
     14        * UserInterface/Views/DebuggerSidebarPanel.css:
     15        (.sidebar > .panel.navigation.debugger .details-section):
     16
    1172015-03-17  Tobias Reiss  <tobi+webkit@basecode.de>
    218
  • trunk/Source/WebInspectorUI/UserInterface/Views/DebuggerSidebarPanel.css

    r171885 r181675  
    3838    right: 0;
    3939}
     40
     41.sidebar > .panel.navigation.debugger .details-section {
     42    font-size: 11px;
     43}
Note: See TracChangeset for help on using the changeset viewer.