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

(-)a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss (-1 / +8 lines)
Lines 336-341 aside { Link Here
336
                color: #696969;
336
                color: #696969;
337
                display: block;
337
                display: block;
338
                margin: .5em 0;
338
                margin: .5em 0;
339
340
                input {
341
                    &[type="checkbox"],
342
                    &[type="radio"] {
343
                        display: inline-block;
344
                        margin-left: 0;
345
                    }
346
                }
339
            }
347
            }
340
348
341
            li {
349
            li {
Lines 344-350 aside { Link Here
344
352
345
                &.checkbox {
353
                &.checkbox {
346
                    label {
354
                    label {
347
                        display: inline;
348
                        margin-left: 0;
355
                        margin-left: 0;
349
                    }
356
                    }
350
                }
357
                }
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/serials-advsearch.inc (-2 / +4 lines)
Lines 53-60 Link Here
53
                </li>
53
                </li>
54
                [% IF Koha.Preference( 'RoutingSerials' ) %]
54
                [% IF Koha.Preference( 'RoutingSerials' ) %]
55
                    <li class="local">
55
                    <li class="local">
56
                        <label for="routinglist">Has routing list:</label>
56
                        <label for="routinglist">
57
                        <input type="checkbox" id="routinglist" name="routinglist" />
57
                            <input type="checkbox" id="routinglist" name="routinglist" />
58
                            Has routing list
59
                        </label>
58
                    </li>
60
                    </li>
59
                [% END %]
61
                [% END %]
60
62
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgets.tt (-8 / +9 lines)
Lines 521-539 Link Here
521
          </li>
521
          </li>
522
        [% END %]
522
        [% END %]
523
        <li class="radio">
523
        <li class="radio">
524
524
            <label for="show_mine">
525
        <label for="show_mine">Show my funds only:</label>
525
                [% IF ( show_mine ) %]
526
            [% IF ( show_mine ) %]
526
                    <input type="checkbox" id="show_mine"  name="show_mine" value="1" checked="checked" />
527
                <input type="checkbox" id="show_mine"  name="show_mine" value="1" checked="checked" />
527
                [% ELSE %]
528
            [% ELSE %]
528
                    <input type="checkbox" id="show_mine"  name="show_mine" value="1" />
529
                <input type="checkbox" id="show_mine"  name="show_mine" value="1" />
529
                [% END %]
530
        [% END %]
530
                Show my funds only
531
            </label>
531
        </li>
532
        </li>
532
        </ol>
533
        </ol>
533
    </fieldset>
534
    </fieldset>
534
    <fieldset class="action">
535
    <fieldset class="action">
535
        <input type="hidden" name="op" value="list" />
536
        <input type="hidden" name="op" value="list" />
536
        <input type="submit" class="submit" name="filter" value="Go" />
537
        <input type="submit" class="btn btn-primary" name="filter" value="Go" />
537
    </fieldset>
538
    </fieldset>
538
</form>[% END %]
539
</form>[% END %]
539
540
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/overdue.tt (-5 / +7 lines)
Lines 172-183 Link Here
172
    <fieldset><legend>Date due:</legend>
172
    <fieldset><legend>Date due:</legend>
173
        <ol>
173
        <ol>
174
            <li class="radio">
174
            <li class="radio">
175
                <label for="showall">Show any items currently checked out:</label>
175
                <label for="showall">
176
                [% IF ( showall ) %]
176
                    [% IF ( showall ) %]
177
                        <input type="checkbox" id="showall" name="showall" value="show" checked="checked" />
177
                        <input type="checkbox" id="showall" name="showall" value="show" checked="checked" />
178
                [% ELSE %]
178
                    [% ELSE %]
179
                    <input type="checkbox" id="showall" name="showall" value="show" />
179
                        <input type="checkbox" id="showall" name="showall" value="show" />
180
                [% END %]
180
                    [% END %]
181
                    Show any items currently checked out
182
                </label>
181
            </li>
183
            </li>
182
184
183
            <li class="date_due_filter">
185
            <li class="date_due_filter">
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt (-7 / +8 lines)
Lines 1245-1256 Link Here
1245
                                    <div id="filter_archived_information">
1245
                                    <div id="filter_archived_information">
1246
                                        <ol>
1246
                                        <ol>
1247
                                            <li>
1247
                                            <li>
1248
                                                <label for="archived" style="display: inline;">Include archived:</label>
1248
                                                <label for="archived">
1249
                                                [% IF filter_archived %]
1249
                                                    [% IF filter_archived %]
1250
                                                    <input type="checkbox" id="archived" value="1" name="filter_archived" checked="checked" title="Include archived suggestions in the search" />
1250
                                                        <input type="checkbox" id="archived" value="1" name="filter_archived" checked="checked" title="Include archived suggestions in the search" />
1251
                                                [% ELSE %]
1251
                                                    [% ELSE %]
1252
                                                    <input type="checkbox" id="archived" value="1" name="filter_archived" title="Include archived suggestions in the search" />
1252
                                                        <input type="checkbox" id="archived" value="1" name="filter_archived" title="Include archived suggestions in the search" />
1253
                                                [% END %]
1253
                                                    [% END %]
1254
                                                    Include archived
1255
                                                </label>
1254
                                            </li>
1256
                                            </li>
1255
                                        </ol>
1257
                                        </ol>
1256
                                    </div>
1258
                                    </div>
1257
- 

Return to bug 38346