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

(-)a/koha-tmpl/intranet-tmpl/prog/css/src/_tables.scss (+4 lines)
Lines 1-7 Link Here
1
table {
1
table {
2
    table-layout: fixed;
2
    border-collapse: collapse;
3
    border-collapse: collapse;
3
    border-right: 1px solid $table-border-color;
4
    border-right: 1px solid $table-border-color;
4
    border-top: 1px solid $table-border-color;
5
    border-top: 1px solid $table-border-color;
6
    width: 100%;
5
7
6
    .btn-group {
8
    .btn-group {
7
        white-space: nowrap;
9
        white-space: nowrap;
Lines 124-129 th { Link Here
124
    border-bottom: 1px solid $table-border-color;
126
    border-bottom: 1px solid $table-border-color;
125
    border-left: 1px solid $table-border-color;
127
    border-left: 1px solid $table-border-color;
126
    padding: .2em .3em;
128
    padding: .2em .3em;
129
    word-wrap: break-all;
130
    word-wrap: break-word;
127
}
131
}
128
132
129
td {
133
td {
(-)a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss (+10 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
            }
933
        }
924
    }
934
    }
925
}
935
}
926
936
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/pos/pay.tt (-2 / +2 lines)
Lines 338-344 Link Here
338
               "aoColumnDefs": [
338
               "aoColumnDefs": [
339
                  { "aTargets": [ -1, -2 ], "bSortable": false, "bSearchable":false },
339
                  { "aTargets": [ -1, -2 ], "bSortable": false, "bSearchable":false },
340
               ],
340
               ],
341
        }, items_columns_settings);
341
               "bAutoWidth": false
342
        }, items_columns_settings, false);
342
343
343
        $(".add_button").on("click", function(e) {
344
        $(".add_button").on("click", function(e) {
344
            e.preventDefault();
345
            e.preventDefault();
345
- 

Return to bug 26189