From 4f5d37b676e3927a91c06775acb25cf6bd0f09a5 Mon Sep 17 00:00:00 2001 From: David Larlet Date: Fri, 28 Feb 2025 14:05:26 -0500 Subject: [PATCH] a11y: switch to better contrasted links And underline for external links otherwise the new green color is too close to the text one to clearly identify links. --- umap/static/umap/base.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/umap/static/umap/base.css b/umap/static/umap/base.css index f3ff8f4e..b33cdf34 100644 --- a/umap/static/umap/base.css +++ b/umap/static/umap/base.css @@ -19,7 +19,10 @@ h1, h2, h3, h4, h5, h6, label, hr { } a { text-decoration: none; - color: SeaGreen; + color: #1F5C39; +} +a[href^="http"] { + text-decoration: underline; } button { cursor: pointer;