From ddcf979fb58385477dee072460ce3680397b5834 Mon Sep 17 00:00:00 2001 From: jbridson Date: Tue, 13 Mar 2012 16:11:51 +1300 Subject: [PATCH] BUGFIX:Trac Ticket #7015 - removed unnecessary scrollbars from files and images filter and increased height of search field to accommodate the dropdown. --- css/screen.css | 2 ++ scss/_AssetAdmin.scss | 12 +++++++++--- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/css/screen.css b/css/screen.css index c65b25e0..d2387e8c 100644 --- a/css/screen.css +++ b/css/screen.css @@ -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; } diff --git a/scss/_AssetAdmin.scss b/scss/_AssetAdmin.scss index 4e256905..4009f395 100644 --- a/scss/_AssetAdmin.scss +++ b/scss/_AssetAdmin.scss @@ -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 {