From fbf9efa0136e7db6524336c236e2310da60a2a90 Mon Sep 17 00:00:00 2001 From: kaldari Date: Thu, 9 May 2013 17:40:11 -0700 Subject: [PATCH] Increasing z-index of personal toolbar from 1 to 100 Since the personal toolbar is at the top of the page and may include children that need a high z-index, such as dropdown menus or overlays we should set it to at least be equal to the highest potential competitor (the Visual Editor toolbar). The other option would be to not set a z-index at all, but this would regress bug 37158. Bug: 48078 Change-Id: I61daea50209d040f7e0f71207a4e90998c15083f --- skins/vector/screen.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skins/vector/screen.css b/skins/vector/screen.css index dc4267ff03..eb4a4dda64 100644 --- a/skins/vector/screen.css +++ b/skins/vector/screen.css @@ -75,8 +75,8 @@ div.emptyPortlet { position: absolute; top: 0.33em; right: 0.75em; - /* Display on top of page tabs - bug 37158 */ - z-index: 1; + /* Display on top of page tabs - bugs 37158, 48078 */ + z-index: 100; } #p-personal h3, #p-personal h5 { -- 2.20.1