diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 68e9fc0a75..cb29110725 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -34,6 +34,7 @@ Changelog * Fix: Ensure the skip link (used for keyboard control) meets colour contrast guidelines for accessibility (Dauda Yusuf) * Fix: Ensure tag fields correctly show in both dark and light Windows high-contrast modes (Albina Starykova) * Fix: Ensure new tooltips & tooltip menus have visible borders and tip triangle in Windows high-contrast mode (Juliet Adeboye) + * Fix: Ensure there is a visual difference of 'active/current link' vs normal links in Windows high-contrast mode (Mohammad Areeb) 4.1.1 (xx.xx.xxxx) - IN DEVELOPMENT diff --git a/CONTRIBUTORS.rst b/CONTRIBUTORS.rst index 7e999c1c94..4061bbb09b 100644 --- a/CONTRIBUTORS.rst +++ b/CONTRIBUTORS.rst @@ -662,6 +662,7 @@ Contributors * Omerzahid Ali * Aman Pandey * Doug Harris +* Mohammad Areeb Translators =========== diff --git a/client/scss/components/_link.legacy.scss b/client/scss/components/_link.legacy.scss index 01229d4a0c..d173b02080 100644 --- a/client/scss/components/_link.legacy.scss +++ b/client/scss/components/_link.legacy.scss @@ -5,6 +5,10 @@ &:hover { color: $color-teal; } + + @media (forced-colors: $media-forced-colours) { + color: GrayText; + } } a.underlined { diff --git a/docs/releases/4.2.md b/docs/releases/4.2.md index a37cd03ca2..48063654e0 100644 --- a/docs/releases/4.2.md +++ b/docs/releases/4.2.md @@ -45,6 +45,7 @@ depth: 1 * Ensure the skip link (used for keyboard control) meets colour contrast guidelines for accessibility (Dauda Yusuf) * Ensure tag fields correctly show in both dark and light Windows high-contrast modes (Albina Starykova) * Ensure new tooltips & tooltip menus have visible borders and tip triangle in Windows high-contrast mode (Juliet Adeboye) + * Ensure there is a visual difference of 'active/current link' vs normal links in Windows high-contrast mode (Mohammad Areeb) ## Upgrade considerations