2012-05-09 08:31:25 +02:00
|
|
|
@import 'themes/default';
|
|
|
|
@import 'ieShared';
|
|
|
|
|
2012-11-27 06:03:43 +01:00
|
|
|
|
|
|
|
|
2012-06-18 02:13:20 +02:00
|
|
|
//IE8 needs this defined inside .cms-panel
|
2012-01-06 16:39:51 +01:00
|
|
|
.cms-panel {
|
2012-06-18 02:13:20 +02:00
|
|
|
@include IEVerticalPanelText;
|
2012-02-07 23:24:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//fix for overlapping of tree view mode checkboxes
|
2012-05-09 08:31:25 +02:00
|
|
|
.cms-content-toolbar{
|
|
|
|
.cms-tree-view-modes{
|
|
|
|
.checkboxAboveTree {
|
|
|
|
margin-right:1px;
|
2012-03-08 04:27:24 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-03-09 04:45:16 +01:00
|
|
|
|
2015-06-16 00:52:42 +02:00
|
|
|
/**
|
|
|
|
* DEPRECATED:
|
|
|
|
* .cms-content-tools will be removed in 4.0
|
|
|
|
* Use .cms-content-filters instead.
|
|
|
|
*/
|
2012-05-21 03:36:47 +02:00
|
|
|
.cms .cms-content-tools {
|
|
|
|
|
|
|
|
//fix for width of dropdowns in filter panel
|
|
|
|
.cms-panel-content .dropdown select {
|
|
|
|
width:152px;
|
|
|
|
}
|
2012-06-19 07:52:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.filter-buttons{
|
|
|
|
button{
|
|
|
|
width:23px !important;
|
|
|
|
height:23px !important;
|
2016-01-06 00:34:58 +01:00
|
|
|
&.ss-gridfield-button-close{
|
2012-06-19 07:52:09 +02:00
|
|
|
margin-right:-7px !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.col-buttons{
|
|
|
|
width:18px;
|
2012-07-10 06:57:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* fix for actions buttons on edit page content overlapping */
|
|
|
|
.cms-content-actions {
|
|
|
|
.ss-ui-buttonset {
|
|
|
|
button {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
}
|
2015-05-15 01:50:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// 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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|