Skip to content

Instantly share code, notes, and snippets.

@cheesits456
Last active March 26, 2025 20:16
Show Gist options
  • Save cheesits456/41d659f932b5a574b5dfb9b391a4506e to your computer and use it in GitHub Desktop.
Save cheesits456/41d659f932b5a574b5dfb9b391a4506e 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
/**
* @name Remove Buttons
* @version 1.1.1
* @author cheesits456
* @authorId 306018440639152128
* @description Remove the nitro gift, GIF picker, and sticker picker buttons from the message box. Also remove the sticker suggestion popup
* @source https://gist.github.com/cheesits456/41d659f932b5a574b5dfb9b391a4506e
* @invite 7QH4YeD
* @donate https://donate.haileybot.com
* @website https://cheesits456.dev
*/
/* Hide Nitro gift button */
button[aria-label="Send a gift"] {
display: none;
}
/* Hide GIF picker button */
button[aria-label="Open GIF picker"] {
display: none;
}
/* Hide sticker picker button */
button[aria-label="Open sticker picker"] {
display: none;
}
/* Hide annoying sticker popup window that appears when you type */
.channelTextArea-1FufC0 > .container-1ZA19X {
display: none;
}
@FlurryShy
Copy link

For anyone else looking to get rid of the Apps button the same way, the aria-label is literally just "Apps", so:

/* Hide apps button, language dependent*/
button[aria-label="Apps"] {
    display: none;
}

alternatively, not language dependent:

/* remove bs app-launcher button */
div[class^="channelAppLauncher_"]{
    display:none !important;
}

@Fauxtecual
Copy link

Fauxtecual commented Mar 26, 2025

Any way to hide "Events" without hiding the Channels & Roles and whatnot in other servers? Driving me absolutely insane that it's pinned in every single server I own, I have never used it even once in my life. :/

Contribution:
When you have a chain of quote replies and it yells at you to make a thread:

/* Stop nagging about threads /
[class
="threadSuggestionBar_"] {
display: none; }

@FlurryShy
Copy link

Any way to hide "Events" without hiding the Channels & Roles and whatnot in other servers? Driving me absolutely insane that it's pinned in every single server I own, I have never used it even once in my life. :/

Contribution: When you have a chain of quote replies and it yells at you to make a thread:

/* Stop nagging about threads / [class="threadSuggestionBar_"] { display: none; }

try this one:

div[class^="containerDefault_"]:has(div[data-list-item-id^="channels___upcoming-events"]){
    display:none;
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment