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

(-)a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss (+8 lines)
Lines 1431-1436 dd { Link Here
1431
    display: inline-block;
1431
    display: inline-block;
1432
}
1432
}
1433
1433
1434
.patron_autocomplete {
1435
    border: 1px solid #C7C7CE;
1436
    border-radius: .3rem;
1437
    line-height: 1.5;
1438
    padding: .375rem .75rem;
1439
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
1440
}
1441
1434
.patronviews {
1442
.patronviews {
1435
    border-right: 1px solid #000;
1443
    border-right: 1px solid #000;
1436
    border-top: 1px solid #000;
1444
    border-top: 1px solid #000;
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt (-10 / +1 lines)
Lines 30-44 Link Here
30
            display: flex;
30
            display: flex;
31
            gap: 0.5rem;
31
            gap: 0.5rem;
32
        }
32
        }
33
        #patron_checkout_search input[type="text"] {
34
            border: 1px solid #c7c7ce;
35
            border-radius: 0.3rem;
36
            line-height: 1.5;
37
            padding: 0.375rem 0.75rem;
38
            transition:
39
                border-color 0.15s ease-in-out,
40
                box-shadow 0.15s ease-in-out;
41
        }
42
    </style>
33
    </style>
43
[% END %]
34
[% END %]
44
</head>
35
</head>
Lines 1019-1025 Link Here
1019
    [% ELSE %]
1010
    [% ELSE %]
1020
        <form action="/cgi-bin/koha/circ/circulation.pl" id="patronsearch" method="get">
1011
        <form action="/cgi-bin/koha/circ/circulation.pl" id="patronsearch" method="get">
1021
            <fieldset id="patron_checkout_search">
1012
            <fieldset id="patron_checkout_search">
1022
                <input autocomplete="off" id="findborrower_main" name="findborrower" type="text" placeholder="Enter patron card number or partial name" size="40" />
1013
                <input autocomplete="off" id="findborrower_main" class="patron_autocomplete" name="findborrower" type="text" placeholder="Enter patron card number or partial name" size="40" />
1023
                [% IF ( stickyduedate ) %]
1014
                [% IF ( stickyduedate ) %]
1024
                    <input type="hidden" name="duedatespec" value="[% duedatespec | html %]" />
1015
                    <input type="hidden" name="duedatespec" value="[% duedatespec | html %]" />
1025
                    <input type="hidden" name="stickyduedate" value="[% stickyduedate | html %]" />
1016
                    <input type="hidden" name="stickyduedate" value="[% stickyduedate | html %]" />
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/shelves.tt (-7 / +27 lines)
Lines 27-37 Link Here
27
    [% END %]</title
27
    [% END %]</title
28
>
28
>
29
[% INCLUDE 'doc-head-close.inc' %]
29
[% INCLUDE 'doc-head-close.inc' %]
30
<style>
30
[% FILTER collapse %]
31
    textarea {
31
    <style>
32
        width: 100%;
32
        textarea {
33
    }
33
            width: 100%;
34
</style>
34
        }
35
    </style>
36
[% END %]
35
37
36
[% BLOCK list_permissions %]
38
[% BLOCK list_permissions %]
37
    <li>
39
    <li>
Lines 205-214 Link Here
205
207
206
        <form action="/cgi-bin/koha/virtualshelves/shelves.pl" id="transferform" method="post">
208
        <form action="/cgi-bin/koha/virtualshelves/shelves.pl" id="transferform" method="post">
207
            [% INCLUDE 'csrf-token.inc' %]
209
            [% INCLUDE 'csrf-token.inc' %]
208
            <fieldset>
210
            <fieldset class="rows">
211
                <legend class="visually-hidden">Transfer ownership</legend>
209
                <input type="hidden" name="op" value="cud-transfer" />
212
                <input type="hidden" name="op" value="cud-transfer" />
210
                <input type="hidden" name="public" value="1" />
213
                <input type="hidden" name="public" value="1" />
211
                <input type="hidden" name="shelfnumber" value="[% shelf.shelfnumber | html %]" />
214
                <input type="hidden" name="shelfnumber" value="[% shelf.shelfnumber | html %]" />
215
<<<<<<< HEAD
212
216
213
                <div>
217
                <div>
214
                    <label for="find_patron">Search for new owner: </label>
218
                    <label for="find_patron">Search for new owner: </label>
Lines 226-231 Link Here
226
                    <input type="submit" class="btn btn-primary" value="Transfer" />
230
                    <input type="submit" class="btn btn-primary" value="Transfer" />
227
                    <a href="/cgi-bin/koha/virtualshelves/shelves.pl?op=list&amp;public=1" class="cancel">Cancel</a>
231
                    <a href="/cgi-bin/koha/virtualshelves/shelves.pl?op=list&amp;public=1" class="cancel">Cancel</a>
228
                </fieldset>
232
                </fieldset>
233
=======
234
                <ol>
235
                    <li>
236
                        <label for="find_patron">Search for new owner: </label>
237
                        <input autocomplete="off" id="find_patron" type="text" size="40" class="patron_autocomplete noEnterSubmit" placeholder="Enter patron card number or partial name" />
238
                    </li>
239
                    <li style="display:none">
240
                        <label for="find_patron">New owner: </label>
241
                        <span id="new_owner_name"></span>
242
                        <input type="hidden" id="new_owner" name="new_owner" value="" />
243
                    </li>
244
                </ol>
245
            </fieldset>
246
            <fieldset class="action">
247
                <input type="submit" class="btn btn-primary" value="Transfer" />
248
                <a href="/cgi-bin/koha/virtualshelves/shelves.pl?op=list&amp;public=1" class="cancel">Cancel</a>
249
>>>>>>> 1a10945af73 (Bug 40498: Improve style of list transfer form)
229
            </fieldset>
250
            </fieldset>
230
        </form>
251
        </form>
231
    [% END # /IF op == transfer %]
252
    [% END # /IF op == transfer %]
232
- 

Return to bug 40498