diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-01-07 20:29:33 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-01-07 20:29:33 +0000 |
commit | 605d450aca348a3d9a9ce0fb7072511483c693e1 (patch) | |
tree | fb9a99a2ced356fdcd373ff8f7fa13629aa09450 | |
parent | a2f90c7d969dca8cdb1f3590565568e28f69edcf (diff) | |
download | brdo-605d450aca348a3d9a9ce0fb7072511483c693e1.tar.gz brdo-605d450aca348a3d9a9ce0fb7072511483c693e1.tar.bz2 |
- Patch #668080 by casey: fixed IE6 issue.
-rw-r--r-- | modules/toolbar/toolbar.css | 11 |
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; } |