From 8f9e1619c595b569912afa7dece291858780f544 Mon Sep 17 00:00:00 2001 From: Kegan Maher Date: Tue, 17 Dec 2024 19:49:30 +0000 Subject: [PATCH] refactor(docs): block for link overrides --- docs/styles/theme.css | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/docs/styles/theme.css b/docs/styles/theme.css index ede8601b0..8cf93144f 100644 --- a/docs/styles/theme.css +++ b/docs/styles/theme.css @@ -11,10 +11,17 @@ --md-mermaid-label-fg-color: #000000; } -a:not(.md-nav__link):not(.headerlink):not(.md-tabs__link) { +a { text-decoration: underline dotted currentColor auto; } +a.headerlink, +a.md-nav__link, +a.md-source, +a.md-tabs__link { + text-decoration-line: none; +} + .md-tabs__link { opacity: 1; }