NIHVIVO-343 merging css fix to Site Admin layout in ie6 from maintenance branch
This commit is contained in:
parent
2c525dac12
commit
b2047b89f6
2 changed files with 8 additions and 0 deletions
|
@ -80,3 +80,10 @@ fieldset {padding-top: 0;}
|
||||||
/* IE6 having trouble with the margins/padding on the admin panels */
|
/* IE6 having trouble with the margins/padding on the admin panels */
|
||||||
/** html div.top { padding: 7px 0 1px 0; }*/
|
/** html div.top { padding: 7px 0 1px 0; }*/
|
||||||
/** html div.bottom { padding: 1px 12px 16px 12px; }*/
|
/** 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;
|
||||||
|
}
|
|
@ -433,6 +433,7 @@ are necessary for cross-browser consistency
|
||||||
#adminDashboard .pageBodyGroup {
|
#adminDashboard .pageBodyGroup {
|
||||||
float: left;
|
float: left;
|
||||||
clear: right;
|
clear: right;
|
||||||
|
display: inline-block;
|
||||||
width: 45%;
|
width: 45%;
|
||||||
margin-top: 2em;
|
margin-top: 2em;
|
||||||
margin-bottom: 1em;
|
margin-bottom: 1em;
|
||||||
|
|
Loading…
Add table
Reference in a new issue