From 011be7ffe1aa888fa6989e51d03857de6d15632e Mon Sep 17 00:00:00 2001 From: nac26 Date: Tue, 13 Apr 2010 16:51:53 +0000 Subject: [PATCH] NIHVIVO-343 merging bug fix into trunk. CSS tweak to correct layout for site admin in ie7 --- themes/vivo-basic/css/blueprint/ie.css | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/themes/vivo-basic/css/blueprint/ie.css b/themes/vivo-basic/css/blueprint/ie.css index 787fc6a5..ad31b61e 100644 --- a/themes/vivo-basic/css/blueprint/ie.css +++ b/themes/vivo-basic/css/blueprint/ie.css @@ -81,9 +81,10 @@ fieldset {padding-top: 0;} /** html div.top { padding: 7px 0 1px 0; }*/ /** html div.bottom { padding: 1px 12px 16px 12px; }*/ -/* the wonders of the IE6 float model...fix to maintain sanity in rendering sections of site admin */ -* html #adminDashboard .pageBodyGroup { - float: none; - display: inline; - vertical-align: top; -} \ No newline at end of file +/* 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; +}