#revert user area
1 messages Β· Page 1 of 1 (latest)
.visual-refresh nav:has([data-list-id="guildsnav"]) {
margin-bottom: unset;
}
Fixes the ugly bottom margin hanging out
honestly this is all i needed to be fine with it thank you very much
honestly the main issue with the user area was how it looks janky next to the msgbox
clearly the ui team dont have anyone with eyes that work
i dont think what they did really fixed that either
id kill to have this back it looked better imo
css noob π₯
its as if experiments mean nothing to discord, because i HIGHLY doubt people liked the wonkyness of this version of the visual refresh
they likely got feedback about it being wonky and went "guess what, its staying. get fucked lmao"
its so baffling they shipped the wonk instead of the double height chat bar
huge thank you
sorry for asking dumb questions, but how do i use it?
i installed vencord for the first time when this new shit UI released, and since they removed the desktop visual refresh thingy, im trying to find fixes for it
figured it out sorry
omg naked towel from twt
Absurdo. Peidei no cinema e tiveram que me expulsar da sala. Achei muita mancada. #LevaNaBoa
yoo badass
ill take any snippets that brings back the old ui to a degree
true xD
either way very nice
now we just need to somehow make server icons round instead of squares 
mines like this
uhhh
im not sure which visual refresh snippet does it xD
actually might be this
[class*="closedFolderIconWrapper_"] > [class*="guildIcon_"],
[data-list-item-id*="guildsnav_"] > [class*="icon_"] {
border-radius: 50% !important;
}
quick css my beloved
yea my quickcss is expanding like the universe lol
yipeee they are round
chat i have no idea about css whatsoever (sorta offtopic from this), but has anyone found a fix for the massive bar with the server name
this
the titlebar?
yes
if u get rid of that then its no window management buttons for u buddy
@tardy timber i can dm you the bits i have that turn my layout into this
it gets rid of the title bar + you can fix the spacing of the top icons (i need to redo mine a little since i think it got borked today), servers are round and the chat bar is lined up w the user panel
please do
I think this approach I sent a while back is better
:has() is very laggy, and aria label won't work for other languages
There's only a small downside of having to run your css through the class updater a couple times a year when the classes reroll
(Use the legacy version if you want it square) #π¨-css-snippets message
Do you mind sending me the CSS for the title bar?
can do! let me see if i can find the snippet i used and link it there; otherwise i'll dm you the code itself
@trim venture where do i put this code
sorry for the ping! could i also request the bits? π
can do!!
i have been summoned again
will dm!
requesting the bits if I may
friend requesting and dming everyone who's asked but here is a doc with the bits + links to the original creators' threads or messages for anybody else who sees this!!
In your quickcss
Shiloh is a nice name imo
thank you! <3
I also like names like "Shawn" :p
May I also have this please? 
@hearty jetty here's the doc!
send a friend req and dm me if you've got any questions about it <3
I guess my theme must have some line of code that prevent this css from working correctly, but this is still a great css
yo can I get that?
@prisma vine got a doc all done up and pretty!
friend request and dm if you've got any questions about it, but i linked all the OG creators, so hopefully those threads can be helpful
thanks
Users with Better Folders should use this for the User Profile Area:
width: 100%;
left: 0px;
bottom: 0px;
border-radius: 0px;
border: none;
}
.visual-refresh nav:has([data-list-id="guildsnav"]) {
margin-bottom: unset;
}```
It doesn't look exactly the same, but it's as close as I could get. I just changed width to 100% and left to 0px to make it stick to the size of the sidebar in total.
I copied it but I still have the bottom margin
v+ snippet wtf is this just post it lol
v+ snippet
hopefully i dont get nuked for doing that like i often do
and follow the format if you do please
i'm not sure what you're asking of me + i don't want to jump into somebody's thread with a concoction of other people's code!
that's why it's in its own doc <3
It's fine, just link to their message/thread in your messsage :p
the links are in the doc 
I'm just giving you options cause css in a google doc is crazy

and i dont see what you're talking about anyway
It's just the css with no formatting for me
thank you, but unless given official direction to share it in a different format, this is easiest for me to share the link with all the people who've been asking or dming me + keep the links to the original creators in the comments on the doc 
uhhh you do you then lol
I copied the code exactly how it is wdym skill issue lmao
I mean it works for multiple people so it must be a problem with something you have enabled/overriding it
:p
And works for me, I havent see anyone else say it doesnt work
are they here? i'm almost 90% sure they dont mind
we all have the same common goal
But don't let me push you around i got stuff to do
.visual-refresh section.panels_c48ade {
left: calc(var(--custom-guild-list-width));
width: calc(100% - calc(var(--custom-guild-list-width)));
bottom: 0;
border-radius: 0;
border: none;
border-top: 1px solid var(--border-faint);
/* Fix vc buttons resizing weirdly */
.actionButtons_e131a9 button {
padding: 0;
}
.activityPanel_c48ade {
border-radius: inherit;
}
}
nav.guilds_c48ade, #channels {
margin-bottom: 0 !important;
}
/* optionally hide the bar at bottom of server list */
.sidebar_c48ade:after {
display: none;
}
/* Better Folders Fix */
.visual-refresh [style$="grid-area: betterFoldersSidebar;"]~section.panels_c48ade {
left: calc(var(--custom-guild-list-width)*2);
width: calc(100% - var(--custom-guild-list-width)*2) !important;
}
use !important
and this should be significantly less laggy
nav.guilds_c48ade {
margin-bottom: 0 !important;
}
nice
:O It works
Thanks c:
idk what im doing wrong but I still got the bottom
you're probably copying it into your css wrong or maybe a theme conflict
.visual-refresh section[aria-label="User area"] {
width: calc(var(--custom-guild-sidebar-width) - var(--custom-guild-list-width) + 1px - 16px);;
left: calc(var(--custom-guild-list-width) + 9px);
}
.visual-refresh nav:has([data-list-id="guildsnav"]) {
margin-bottom: unset;
}
here if anybody want rounded corners 
hey any way to make it smaller like the ol' days?
what did it look like I forgot :A:
i dont have a screenshot on me sorry
this server has this emoji im stupid
is it like smaller overall?
also just wanted to share a tip for discord's random classes
do this:
[class*="searchBar__"]
instead of hardcoding the values
here's a slightly better version
This is actually worse for performance, and causes selectors to be more laggy, so it's generally discouraged to do this instead of using the actual class name
did not know that. although you will need to update your selectors every time discord does something
yeah, but it's super easy to do that with the class updater website
class updater?
Oh dear
LOL
@dry steppe is it something like this?
Turns out it was a theme issue
does this work for you?
#π¨-css-snippets message
ig nvm, but slightly curious
probably won't either
yea
okie hold on I will send the css o7
#popout_46 {
left: 88px !important;
}
.visual-refresh section[aria-label="User area"] {
margin-left: var(--custom-guild-list-width);
width: calc(100% - var(--space-xs)*2 - var(--custom-guild-list-width)) !important;
.actionButtons_e131a9 button {
padding: 0;
}
.container__37e49 {
padding: var(--space-xxs);
padding-left: var(--space-xs);
.avatar__37e49 {
width: 32px !important;
height: 32px !important;
}
.mask__44b0c {
foreignObject {
width: 32px !important;
height: 32px !important;
mask: url(#svg-mask-avatar-status-round-32);
}
rect {
width: 10px !important;
height: 10px !important;
x: 22 !important;
y: 22 !important;
}
}
}
}
nav.guilds_c48ade {
margin-bottom: 0 !important;
}
/* optionally hide the bar at bottom of server list */
.sidebar_c48ade:after {
display: none;
}
sorry if the code is bad I tried my best T_T (please feel free to correct it!!)
what are you trying to do?
are you just trying to round the evie's snippet like this? or something else
also, I don't think #popout_46 will work
pretty sure that will change
making the thing shorter like arsikk said ;w;
50% of what I wrote was for making the profile picture smaller
I couldn't figure out a better way 
Maybe something like this?
.visual-refresh section.panels_c48ade {
margin-left: var(--custom-guild-list-width);
width: calc(100% - var(--space-xs)*2 - var(--custom-guild-list-width)) !important;
.actionButtons_e131a9 button {
padding: 0;
}
>div:not(.wrapper_e131a9) {
height: 40px !important;
padding: 4px !important;
}
.avatar__37e49 {
scale: 0.8;
}
}
nav.guilds_c48ade {
margin-bottom: 0 !important;
}
:root {
--custom-rtc-account-height: 0;
}
/* optionally hide the bar at bottom of server list */
.sidebar_c48ade:after {
display: none;
}
ooooh yeah that !!
it's smaller if you use get rid of the padding stuff around it like this or something
@dry steppe here is better version o7
and doesn't break the status icon lol
right?
why were you even trying to mess with the masks
I had to change popout thingy because it broke T_T
was trying to figure out in inspect element
basically pressing random buttons and see what changes stuff π
that's pretty much what i do lol
yeah scale: can be pretty useful, but i don't like using it too much (just because i think it can be a bit janky, and i'd rather change the size of things the "real" way if possible)
the code doesn't work for me, any idea what the problem would be? i'm very new to this
this worked :P
does anyone know if it's possible to hide the server name in the titlebar? it's a bit distracting
yes, but that's not at all related to this snippet. ask in #π¨-theme-development for stuff like this in the future
.title__85643 { display: none !important; }
i love you
dont let the discord uiux devs cook
everything they touch turns into abysmal dogshit
so far this theme is the first step in improvement
div[class^=sidebar_] section[class^=panels_] {
width: calc(var(--custom-guild-sidebar-width) - var(--custom-guild-list-width) + 1px);
left: var(--custom-guild-list-width);
bottom: 0px;
border-radius: 0px !important;
border: none;
padding: 0px;
}
div[class^=sidebar_] nav[class^=wrapper_] {
margin-bottom: unset !important;
}
div[class^=sidebar_] .panel__5dec7 {
border-radius: 0px !important;
}
#vc-spotify-player {
border-radius: 0px !important;
}
div[class^=sidebar_] .scroller__629e4, .scroller__99e7c {
margin-bottom: unset !important;
}``` there is version without needing to have discord in english since evie used aria-label π
this snippet in quickcss
.
I did everything but my folders won't open
i have a fix for these corners and this margin here btw #1361443579905445898 message
you pasted this snippet into your quickcss?
#1361443579905445898 message
yea i did but it didn't happen
do you have other themes?
try disabling them, it might be a theme conflict
ask in #π¨-theme-development
that bricked my settings button π i can't open them now. fixed
oh xD
fixed
i also have the new style
div[class^=sidebar_] section[class^=panels_] {
margin-left: var(--custom-guild-list-width);
width: calc(100% - var(--space-xs)* 2 - var(--custom-guild-list-width)) !important;
}
div[class^=sidebar_] nav[class^=wrapper_] {
margin-bottom: unset !important;
}
div[class^=sidebar_] .scroller__629e4, .scroller__99e7c {
margin-bottom: unset !important;
}```
very minor but, is it possible to remove the little margin on top? also i tried changing the background color for the username but no luck :( any tips?
yes
use css div[class^=sidebar_] .scroller__629e4 { margin-bottom: unset !important; }
it worked!! thank you!! 
no problem π
there is my updated code π
so people dont need to use english
all i need now is change color, i'll try tweaking a bit more :3
which color?
the panel background?
so like this for example
yes!
just to keep the og colors, sadly they also changed the grading so it looks different. trying to make it as close as possible
then in css div[class^=sidebar_] section[class^=panels_] div[class^=sidebar_] .panel__5dec7 #vc-spotify-player add background-color: COLOR !important;
mmm might be doing something wrong tho
How do I fix this?
.visual-refresh section[aria-label="User area"] {
width: calc(var(--custom-guild-sidebar-width) - var(--custom-guild-list-width) + 260px);;
left: var(--custom-guild-list-width);
bottom: 0px;
border-radius: 0px;
border: none;
}
.visual-refresh nav:has([data-list-id="guildsnav"]) {
margin-bottom: unset;
}
i dont see anything wrong in it
itβs still not showing the color 
iβll try deleting everything else and see if itβs conflicting with anything i have
The snippet causes the user area to be misaligned when using the betterfolders plugin and having a folder opened
i noticed that the little margin on top is fixed on servers but still shows up to me in DMs!
still something very minor so i dont mind
add the code to quickcss and tweak around if something isn't fitting right
i did, but nothing happens
do you have more codes? make sure nothing is conflicting with each other (plugins included). i can't help much code wise bc i barely know how to use css, i just go around changing margins and scales
nope, i just pasted that code there and restarted discord
this one right?
if that didnt do anything then idk 
Oh you are an absolute legend tysm
its like this now
try tweaking around the width or left values!! like increasing or decreasing pixels 
this is a very amateur-ish solution tho
the fix I found personally for this was switching out the .scroller__629e4 at the end of the code with div[class^=scroller__] instead and it seems to fix the issue for me
o i'll try it out then
But then again it's like putting a bandage on a nearly collapsing dam but it works so π€·
my entire code is like that 
so much to fix discords naive choices
Same thing here, I have done quite a bit of tweaking to other peoples' css and it fits my needs so. π₯
for anyone viewing this, i decided to steal this snippet because its AWESOME and noticed a small issue that i fixed
if you are using spotify player, add this to prevent it from breaking the position:
#vc-spotify-player {
height: 120px !important;
}
the button icons get tiny if you make the channel sidebar small π€
i have a fix for that here
https://discord.com/channels/1015060230222131221/1354331484831354952
is there css to remove the padding here?
ask in #π¨-theme-development because that's unrelated to this thread
oops thanks
i have fix for it
change css div[class^=sidebar_] .scroller__629e4 { margin-bottom: unset !important; } to
div[class^=sidebar_] .scroller__629e4, .scroller__99e7c {
margin-bottom: unset !important;
}```
thank you!! worked perfectly! :D
no problem π
you can use #channels instead of .scroller__99e7c
For me original version does not work, I took part here and corrected a little for myself and it turned out something like this, if someone needs it
.visual-refresh section.panels_c48ade {
left: var(--custom-guild-list-width);
width: calc(105% - var(--space-xs)*2 - var(--custom-guild-list-width)) !important;
bottom: 5px;
>div:not(.wrapper_e131a9) {
height: 40px !important;
padding: 1px !important;
}
.avatar__37e49 {
scale: 0.8;
}
.actionButtons_e131a9 button {
padding: 0;
}
}
nav.guilds_c48ade {
margin-bottom: 0 !important;
}
:root {
--custom-rtc-account-height: 0;
}
.container__37e49 {
gap: var(--space-4) !important;
}
.avatar__37e49 {
width: 30px !important;
}
.wrapper_a629d4 {
margin-left: 7px !important;
}
look kinda weird tho
well, better than nothing
use css div[class^=sidebar_] nav[class^=wrapper_] { margin-bottom: unset !important; }
keep in mind that where it says "User area" thats only if your discord is set to english. In my case its spanish so i had to change it to "Γrea de usuario"
yes that why i made version that dont need to use specific language
here
oh thx didnt see. i was reading from top to bottom
I placed the code and it still looks the same as the default, weird...
Ohh now i get it why didn't worked for me because i'm using in a different language
That helped, thanks!!
When enabled I get this big black bar, any help would be appreciated. https://i.imgur.com/x8XgO2d.png
by the way i updated the css so that its language agnostic now, it was an oversight by me
Hi, I'm trying to get this to work with a Hover Server List code (not mine), but it doesn't work no matter what I do.
.guilds_c48ade,
.tutorialContainer__1f388,
.listItem__650eb,
.sidebarList_c48ade {
transition: width 0.3s ease, padding 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
}
.guilds_c48ade:not(:hover) {
padding-left: 25px;
width: 60px;
opacity: 0;
}
.sidebar_c48ade:has(.guilds_c48ade:not(:hover)) .sidebarList_c48ade {
margin-left: -70px;
width: calc(var(--custom-guild-sidebar-width) + -15px);
}
div[class^=sidebar_] section[class^=panels_]:has(.guilds_c48ade:not(:hover)) div[class^=sidebar_] section[class^=panels_]{
width: calc(var(--custom-guild-sidebar-width) - var(--custom-guild-list-width) + 65px);
left: 16px;
bottom: 0px;
border-radius: 0px !important;
border: none;
padding: 0px;
}
div[class^=sidebar_] section[class^=panels_] {
width: calc(var(--custom-guild-sidebar-width) - var(--custom-guild-list-width) + 1px);
left: var(--custom-guild-list-width);
bottom: 0px;
border-radius: 0px !important;
border: none;
padding: 0px;
}
div[class^=sidebar_] nav[class^=wrapper_] {
margin-bottom: unset !important;
}```
The goal is to have it shrink to a smaller size as I hover over where the servers are supposed to be.
Sadly, doesn't work with BetterFolders
Thank you :D
how do i change 5the color
btw @trim venture :has() is quite laggy
it might be fine in this case since there aren't many navs, but even :has(>...) would be better so it only has to search immediate children
but that isn't even necessary, because you can just use nav[class*=guilds_] (probably needs an !important then), or the actual class name, .guilds_c48ade (because attribute selectors are slightly laggy, but they have the advantage of not needing to update them with the class updater the few times a year when discord rerolls classes)
?
does ntts not have the link in the description?
tell @livid verge that i just pasted their thingy
im a css noob
but if you have any other working solution ill edit and add it
u can fix it lol i made that snippet in like 2 and a half seconds
randomly found this somewhere in this channel
@import url(https://davart154.github.io/Themes/Snippets/Old%20Chat%20Bar%20Layout/OldChatBar.css);
shit wrong thread
oh i spent so long bug testing, fixing problems with plugins, and making it pixel perfect since border widths are weird lol
whatever yo the snippet works and in my experience with it theres no slowdown
again if u hve a solution ill edit and add it to the original message
yeah it's probably not that noticable with the one :has()
.
this is the version I made
it's probably good with all the people from ntts to use the attribute selectors like you're doing though
nav[class*=guilds_] and use !important
actually !important isn't necessary if you leave the .visual-refresh
you didnt put that in ur original solution
yeah I used nav.guilds_c48ade
i added to the original, thanks
and if you want to link to mine that has fixes for BetterFolders and GameActivityToggle plugins, you can
i must also say i dont use this snippet so i dont know if or when it will break, i made it for a friend and i know people would appreciate it here
sorry for ping but i also added credits
hello, like Sneezing_panda, I still have the black bar on the side of the channel
I have nothing but oldcord :/
but it's still buggy, idk
even when disabled (oldcord) still the same
oldcord by milbits right?
exactly
but I'm too tired for fighting anymore, I gave up, my discord is ugly, whatever
thats not compatible with this one
cuz of the width that this one use
its longer than the oldcord channel list
it could be compatible if you change the width
for now it using the new resizable function
so thats the conclusion why u and i belive also panda have black line
is there a way to fix the discrepancy between the user area and the message box?
idk i dont see problem in my code xD
your code is fine, i mean is there another css snippet that rezises the message box anywhere?
There's some in #π¨-css-snippets
I tried to find one by scrolling/searching but I didn't see any, do you have a link or name? thanks
much appreciated
check if folder is open
so this happened
is that with betterfolders?
yea
I have a fix for that, apparently it broke though https://discord.com/channels/1015060230222131221/1354331484831354952
will fix tomorrow
ah
ty
@odd trellis can you lmk when its fixed
not certain if this is the place to post this, but the snippet for round icons in the doc seems to have broken recently -- the bottom of folders cuts off the icons, the icons are too squished together and aren't centered in folders, and the notifications icon is wildly off
(changing ui density doesn't fix it)
prowl this thread! OP of the code has tidied stuff up after that broken update
awesome! thanks a bunch~
ofc!!
oh cool you're in the bta server too
i guess that interaction with betterfolder has been overlooked. also mildly irritated by it. maybe there's a way to attach the div to the chat channel separator on the left/right?
I have a fix for betterfolders #1354331484831354952 message
perfect, thank you!
any way to align these?
Where can i download it?
ok you deleted your message. does the link help?
I'm not really sure what you're asking if not that
Jamen hvor downloader du det? eller hvordan fΓ₯r jeg det, fatter hat lige nu
there's nothing to download. you just copy it and put it in your quickcss
shit jeg er dum mange gange tak for det b β€οΈ
Men skal jeg bare ΓΈre det med alt?
Can you speak english? I only know a little bokmΓ₯l
Should I just do it with everything? @odd trellis
if you have other stuff in your quickcss, you can just copy it in there in addition to what's already there
ok thanks β€οΈ
if you want to set the size equal to channel list bar this seems to be the best way
left: var(--custom-guild-list-width);
to
left: px;
and just set the amount you need to fit
@trim venture its no longer alining proper
my personal fix
.visual-refresh div[class^="sidebar_"] section[class^="panels_"] {
width: calc(var(--custom-guild-sidebar-width) - var(--custom-guild-list-width) + 1px);
left: var(--custom-guild-list-width);
bottom: 0px;
border-radius: 0px;
border: none;
}
Yo, when I pasted in the css, it just made the channels overlap the user bar instead, and whenever I try changing the numbers it justs crops it too early like in the original issue this css was trying to fix. Is there any way to fix it and keep it consistent even when I join a vc? (Since the user bar is bigger when joining a vc of course)
ofc.. its not the full code
div[class^=sidebar_] section[class^=panels_] {
margin-left: var(--custom-guild-list-width);
width: calc(100% - var(--space-xs)* 2 - var(--custom-guild-list-width)) !important;
}
div[class^=sidebar_] nav[class^=wrapper_] {
margin-bottom: unset !important;
}
div[class^=sidebar_] .scroller__629e4, .scroller__99e7c {
margin-bottom: unset !important;
}
welp the user area is broken
nvm it worked but the buttons are small
use this
here's the direct link to the snippet #1354331484831354952 message
i have the css pasted
like
wait
uhm
i broke it xD
welp the reason why the buttons are ao small it's because of the sidebar
like
here is maximum left
and when its maximum right it shows the icons big
i guess this css no longer works
/* sidebar fix*/
.base_c48ade .sidebar_c48ade {margin-right: -0.007px}
.visual-refresh
.base_c48ade .sidebar_c48ade > .sidebarList_c48ade {
width: 240.3px;
}
.reaction_f8896c, .reaction__23977 {
border-radius: 8px; }
/*left sidebar borders*/
.visual-refresh .theme-dark, .visual-refresh.theme-dark {
--app-border-frame: var(--background-secondary)
}
also
mr obsidian
do you know how to get rid of this?
like thingy on top
i still don't know how to make the voice buttons bigger
i guess i will need to find an sweetspot
@odd trellis how do i uncomment the betterfolders fix? which /* */ do i remove?
there are a couple of them and i've tried it already but it doesn't fix this
π Life saver

ts broken with the new discord update
yep
@trim venture it broke π
rip
run it through the class updater found in #theme-support
that did not work for me
or do anything at all
nothing at all changes
oh it uses attribute selectors
change them all from [class^="name_"] to [class*="-name"]
or use this (after running it through the class updater) #π¨-css-snippets message
that has a rounded border that I don't like
thanks
it's still broken if you do that but you just have to use the
nav._5e434347c823b592-guilds {
margin-bottom: 0 !important;
}
as well
I think
broken @trim venture
.visual-refresh div[class*="-sidebar"] section[class$="-panels"] {
width: calc(var(--custom-guild-sidebar-width) - var(--custom-guild-list-width) + 1px);
left: var(--custom-guild-list-width);
bottom: 0px;
border-radius: 0px;
border: none;
}
.visual-refresh nav[class*=-guilds] {
margin-bottom: unset;
}
decided to dig into it a bit myself and this works
yes i censored the server icons
but it works
thanks
it worked for me
i hate how discord did this i have to fix so much now
anyway to move this up a little bit it looks like there should be room there
- i just made the snippet work, thats it. i just wanted a working snippet
- idk bro it looks fine for me
okay idk it might be from other css for old dc ui
can someone give me pointers to what fixes this.. trying to update the snippet as it is in my theme
i remember knowing this in the past but i have forgor
i love you
Fr
.visual-refresh div[class*="-sidebar"] section[class$="-panels"] {
margin-left: var(--custom-guild-list-width);
width: calc(100% - var(--space-xs)* 2 - var(--custom-guild-list-width)) !important;
}
.visual-refresh nav[class*=-guilds] {
margin-bottom: unset;
}``` my version
just like the new one but shorter like a old one
WORKING VERSION HERE
thanks you help me brooo
sorry for the ping but is there also a fix for using better folders?
just run this snippet through the class updater before using it
I haven't updated the message yet
ty it works
-# does he know thats not the original
I know but it's the only one that worked for me
the working version i posted just a bit up:
for some reason didnt work for me
oh aight
.visual-refresh div[class*="-sidebar"] section[class$="-panels"] { width: calc(var(--custom-guild-sidebar-width) - var(--custom-guild-list-width) - 1px); left: 77px; bottom: 0px; border-radius: 0px; border: none; }
This part broke, did some testing and noticed that my panel kept getting added this in element view: _5e434347c823b592-disablePointersWhileSorting
Could someone try and look for a fix
It's this part that breaks specifically, only when dragging a server around
yeah and mine does it but without being broken, and also not being hardcoded values
use the square legacy squared version
just change the border-radius: 0 in mine to this if you want the top corners rounded
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
I have a working snippet but I don't remember who made it
/*Fix to make borderless*/
._5e434347c823b592-panels {
border-radius: 0 !important;
}
._37e49614b9f110a9-container {
height: 56px !important; /*Experiment between 50 and 60 px*/
[aria-label="Mute"],[aria-label="Deafen"] {
border-radius: 8px; /*Changes buttons but not the borders*/
}
[aria-label="Input Options"] {
display: none;
}
[aria-label="Output Options"] {
display: none;
}
}
._5e434347c823b592-panels > ._37e49614b9f110a9-container {
border-top-left-radius: 0;
border-top-right-radius: 0;
}
._629e4c86564a4ee7-scroller {
padding-bottom: 0 !important;
margin-bottom: 16px;
}
.visual-refresh section._5e434347c823b592-panels {
border: 0;
margin-left: 58px; /*LEFT SIDE -- Play with these = 72px default 58px edited */
margin-bottom: -5px; /*Up-down placement = -5px default*/
width: calc(100% - var(--space-xs)*2 - 52px) !important; /*RIGHT SIDE -- Play with these = 72px, 52px edited */
overflow: hidden;
.e131a99484292a19-actionButtons button {
padding: 0;
}
}
Just try to modify the left side/right side thing if placement is off
oh good to know
i'd recommend using mine that i linked above. that doesn't quite center it correctly
and i've spent many hours and extensively tested my snippet to get it pixel perfect, and also made fixes for plugins (it also isn't reliant on aria-labels which change depending on what language you have discord set to)
i think it's better to let people choose
bro your version covers the username and I do not consider this "pixel perfect" if I need to expand channel area just to see my username
I've tried your "legacy version" (that's buried under many messages btw) and original one
same effect so far
and I'm not sure if that was your intention but your message sounded like "my project is better because i put more effort into it so use mine"
that is pixel perfect. it covers your username because you didn't use the css in the message that removes the arrows (it is kind of confusing right now. i should probably make it a bit more user friendly to get the right fixes and stuff)
use the other css in my message to remove the arrows for more space (yours is removing them)
well it's objectively better. that other one requires manual adjustment to get the alignment correctly
but i also did put more effort in it
i'm not sure why there's a bit of a transparent thing above the panel in your screenshot (which you didn't mention, which is the only thing I see that's wrong)
that must be caused by some other css you're using
Thanks for the suggestion I'll check if other css is causing the difference
Worked perfectly after some tweaking, thanks
the reason i recommend mine, is that it doesn't require tweaking to align the user area
Everything broke, not just you, read #1257025907625951423
A friend of mine got it working again mostly.
.panels__5e434 {
border-radius: 0 !important;
}
.container__37e49 {
height: 50px !important; /*Experiment between 50 and 60 px*/
[aria-label="Mute"],[aria-label="Deafen"] {
border-radius: 8px; /*Changes buttons but not the borders*/
}
[aria-label="Input Options"] {
display: none;
}
[aria-label="Output Options"] {
display: none;
}
}
.-panels__5e434 > .container__37e49 {
border-top-left-radius: 0;
border-top-right-radius: 0;
}
.scroller__629e4c {
padding-bottom: 0 !important;
margin-bottom: 16px;
}
.visual-refresh section.panels__5e434 {
border: 0;
margin-left: 64px; /*LEFT SIDE -- Play with these = 72px default 58px edited */
margin-bottom: -8px; /*Up-down placement = -5px default*/
width: calc(100% - var(--space-xs)*2 - 53px) !important; /*RIGHT SIDE -- Play with these = 72px, 52px edited */
overflow: hidden;
.actionButtons_e131a9 button {
padding: 0;
}
}```
Only thing not working is the masking covering up servers.
I have a fix that shouldn't need to be played with #1354331484831354952 message
Used them both together, and they kinda compliment eachother.
?
you don't need the one you sent if you use mine
Let me put it this way, yes I do.
As the way yours makes it, is not how I actually want it to look
Yours makes it look like this, which as far as I care? Not a good look to me.
Both together?
Like so
you didn't use the one i linked
you used the one above it
The main reason I have yours now, is to fix the masking issue it did covering up servers for me.
It still works for me.
use the one i linked and get rid of yours
As long as it works I do not care.
Nah, I'm good.
Mostly because I don't like being told to do something.
You could suggest, but I rather not you order me to do a thing.
If it works, it works for me.
Thats where my care ends.
Plus it forces me to fiddle with CSS a bit more.
Need to learn this shit anyways.
mdn is a great resource https://developer.mozilla.org/en-US/docs/Web/CSS/
I learn better by doing or by someone actively showing and talking with me about what is going on
Anyways, I'm out.
well mdn is documentation. it's more for looking up how to use a certain property or something
I was done with the conversation, please, stop.
.panels__5e434 {
margin-left: var(--custom-guild-list-width);
width: calc(100% - var(--space-xs)* 2 - var(--custom-guild-list-width)) !important;
}
.guilds__5e434 {
margin-bottom: unset;
}```
this works fine 
.visual-refresh div[class^="sidebar_"] section[class^="panels_"] {
width: calc(var(--custom-guild-sidebar-width) - var(--custom-guild-list-width) + 1px);
left: var(--custom-guild-list-width);
bottom: 0px;
border-radius: 0px;
border: none;
}
.visual-refresh nav[class*="guilds_"] {
margin-bottom: unset;
}
fixed yet again
discord needs to stop renaming their stuff
bro so thats why it broke when i was setting it up
i had to replace left with a actualy px amount but that might be my set up is weird
time to go to bed and have discord break the fix when i get up
Idk why but for me to delete this weirs border I need to add "padding: 0px" xD. I don't know where i messed this up in the css xD
Which arrows??
near the mic and headphones
.micButtonParent__37e49>.buttonChevron__37e49 {
display: none;
}
.micButtonParent__37e49>.micButtonWithMenu__37e49 {
border-radius: var(--radius-sm);
}
@golden sun
it's huge again
oh big thanks bro
jumpscare
hi!!!
why are you here
bruh
working version here
tried this and it results in the icons being the correct sizes, but the bounding boxes are still small and square
try this #1354331484831354952 message
no difference unfortunately
commenting this url import out actually just makes it look like normal discord which is really odd
// comments don't work in css
you have to use /* */ around the line
-# i think youre in the wrong thread, this is user area
Hey idk if anyone else had this issue, but this revert cuts off the top way too much and i couldnt find out how to fix it for the longest
(i hate what im about to say)
but i used AI to look at the code and it gave me some CSS code that makes it fixed
what my bug in particular was this
the color diff is what im talking about
.visual-refresh div[class^="sidebar_"] section[class^="panels_"] {
width: calc(var(--custom-guild-sidebar-width) - var(--custom-guild-list-width) + 0px);
left: var(--custom-guild-list-width);
padding-top: 10px;
bottom: 0px;
border-radius: 0px;
border: none;
}
padding-top: 10; is what the AI wrote in its blouted ass code but i just took it out and added it into the CSS code here




