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

(-)a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss (+11 lines)
Lines 898-903 fieldset { Link Here
898
            font-size: 105%;
898
            font-size: 105%;
899
            margin: 1em 0 1em 1em;
899
            margin: 1em 0 1em 1em;
900
900
901
            &.dataTable {
902
                margin: 0;
903
            }
904
901
            &.mceListBox {
905
            &.mceListBox {
902
                margin: 0;
906
                margin: 0;
903
            }
907
            }
Lines 921-926 fieldset { Link Here
921
            clear: both;
925
            clear: both;
922
            padding-top: .5em;
926
            padding-top: .5em;
923
        }
927
        }
928
929
        .dataTables_wrapper {
930
            label {
931
                font-weight: 400;
932
                width: unset;
933
            }
934
        }
924
    }
935
    }
925
}
936
}
926
937
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/pos/pay.tt (-3 / +1 lines)
Lines 271-277 Link Here
271
            "bPaginate": false,
271
            "bPaginate": false,
272
            "bFilter": false,
272
            "bFilter": false,
273
            "bInfo": false,
273
            "bInfo": false,
274
            "bAutoWidth": false,
275
            "aoColumnDefs": [{
274
            "aoColumnDefs": [{
276
                "aTargets": [-3],
275
                "aTargets": [-3],
277
                "bSortable": false,
276
                "bSortable": false,
Lines 343-349 Link Here
343
        var items_table = KohaTable("invoices", {
342
        var items_table = KohaTable("invoices", {
344
               "sPaginationType": "full",
343
               "sPaginationType": "full",
345
               "aaSorting": [[ 0, "asc" ]],
344
               "aaSorting": [[ 0, "asc" ]],
346
        }, items_columns_settings);
345
        }, items_columns_settings, false);
347
346
348
        $(".add_button").on("click", function(e) {
347
        $(".add_button").on("click", function(e) {
349
            e.preventDefault();
348
            e.preventDefault();
350
- 

Return to bug 26189