Title: [183905] trunk/Source/WebInspectorUI
Revision
183905
Author
mattba...@apple.com
Date
2015-05-06 19:32:57 -0700 (Wed, 06 May 2015)

Log Message

Web Inspector: The text in the left pane overlaps the "Filter Time Events" field in the Timeline after the Web Inspector is resized
https://bugs.webkit.org/show_bug.cgi?id=144720

Reviewed by Timothy Hatcher.

* UserInterface/Views/FilterBar.css:
(.filter-bar):
(.filter-bar > .navigation-bar):
(.filter-bar > input[type="search"]):
(.filter-bar > .navigation-bar > .item): Deleted.
Filter bar now has opaque background and height updated to the ubiquitous 29px.

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (183904 => 183905)


--- trunk/Source/WebInspectorUI/ChangeLog	2015-05-07 02:09:26 UTC (rev 183904)
+++ trunk/Source/WebInspectorUI/ChangeLog	2015-05-07 02:32:57 UTC (rev 183905)
@@ -1,3 +1,17 @@
+2015-05-06  Matt Baker  <mattba...@apple.com>
+
+        Web Inspector: The text in the left pane overlaps the "Filter Time Events" field in the Timeline after the Web Inspector is resized
+        https://bugs.webkit.org/show_bug.cgi?id=144720
+
+        Reviewed by Timothy Hatcher.
+
+        * UserInterface/Views/FilterBar.css:
+        (.filter-bar):
+        (.filter-bar > .navigation-bar):
+        (.filter-bar > input[type="search"]):
+        (.filter-bar > .navigation-bar > .item): Deleted.
+        Filter bar now has opaque background and height updated to the ubiquitous 29px.
+
 2015-05-06  Joseph Pecoraro  <pecor...@apple.com>
 
         Web Inspector: DOMStorage exception and issue with sessionStorage

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/FilterBar.css (183904 => 183905)


--- trunk/Source/WebInspectorUI/UserInterface/Views/FilterBar.css	2015-05-07 02:09:26 UTC (rev 183904)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/FilterBar.css	2015-05-07 02:32:57 UTC (rev 183905)
@@ -26,12 +26,18 @@
 .filter-bar {
     display: flex;
 
-    height: 26px;
+    height: 29px;
 
     white-space: nowrap;
     overflow: hidden;
+
+    background-color: rgb(242, 242, 242);
 }
 
+.filter-bar > .navigation-bar {
+    margin-top: 1px;
+}
+
 .filter-bar > .navigation-bar > .item {
     padding: 0 0 3px 8px;
 }
@@ -40,7 +46,7 @@
     display: flex;
     flex: 1;
 
-    margin: 1px 6px;
+    margin: 3px 6px 4px;
     padding-top: 0;
 
     outline: none;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to