From 813a2eba333c0d11dba896af9d2c8f5259ff7c3b Mon Sep 17 00:00:00 2001 From: notabene Date: Mon, 9 Dec 2019 22:21:18 +0100 Subject: [PATCH] Accessibility: do not convey meaning through colour alone Some people aren't sensitive to colour, so in order to differentiate links from surrounding text, we must rely on colour **plus** something else. Reinstate underlines, please pretty please. /me doing my Bambi eyes --- themes/beautifulhugo/static/css/light.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/themes/beautifulhugo/static/css/light.css b/themes/beautifulhugo/static/css/light.css index 0912d78..e970bb5 100644 --- a/themes/beautifulhugo/static/css/light.css +++ b/themes/beautifulhugo/static/css/light.css @@ -49,9 +49,11 @@ ul { padding-left: 2em; } -a, a:visited { +a:links, a:visited { color: #0085a1; - text-decoration: none; + /* text-decoration: none; */ + text-decoration: underline; + text-decoration-skip-ink: auto; } a:hover {