-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhide-stuff.css
45 lines (42 loc) · 1.43 KB
/
hide-stuff.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
/**
* @name Hide this!
* @author @Krammeth
* @description Hides a bunch of useless stuff
* @version 1.0
*/
[class^="voiceChannelsButton_"], /* [voice channels] */
[class^=giftButtonContainer__], /* DMs gift button */
[class*="profileMutuals_"], /* profile mutuals */
[class^="recentsIcon_"]:not(:has([class^="iconBadge_"])), /* inbox (unless notifs) */
button[aria-label="Open GIF picker"], /* [GIF] in chatbar */
button[aria-label="Open sticker picker"], /* [Sticker] in chatbar */
[class^=wumpusWrapper], /* new to discord */
[class*="pencilContainer_"], /* pencil on profile banner */
[class*="popoutBannerPremium__"] [class*="gifTag__"], /* [gif] on profile banner */
.section__76155, /* [message] in profile */
button[aria-label="Focus"], /* [Focus] in VCs */
button[aria-label="Grid"], /* [Grid] in VCs */
button[aria-label="Invite"], /* [Invite] in VCs */
[class^="iconItem__"]:not([aria-label="Open Chat"]) { /* invite & settings button on channels */
display: none !important;
}
/* No Super Reaction Popup and Effects */
[class^="reaction_"][style*="background"] {
pointer-events: none;
}
[class^=reaction_] {
animation: none !important;
}
[class^=burstGlow__],
[class^=effectsWrapper__] {
display: none !important;
}
[class^=reactionCount_] {
color: var(--interactive-normal) !important;
}
[class^=hideEmoji__] {
opacity: 1 !important;
}
[class^="iconItem__"]:hover [class^="actionIcon_"] { /* Open Chat */
color: var(--main-color)
}