Bugzilla – Attachment 175445 Details for
Bug 38350
Fix style of sidebar form clear buttons
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 38350: Fix style of sidebar form clear buttons
Bug-38350-Fix-style-of-sidebar-form-clear-buttons.patch (text/plain), 7.18 KB, created by
Marcel de Rooy
on 2024-12-13 10:48:11 UTC
(
hide
)
Description:
Bug 38350: Fix style of sidebar form clear buttons
Filename:
MIME Type:
Creator:
Marcel de Rooy
Created:
2024-12-13 10:48:11 UTC
Size:
7.18 KB
patch
obsolete
>From 1f76c64f0879a34b490694f9b451056f04aeffba Mon Sep 17 00:00:00 2001 >From: Owen Leonard <oleonard@myacpl.org> >Date: Mon, 4 Nov 2024 16:22:37 +0000 >Subject: [PATCH] Bug 38350: Fix style of sidebar form clear buttons >Content-Type: text/plain; charset=utf-8 > >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 <david@davidnind.com> > >Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> >--- > .../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 %] > </ol> >- <fieldset class="action"> >- <input type="submit" class="btn btn-primary" value="Search" /> >- <input type="button" value="Clear" class="btn btn-default clear_search" /> >- </fieldset> >+ </fieldset> >+ <fieldset class="action"> >+ <input type="submit" class="btn btn-primary" value="Search" /> >+ <input type="button" value="Clear" class="btn btn-default clear_search" /> > </fieldset> > </form> > </aside> >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 @@ > > </li> > </ol> >- <fieldset class="action"><input type="submit" class="btn btn-default" value="Filter" /> <a href="/cgi-bin/koha/acqui/parcels.pl?booksellerid=[% booksellerid | uri %]">Clear</a></fieldset> >+ </fieldset> >+ <fieldset class="action"> >+ <input type="submit" class="btn btn-primary" value="Filter" /> >+ <a class="btn btn-default clear_search" href="/cgi-bin/koha/acqui/parcels.pl?booksellerid=[% booksellerid | uri %]">Clear</a> > </fieldset> > </form> > </aside> >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 @@ > <input type="text" name="illfilter_patron" id="illfilter_patron" /> > </li> > </ol> >- <fieldset class="action"> >- <input type="submit" class="btn btn-primary" value="Search" /> >- <input type="button" value="Clear" id="clear_search" /> >- </fieldset> >+ </fieldset> >+ <fieldset class="action"> >+ <input type="submit" class="btn btn-primary" value="Search" /> >+ <input type="button" value="Clear" class="clear_search" /> > </fieldset> > </form> <!-- /#illfilter_form --> > </aside> >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 @@ > </fieldset> <!-- /.brief --> > <fieldset class="action"> > <input type="submit" class="btn btn-primary" value="Apply filter" /> >- <a id="resetReportsFilter" href="/cgi-bin/koha/reports/guided_reports.pl?op=list&clear_filters=1">Clear</a> >+ <a class="btn btn-default clear_search" id="resetReportsFilter" href="/cgi-bin/koha/reports/guided_reports.pl?op=list&clear_filters=1">Clear</a> > </fieldset> > </form> > </div> <!-- /#saved-reports-filter --> >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
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 38350
:
173938
|
175092
|
175236
| 175445