Title: [202335] trunk/Source/WebInspectorUI
- Revision
- 202335
- Author
- [email protected]
- Date
- 2016-06-22 11:10:45 -0700 (Wed, 22 Jun 2016)
Log Message
Web Inspector: Simplify CSS rule for ContentBrowser navigation bar items
https://bugs.webkit.org/show_bug.cgi?id=159000
Reviewed by Timothy Hatcher.
* UserInterface/Views/ContentBrowser.css:
(.content-browser > .navigation-bar > .item):
Both these values result in 28px, but `100%` is simplier.
Modified Paths
Diff
Modified: trunk/Source/WebInspectorUI/ChangeLog (202334 => 202335)
--- trunk/Source/WebInspectorUI/ChangeLog 2016-06-22 17:50:15 UTC (rev 202334)
+++ trunk/Source/WebInspectorUI/ChangeLog 2016-06-22 18:10:45 UTC (rev 202335)
@@ -1,3 +1,14 @@
+2016-06-22 Nikita Vasilyev <[email protected]>
+
+ Web Inspector: Simplify CSS rule for ContentBrowser navigation bar items
+ https://bugs.webkit.org/show_bug.cgi?id=159000
+
+ Reviewed by Timothy Hatcher.
+
+ * UserInterface/Views/ContentBrowser.css:
+ (.content-browser > .navigation-bar > .item):
+ Both these values result in 28px, but `100%` is simplier.
+
2016-06-21 Nikita Vasilyev <[email protected]>
REGRESSION(r201177): Web Inspector: ContentBrowser navigation bar should fit on a single line
Modified: trunk/Source/WebInspectorUI/UserInterface/Views/ContentBrowser.css (202334 => 202335)
--- trunk/Source/WebInspectorUI/UserInterface/Views/ContentBrowser.css 2016-06-22 17:50:15 UTC (rev 202334)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/ContentBrowser.css 2016-06-22 18:10:45 UTC (rev 202335)
@@ -34,5 +34,5 @@
}
.content-browser > .navigation-bar > .item {
- height: calc(var(--navigation-bar-height) - 1px);
+ height: 100%;
}
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes