Title: [172285] trunk/Source/WebInspectorUI
Revision
172285
Author
[email protected]
Date
2014-08-07 15:14:44 -0700 (Thu, 07 Aug 2014)

Log Message

Web Inspector: Dashboard contents shift when window changes active state
https://bugs.webkit.org/show_bug.cgi?id=135724

Patch by Joseph Pecoraro <[email protected]> on 2014-08-07
Reviewed by Timothy Hatcher.

The container was getting a 1px border when inactive and none when active.
Give it a transparent border when active so contents don't change size.

* UserInterface/Views/DashboardContainerView.css:
(.toolbar .dashboard-container):

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (172284 => 172285)


--- trunk/Source/WebInspectorUI/ChangeLog	2014-08-07 22:11:50 UTC (rev 172284)
+++ trunk/Source/WebInspectorUI/ChangeLog	2014-08-07 22:14:44 UTC (rev 172285)
@@ -1,3 +1,16 @@
+2014-08-07  Joseph Pecoraro  <[email protected]>
+
+        Web Inspector: Dashboard contents shift when window changes active state
+        https://bugs.webkit.org/show_bug.cgi?id=135724
+
+        Reviewed by Timothy Hatcher.
+
+        The container was getting a 1px border when inactive and none when active.
+        Give it a transparent border when active so contents don't change size.
+
+        * UserInterface/Views/DashboardContainerView.css:
+        (.toolbar .dashboard-container):
+
 2014-08-07  Timothy Hatcher  <[email protected]>
 
         Fix reference to missing CloseTimeline.svg image.

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/DashboardContainerView.css (172284 => 172285)


--- trunk/Source/WebInspectorUI/UserInterface/Views/DashboardContainerView.css	2014-08-07 22:11:50 UTC (rev 172284)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/DashboardContainerView.css	2014-08-07 22:14:44 UTC (rev 172285)
@@ -31,6 +31,7 @@
     border-radius: 4px;
     background-color: rgb(252, 252, 252);
 
+    border: 1px solid transparent;
     box-shadow: rgba(0, 0, 0, 0.15) 0 1px 0, inset white 0 1px 0;
 
     margin: 4px 10px;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to