diff --git a/epicyon-profile.css b/epicyon-profile.css index f4dfa59dd..3612e0169 100644 --- a/epicyon-profile.css +++ b/epicyon-profile.css @@ -233,6 +233,7 @@ --diff-remove: #aaa; --reply-icon-direction: -1; --transition-type: auto; + --link-underline: none; } @font-face { @@ -466,14 +467,14 @@ a:visited { color: var(--main-visited-color); background: var(--link-bg-color); font-weight: normal; - text-decoration: none; + text-decoration: var(--link-underline); } a:link { color: var(--main-link-color); background: var(--link-bg-color); font-weight: normal; - text-decoration: none; + text-decoration: var(--link-underline); } a:link[type=application/activity+json]::before { diff --git a/theme/default/theme.json b/theme/default/theme.json index 733290e0f..53cee0630 100644 --- a/theme/default/theme.json +++ b/theme/default/theme.json @@ -269,5 +269,6 @@ "reply-icon-direction": "-1", "instance-software-fg-color": "#bbb", "instance-software-bg-color": "#444", - "transition-type": "auto" + "transition-type": "auto", + "link-underline": "none" } diff --git a/theme/typewriter/theme.json b/theme/typewriter/theme.json index 94938a385..6626a3809 100644 --- a/theme/typewriter/theme.json +++ b/theme/typewriter/theme.json @@ -283,5 +283,6 @@ "post-separator-margin-bottom": "0", "instance-software-fg-color": "#333", "instance-software-bg-color": "#ddd", - "transition-type": "auto" + "transition-type": "auto", + "link-underline": "underline" }