@@ -, +, @@ hidden on small screens - Go to Circulation -> Holds queue - Try adjusting the width of the browser window to confirm that it is responsive at various widths. - When the viewport width is below 768 the page layout will adjust, and the contents of the sidebar will drop below the table of holds. This is consistent with other pages in the staff interface. - Check that the corrected CSS has resulted in a correction to the layout of submit buttons in forms: - For example, in Administration -> Cities and towns -> New city. - Before the patch there was no padding between the submit button and the white fieldset containing the form fields. - After the patch the correct padding has been restored. --- koha-tmpl/intranet-tmpl/prog/css/src/_forms.scss | 2 ++ 1 file changed, 2 insertions(+) --- a/koha-tmpl/intranet-tmpl/prog/css/src/_forms.scss +++ a/koha-tmpl/intranet-tmpl/prog/css/src/_forms.scss @@ -19,6 +19,8 @@ fieldset { } &.rows { + clear: left; + float: left; margin: .9em 0 0; padding: 1rem; width: 100%; --