Title: [167833] trunk/Source/WebInspectorUI
Revision
167833
Author
[email protected]
Date
2014-04-25 16:43:15 -0700 (Fri, 25 Apr 2014)

Log Message

Web Inspector: DOM Tree debugger popover obscures dashboard
https://bugs.webkit.org/show_bug.cgi?id=132205

Patch by Jonathan Wells <[email protected]> on 2014-04-25
Reviewed by Timothy Hatcher.

* UserInterface/Views/DashboardContainerView.css:
(.toolbar .dashboard.visible): Change z-index to 1. Force stacking context.
* UserInterface/Views/Popover.css:
(.popover): Add z-index: 100.

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (167832 => 167833)


--- trunk/Source/WebInspectorUI/ChangeLog	2014-04-25 23:14:16 UTC (rev 167832)
+++ trunk/Source/WebInspectorUI/ChangeLog	2014-04-25 23:43:15 UTC (rev 167833)
@@ -1,3 +1,15 @@
+2014-04-25  Jonathan Wells  <[email protected]>
+
+        Web Inspector: DOM Tree debugger popover obscures dashboard
+        https://bugs.webkit.org/show_bug.cgi?id=132205
+
+        Reviewed by Timothy Hatcher.
+
+        * UserInterface/Views/DashboardContainerView.css:
+        (.toolbar .dashboard.visible): Change z-index to 1. Force stacking context.
+        * UserInterface/Views/Popover.css:
+        (.popover): Add z-index: 100.
+
 2014-04-24  Timothy Hatcher  <[email protected]>
 
         Web Inspector: Dashboard when paused in debugger shows some missing glyph boxes

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/DashboardContainerView.css (167832 => 167833)


--- trunk/Source/WebInspectorUI/UserInterface/Views/DashboardContainerView.css	2014-04-25 23:14:16 UTC (rev 167832)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/DashboardContainerView.css	2014-04-25 23:43:15 UTC (rev 167833)
@@ -91,7 +91,7 @@
 }
 
 .toolbar .dashboard.visible {
-    z-index: 100;
+    z-index: 1; /* Establish a stacking context. */
 }
 
 .toolbar .dashboard.slide-out-up {

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/Popover.css (167832 => 167833)


--- trunk/Source/WebInspectorUI/UserInterface/Views/Popover.css	2014-04-25 23:14:16 UTC (rev 167832)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/Popover.css	2014-04-25 23:43:15 UTC (rev 167833)
@@ -29,6 +29,7 @@
     min-height: 20px;
     box-sizing: border-box;
     pointer-events: none;
+    z-index: 100;
 }
 
 .popover.arrow-up {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to