@@ -, +, @@ table (catalogue/detail.pl) - Reduce the font size of the filter input fields - Make the filter inputs' width 100% instead of fixed - Add "'bAutoWidth': false" to the datatables initialization to prevent the table width from being set to the browser window width on load. This allows the browser to be re-sized and have the table re-flow with it. --- koha-tmpl/intranet-tmpl/prog/en/css/datatables.css | 3 ++- koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/css/datatables.css +++ a/koha-tmpl/intranet-tmpl/prog/en/css/datatables.css @@ -227,5 +227,6 @@ tr.even.selected td { /* ColumnFilter */ span.filter_column > input.text_filter { - width: 7em; + font-size: 80%; + width: 100%; } --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt @@ -56,7 +56,8 @@ function verify_images() { for (id in {holdings:0, otherholdings:0}) { $("#"+ id +" > table").dataTable($.extend(true, {}, dataTablesDefaults, { 'sDom': 't', - 'bPaginate': false + 'bPaginate': false, + 'bAutoWidth': false })).columnFilter({ 'sPlaceHolder': 'head:after' }); --