From baabcf3c75e7180bfa5d00209be5c5146c25fe7b Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Wed, 23 Dec 2009 09:07:25 -0500 Subject: [PATCH] Fix for Bug 3991, Circulation search submit button wrapping in WebKit browsers If CircAutocompl is ON, the circ search form has a hidden
for use in displaying live search results. For some reason WebKit browsers (Safari and Chrome) treat this hidden element as a something that should create a line break like any other block-level element. Moving the submit button to before that hidden
fixes the problem without disrupting the display of the live search results. --- koha-tmpl/intranet-tmpl/prog/en/includes/patron-search-box.inc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/patron-search-box.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/patron-search-box.inc index 93a5efc3d2..e014be2e76 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/patron-search-box.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/patron-search-box.inc @@ -48,9 +48,8 @@ YAHOO.util.Event.onContentReady("header_search", function() {
- +
- " type="hidden" /> -- 2.20.1