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>
27 lines
1.3 KiB
HTML
27 lines
1.3 KiB
HTML
<div class="gradient">
|
|
<h1 id="logo"><a href="/cgi-bin/koha/mainpage.pl">[% LibraryName %]</a></h1><!-- Begin Notices Resident Search Box -->
|
|
<div id="header_search">
|
|
<div id="notices_search" class="residentsearch">
|
|
<p class="tip">Search existing notices:</p>
|
|
<form action="/cgi-bin/koha/tools/letter.pl" method="post">
|
|
<input type="text" name="searchfield" size="40" value="" />
|
|
<input type="submit" class="submit" name="search" 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" name="op" value="Submit" class="submit" />
|
|
</form>
|
|
</div>[% END %]
|
|
<ul>
|
|
<li><a href="#notices_search">Search notices</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 Notices Resident Search Box -->
|