mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
BUGFIX:Trac Ticket #7015 - removed unnecessary scrollbars from files and images filter and increased height of search field to accommodate the dropdown.
This commit is contained in:
parent
bdb832ef4a
commit
ddcf979fb5
@ -12,6 +12,8 @@
|
||||
|
||||
.cms .AssetAdmin .cms-content-fields { overflow: hidden; }
|
||||
.cms .AssetAdmin .cms-content-fields .cms-edit-form.AssetAdmin { overflow-y: auto; }
|
||||
.cms .AssetAdmin .cms-content-fields .cms-content-tools .cms-panel-content { overflow: hidden; }
|
||||
.cms .AssetAdmin .cms-content-fields .cms-content-tools .cms-panel-content .cms-search-form { height: 100%; }
|
||||
.cms .AssetAdmin .cms-content-header-tabs .ui-tabs-nav li a { font-weight: bold; line-height: 16px; padding: 12px 20px 11px; text-indent: -9999em; }
|
||||
.cms .AssetAdmin .cms-content-header-tabs .ui-tabs-nav li a.content-treeview { background: url(../images/content-header-tabs-sprite.png) no-repeat 2px 0px; }
|
||||
.cms .AssetAdmin .cms-content-header-tabs .ui-tabs-nav li a.content-galleryview { background: url(../images/content-header-tabs-sprite.png) no-repeat -87px 0px; }
|
||||
|
@ -1,9 +1,15 @@
|
||||
.cms .AssetAdmin {
|
||||
.cms-content-fields {
|
||||
overflow:hidden; //removes scrolling from filter panel
|
||||
.cms-edit-form.AssetAdmin {
|
||||
overflow-y:auto; //adds scrolling only to the datagrid
|
||||
overflow:hidden; //removes scrolling from filter panel
|
||||
.cms-edit-form.AssetAdmin {
|
||||
overflow-y:auto; //adds scrolling only to the datagrid
|
||||
}
|
||||
.cms-content-tools .cms-panel-content {
|
||||
overflow:hidden; //removes scollbar from search field in filter
|
||||
.cms-search-form {
|
||||
height:100%; //increases height of search form to accomodate dropdown
|
||||
}
|
||||
}
|
||||
}
|
||||
.cms-content-header-tabs {
|
||||
.ui-tabs-nav {
|
||||
|
Loading…
Reference in New Issue
Block a user