From 5c0d4053a60841866b212fa996045b8f9c55d73a Mon Sep 17 00:00:00 2001 From: Arthur Suzuki Date: Mon, 29 Apr 2019 16:15:32 +0200 Subject: [PATCH] Bug 22803: Fix dataTable width Test plan : 1 - Go to Administration / Configure columns 2 - check Opac/serial_notes "is hidden by defaut" 3 - search a serials on the opac and in the opac-details page, subscriptions tab, find out that the table is shrinked on the left 4 - Apply patch 5 - Find out subscription table fills the tab correctly --- koha-tmpl/opac-tmpl/bootstrap/css/datatables.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/koha-tmpl/opac-tmpl/bootstrap/css/datatables.css b/koha-tmpl/opac-tmpl/bootstrap/css/datatables.css index e74fa58057..a815fe812c 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/css/datatables.css +++ b/koha-tmpl/opac-tmpl/bootstrap/css/datatables.css @@ -1,3 +1,7 @@ +.dataTable { + width:100% !Important; +} + .dataTables_filter label { font-size: 12px; } -- 2.11.0