@@ -, +, @@ --- koha-tmpl/intranet-tmpl/prog/css/src/_tables.scss | 4 ++++ koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss | 10 ++++++++++ koha-tmpl/intranet-tmpl/prog/en/modules/pos/pay.tt | 3 ++- 3 files changed, 16 insertions(+), 1 deletion(-) --- a/koha-tmpl/intranet-tmpl/prog/css/src/_tables.scss +++ a/koha-tmpl/intranet-tmpl/prog/css/src/_tables.scss @@ -1,7 +1,9 @@ table { + table-layout: fixed; border-collapse: collapse; border-right: 1px solid $table-border-color; border-top: 1px solid $table-border-color; + width: 100%; .btn-group { white-space: nowrap; @@ -124,6 +126,8 @@ th { border-bottom: 1px solid $table-border-color; border-left: 1px solid $table-border-color; padding: .2em .3em; + word-wrap: break-all; + word-wrap: break-word; } td { --- a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss +++ a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss @@ -898,6 +898,10 @@ fieldset { font-size: 105%; margin: 1em 0 1em 1em; + &.dataTable { + margin: 0; + } + &.mceListBox { margin: 0; } @@ -921,6 +925,12 @@ fieldset { clear: both; padding-top: .5em; } + + .dataTables_wrapper { + label { + font-weight: 400; + } + } } } --- a/koha-tmpl/intranet-tmpl/prog/en/modules/pos/pay.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/pos/pay.tt @@ -338,7 +338,8 @@ "aoColumnDefs": [ { "aTargets": [ -1, -2 ], "bSortable": false, "bSearchable":false }, ], - }, items_columns_settings); + "bAutoWidth": false + }, items_columns_settings, false); $(".add_button").on("click", function(e) { e.preventDefault(); --