Title: [181675] trunk/Source/WebInspectorUI
Revision
181675
Author
[email protected]
Date
2015-03-17 18:13:14 -0700 (Tue, 17 Mar 2015)

Log Message

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

Patch by Joseph Pecoraro <[email protected]> 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):

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (181674 => 181675)


--- trunk/Source/WebInspectorUI/ChangeLog	2015-03-18 00:41:25 UTC (rev 181674)
+++ trunk/Source/WebInspectorUI/ChangeLog	2015-03-18 01:13:14 UTC (rev 181675)
@@ -1,3 +1,19 @@
+2015-03-17  Joseph Pecoraro  <[email protected]>
+
+        Web Inspector: Debugger Sidebar Icons Misaligned
+        https://bugs.webkit.org/show_bug.cgi?id=142654
+
+        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):
+
 2015-03-17  Tobias Reiss  <[email protected]>
 
         Web Inspector: Removal of multiline completion hint broken in Details sidebar

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/DebuggerSidebarPanel.css (181674 => 181675)


--- trunk/Source/WebInspectorUI/UserInterface/Views/DebuggerSidebarPanel.css	2015-03-18 00:41:25 UTC (rev 181674)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/DebuggerSidebarPanel.css	2015-03-18 01:13:14 UTC (rev 181675)
@@ -37,3 +37,7 @@
     left: 0;
     right: 0;
 }
+
+.sidebar > .panel.navigation.debugger .details-section {
+    font-size: 11px;
+}
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to