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>
33 lines
1.7 KiB
HTML
33 lines
1.7 KiB
HTML
<div class="gradient">
|
|
<h1 id="logo"><a href="/cgi-bin/koha/mainpage.pl">[% LibraryName %]</a></h1><!-- Begin Suggestions Resident Search Box -->
|
|
<div id="header_search">
|
|
<div id="suggestions_search" class="residentsearch">
|
|
<p class="tip">Suggestions search:</p>
|
|
<form action="/cgi-bin/koha/acqui/newordersuggestion.pl" method="get">
|
|
<input type="hidden" name="booksellerid" value="[% booksellerid %]" />
|
|
<label for="searchtitle">Title:</label> <input type="text" id="searchtitle" name="title" size="10" value="[% title %]" />
|
|
<label for="searchauthor">Author:</label> <input type="text" id="searchauthor" name="author" size="10" value="[% author %]" />
|
|
<label for="searchpublishercode">Publisher:</label> <input type="text" id="searchpublishercode" name="publishercode" size="10" value="[% publishercode %]" />
|
|
<input type="submit" class="submit" value="Search" />
|
|
</form>
|
|
</div>
|
|
|
|
[% 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" value="" title="Enter the terms you wish to search for." class="form-text" />
|
|
<input type="submit" value="Submit" class="submit" />
|
|
</form>
|
|
</div>
|
|
[% END %]
|
|
<ul>
|
|
<li><a href="#suggestions_search">Search suggestions</a></li>
|
|
[% 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 Suggestions Resident Search Box -->
|