BUGFIX:SSF-106 - fixed uneven column widths and overflow issues with datagrid in ie7.

This commit is contained in:
jbridson 2012-03-13 10:53:38 +13:00 committed by Ingo Schommer
parent f367db2904
commit 3d26cb7bf9
2 changed files with 11 additions and 7 deletions

View File

@ -49,6 +49,7 @@ html { overflow: hidden; }
table.ss-gridfield-table tr.title th h2 { float: left; }
table.ss-gridfield-table { table-layout: fixed; }
table.ss-gridfield-table tr.ss-gridfield-item.odd { background: white; }
table.ss-gridfield-table tr.ss-gridfield-item.even { background: #F0F4F7; }

View File

@ -176,13 +176,16 @@ table.ss-gridfield-table tr.title th h2 {
//fix for alternate colors on rows in datagrid
table.ss-gridfield-table tr {
&.ss-gridfield-item.odd {
background: white;
}
&.ss-gridfield-item.even {
background: #F0F4F7;
}
table.ss-gridfield-table {
table-layout:fixed; //fix for uneven column widths and hidden filter buttons
tr {
&.ss-gridfield-item.odd {
background: white;
}
&.ss-gridfield-item.even {
background: #F0F4F7;
}
}
}
//fix for model admin filter styling