From 94011d285079489b8d3640a0587f9bb085f10c56 Mon Sep 17 00:00:00 2001 From: silverwind Date: Sat, 8 Aug 2026 03:49:41 +0200 Subject: [PATCH] fix(ui): change underlines to default browser style (#38819) (#38823) Remove all underline style customization on links, letting the browser defaults apply --- web_src/css/base.css | 2 -- 1 file changed, 2 deletions(-) diff --git a/web_src/css/base.css b/web_src/css/base.css index 64da8fa9c1..9379402dfc 100644 --- a/web_src/css/base.css +++ b/web_src/css/base.css @@ -273,12 +273,10 @@ a { color: var(--color-primary); cursor: pointer; text-decoration-line: none; - text-decoration-skip-ink: all; } a:hover { text-decoration-line: underline; - text-underline-position: under; /* necessary for CJK fonts, otherwise, default "auto" makes the underline cross-over the CJK text bottom */ } /* a = always colored, underlined on hover */