#remove bloat in message box
1 messages · Page 1 of 1 (latest)
rip
otherwise great
can you make a version that doesn't remove the "insert timestamp" button?
oh I already had a thing like this made myself :p
button[aria-label|="Send a gift"]{
display:none;
}
button[aria-label|="Open GIF picker"]{
display:none;
}
button[aria-label|="Open sticker picker"]{
display:none;
}
button[aria-label|="Select emoji"]{
/* display:none */
}
button[aria-label|="Open Translate Modal"]{
/* display:none */
}
button[aria-label|="Insert Timestamp"]{
/* display:none */
}
you can just comment and uncomment display:none on whatever you need to see or not see
so, I think they literally removed the gif and sticker pickers, its so annoying. theyre all under the select emoji thing now. do you know how to bring them back or if theres even a way?
I tried changing the display thingies in ur msg and it did get rid of the stupid gift buttons and stuff
they just don't show on smaller screens, I can see all 3 of them on a big screen
I don't know if there is a way to make them appear on small screens aswell
omg wtf ur right
full screening them shows them
thats so annoying, i have it off to the side of my screen
well i guess i can get it kinda if i make it just a little bit bigger
Heres one for the people that use GIFs alot and hate the new apps button lmao, removed the sticker and emoji buttons too, becuase i dont use em, and you can access them anyways through the gif button,
button[aria-label|="Send a gift"]{
display:none;
}
button[aria-label|="Open sticker picker"]{
display:none;
}
button[aria-label|="Apps"]{
display:none;
}
button[aria-label|="Select emoji"]{
display:none;
}
Also didnt know you can use Aria-label as a selector, thats really dope
If you only hide the apps button, it still leaves a little bit of padding on the right
I find it better to hide the div that's wrapping it
div[class^="channelAppLauncher_"],
div[class^="channelTextArea_"] button[aria-label="Send a gift"] {
display: none;
}
div[class^="jumpToPresentBar_"] {
right: 16px;
}
```Also the second rule fixes the jump to present bar if you're hiding the apps button
Oh nice, i didnt even notice the extra space, thanks :)
its probally my theme lol