mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
a6013ed1d0
- The filter panel has been removed in favour of a search menu in the header. - The multi-select component has been updated: - Now called 'Bulk actions' - Styling updated - Added placeholder text / removed redundant option - Now also appears in SiteTree view
29 lines
518 B
SCSS
29 lines
518 B
SCSS
.ModelAdmin .cms-content-fields {
|
|
.cms-edit-form {
|
|
overflow-y:auto; //adds scrolling only to the datagrid
|
|
overflow-x:hidden;
|
|
}
|
|
|
|
/**
|
|
* DEPRECATED:
|
|
* .cms-content-tools will be removed in 4.0
|
|
* Use .cms-content-filters instead.
|
|
*
|
|
* Hide certain elements when shown in "sidebar mode"
|
|
*/
|
|
.cms-content-tools .cms-panel-content {
|
|
.cms-search-form {
|
|
.resetformaction {
|
|
margin-right:0px;
|
|
}
|
|
}
|
|
#Form_ImportForm {
|
|
overflow:hidden;
|
|
}
|
|
}
|
|
|
|
.cms-content-filters {
|
|
padding-top: 16px;
|
|
}
|
|
}
|