Title: [184748] trunk/Source/WebInspectorUI
Revision
184748
Author
nvasil...@apple.com
Date
2015-05-21 19:54:44 -0700 (Thu, 21 May 2015)

Log Message

Web Inspector: Dashboard debugger information can be clipped
https://bugs.webkit.org/show_bug.cgi?id=144209

Reviewed by Timothy Hatcher.

* UserInterface/Views/DashboardContainerView.css:
(.toolbar .dashboard-container):
Make dashboard flexible by using vw (viewport width units).

* UserInterface/Views/DefaultDashboardView.css:
(.toolbar .dashboard.default):
Center default dashboard icons in the middle, don't spread them along the dashboard.

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (184747 => 184748)


--- trunk/Source/WebInspectorUI/ChangeLog	2015-05-22 02:39:25 UTC (rev 184747)
+++ trunk/Source/WebInspectorUI/ChangeLog	2015-05-22 02:54:44 UTC (rev 184748)
@@ -1,3 +1,18 @@
+2015-05-21  Nikita Vasilyev  <nvasil...@apple.com>
+
+        Web Inspector: Dashboard debugger information can be clipped
+        https://bugs.webkit.org/show_bug.cgi?id=144209
+
+        Reviewed by Timothy Hatcher.
+
+        * UserInterface/Views/DashboardContainerView.css:
+        (.toolbar .dashboard-container):
+        Make dashboard flexible by using vw (viewport width units).
+
+        * UserInterface/Views/DefaultDashboardView.css:
+        (.toolbar .dashboard.default):
+        Center default dashboard icons in the middle, don't spread them along the dashboard.
+
 2015-05-21  Joseph Pecoraro  <pecor...@apple.com>
 
         Web Inspector: Improve the UI of the type profiler popover

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/DashboardContainerView.css (184747 => 184748)


--- trunk/Source/WebInspectorUI/UserInterface/Views/DashboardContainerView.css	2015-05-22 02:39:25 UTC (rev 184747)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/DashboardContainerView.css	2015-05-22 02:54:44 UTC (rev 184748)
@@ -26,7 +26,7 @@
 .toolbar .dashboard-container {
     position: relative;
 
-    width: 225px;
+    width: 36vw;
 
     border-radius: 4px;
     background-color: rgb(252, 252, 252);

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/DefaultDashboardView.css (184747 => 184748)


--- trunk/Source/WebInspectorUI/UserInterface/Views/DefaultDashboardView.css	2015-05-22 02:39:25 UTC (rev 184747)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/DefaultDashboardView.css	2015-05-22 02:54:44 UTC (rev 184748)
@@ -34,7 +34,7 @@
 .toolbar .dashboard.default {
     display: flex;
     flex-flow: row nowrap;
-    justify-content: space-between;
+    justify-content: center;
 }
 
 .toolbar .dashboard.default > .item {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to