From df846a98edb0f8740377af5be6f7ad5fe340a903 Mon Sep 17 00:00:00 2001 From: Henry Bolshaw Date: Thu, 16 Sep 2021 08:35:39 +0000 Subject: [PATCH] Bug 29034: Accessibility: OPAC nav links don't have sufficient contrast ratio This patch changes the colour of the navigation links on the OPAC (Cart, Lists etc.) to improve the contrast ration and make them easier to read. To test: 1. Use an accessibility tool (e.g. Chrome's Lighthouse tool) to check the contrast ratio on the OPAC 2. Confirm that the navigation links have 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 meets the minimum accessibility requirements 5. Check that the OPAC looks ok after the changes Signed-off-by: Owen Leonard --- koha-tmpl/opac-tmpl/bootstrap/css/src/_common.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/css/src/_common.scss b/koha-tmpl/opac-tmpl/bootstrap/css/src/_common.scss index 1d0c0a9419..2291898119 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/css/src/_common.scss +++ b/koha-tmpl/opac-tmpl/bootstrap/css/src/_common.scss @@ -163,7 +163,7 @@ h1 { & > li { & > a { - color: #777777; + color: #666666; font-weight: bold; } -- 2.20.1