mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
BUGFIX:SSF-106 - fixed uneven column widths and overflow issues with datagrid in ie7.
This commit is contained in:
parent
f367db2904
commit
3d26cb7bf9
@ -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; }
|
||||
|
||||
|
@ -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 {
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user