Title: [197242] trunk/Source/WebInspectorUI
Revision
197242
Author
[email protected]
Date
2016-02-26 23:17:53 -0800 (Fri, 26 Feb 2016)

Log Message

REGRESSION (r196741): Web Inspector: Bottom section of Layers sidebar is 1px shorter than the console prompt
https://bugs.webkit.org/show_bug.cgi?id=154773
<rdar://problem/24873345>

Reviewed by Timothy Hatcher.

* UserInterface/Views/LayerTreeDetailsSidebarPanel.css:
(.sidebar > .panel.details.layer-tree > .content):
(.panel.details.layer-tree .bottom-bar):

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (197241 => 197242)


--- trunk/Source/WebInspectorUI/ChangeLog	2016-02-27 06:19:08 UTC (rev 197241)
+++ trunk/Source/WebInspectorUI/ChangeLog	2016-02-27 07:17:53 UTC (rev 197242)
@@ -1,3 +1,15 @@
+2016-02-26  Nikita Vasilyev  <[email protected]>
+
+        REGRESSION (r196741): Web Inspector: Bottom section of Layers sidebar is 1px shorter than the console prompt
+        https://bugs.webkit.org/show_bug.cgi?id=154773
+        <rdar://problem/24873345>
+
+        Reviewed by Timothy Hatcher.
+
+        * UserInterface/Views/LayerTreeDetailsSidebarPanel.css:
+        (.sidebar > .panel.details.layer-tree > .content):
+        (.panel.details.layer-tree .bottom-bar):
+
 2016-02-26  Devin Rousso  <[email protected]>
 
         Web Inspector: Custom transition bezier curve editor preview should loop when not editing curve

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/LayerTreeDetailsSidebarPanel.css (197241 => 197242)


--- trunk/Source/WebInspectorUI/UserInterface/Views/LayerTreeDetailsSidebarPanel.css	2016-02-27 06:19:08 UTC (rev 197241)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/LayerTreeDetailsSidebarPanel.css	2016-02-27 07:17:53 UTC (rev 197242)
@@ -24,7 +24,7 @@
  */
 
 .sidebar > .panel.details.layer-tree > .content {
-    bottom: 28px;
+    bottom: var(--console-prompt-min-height);
 }
 
 .panel.details.layer-tree .data-grid {
@@ -57,6 +57,7 @@
     position: absolute;
     display: flex;
     bottom: 0;
+    height: var(--console-prompt-min-height);
     width: 100%;
     border-top: 1px solid var(--border-color);
     background-color: white;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to