From 93c8e2df451513c99a8c0c84e4df87f54a0b51e2 Mon Sep 17 00:00:00 2001 From: nina martinez Date: Wed, 4 Jun 2025 16:28:06 +0200 Subject: [PATCH] Bug 40097: Replace the color of elements with low constrast. Test plan: 1. Enable the system preferences: ILLModule, OPACHoldsHistory, OPACHoldRequests. 2. Apply the patch and log in to a patron account. 3. Go to the "Interlibrary loan requests". Look at the "Show 'select number' entries" and check the color contrast, which should be greater than 4.5. 4. Search for a record, choose "Place hold", and check the color contrast. The "show more options" should have a color contrast greater than 4.5. 5. Now go to the Holds history, you need at least one record on hold. Look at the "Showing 1 to ... of ... entries" and check the color contrast, which should be greater than 4.5. Signed-off-by: Owen Leonard --- koha-tmpl/opac-tmpl/bootstrap/css/src/_common.scss | 2 +- koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/css/src/_common.scss b/koha-tmpl/opac-tmpl/bootstrap/css/src/_common.scss index 0782aa0ad25..0467d3ecfa2 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/css/src/_common.scss +++ b/koha-tmpl/opac-tmpl/bootstrap/css/src/_common.scss @@ -1194,7 +1194,7 @@ table { } .table_entries { - color: #797979; + color: #727272; font-size: 90%; margin-left: 5px; padding: 5px 0; diff --git a/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss b/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss index 5f182f644ab..6668b097f45 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss +++ b/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss @@ -2341,7 +2341,7 @@ nav { } .toggle-hold-options { - background-color: #EEE; + background-color: #F3F3F3; clear: both; display: block; font-weight: bold; -- 2.39.5