bsky-no-numbers.css
edited
1/* Repost/quote/like/save count in expanded post */
2:has(> [data-testid*="Count-expanded"]), div[data-testid="bookmarkCount-expanded"] {
3 display: none;
4}
5div:has(> a > [data-testid*="Count-expanded"]), div:has(> div > [data-testid*="Count-expanded"]) {
6 border-top: 0;
7 padding: 0 !important;
8}
9
10/* Like/repost counts on buttons */
11[data-testid="likeCount"], [data-testid="repostCount"] {
12 display: none;
13}
14
15/* +n indicator next to avatar icons in notifications */
16div[style="flex-direction: row; align-items: center;"] > div[dir=auto][style*="font-size: 13.125px;"] {
17 display: none;
18}
19
20/* Replace "n others" with "several others" in notifications */
21:is(a[aria-label$="'s profile"], :has(> div > a[aria-label$="'s profile"])) + span:not([style*="color: rgb(147, 165, 183);"], [style*="color: rgb(147, 147, 183);"], [style*="color: rgb(175, 170, 153);"]) {
22 font-size: 0 !important;
23 &::before {
24 font-size: 15px;
25 content: "several others";
26 }
27}
28
29/* Unread count on notification indicator */
30div[aria-label*=" unread item"] {
31 font-size: 0 !important;
32}