NIHVIVO-343 merging bug fix into trunk. CSS tweak to correct layout for site admin in ie7

This commit is contained in:
nac26 2010-04-13 16:51:53 +00:00
parent c95976fbc6
commit 011be7ffe1

View file

@ -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;
}
/* 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;
}