Title: [185759] trunk/Source/WebInspectorUI
Revision
185759
Author
[email protected]
Date
2015-06-19 12:07:24 -0700 (Fri, 19 Jun 2015)

Log Message

Web Inspector: Overlapping dashboard views causing lots of layers in source view
https://bugs.webkit.org/show_bug.cgi?id=146153

Patch by Joseph Pecoraro <[email protected]> on 2015-06-19
Reviewed by Darin Adler.

* UserInterface/Views/DashboardContainerView.css:
(.toolbar .dashboard:not(.visible)):
Hide non-visible dashboard views. The !important is used
to override more specific toolbar .dashboard.foo styles.

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (185758 => 185759)


--- trunk/Source/WebInspectorUI/ChangeLog	2015-06-19 18:57:15 UTC (rev 185758)
+++ trunk/Source/WebInspectorUI/ChangeLog	2015-06-19 19:07:24 UTC (rev 185759)
@@ -1,3 +1,15 @@
+2015-06-19  Joseph Pecoraro  <[email protected]>
+
+        Web Inspector: Overlapping dashboard views causing lots of layers in source view
+        https://bugs.webkit.org/show_bug.cgi?id=146153
+
+        Reviewed by Darin Adler.
+
+        * UserInterface/Views/DashboardContainerView.css:
+        (.toolbar .dashboard:not(.visible)):
+        Hide non-visible dashboard views. The !important is used
+        to override more specific toolbar .dashboard.foo styles.
+
 2015-06-19  Devin Rousso  <[email protected]>
 
         Web Inspector: Make rule icon toggle all properties for that selector on and off

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/DashboardContainerView.css (185758 => 185759)


--- trunk/Source/WebInspectorUI/UserInterface/Views/DashboardContainerView.css	2015-06-19 18:57:15 UTC (rev 185758)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/DashboardContainerView.css	2015-06-19 19:07:24 UTC (rev 185759)
@@ -73,7 +73,7 @@
 }
 
 .toolbar .dashboard:not(.visible) {
-    opacity: 0;
+    display: none !important;
 }
 
 .toolbar .dashboard.slide-out-up {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to