silverstripe-framework/admin/scss/ie8.scss
Naomi Guyer 50ed4f515d BUGFIX: Show text for collapsed side panel in IE8 and 9 (fixes #7469)
Altered IE CSS for CMS-panel to allow the text to display from top to
bottom.
2012-06-20 14:09:05 +02:00

28 lines
501 B
SCSS

@import 'themes/default';
@import 'ieShared';
//IE8 needs this defined inside .cms-panel
.cms-panel {
@include IEVerticalPanelText;
}
//fix for overlapping of tree view mode checkboxes
.cms-content-toolbar{
.cms-tree-view-modes{
.checkboxAboveTree {
margin-right:1px;
}
}
}
.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-panel-content .dropdown select {
width:152px;
}
}