From 3b4d41dea82e2778076754133cda20ad291f42ae 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 --- 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 6ff646309c..fc86e45f20 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss +++ b/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss @@ -567,7 +567,7 @@ th { padding: 15px; label { - color: #727272; + color: #666666; font-size: 115%; font-weight: bold; margin: 0; -- 2.39.5