From 31db4ecb002858b37ce765428aae3b0ed0c4b28b Mon Sep 17 00:00:00 2001 From: freamon Date: Sat, 6 Apr 2024 15:47:43 +0100 Subject: [PATCH] Underline links in High Contrast theme #132 --- app/templates/themes/high_contrast/styles.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/templates/themes/high_contrast/styles.css b/app/templates/themes/high_contrast/styles.css index 3f3c553a..3389740b 100644 --- a/app/templates/themes/high_contrast/styles.css +++ b/app/templates/themes/high_contrast/styles.css @@ -36,6 +36,10 @@ --bs-btn-color: white; } +.post_body a, .comment_body a { + text-decoration: underline; +} + .post_list .post_teaser { border-bottom: solid 1px black; } @@ -83,4 +87,4 @@ div.navbar { } [data-bs-theme="dark"] .coolfieldset.collapsed legend, [data-bs-theme="dark"] .coolfieldset legend, [data-bs-theme="dark"] .coolfieldset.expanded legend { background-color: black; -} \ No newline at end of file +}