mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
a72bd16f42
Remove "delete from live" duplicate action in favour of existing "unpublish" which is more consistent with current terminology Add pop-up verification to destructive actions Fix bug in reporting publishing of error pages Restoring a page also restores parents
81 lines
1.3 KiB
SCSS
81 lines
1.3 KiB
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 {
|
|
|
|
//fix for width of dropdowns in filter panel
|
|
.cms-panel-content .dropdown select {
|
|
width:152px;
|
|
}
|
|
}
|
|
|
|
.filter-buttons{
|
|
button{
|
|
width:23px !important;
|
|
height:23px !important;
|
|
&.ss-gridfield-button-close{
|
|
margin-right:-7px !important;
|
|
}
|
|
}
|
|
}
|
|
|
|
.col-buttons{
|
|
width:18px;
|
|
}
|
|
|
|
/* fix for actions buttons on edit page content overlapping */
|
|
.cms-content-actions {
|
|
.ss-ui-buttonset {
|
|
button {
|
|
margin-right: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Fix for lack of support of :not selector
|
|
// Applied to trees when displaying filter / search results.
|
|
.tree-holder,
|
|
.cms-tree {
|
|
&.filtered-list li {
|
|
> a,
|
|
> a:link {
|
|
color: $color-text-disabled;
|
|
}
|
|
|
|
// Re-apply default style to filtered items
|
|
&.filtered-item {
|
|
> a,
|
|
> a:link {
|
|
color: $color-text-blue-link;
|
|
}
|
|
}
|
|
|
|
// Re-re-apply disabled selector from top of _tree.scss
|
|
&.disabled,
|
|
&.edit-disabled {
|
|
> a,
|
|
> a:link {
|
|
color: $color-text-disabled;
|
|
background: transparent none;
|
|
cursor: default;
|
|
}
|
|
}
|
|
}
|
|
}
|