From 8ff904b18f903d276b229b93c823277e3960b3a4 Mon Sep 17 00:00:00 2001
From: Jacob Willden <67853915+jacob-willden@users.noreply.github.com>
Date: Tue, 24 Feb 2026 14:12:15 -0700
Subject: [PATCH] Add back underlines to links in posts (#1386)
As mentioned [in Hometown's
README](https://github.com/hometown-fork/hometown#better-accessibility-defaults),
links in posts are meant to be underlined by default for better
accessibility. However, this default was overridden in one of the
stylesheets so [every Hometown instance I know
of](https://github.com/hometown-fork/hometown/wiki/Hometown-servers)
(with the exception of weirder.earth) does not have any underlined links
in posts as of right now. This pull request restores those underlines.
Before (feed view):
After (feed view):
Before (expanded view):
After (expanded view):
---
app/javascript/styles/mastodon/components.scss | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app/javascript/styles/mastodon/components.scss b/app/javascript/styles/mastodon/components.scss
index 8e1a8164b..606fabdd3 100644
--- a/app/javascript/styles/mastodon/components.scss
+++ b/app/javascript/styles/mastodon/components.scss
@@ -1188,7 +1188,7 @@
a {
color: $secondary-text-color;
- text-decoration: none;
+ text-decoration: underline;
unicode-bidi: isolate;
&:hover {