From 89ae17f7a31d111efe05c026c766e3fc491086cf Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 1 Dec 2025 00:50:26 +0000 Subject: [PATCH] Hide repeated usernames in hide-other-replies mode When toggling to "hide other replies" mode, the username is now hidden on continuation posts (those after the first), while keeping the date stamp and "View on Bluesky" link visible. Usernames reappear when toggling back out of hide mode. --- bluesky-thread.html | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bluesky-thread.html b/bluesky-thread.html index 394d5885..61c8a456 100644 --- a/bluesky-thread.html +++ b/bluesky-thread.html @@ -369,6 +369,10 @@ #threadContainer.hide-other-replies .post:not(.depth-1.root-author-post) { display: none; } + /* Hide repeated usernames in hide-other-replies mode (but keep date/links visible) */ + #threadContainer.hide-other-replies .post.depth-1.root-author-post.author-continuation .author { + display: none; + } @media (max-width: 600px) { .post { padding-left: 1em; } }