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
This commit is contained in:
Serghei Mihai 2015-08-26 09:34:03 +02:00
parent 766e9bd219
commit 693c5bbea1
1 changed files with 5 additions and 2 deletions

View File

@ -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;
}