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

(-)a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss (+10 lines)
Lines 2221-2226 li { Link Here
2221
td {
2221
td {
2222
    &.actions {
2222
    &.actions {
2223
        white-space: nowrap;
2223
        white-space: nowrap;
2224
2225
        a,
2226
        button {
2227
            display: inline-block;
2228
            margin-left: .3rem;
2229
2230
            &:first-child {
2231
                margin-left: 0;
2232
            }
2233
        }
2224
    }
2234
    }
2225
2235
2226
    &.bookcoverimg {
2236
    &.bookcoverimg {
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/search_filters.tt (-11 / +10 lines)
Lines 30-40 Link Here
30
[% END #/ WRAPPER sub-header.inc %]
30
[% END #/ WRAPPER sub-header.inc %]
31
31
32
[% WRAPPER 'main-container.inc' aside='admin-menu' %]
32
[% WRAPPER 'main-container.inc' aside='admin-menu' %]
33
33
    <h1>Search filters</h1>
34
    [% IF filters_count %]
34
    [% IF filters_count %]
35
        <div id="search_filters_list">
35
        <div id="search_filters_list" class="page-section">
36
            <h2>Search filters</h2>
37
38
            <table id="search_filters_table">
36
            <table id="search_filters_table">
39
                <thead>
37
                <thead>
40
                    <tr>
38
                    <tr>
Lines 44-50 Link Here
44
                        <th>Limits</th>
42
                        <th>Limits</th>
45
                        <th>OPAC</th>
43
                        <th>OPAC</th>
46
                        <th>Staff interface</th>
44
                        <th>Staff interface</th>
47
                        <th>&nbsp;</th>
45
                        <th data-class-name="actions noExport">Actions</th>
48
                    </tr>
46
                    </tr>
49
                </thead>
47
                </thead>
50
            </table>
48
            </table>
Lines 62-75 Link Here
62
                <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
60
                <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
63
            </div>
61
            </div>
64
            <div class="modal-body">
62
            <div class="modal-body">
65
                <div class="form-group">
63
                <div class="mb-3">
66
                    <input type="hidden" id="filter_edit_id" name="filter_edit_id" />
64
                    <input type="hidden" id="filter_edit_id" name="filter_edit_id" />
67
                    <label for="filter_edit_name">Name:</label>
65
                    <label for="filter_edit_name">Name:</label>
68
                    <input id="filter_edit_name" name="filter_edit_name" type="text" />
66
                    <input id="filter_edit_name" name="filter_edit_name" type="text" />
69
                    <label for="filter_edit_opac">Show in OPAC?</label>
67
                </div>
70
                    <input type="checkbox" id="filter_edit_opac" name="filter_edit_opac" />
68
                <div class="mb-3">
71
                    <label for="filter_edit_staff_client">Show in staff interface?</label>
69
                    <label for="filter_edit_opac"><input type="checkbox" id="filter_edit_opac" name="filter_edit_opac" /> Show in OPAC?</label>
72
                    <input type="checkbox" id="filter_edit_staff_client" name="filter_edit_staff_client" />
70
                </div>
71
                <div class="mb-3">
72
                    <label for="filter_edit_staff_client"><input type="checkbox" id="filter_edit_staff_client" name="filter_edit_staff_client" /> Show in staff interface?</label>
73
                </div>
73
                </div>
74
            </div>
74
            </div>
75
            <div class="modal-footer">
75
            <div class="modal-footer">
76
- 

Return to bug 39448