diff --git a/assets/js/a11y.js b/assets/js/a11y.js index ffb8d845..e749a855 100644 --- a/assets/js/a11y.js +++ b/assets/js/a11y.js @@ -37,7 +37,10 @@ window.A11yPanel = (() => { if (enabled && !existing) { const style = document.createElement("style"); style.id = "a11y-underline-links"; - style.textContent = "a { text-decoration: underline !important; }"; + style.textContent = ` + a { text-decoration: underline !important; } + .group-hover-card-title { text-decoration: underline !important; } + .group-hover-card:hover .group-hover-card-title { text-decoration: underline !important; }`; document.head.appendChild(style); } else if (!enabled && existing) { existing.remove();