
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Evergreen ILS". The branch, main has been updated via 953b4b9597580efaa19b2ee16ef996e134556404 (commit) from dc7df4a608dd502856a9d6b4c403dfca76ee8f87 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 953b4b9597580efaa19b2ee16ef996e134556404 Author: Stephanie Leary <stephanie.leary@equinoxoli.org> Date: Fri May 30 15:24:34 2025 +0000 LP2110163 Self checkout focused button text color Adjusts the selectors for links styled as buttons in the Angular self-checkout screens to ensure that the hover/focus state's text color rule is applied. (Adding :where() to the overall staff client link selector weakens it slightly, making it easier to override elsewhere.) Release-note: Fixes focused buttons' text color in self-checkout Signed-off-by: Stephanie Leary <stephanie.leary@equinoxoli.org> Signed-off-by: Shula Link <devonkonti@gmail.com> Signed-off-by: Terran McCanna <tmccanna@georgialibraries.org> diff --git a/Open-ILS/src/eg2/src/app/staff/scko/checkout.component.html b/Open-ILS/src/eg2/src/app/staff/scko/checkout.component.html index e781137115..f93f8a2145 100644 --- a/Open-ILS/src/eg2/src/app/staff/scko/checkout.component.html +++ b/Open-ILS/src/eg2/src/app/staff/scko/checkout.component.html @@ -3,7 +3,7 @@ <h1 i18n>Currently Checking Out</h1> </div> <div> - <button type="button" class="scko-button" (click)="printList()" i18n>Print List</button> + <button type="button" class="btn scko-button" (click)="printList()" i18n>Print List</button> </div> </div> <div id='oils-selfck-circ-table-div'> diff --git a/Open-ILS/src/eg2/src/app/staff/scko/scko.component.css b/Open-ILS/src/eg2/src/app/staff/scko/scko.component.css index 48782045fb..da998f4a59 100644 --- a/Open-ILS/src/eg2/src/app/staff/scko/scko.component.css +++ b/Open-ILS/src/eg2/src/app/staff/scko/scko.component.css @@ -134,13 +134,10 @@ label.btn-outline-success:active { border-radius: .25em; } -.scko-button:hover, -.scko-button:focus, -.scko-button:active, -.btn-check-label:hover, -.btn-check-label:focus, -.btn-check-label:active { - color: #F8E473; +.btn.scko-button { + --bs-btn-active-color: #F8E473; + --bs-btn-hover-color: #F8E473; + --primary-hover: #F8E473; } label.btn-check-label.active:before { ----------------------------------------------------------------------- Summary of changes: Open-ILS/src/eg2/src/app/staff/scko/checkout.component.html | 2 +- Open-ILS/src/eg2/src/app/staff/scko/scko.component.css | 11 ++++------- 2 files changed, 5 insertions(+), 8 deletions(-) hooks/post-receive -- Evergreen ILS