#Simplified Panels Area
1 messages · Page 1 of 1 (latest)
hypothetically would it be possible to use ur snippet with this #🎨-css-snippets message
i will test it later but cant rn
why is it so large
chonky
Not sure, can you dm me the html structure so I can see what’s adding the space
the answer is .container__37e49 has additional padding from fast-follow
Ah I see
I’ll tweak it a bit
should be good now
try to paste it above all css .. make it first css
its an import... ik it goes at the top
remove the overflow:hidden
no difference
skill issue, it works
im blind
theres 2 overflow: hidden
issue #2
you removed too many of them
i removed the one at the top and the 2nd one thats it
exactly, remove 1
yea but then if it do that the buttons cut off
thats with only the 1st one
wrong one
/* Expandable Userpanel */
.panels_c48ade {
height: 58px;
width: 58px!important;
display: flex!important;
flex-direction: column;
overflow: hidden;
transition: width 0.6s;
z-index: 50000;
pointer-events: all;
border: 1px solid var(--border-subtle)!important;
&:has(.container_e131a9) {
background-color: var(--notice-background-positive);
border: 1px solid var(--border-normal);
}
}
.wrapper_e131a9 {
height: 0;
overflow: hidden;
transition: height 0.6s;
}
.panels_c48ade:hover {
width: 100%!important;
width: 300px!important;
height: auto!important;
.wrapper_e131a9 {
height: auto!important;
}
}
.sidebar_c48ade {
overflow: visible!important;
}
.container__2637a {
padding-bottom: 0px!important;
}
.scroller__99e7c {
margin-bottom: 0px!important;
}
.bottom__7aaec {
bottom: 0px!important;
}```
thats it with nothing changed
with top and 2nd one removed
only 1st one
only 2nd one
/* Userpanel Fixes */
.visual-refresh .panel__5dec7 {
display: none;
}```
i have this too but thats to fix this
is there a way to make this work for the buttons on the spotify control panel?
i could probably add a layout for it in the morning
thank you!!
this is amazing, really great work
with collapsable panels css code, this is what the spotify player looks like
if there was a way to basically make all of the controls + timestamps (maybe? prolly not) go to the top right, that's be great
yeah i could probably do something like that
peakkkk thank you!!
came up with two variants, i'll probably use the second one though
only reason i didn't go with the first one is cause of the weird text shift
if i could make it not do that i'd definitely reconsider it
seems like the player section itself uses overflow hidden for the album cover bg
peak got it working
cool
how did you fix?
do you have Fancy Spotify Controls?
yes
#vc-spotify-player {
--blur-amount: 4px;
--normal-bg-colour: var(--bg-overlay-floating, var(--background-base-low, var(--background-secondary-alt)));
position: relative;
background: linear-gradient(to bottom, transparent 0%, var(--normal-bg-colour) 100%) !important;
overflow: hidden;
transition: all 0.4s ease-out;
> * {
filter: drop-shadow(0 0 10px var(--normal-bg-colour));
}
}```
remove the `overflow: hidden;` line
@inner quail
there's this issue where the three buttons for the profile remain visible even if I'm not hovering over them- this is only when using collapsable sidebars
it's this code:
.visual-refresh .panels_c48ade:hover [class^="container__"] [class^="buttons__"] {
scale: 100%;
opacity: 100%;
}```
there's this bug where there's a white bar in the back of the progress bar
bug fixed! Just had to delete this code:
.visual-refresh [class^="panels_"] [class^="container__"] [class^="buttons__"] {
opacity: 0%;
scale: 0%; /* Because the buttons can't stay inside the panel on chromium (any help is appreciated) */
transition-property: opacity, margin-bottom, scale;
transition-duration: .5s;
transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
transition-delay: 0.08s;
}
.visual-refresh .panels_c48ade:hover [class^="container__"] [class^="buttons__"] {
scale: 100%;
opacity: 100%;
}```
thanks!
@paper nexus nice work way better than what i was doing prevously
oh dav btw where i have that red dot activates the popout, if your in a DM call with video full screen you cant click the down arrow to reopen the chat
would it be possible to make the spotify music player hover ui always show (not the default vencord one, this one, it's really pretty); maybe between the music player and user profile instead, like where the settings/mute/deafen buttons are when you hover. and then when you hover over your profile, it fades into the other menu?
Hi, i'm having a problem. Both red icons appear when i'm just muted
doesnt happen for me
make sure your css is the original
ofc, glad it resolved
Yeah it was an issue with :nth-child it’s not really reliable anymore cause of all the random spans in the structure messing it up
Could possibly create an alternate design if you want
Should very much be possible
yeah thats quite weird
thanks for fixing it 🙂
imports has to be at the top of the list
aight thanks :p
for me it doesn't work... is it because I have some plugins active?
Is the import at the top
yup
Show me your quickcss
do I have to paste it all or a ss is enough?
Ss enough
Try removing the comment at the start
I'll aske here as well... what do you think can cause the top corners to be like that...
Other css
somewhere here?
#vc-spotify-player {
--blur-amount: 4px;
--normal-bg-colour: var(--bg-overlay-floating, var(--background-base-low, var(--background-secondary-alt)));
position: absolute;
background: linear-gradient(to bottom, transparent 0%, var(--normal-bg-colour) 100%) !important;
/*overflow: hidden;*/
transition: all 0.4s ease-out;
> * {
filter: drop-shadow(0 0 10px var(--normal-bg-colour));
}
}
#vc-spotify-player:hover {
--blur-amount: 0px;
}
#vc-spotify-player::before,
#vc-spotify-player::after {
z-index: -1;
content: "";
position: absolute;
height: 100%;
width: 100%;
top: 0;
left: 0;
transition: all 0.4s ease-out;
}
#vc-spotify-player::before {
background: var(--vc-spotify-track-image);
background-position: center;
background-size: cover;
opacity: 0.5;
}
#vc-spotify-player:hover::before {
opacity: 0.7;
}
#vc-spotify-player::after {
backdrop-filter: blur(var(--blur-amount));
}
#vc-spotify-progress-bar > [class^="slider_"] > [class^="bar_"] > [class^="barFill_"] {
background-color: white !important;
background: var(--vc-spotify-track-image);
background-size: 100px 100%;
filter: blur(2px);
}
any fix for cut off buttons?
set panels overflow to visible
that works but doesnt work well with, #🎨-css-snippets message
As the person who made that snippet, that's your skill issue and yours to fix
why would you use that snippet when this snippet already does that
it doesnt tho
its hit or miss from what i can tell
for my friend it collapses the panel but for me it doesnt
even if i remove every other snippet and just use this snippet
still doesnt work
how do i just remove it or make it go up and not behind
.
@reef geode
how? i just pasted this @import url(https://davart154.github.io/Themes/Snippets/Simplified%20Panel%20Area/SimplifiedPanelArea.css);
and it works just not for spotify
wonder if its possible to put the vencord toolbox on that userpanel where the other buttons are
the network icon is now pushed to the right
uhhh..
just some adjustments, looks sick
works with enablegameactivity plugin
How to get this while playing a song? mines up way there
like the controls and thing
How did you do that? may I get your help?
spotifycontrols
i think discord pushed a new update and i can now no longer access settings
or my css
chat am i cooked?
If u havent found the solution, click the Profile Panel and click Edit Profile. It will put you into the window setting
@paper nexus
yo peak he fixed it
I still need to fix the Spotify bar iirc i can get to that in the morning
what is that css pack
my own
oh thats cool
could you send a picture of how it looks in dms
i dont use the exact one from that image anymore tho
also could someone put the new code with all fixes here at the end cause everyone added something and im confused about what i have to do
quite interesting
its mostly the same just with some additions and reductions to make it run smoother
i think its not working anymore, or are there any available solutions?
classes got changed on ptb and canary, so if you're using it on stable it'll probably be broken for a little bit
@paper nexus uhh..
Seems like they changed some variable names
Thanks for your hard work, hope it can be fixed 🙏
i assume this is the same issue as the image above too?
or idk, i just dont want the buttons to be black. kinda hard to see 😭
nvm edited some of the code and fixed it
would be really nice if all the buttons just layed on top of everything like their own panels and just free'd up space for the profile and voice sections to look nicer
i dont really want to expand the channel list so its more usable
why am i still like this?
this is the semi fixed version for anyone who wants it
iirc the video and screenshare buttons were just icons before
i think the spotify player is fine
theme devs: you will open the replace prompt in vscode or whatever you use. you will enable regex. you will put
\.([_0-9a-f]{6})[0-9a-f]{10,11}-([A-Za-z0-9_\-]+)in and replace it with.$2_$1and if this regex creates one goddamn problem i'm going to lose it
this is what fixed it for me
credit @patent pilot
i put a pr thru for u @paper nexus it might need some tweaking however
okay found one bug with it but this is dependant on how long the channel name is i believe
my proposal is either limit the amount of characters that can be shown at once or move the "Show Voice Users" to a different place
when I try to leave a call the buttons are cut off and will not select
I’ll look into it
Yeah I’m probably gonna redo that entirely
is there a fix to the problem where the buttons are bright green
even after removing literally all of my snippets except for the import it still is there
i like the redesign
did u change the size of the userpanel?
seems like something in the app itself changed so i'll have to fix it
all gd
any plans to fix this at all? bottom panel is still a bit smaller than the others