Files

57 lines
1.3 KiB
CSS

/* Removes profile effects that often obscure the contents of the profile */
div[class*=profileEffects_] {
display: none;
}
/* Removes avatar decorations */
img[class^="avatarDecoration__"] {
display: none;
}
/* Makes it so small images are not a blury mess */
div[class*=imageWrapper_] {
image-rendering: pixelated;
}
/* I need you to understand that I'm not gifting nitro from my chatbox */
button[aria-label="Send a gift"] {
display: none;
}
/* You can switch between pickers after clicking emoji button */
button[aria-label="Open sticker picker"] {
display: none;
}
/* You can switch between pickers after clicking emoji button */
button[aria-label="Open GIF picker"] {
display: none;
}
/* I dun wanna your silly feature ads */
span[aria-label="Download the mobile app to make your first remix"] {
display: none;
}
/* Discord support is useless in most cases, so stop sending me there */
a[href="https://support.discord.com"] {
display: none;
}
/* Remove annoying server discovery sidebar thing */
nav[aria-label="Servers sidebar"] div[class^="footer_"] {
display: none;
}
/* Remove app launcher button */
div[class^="channelAppLauncher_"] {
display: none;
}
/* Remove activities panel completely */
div[aria-label="Members"] h3:has(span[role="button"]) {
display: none;
}
div[aria-label="Members"] div[class=""] {
display: none;
}