summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/toolbar/toolbar.css11
1 files changed, 6 insertions, 5 deletions
diff --git a/modules/toolbar/toolbar.css b/modules/toolbar/toolbar.css
index cf71d8219..423c94b55 100644
--- a/modules/toolbar/toolbar.css
+++ b/modules/toolbar/toolbar.css
@@ -137,10 +137,11 @@ body.toolbar-drawer {
/**
* IE 6 Fix.
*
- * IE 6 shows elements with position:fixed as position:static
- * so we remove the padding-top from the body
+ * IE 6 shows elements with position:fixed as position:static so we replace
+ * it with position:absolute; toolbar needs it's z-index to stay above overlay.
*/
-* html body.toolbar,
-* html body.toolbar-drawer {
- padding-top: 0;
+* html #toolbar {
+ position: absolute;
+ top: 0;
+ left: 0;
}