mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
544d2eb6e1
Thanks @adrexia for contributing.
18 lines
356 B
SCSS
18 lines
356 B
SCSS
.ModelAdmin .cms-content-fields {
|
|
overflow:hidden; //removes scrolling from filter panel
|
|
.cms-edit-form {
|
|
overflow-y:auto; //adds scrolling only to the datagrid
|
|
overflow-x:hidden;
|
|
}
|
|
.cms-content-tools .cms-panel-content {
|
|
.cms-search-form {
|
|
.resetformaction {
|
|
margin-right:0px;
|
|
}
|
|
}
|
|
#Form_ImportForm {
|
|
overflow:hidden;
|
|
}
|
|
}
|
|
}
|