Bug 22293: Sticky toolbar making vendor form uneditable
The new floating toolbar plugin doesn't like a particular combination of markup: A toolbar inside a form which is styled "display:inline." The staff client CSS styles forms that way globally, so it must be explicitly overridden in these situations. Changing the default will have broad consequences, so I propose an inline style to fix this. To test, apply the patch and go to Acquisitions. Add or edit a vendor and confirm that after scrolling down the page the form is still editable. Signed-off-by: Andrew Isherwood <andrew.isherwood@ptfs-europe.com> Signed-off-by: Mikaël Olangcay Brisebois <mikael.olangcay-brisebois@inLibro.com> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
This commit is contained in:
parent
0844f2c174
commit
ae258098d9
1 changed files with 1 additions and 1 deletions
|
@ -114,7 +114,7 @@
|
||||||
[% END %]
|
[% END %]
|
||||||
[% UNLESS ( enter ) %][% INCLUDE 'acquisitions-toolbar.inc' %][% END %]
|
[% UNLESS ( enter ) %][% INCLUDE 'acquisitions-toolbar.inc' %][% END %]
|
||||||
[% IF ( enter ) %]
|
[% IF ( enter ) %]
|
||||||
<form action="updatesupplier.pl" name="updatesupplier" class="validated" method="post">
|
<form action="updatesupplier.pl" name="updatesupplier" style="display:block" class="validated" method="post">
|
||||||
<div id="toolbar" class="btn-toolbar">
|
<div id="toolbar" class="btn-toolbar">
|
||||||
<button class="btn btn-default btn-sm" type="submit"><i class="fa fa-save"></i> Save</button>
|
<button class="btn btn-default btn-sm" type="submit"><i class="fa fa-save"></i> Save</button>
|
||||||
[% IF ( booksellerid ) %]
|
[% IF ( booksellerid ) %]
|
||||||
|
|
Loading…
Reference in a new issue