View | Details | Raw Unified | Return to bug 18561
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/acquisitions-search.inc (-2 / +2 lines)
Lines 14-21 Link Here
14
        <label for="title">Title: </label> <input type="text" id="title" name="title" size="15" value="[% title %]" />
14
        <label for="title">Title: </label> <input type="text" id="title" name="title" size="15" value="[% title %]" />
15
        <label for="searchsupplier">Vendor:</label> <input type="text" id="searchsupplier" name="name" size="15" value="[% name|html %]" />
15
        <label for="searchsupplier">Vendor:</label> <input type="text" id="searchsupplier" name="name" size="15" value="[% name|html %]" />
16
        <input type="hidden" id="do_search" name="do_search" value="do" />
16
        <input type="hidden" id="do_search" name="do_search" value="do" />
17
        <span class="filteraction" id="filteraction_off" style="display:none"> <a href="#" class="toggle_element" data-element="#filters,.filteraction">[-]</a></span>
17
        <span class="filteraction" id="filteraction_off" style="display:none"> <a href="#" class="toggle_element btn btn-small btn-link" data-element="#filters,.filteraction"><i class="fa fa-minus-square"></i></a></span>
18
        <span class="filteraction" id="filteraction_on"> <a href="#" class="toggle_element" data-element="#filters,.filteraction">[+]</a></span>
18
        <span class="filteraction" id="filteraction_on"> <a href="#" class="toggle_element btn btn-small btn-link" data-element="#filters,.filteraction"><i class="fa fa-plus-square"></i></a></span>
19
    <input value="Submit" class="submit" type="submit" /> <a href="/cgi-bin/koha/acqui/histsearch.pl">Advanced search</a>
19
    <input value="Submit" class="submit" type="submit" /> <a href="/cgi-bin/koha/acqui/histsearch.pl">Advanced search</a>
20
    <p id="filters" style="display:none">
20
    <p id="filters" style="display:none">
21
      <label for="basket">Basket: </label><input type="text" name="basket" id="basket" />
21
      <label for="basket">Basket: </label><input type="text" name="basket" id="basket" />
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/patron-search.inc (-2 / +2 lines)
Lines 9-16 Link Here
9
    <form action="/cgi-bin/koha/members/member.pl" method="post">
9
    <form action="/cgi-bin/koha/members/member.pl" method="post">
10
    <input id="searchmember" data-toggle="tooltip" size="25" class="head-searchbox focus" name="searchmember" type="text" value="[% searchmember %]"/>
10
    <input id="searchmember" data-toggle="tooltip" size="25" class="head-searchbox focus" name="searchmember" type="text" value="[% searchmember %]"/>
11
    <input type="hidden" name="quicksearch" value="1" />
11
    <input type="hidden" name="quicksearch" value="1" />
12
    <span class="filteraction" id="filteraction_off"> <a href="#">[-]</a></span>
12
    <span class="filteraction btn btn-small btn-link" id="filteraction_off"> <a href="#"><i class="fa fa-minus-square"></i></a></span>
13
    <span class="filteraction" id="filteraction_on"> <a href="#">[+]</a></span>
13
    <span class="filteraction btn btn-small btn-link" id="filteraction_on"> <a href="#"><i class="fa fa-plus-square"></i></a></span>
14
14
15
    <input value="Search" class="submit" type="submit" />
15
    <input value="Search" class="submit" type="submit" />
16
16
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/advsearch.tt (-1 / +1 lines)
Lines 100-106 Link Here
100
			<input type="text" size="30" name="q" title="Enter search terms" value="" />
100
			<input type="text" size="30" name="q" title="Enter search terms" value="" />
101
            [% IF ( expanded_options ) %]
101
            [% IF ( expanded_options ) %]
102
                [% IF ( search_box.add_field ) %]
102
                [% IF ( search_box.add_field ) %]
103
                    <a href="JavaScript:add_field();" id="ButtonPlus" title="Add another field">[+]</a>
103
                    <a href="JavaScript:add_field();" id="ButtonPlus" title="Add another field" class="btn btn-sm btn-link"><i class="fa fa-plus-square"></i></a>
104
				[% END %]
104
				[% END %]
105
              [% IF ( search_box.scan_index ) %]
105
              [% IF ( search_box.scan_index ) %]
106
                <label for="scan">Scan indexes:</label> <input type="checkbox" name="scan" id="scan" value="1" />
106
                <label for="scan">Scan indexes:</label> <input type="checkbox" name="scan" id="scan" value="1" />
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-advsearch.tt (-3 / +2 lines)
Lines 94-101 Link Here
94
                                    <input type="text" size="30" name="q" title="Enter search terms" value="" />
94
                                    <input type="text" size="30" name="q" title="Enter search terms" value="" />
95
                                    [% IF ( expanded_options ) %]
95
                                    [% IF ( expanded_options ) %]
96
                                        [% IF ( !loop.first ) %]
96
                                        [% IF ( !loop.first ) %]
97
                                            <a class="ButtonPlus" name="ButtonPlus" title="Add another field" href="#">[+]</a>
97
                                            <a class="ButtonPlus btn btn-sm btn-link" name="ButtonPlus" title="Add another field" href="#"><i class="icon icon-plus"></i></a>
98
                                            <a class="ButtonLess" title="Remove field" href="#">[-]</a>
98
                                            <a class="ButtonLess btn btn-sm btn-link" title="Remove field" href="#"><i class="icon icon-minus"></i></a>
99
                                        [% END %]
99
                                        [% END %]
100
                                    [% END %]
100
                                    [% END %]
101
                                </p>
101
                                </p>
102
- 

Return to bug 18561