From a2cb9c08a8f17e2343db2e6519da615736052e68 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 --- 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 c665cfea5d..c8d46bb1bd 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss +++ b/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss @@ -571,7 +571,7 @@ th { padding: 15px; label { - color: #727272; + color: #666666; font-size: 115%; font-weight: bold; margin: 0; -- 2.20.1