mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
BUGFIX:SSF-106 - fixed overflow issues on asset admin
This commit is contained in:
parent
4612b13d98
commit
a5e9a3d350
@ -10,6 +10,9 @@
|
||||
.CMSPageHistoryController ins { background-color: #DFD; padding: 2px; text-decoration: none; }
|
||||
.CMSPageHistoryController del { background-color: #FDD; padding: 2px; color: #ff4444; }
|
||||
|
||||
.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 .cms-search-form { overflow: hidden; }
|
||||
.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,4 +1,13 @@
|
||||
.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
|
||||
}
|
||||
.cms-content-tools .cms-panel-content .cms-search-form {
|
||||
overflow:hidden; //removes scollbar from search field in filter
|
||||
}
|
||||
}
|
||||
.cms-content-header-tabs {
|
||||
.ui-tabs-nav {
|
||||
li {
|
||||
|
Loading…
Reference in New Issue
Block a user