From 693c5bbea1fe4c6855332b83acf0695f1376e190 Mon Sep 17 00:00:00 2001 From: Serghei Mihai Date: Wed, 26 Aug 2015 09:34:03 +0200 Subject: [PATCH] set document's body position as relative (#8064) Revert toolbar's z-index and force body's position to relative in order to avoid other page elements to "hide" under the toolbar --- cam/static/css/toolbar.css | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/cam/static/css/toolbar.css b/cam/static/css/toolbar.css index 02d975d..ba35ef7 100644 --- a/cam/static/css/toolbar.css +++ b/cam/static/css/toolbar.css @@ -7,7 +7,7 @@ padding: 0; background: black; font-size: 14px; - z-index: -1; + z-index: 999; } .mandaye-toolbar-left { @@ -70,4 +70,7 @@ top: 36px; } -body { margin-top: 36px !important; } +body { + margin-top: 36px !important; + position: relative !important; +}