@@ -, +, @@ button - View any page in the staff client. - Hover your mouse over the "Search" link in the header. It should trigger a hover affect on the adjacent menu link. - Clicking the "Search" link should take you directly to the advanced search page. - Clicking the adjacent menu link should display a menu containing links to advanced search and item search. --- .../intranet-tmpl/prog/css/src/staff-global.scss | 23 ++++++++++++++++++++++ .../intranet-tmpl/prog/en/includes/header.inc | 7 +++++-- koha-tmpl/intranet-tmpl/prog/js/staff-global.js | 4 ++++ 3 files changed, 32 insertions(+), 2 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss +++ a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss @@ -3987,6 +3987,29 @@ ul { /* ==== MODULE LINKS - End ==== */ +#catalog-search-link { + border-right: 1px solid lighten(#E6F0F2, 5%); +} + +#catalog-search-dropdown { + padding: 0; + + & > a { + border-left: 1px solid darken(#E6F0F2, 5%); + padding: .4em .6em; + + &:hover, + &.catalog-search-dropdown-hover { + background-color: darken(#E6F0F2, 5%); + border-left: 1px solid darken(#E6F0F2, 15%); + } + } + + .caret { + margin-left: 0; + } +} + @media (min-width: 200px) { .navbar-nav > li { float: left; --- a/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc +++ a/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc @@ -4,8 +4,11 @@