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:
jbridson 2012-03-13 16:11:51 +13:00 committed by Ingo Schommer
parent bdb832ef4a
commit ddcf979fb5
2 changed files with 11 additions and 3 deletions

View File

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

View File

@ -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 {