From 8b4436dab770d1de335ce77bd9daf2ed4f48cda0 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 2 Dec 2014 11:37:00 +0100 Subject: [PATCH] [PASSED QA] 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). Signed-off-by: Owen Leonard Signed-off-by: Kyle M Hall --- koha-tmpl/intranet-tmpl/prog/en/css/datatables.css | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) 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.2.5