#Hide annoying icons

1 messages · Page 1 of 1 (latest)

meager trail
#

Expanded

/* Hides Nitro in DMs */
/* Hides Shop in DMs */
/* Remove Gift button*/
/* Hide Super React button and Context Menu */
/* Hide "Active Now" in Friends List */
[href="/store"], 
[href='/shop'], 
button[aria-label="Send a gift"],
[for="burst-reaction-toggle-button"],
[class*="nowPlayingColumn"]
{
  display: none;
}```

Condensed:
```css
/*Hides Nitro, Shop in DMs, Removes Gift button, Hide Super React button, Hide "Active Now" in Friends List*/
[href="/store"], [href='/shop'], button[aria-label="Send a gift"], [for="burst-reaction-toggle-button"], [class*="nowPlayingColumn"]
{display: none;}

Hides annoying nitro gifting buttons. Super react, and gets rid of the 'Active Now' in friends tab

meager trail
# blazing glen my honest reaction:

I mean yes it uses display: none but it's not low effort like using class name that's dynamic and changes on updates breaking it. Like "carousel__1234 {display: none}"

"single display none" technically it's five?

mighty gust
#

there is an import that already achieves this and much more but my copy paste is broken

#

nvm

#

https://raw.githubusercontent.com/D3SOX/complementary-discord-theme/master/hide-nitro-upselling.theme.css

#

@import url('https://raw.githubusercontent.com/D3SOX/complementary-discord-theme/master/hide-nitro-upselling.theme.css');