Hi! In popular Microblog instances, notifications can be an annoyance. I’m aware that it’s possible to filter notification types, but want to know about new followers; I don’t want, however, that they take so much screen real state.
Here’s an idea to tackle this design issue: https://i.imgur.com/Xj6VM7z.png
Basically, removing ap-object
div from those notifications (new followers, blocks etc.) does the trick.
Got a good head start with this CSS class:
.ap-object:not(.h-entry) { display: none; }
I noticed that only Notifications tab has a main CSS ID (#notifications). It would be nice if other tabs had unique IDs or classes as well.