From bc6828e0c0cee0224c535afea93ba514a5fa5d19 Mon Sep 17 00:00:00 2001 From: Mikail Kocak Date: Wed, 21 Jan 2026 14:26:06 +0100 Subject: [PATCH] fix(css): link visibility in inline code blocks Link style (color and hover) made inline links look like normal (unclickable) text thus making the documentation less helpful and harder to read. This change introduces the following: - Text color is now blue (instead of purple) - now it looks the same as other links - On hover, it now shows an underline to show to the user that it is a link --- src/css/components/markdown.css | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/src/css/components/markdown.css b/src/css/components/markdown.css index d1b0be1cbb..ebd37f96dd 100644 --- a/src/css/components/markdown.css +++ b/src/css/components/markdown.css @@ -8,16 +8,7 @@ } .markdown a code { - background-color: var(--purple4); - border-radius: 4px; - color: var(--purple11); -} - -@supports selector(a:has(code)) { - .markdown a:has(code), - .markdown a:has(code):hover { - text-decoration: none; - } + color: var(--highlight); } .markdown a:not(.card) {