From 213463cef8ccc43b313460903a9cc985e6298535 Mon Sep 17 00:00:00 2001 From: Henry Bolshaw Date: Thu, 16 Sep 2021 12:53:12 +0000 Subject: [PATCH] Bug 29035: Accessibility: OPAC masthead_search label doesn't have sufficient contrast ratio This patch changes the colour of the masthead search label to improve accessibility and make it easier to read. To test: 1. Use an accessibility tool (e.g. Chrome's Lighthouse tool) to test the contrast ratio. 2. Confirm that the search label has insufficient contrast. 3. Apply the patch and rebuild the OPAC CSS: yarn build --view opac 4. Use the accessibility tool to confirm the contrast ratio now meets accessibility requirements. 5. Check that the OPAC still looks ok after the changes. Signed-off-by: Owen Leonard Signed-off-by: Katrin Fischer Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall --- koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss b/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss index a3c9edcbba..0a63785135 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss +++ b/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss @@ -554,7 +554,7 @@ th { padding: 15px; label { - color: #727272; + color: #666666; font-size: 115%; font-weight: bold; margin: 0; -- 2.39.5