From dca38141bf39375ae0d86d8e3c44273a6e54fd63 Mon Sep 17 00:00:00 2001 From: Richard Dern Date: Thu, 6 Nov 2025 22:53:18 +0100 Subject: [PATCH] =?UTF-8?q?Am=C3=A9lioration=20de=20l'affichage=20des=20li?= =?UTF-8?q?ens=20du=20footer?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- themes/42/assets/css/footer.css | 7 ++++--- themes/default/assets/css/variables/aesthetics.css | 4 +++- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/themes/42/assets/css/footer.css b/themes/42/assets/css/footer.css index 3b25f9b8..1554cef9 100644 --- a/themes/42/assets/css/footer.css +++ b/themes/42/assets/css/footer.css @@ -6,12 +6,13 @@ body>footer { padding: var(--footer-padding); a { - color: var(--color-footer-text); - text-decoration: underline; + color: var(--color-footer-link); + text-decoration: none; &:hover, &:focus { - color: var(--color-footer-heading); + color: var(--color-footer-link-hover); + text-decoration: underline; } } diff --git a/themes/default/assets/css/variables/aesthetics.css b/themes/default/assets/css/variables/aesthetics.css index 29dbab9d..dcf36c2f 100644 --- a/themes/default/assets/css/variables/aesthetics.css +++ b/themes/default/assets/css/variables/aesthetics.css @@ -1,7 +1,7 @@ :root { /* Base text colors */ --color-text: var(--gray-500); - --color-text-muted: var(--gray-600); + --color-text-muted: var(--gray-700); --color-text-light: var(--gray-300); --color-text-strong: var(--gray-0); --color-footer-text: var(--color-text-muted); @@ -25,6 +25,8 @@ --color-link-dead-hover: var(--red-300); --color-keyword: var(--gray-500); --color-keyword-hover: var(--gray-0); + --color-footer-link: var(--gray-500); + --color-footer-link-hover: var(--gray-0); /* Border tokens */ --border-outer-color: var(--gray-800);