Created
November 14, 2024 22:47
-
-
Save parsingphase/306ba57f8249012f0dd3fbf2e3358da2 to your computer and use it in GitHub Desktop.
User Stylesheet to only view replies on your Bluesky notification page (no follows, likes, reposts)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
This stylesheet can be used to hide all but reply notifications on your Bluesky notifications page (https://bsky.app/notifications) | |
You'll generally need a plugin such as https://addons.mozilla.org/en-US/firefox/addon/styl-us/ on firefox - | |
other plugins or ways of adding a user stylesheet are available for other browers. | |
You'll probably only want to enable it on the one page, and you'll have to turn it off to see any other notification types. | |
This stylesheet will work until something critical changes on the Bluesky notifications page. | |
If it breaks, the [data-testid="notificationsScreen"] line is the most likely culprit - you can just remove it & the matching {}s | |
*/ | |
[data-testid="notificationsScreen"] { | |
[aria-label*=' followed '] { | |
display: none; | |
} | |
[aria-label*=' liked '] { | |
display: none; | |
} | |
[aria-label*=' reposted '] { | |
display: none; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you don't want this to be always-on, you can also set your stylesheet plugin to only show it on a URL of https://bsky.app/notifications?commentOnly=true - then bookmark that page for a compact view.