#**Remove 3 emojis from hover menu**
1 messages · Page 1 of 1 (latest)
It doesn't even work correctly
It hides the first 3 buttons even if they're the special ones you need to show with shift
Use this
.hoverBarButton_f84418[aria-label^="Click to "],
.separator_f84418 {
display: none;
}
And it's not great to use attribute selectors instead of class names
having a lot of them is significantly slower, and usually overly inclusive
the hash after the name specify between different places in the code, so a buttonContainer here might have one hash, but a buttonContainer in another part of discord will (probably) have another, so they also allow for having a smaller selector in many cases
and also it takes 1 min to update them using the class updater, and if you use even a single snippet that has the whole class name, you need to use it anyways #theme-support message
ill try to remember, since i got used to it