silverstripe-framework/admin/scss/_ModelAdmin.scss
David Craig a6013ed1d0 Move filters from panel to header
- 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
2015-06-23 13:08:23 +12:00

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;
}
}