mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
BUGFIX: SSF-124 - fixed width of column and positioning of show children arrow in ie7
This commit is contained in:
parent
3ea847a059
commit
df389716df
@ -50,7 +50,6 @@ 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; }
|
||||||
|
|
||||||
@ -59,3 +58,6 @@ table.ss-gridfield-table tr.ss-gridfield-item.even { background: #F0F4F7; }
|
|||||||
.ModelAdmin .cms-content-fields .cms-content-tools .cms-panel-content #Form_ImportForm div.file { margin: 0px; }
|
.ModelAdmin .cms-content-fields .cms-content-tools .cms-panel-content #Form_ImportForm div.file { margin: 0px; }
|
||||||
.ModelAdmin .cms-content-fields .cms-content-tools .cms-panel-content #Form_ImportForm div.file input.file { margin-left: -132px; }
|
.ModelAdmin .cms-content-fields .cms-content-tools .cms-panel-content #Form_ImportForm div.file input.file { margin-left: -132px; }
|
||||||
.ModelAdmin .cms-content-fields .cms-content-tools .cms-panel-content #Form_ImportForm div.checkbox { padding: 0px; }
|
.ModelAdmin .cms-content-fields .cms-content-tools .cms-panel-content #Form_ImportForm div.checkbox { padding: 0px; }
|
||||||
|
|
||||||
|
.cms .ss-gridfield table.ss-gridfield-table tbody td.col-listChildrenLink { width: 16px; }
|
||||||
|
.cms .ss-gridfield table.ss-gridfield-table tbody td.col-listChildrenLink .list-children-link { background: transparent url(../images/sitetree_ss_default_icons.png) no-repeat 4px -4px; display: block; }
|
||||||
|
@ -183,7 +183,6 @@ 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 {
|
table.ss-gridfield-table {
|
||||||
table-layout:fixed; //fix for uneven column widths and hidden filter buttons
|
|
||||||
tr {
|
tr {
|
||||||
&.ss-gridfield-item.odd {
|
&.ss-gridfield-item.odd {
|
||||||
background: white;
|
background: white;
|
||||||
@ -214,3 +213,16 @@ table.ss-gridfield-table {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//fix for view children arrow in pages list view
|
||||||
|
.cms .ss-gridfield table.ss-gridfield-table tbody {
|
||||||
|
td {
|
||||||
|
&.col-listChildrenLink {
|
||||||
|
width:16px;
|
||||||
|
.list-children-link {
|
||||||
|
background: transparent url(../images/sitetree_ss_default_icons.png) no-repeat 4px -4px;
|
||||||
|
display:block;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user