From 17dd5142d14fc0841a2527c0032f3de1dfb43997 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 2 Dec 2014 11:37:00 +0100 Subject: [PATCH] [SIGNED-OFF] Bug 13370: Inputs overflow in filter Content-Type: text/plain; charset="utf-8" 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). Signed-off-by: Owen Leonard --- 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 */ -- 1.7.9.5