-
Notifications
You must be signed in to change notification settings - Fork 7
/
adblock-extras.css
51 lines (44 loc) · 1.22 KB
/
adblock-extras.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/* ==UserStyle==
@name Discord AdBlock Extras
@namespace https://github.com/CroissantDuNord/discord-adblock
@version 1.0.0
@description Removes extra Nitro-related objects from Discord that do not explicitly count as advertising.
@author Ridge & contributors
==/UserStyle== */
/* Remove avatar decorations */
svg[class*=avatarDecoration_] {
display: none;
}
img[class*=avatarDecoration_] {
display: none;
}
/* Remove profile decorations */
div[class*=profileEffects] {
display: none;
}
div[class*=userProfileModalInner]>header>svg>foreignObject>div[class*=bannerPremium] {
display: none;
}
/* Server booster icon */
svg[class*=premiumIcon_] {
display: none;
}
/* Server boost progress bar */
ul > li:has(div[data-list-item-id*=channels___boosts-]) {
display: none;
}
/* Nitro Icon Sever */
div[class^=guildIconContainer_]:has(svg[class^=boostedGuildIconGem_]) {
display: none;
}
/* Quests icon */
svg[class^=questsIcon_] {
display: none;
}
/* Activity list */
h3[class^=membersGroup_]:has(span[role="button"]) {
display: none;
}
div[class^=container_] > aside[class^=membersWrap_] > div[class^=members_] > div[role^=list] > div:has(div[class*="openOnHover_"]) {
display: none;
}