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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/js_includes.inc (+3 lines)
Lines 83-88 Link Here
83
                if ( $("#findborrower").length ) {
83
                if ( $("#findborrower").length ) {
84
                    patron_autocomplete($("#findborrower"), { 'link-to': 'circ' });
84
                    patron_autocomplete($("#findborrower"), { 'link-to': 'circ' });
85
                }
85
                }
86
                if ( $("#findborrower_main").length ) {
87
                    patron_autocomplete($("#findborrower_main"), { 'link-to': 'circ' });
88
                }
86
            [% END %]
89
            [% END %]
87
            if ( $("#searchmember").length ) {
90
            if ( $("#searchmember").length ) {
88
                patron_autocomplete($("#searchmember"), { 'link-to': 'patron' });
91
                patron_autocomplete($("#searchmember"), { 'link-to': 'patron' });
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt (-2 / +18 lines)
Lines 25-30 Link Here
25
    [% END %]</title
25
    [% END %]</title
26
>
26
>
27
[% INCLUDE 'doc-head-close.inc' %]
27
[% INCLUDE 'doc-head-close.inc' %]
28
[% FILTER collapse %]
29
    <style>
30
        #patron_checkout_search {
31
            display: flex;
32
            gap: 0.5rem;
33
        }
34
        #patron_checkout_search input[type="text"] {
35
            border: 1px solid #c7c7ce;
36
            border-radius: 0.3rem;
37
            line-height: 1.5;
38
            padding: 0.375rem 0.75rem;
39
            transition:
40
                border-color 0.15s ease-in-out,
41
                box-shadow 0.15s ease-in-out;
42
        }
43
    </style>
44
[% END %]
28
</head>
45
</head>
29
46
30
<body id="circ_circulation" class="circ">
47
<body id="circ_circulation" class="circ">
Lines 992-998 Link Here
992
    [% ELSE %]
1009
    [% ELSE %]
993
        <form action="/cgi-bin/koha/circ/circulation.pl" id="patronsearch" method="get">
1010
        <form action="/cgi-bin/koha/circ/circulation.pl" id="patronsearch" method="get">
994
            <fieldset id="patron_checkout_search">
1011
            <fieldset id="patron_checkout_search">
995
                <input autocomplete="off" id="findborrower" name="findborrower" type="text" placeholder="Enter patron card number or partial name" size="40" />
1012
                <input autocomplete="off" id="findborrower_main" name="findborrower" type="text" placeholder="Enter patron card number or partial name" size="40" />
996
                [% IF ( stickyduedate ) %]
1013
                [% IF ( stickyduedate ) %]
997
                    <input type="hidden" name="duedatespec" value="[% duedatespec | html %]" />
1014
                    <input type="hidden" name="duedatespec" value="[% duedatespec | html %]" />
998
                    <input type="hidden" name="stickyduedate" value="[% stickyduedate | html %]" />
1015
                    <input type="hidden" name="stickyduedate" value="[% stickyduedate | html %]" />
999
- 

Return to bug 39141