mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
7d5e46cdcf
Replace hard coded colours in IE with variables, and refactored code so that shared IE7 and IE8 fixes are in one place.
27 lines
415 B
SCSS
27 lines
415 B
SCSS
@import 'themes/default';
|
|
@import 'ieShared';
|
|
|
|
|
|
.cms-panel {
|
|
.cms-panel-content-collapsed {
|
|
width: 40px;
|
|
h2, h3 {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
//fix for overlapping of tree view mode checkboxes
|
|
.cms-content-toolbar{
|
|
.cms-tree-view-modes{
|
|
.checkboxAboveTree {
|
|
margin-right:1px;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
//fix for width of dropdowns in filter panel
|
|
.cms-content-tools .cms-panel-content .dropdown select {
|
|
width:152px;
|
|
} |