mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
BUGFIX: CMS tabs were hidden in ie7, changed css to make them appear far right
This commit is contained in:
parent
84bf5e2029
commit
2f4a033bc2
@ -83,5 +83,11 @@ table.ss-gridfield-table tr.ss-gridfield-item.even { background: #F0F4F7; }
|
||||
.ModelAdmin .cms-content-fields .cms-content-tools .cms-panel-content .cms-search-form { overflow: hidden; }
|
||||
.ModelAdmin .cms-content-fields .cms-content-tools .cms-panel-content .cms-search-form input { width: 160px; }
|
||||
|
||||
.cms .cms-content-tools { border-right: 1px solid #CCC; }
|
||||
|
||||
.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; }
|
||||
|
||||
.cms-content-header h2 { float: left; }
|
||||
.cms-content-header h2 .section-icon { display: none; }
|
||||
.cms-content-header .cms-content-header-tabs { position: absolute; right: 0; }
|
||||
|
@ -41,4 +41,5 @@
|
||||
|
||||
.cms-content-toolbar .cms-tree-view-modes .checkboxAboveTree { margin-right: 1px; }
|
||||
|
||||
.cms-content-tools .cms-panel-content .dropdown select { width: 152px; }
|
||||
.cms .cms-content-tools { border-right: 1px solid #CCC; }
|
||||
.cms .cms-content-tools .cms-panel-content .dropdown select { width: 152px; }
|
||||
|
@ -167,6 +167,10 @@ table.ss-gridfield-table {
|
||||
}
|
||||
}
|
||||
}
|
||||
.cms .cms-content-tools {
|
||||
// Visual aid for IE as there are no box-shadows
|
||||
border-right: 1px solid #CCC;
|
||||
}
|
||||
|
||||
//fix for view children arrow in pages list view
|
||||
.cms .ss-gridfield table.ss-gridfield-table tbody {
|
||||
@ -180,3 +184,18 @@ table.ss-gridfield-table {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// CMS Content header & tab fix
|
||||
.cms-content-header {
|
||||
h2 {
|
||||
float: left;
|
||||
.section-icon {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
.cms-content-header-tabs {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -21,7 +21,13 @@
|
||||
}
|
||||
|
||||
|
||||
|
||||
.cms .cms-content-tools {
|
||||
// Visual aid for IE as there are no box-shadows
|
||||
border-right: 1px solid #CCC;
|
||||
|
||||
//fix for width of dropdowns in filter panel
|
||||
.cms-content-tools .cms-panel-content .dropdown select {
|
||||
.cms-panel-content .dropdown select {
|
||||
width:152px;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user