Title: [202294] trunk/Source/WebInspectorUI
Revision
202294
Author
nvasil...@apple.com
Date
2016-06-21 14:11:21 -0700 (Tue, 21 Jun 2016)

Log Message

REGRESSION(r201177): Web Inspector: ContentBrowser navigation bar should fit on a single line
https://bugs.webkit.org/show_bug.cgi?id=158700
<rdar://problem/26772058>

Reviewed by Joseph Pecoraro.

* UserInterface/Views/ContentBrowser.css:
(.content-browser > .navigation-bar > .item):
Set the height to 28px, as it was before r201177.
Make it one pixel shorter than the navigation bar for better vertical alignment.

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (202293 => 202294)


--- trunk/Source/WebInspectorUI/ChangeLog	2016-06-21 20:58:27 UTC (rev 202293)
+++ trunk/Source/WebInspectorUI/ChangeLog	2016-06-21 21:11:21 UTC (rev 202294)
@@ -1,3 +1,16 @@
+2016-06-21  Nikita Vasilyev  <nvasil...@apple.com>
+
+        REGRESSION(r201177): Web Inspector: ContentBrowser navigation bar should fit on a single line
+        https://bugs.webkit.org/show_bug.cgi?id=158700
+        <rdar://problem/26772058>
+
+        Reviewed by Joseph Pecoraro.
+
+        * UserInterface/Views/ContentBrowser.css:
+        (.content-browser > .navigation-bar > .item):
+        Set the height to 28px, as it was before r201177.
+        Make it one pixel shorter than the navigation bar for better vertical alignment.
+
 2016-06-20  Joseph Pecoraro  <pecor...@apple.com>
 
         Web Inspector: UncaughtExceptionReporter should handle null event.error

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/ContentBrowser.css (202293 => 202294)


--- trunk/Source/WebInspectorUI/UserInterface/Views/ContentBrowser.css	2016-06-21 20:58:27 UTC (rev 202293)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/ContentBrowser.css	2016-06-21 21:11:21 UTC (rev 202294)
@@ -32,3 +32,7 @@
     display: flex;
     flex: 1;
 }
+
+.content-browser > .navigation-bar > .item {
+    height: calc(var(--navigation-bar-height) - 1px);
+}
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to