Skip to content

Instantly share code, notes, and snippets.

@Xurish
Forked from cheesits456/RemoveButtons.theme.css
Last active December 26, 2023 15:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Xurish/36c38f3665569af765388f24424e3ebb to your computer and use it in GitHub Desktop.
Save Xurish/36c38f3665569af765388f24424e3ebb to your computer and use it in GitHub Desktop.
Custom CSS for Discord to remove the GIF picker and Nitro Gift buttons from the message bar(shitty fork
/* Hides annoying banner for nitro that pops up from time to time. */
.notice-3bPHh- {
display: none
}
/* Hides ugly ass discord logo at the top left. */
.wordmarkWindows-1v0lYD {
display: none
}
/* Hides betterdiscord versions at the bottom of user settings.*/
.colorMuted-HdFt4q {
display: none
}
/* Hides nitro banner in user profile. */
.noticeWithRightPadding-3OxAxd {
display: none
}
/* Hides account details in user settings.*/
.field-1HUseB > div > div > div {
filter: blur(50px);
}
.field-1HUseB > div > div > div:hover {
filter: blur(0);
}
/* Removes the store and discovery on top of discord. */
/* screenshot: https://prnt.sc/1t92kp5*/
#private-channels [href="/discovery"] {
display: none
}
#private-channels [href="/store"] {
display: none
}
/* Hide Nitro gift button. */
button[aria-label="Send a gift"] {
display: none;
}
/* Hide sticker picker button. */
button[aria-label="Open sticker picker"] {
display: none;
}
/* Hide annoying sticker popup window that appears when you type. */
.da-channelTextArea > .container-JHR0NT {
display: none;
}
/* Hides the annoying public servers button. */
[aria-label="Explore public servers"] {
display: none;
}
/* Hides hypesquad who really uses it. */
[aria-controls="hypesquad-online-tab"] {
display: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment