From 605d450aca348a3d9a9ce0fb7072511483c693e1 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Thu, 7 Jan 2010 20:29:33 +0000 Subject: - Patch #668080 by casey: fixed IE6 issue. --- modules/toolbar/toolbar.css | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'modules') 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; } -- cgit v1.2.3