From cfd52e15fd8c5b513994fbd7b63dac9165db75c6 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Fri, 29 Jun 2018 12:50:01 +0000 Subject: [PATCH] Bug 20959: (follow-up) Prevent checkin button from wrapping This follow-up wraps the checkin form in a div to prevent the button from wrapping to the line below the input. To test, apply the patch and clear your browser cache if necessary. View the checkin page to confirm that there isn't a layout problem. --- koha-tmpl/intranet-tmpl/prog/css/staff-global.css | 4 ++++ .../intranet-tmpl/prog/en/modules/circ/returns.tt | 28 ++++++++++++---------- 2 files changed, 19 insertions(+), 13 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/css/staff-global.css b/koha-tmpl/intranet-tmpl/prog/css/staff-global.css index 80dcda0..8aad066 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/staff-global.css +++ b/koha-tmpl/intranet-tmpl/prog/css/staff-global.css @@ -3322,3 +3322,7 @@ span.name { margin: auto; margin-bottom: 2px; } + +.form-control-group { + white-space: nowrap; +} diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt index e4fc012..545c1b6 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt @@ -546,19 +546,21 @@
Enter item barcode:
- [% IF ( exemptfine ) %] - - [% ELSIF ( dropboxmode ) %] - - [% ELSE %] - - [% END %] - - [% FOREACH inputloo IN inputloop %] - - - - [% END %] +
+ [% IF ( exemptfine ) %] + + [% ELSIF ( dropboxmode ) %] + + [% ELSE %] + + [% END %] + + [% FOREACH inputloo IN inputloop %] + + + + [% END %] +
-- 2.1.4