From 664dcc4dc448191df1cc271fa1c64fdaec232dfd Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Mon, 4 Nov 2024 16:22:37 +0000 Subject: [PATCH] Bug 38350: Fix style of sidebar form clear buttons This patch fixes markup and CSS for sidebar form which contain a submit button and a clear button. The submit button is supposed to be wider than the clear button for visual emphasis. To test, apply the patch and rebuild the staff interface CSS. - Go to Patrons and confirm that the sidebar filter form looks correct. If necessary, resize your browser window to confirm that the "Search" button expands as the page gets wider. Confirm that the clear button works as expected. - Perform the same tests on these pages: - Acquisitions -> Vendor -> Receive shipments - ILL requests - Guided reports -> Saved reports Sponsored-by: Athens County Public Libraries Signed-off-by: David Nind --- .../prog/css/src/staff-global.scss | 31 ++++++++++++++----- .../prog/en/includes/patron-search.inc | 8 ++--- .../prog/en/modules/acqui/parcels.tt | 5 ++- .../prog/en/modules/ill/ill-requests.tt | 8 ++--- .../modules/reports/guided_reports_start.tt | 2 +- .../intranet-tmpl/prog/js/ill-list-table.js | 2 +- 6 files changed, 37 insertions(+), 19 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss b/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss index b43fe29c30..e1e9dade39 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss +++ b/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss @@ -404,16 +404,8 @@ aside { & + .action { background-color: #FFF; - display: flex; margin-left: 0; padding: 1rem; - - input, - button, - a { - display: block; - flex-grow: 1; - } } } } @@ -4770,6 +4762,29 @@ div .suggestion_note { .patroninfo-container { flex-direction: column; } + + aside { + fieldset { + &.brief { + & + .action { + display: flex; + gap: .5rem; + + input, + button, + a { + display: block; + flex-grow: 1; + + &.clear_search { + flex-grow: 0; + flex-shrink: 1; + } + } + } + } + } + } } @media only screen and ( max-width: 1000px ) { diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/patron-search.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/patron-search.inc index 8233e70c54..e1b3fcc3bd 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/patron-search.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/patron-search.inc @@ -105,10 +105,10 @@ [% END %] [% END %] -
- - -
+ +
+ +
diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcels.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcels.tt index 2501b191fb..479c06fe19 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcels.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcels.tt @@ -245,7 +245,10 @@ -
Clear
+ +
+ + Clear
diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt index 2012d2469c..41e63dc99a 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt @@ -108,10 +108,10 @@ -
- - -
+ +
+ +
diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt index 6bf5cc03b4..0c2170e63c 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt @@ -1491,7 +1491,7 @@
- Clear + Clear
diff --git a/koha-tmpl/intranet-tmpl/prog/js/ill-list-table.js b/koha-tmpl/intranet-tmpl/prog/js/ill-list-table.js index 7696424818..54cb5e43f8 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/ill-list-table.js +++ b/koha-tmpl/intranet-tmpl/prog/js/ill-list-table.js @@ -608,7 +608,7 @@ $(document).ready(function() { populateBackendFilter(); // Clear all filters - $('#clear_search').click(function() { + $('.clear_search').click(function() { clearSearch(); }); -- 2.39.5