Title: [194214] trunk/Source/WebInspectorUI
Revision
194214
Author
[email protected]
Date
2015-12-17 00:15:53 -0800 (Thu, 17 Dec 2015)

Log Message

Web Inspector: REGRESSION (r193913): Popover covers completion suggestions
https://bugs.webkit.org/show_bug.cgi?id=152369

Reviewed by Timothy Hatcher.

* UserInterface/Views/Variables.css:
(:root):
Swap popover and tooltip z-index ordering.

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (194213 => 194214)


--- trunk/Source/WebInspectorUI/ChangeLog	2015-12-17 07:49:45 UTC (rev 194213)
+++ trunk/Source/WebInspectorUI/ChangeLog	2015-12-17 08:15:53 UTC (rev 194214)
@@ -1,3 +1,14 @@
+2015-12-17  Matt Baker  <[email protected]>
+
+        Web Inspector: REGRESSION (r193913): Popover covers completion suggestions
+        https://bugs.webkit.org/show_bug.cgi?id=152369
+
+        Reviewed by Timothy Hatcher.
+
+        * UserInterface/Views/Variables.css:
+        (:root):
+        Swap popover and tooltip z-index ordering.
+
 2015-12-16  Joseph Pecoraro  <[email protected]>
 
         REGRESSION: Web Inspector: console.dir(...) should force allowing object expansion

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/Variables.css (194213 => 194214)


--- trunk/Source/WebInspectorUI/UserInterface/Views/Variables.css	2015-12-17 07:49:45 UTC (rev 194213)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/Variables.css	2015-12-17 08:15:53 UTC (rev 194214)
@@ -27,8 +27,8 @@
     --z-index-highlight: 64;
     --z-index-header: 128;
     --z-index-resizer: 256;
-    --z-index-tooltip: 512;
-    --z-index-popover: 1024;
+    --z-index-popover: 512;
+    --z-index-tooltip: 1024;
     --z-index-glass-pane-for-drag: 2048;
     --z-index-uncaught-exception-sheet: 4096;
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to