From eee17a8f099671cbb9fc10ea0136e57220b39e39 Mon Sep 17 00:00:00 2001 From: Christian Williams Date: Wed, 26 Jun 2013 16:10:56 -0700 Subject: [PATCH] Fix overlay for Monobook Because of the z-indexes of major elements of the mono book skin, and because the overlay containers are appended to the body, the overlays can't be positioned between the surface and the toolbar. Before this fix, the overlays are appearing beneath the surface. This fix will retain proper positioning of the overlays between the surface and the toolbar for Vector, and will overlay everything in Monobook. Later, we will have the overlay container more tightly integrated with the surface to avoid this stacking problem. Change-Id: Ibb1553099cc1e35e6a0928a99b584885508ca5b6 --- modules/ve/ui/styles/ve.ui.Surface.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/ve/ui/styles/ve.ui.Surface.css b/modules/ve/ui/styles/ve.ui.Surface.css index 2aed3558a2..c488fd3598 100644 --- a/modules/ve/ui/styles/ve.ui.Surface.css +++ b/modules/ve/ui/styles/ve.ui.Surface.css @@ -23,3 +23,7 @@ right: 0; left: 0; } + +.skin-monobook .ve-ui-surface-overlay { + z-index: 2; +}