Owen Leonard
f068328e33
The white background behind the header search form on the checkin page appears because the search include is missing a <div> which carries the background gradient CSS. This patch adds the missing markup to the checkin search header include file and 6 others. To test, view the following pages and confirm that the normal gradient background appears behind the header search form: - Checkin - Contracts administration - Currencies administration - Notices and slips - Printers administration (admin/printers.pl) - Stop words administration (admin/stopwords.pl) - Adding an order to a basket from a suggestions (Acquisitions -> Basket -> Add order to basket -> From a suggestions). Signed-off-by: Nicole C. Engard <nengard@bywatersolutions.com> Signed-off-by: Jonathan Druart <jonathan.druart@biblibre.com> Signed-off-by: Jared Camins-Esakov <jcamins@cpbibliography.com>
21 lines
858 B
HTML
21 lines
858 B
HTML
<div class="gradient">
|
|
<h1 id="logo"><a href="/cgi-bin/koha/mainpage.pl">[% LibraryName %]</a></h1><!-- Begin Checkin Resident Search Box -->
|
|
<div id="header_search">
|
|
[% INCLUDE 'patron-search-box.inc' %]
|
|
[% IF ( CAN_user_catalogue ) %]
|
|
<div id="catalog_search" class="residentsearch">
|
|
<p class="tip">Enter search keywords:</p>
|
|
<form action="/cgi-bin/koha/catalogue/search.pl" method="get" id="cat-search-block">
|
|
<input type="text" name="q" id="search-form" size="40" />
|
|
<input type="submit" class="submit" value="Submit"/>
|
|
</form>
|
|
</div>
|
|
[% END %]
|
|
<ul>
|
|
[% IF ( CAN_user_circulate ) %]<li><a href="#circ_search">Check out</a></li>[% END %]
|
|
[% IF ( CAN_user_catalogue ) %]<li><a href="#catalog_search">Search the catalog</a></li>[% END %]
|
|
</ul>
|
|
|
|
</div>
|
|
</div><!-- /gradient -->
|
|
<!-- End Checkin Resident Search Box -->
|