NIHVIVO-1624: Fixed layout issues for site admin in IE6 and 7

This commit is contained in:
mb863 2011-01-11 15:45:01 +00:00
parent db7fc7d979
commit 9befde777c
2 changed files with 16 additions and 0 deletions

View file

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

View file

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