Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
BUGFIX:SSF-106 - fixed uneven column widths and overflow issues with …
…datagrid in ie7.
  • Loading branch information
jbridson authored and chillu committed Mar 12, 2012
1 parent f367db2 commit 3d26cb7
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
1 change: 1 addition & 0 deletions admin/css/ie7.css
Expand Up @@ -49,6 +49,7 @@ html { overflow: hidden; }


table.ss-gridfield-table tr.title th h2 { float: left; } 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.odd { background: white; }
table.ss-gridfield-table tr.ss-gridfield-item.even { background: #F0F4F7; } table.ss-gridfield-table tr.ss-gridfield-item.even { background: #F0F4F7; }


Expand Down
17 changes: 10 additions & 7 deletions admin/scss/ie7.scss
Expand Up @@ -176,13 +176,16 @@ table.ss-gridfield-table tr.title th h2 {


//fix for alternate colors on rows in datagrid //fix for alternate colors on rows in datagrid


table.ss-gridfield-table tr { table.ss-gridfield-table {
&.ss-gridfield-item.odd { table-layout:fixed; //fix for uneven column widths and hidden filter buttons
background: white; tr {
} &.ss-gridfield-item.odd {
&.ss-gridfield-item.even { background: white;
background: #F0F4F7; }
} &.ss-gridfield-item.even {
background: #F0F4F7;
}
}
} }


//fix for model admin filter styling //fix for model admin filter styling
Expand Down

0 comments on commit 3d26cb7

Please sign in to comment.