#Servers List
1 messages · Page 1 of 1 (latest)
the imports go on the top
in case you'd like to make it smaller and are annoyed by the discover button
div[data-list-item-id="guildsnav___guild-discover-button"] {
display: none !important;
}
i suggest to add padding or some space in between. Also, the badge icon should be centered vertically and add some margin-right after the icon.
make the guildicon same as size the folder icon, not exactly the folder icon size, but make it smaller
nah, it fits
no, they are meant to be offset
cause that is a top badge
it must be at the top
see?
nah it looks shit when cut off
for some reason this looks weird with #🎨-css-snippets message
@pure cradle is that fixable?
(ping reply)
yes, but not by me
you're just picky
I prefer to leave things as vanilla as possible
shit
ok yeah it works
and i hate it
our empire is a game on play store that you should 100% download (i am totally not a developer)
new kekblulite css snippet!! YATTA!!!
Completely irrelevant but ok
Then don't use it
exactly
i know!!!!!
Awesome snippet but do you think some scaling can be done?
I would like to make it smaller
i love how it looks on my main monitor, but most of the time i keep discord on my second (vertical) monitor, could you maybe add a condition for it to go back to normal if the window is too narrow?
i remember doing something similar using @media, but that was ages ago so idk
there are settings
:root {
--guild-list-width: 290px;
--guild-list-height: 48px;
--guild-item-radius: 50px;
--guild-item-spacing: 8px;
}
yeah but i mean it like it would change dynamically
unless you can put variables into @media?
idk i haven't used css for a long time 😵💫
and it was very basic
you can just add the variables into a @media
@media (whatever) {
:root {
/*your variables*/
}
}
works but holy shit it uses so much cpu 😭
i can actually hear the fans ramping up for a moment after resizing the window
I don't know if the answer was also for my question, but what I meant is everything smaller, font included
This won't change font
ummm
Again, I cannot take every single theme into consideration
this only works properly with the default theme
What about the scaling option tho?
For example, if I set it to 75% everything should become 25% smaller
Font included
you scale it using the variables
a font-size option?
that I will add
Ty
?
:root {
--guild-item-font-size: 16px;
}
but it will take a bit for the update to get to you, mainly cause of cache
so just try reloading discord in 5mins or so
TYVM
no problem 
hi, i was wondering if there was a way to hide the hover popup as well?
.listItem-3SmSlK:has([data-list-item-id="guildsnav___guild-discover-button"]) {
display: none;
}
updated:
{
display: none;
}```
newest version broke this, any chance of getting it fixed?
[data-list-item-id="guildsnav___guild-discover-button"] /* discoverable servers */
{
display: none;
}
works for me
How do I change the ServerList behavior so clicking on the server name takes me to the server? Currently it only works by clicking the icon.
"guild-item-radius" seems to not affect the size of the icons, I've been messing around a bit but can't find a way to make them smaller or change their behavior so the edges aren't cut off by the circle.
quick css:
`@import url(//dablulite.github.io/css-snippets/ServersList/import.css);
:root {
--guild-list-width: 290px;
--guild-list-height: 26px;
--guild-item-radius: 50px;
--guild-item-spacing: 4px;
--guild-item-font-size: 15px;
}
[data-dnd-name]:has(>.wrapper_c5f96a)::after {
left: calc(38px + var(--guild-list-height));
}`
@import url(//dablulite.github.io/css-snippets/ServersList/import.css);
:root {
--guild-list-width: 190px;
--guild-list-height: 25px;
--guild-item-radius: 12px;
--guild-item-spacing: 5px;
--guild-item-font-size: 16px;
}
div[data-list-item-id*="guildsnav___"] {
width: 100%;
height: var(--guild-list-height)
}
div[data-list-item-id*="guildsnav___"] > img {
position:absolute;
left:0;
top:0;
height: calc(var(--guild-list-height));
width: calc(var(--guild-list-width) / 8);
border-radius: 12px;
}
[class*="scroller_"][class*="wrapper_"] {
height: calc(var(--guild-list-height));
}
[class*="pill_"][class*="wrapper_"] {
height: calc(var(--guild-list-height));
}
@pure cradle thanks a lot for this snippet, i was getting overwhelmed by organizing my servers just by icons 🙏
thank you @steep laurel !
broke again
Hi, i have text under Server name "X mentions" how can i remove that?
Fixed by adding
.wrapper_f90abb[data-list-item-id*="guildsnav___"]::after {
content: attr(data-dnd-name);
}
anyone got a working way to disable the discover button? the CSS posted in this thread doesnt work anymore
@azure chasm
.footer_f8ec41 {
display: none;
}
.unreadMentionsIndicatorBottom_fea3ef {
display: none;
}
forgot to reply—thanks!
If you don't mind, go to the link https://pastebin.com/raw/s8XNcb3h and copy all, but without the updates, as it don't have the import.

