From f6d87c2b7c8bf3628a73ede6a7adfef5dbd64e39 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 2 Dec 2014 11:37:00 +0100 Subject: [PATCH] Bug 13370: Inputs overflow in filter Bug 12376 adds some padding to inputs. This cause an overflow on the record detail page. Test plan: 1/ Go on a record detail page with items 2/ Enable filters Without the patch, the inputs overflow, with the patch it should be corrected (as before bug 12376). --- koha-tmpl/intranet-tmpl/prog/en/css/datatables.css | 1 + 1 file changed, 1 insertion(+) diff --git a/koha-tmpl/intranet-tmpl/prog/en/css/datatables.css b/koha-tmpl/intranet-tmpl/prog/en/css/datatables.css index f7239fe..22f3f2c 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/css/datatables.css +++ b/koha-tmpl/intranet-tmpl/prog/en/css/datatables.css @@ -238,6 +238,7 @@ tr.even.selected td { span.filter_column > input.text_filter { font-size: 80%; width: 100%; + padding: 0; } /* Row grouping */ -- 2.1.0