From 9befde777c2839b77ccf656b11e16dadc29e1cd7 Mon Sep 17 00:00:00 2001 From: mb863 Date: Tue, 11 Jan 2011 15:45:01 +0000 Subject: [PATCH] NIHVIVO-1624: Fixed layout issues for site admin in IE6 and 7 --- themes/wilma/css/ie6.css | 8 ++++++++ themes/wilma/css/ie7.css | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/themes/wilma/css/ie6.css b/themes/wilma/css/ie6.css index 0d0a2929..329bef74 100644 --- a/themes/wilma/css/ie6.css +++ b/themes/wilma/css/ie6.css @@ -68,4 +68,12 @@ article.individual-foaf-person { } #profile-photo-display { width: 620px; +} +/* Fix for site admin */ +/* the wonders of the IE float model...fix to maintain sanity in rendering sections of site admin */ +/* targets IE7 and below */ +#adminDashboard .pageBodyGroup { + *float: none !important; + *display: inline !important; + *vertical-align: top !important; } \ No newline at end of file diff --git a/themes/wilma/css/ie7.css b/themes/wilma/css/ie7.css index 177165bc..1fc45bbb 100644 --- a/themes/wilma/css/ie7.css +++ b/themes/wilma/css/ie7.css @@ -8,4 +8,12 @@ } #login-form p.submit { margin-left: 20px; +} +/* Fix for site admin */ +/* the wonders of the IE float model...fix to maintain sanity in rendering sections of site admin */ +/* targets IE7 and below */ +#adminDashboard .pageBodyGroup { + *float: none !important; + *display: inline !important; + *vertical-align: top !important; } \ No newline at end of file