#I m using discord on a vertical monitor
1 messages ยท Page 1 of 1 (latest)
I cant get to work on my mac idk why :(( the css rules look good and the aside element is there but nothing changes, the GIF you sent looks amazing tho ๐ญ I want it so baddd
did you try removing the media query around it?
also just realized it doesn't work in threads ๐
Yeah i did
i noticed the 1080px part
even without the entire <@&1118512947539492864>edia query tho
oops sorry to them
Aww thats ok tho

it looks so good
I wanna be that good at css
oh i can fix it in threads by just tossing the aside thing away
maybe the elements are called differently in the mac build or something
they dont seem to be thats the weird thing
im on browser too
just discord.com
i'll post the old version here again before i edit the original post
/* member list thingy */
@media only screen and (max-width: 1080px) {
aside[class*="membersWrap"] {
position: absolute;
opacity: 75%;
right: -180px;
transition: all 300ms cubic-bezier(0.22, 1, 0.36, 1);
z-index: 1;
}
aside[class*="membersWrap"]:hover {
opacity: 100%;
right: 0;
z-index: 2;
}
main form {
z-index: 2;
width: calc(100% - 9vw);
}
}```
now it has a border because sometimes you couldn't see the edge of it correctly
neat
I got it working btw ^_^ tysm
tyyy & i just used a .css file on my website and the themes stab ๐ญ idk why but the quickCSS thing is broken on my macbook
Im so glad it works now tho
/* member list thingy */
[class*="membersWrap"] {
position: absolute;
opacity: 0%;
right: -220px;
transition: all 300ms cubic-bezier(0.22, 1, 0.36, 1);
z-index: 1;
box-sizing: border-box;
-webkit-box-sizing: border-box;
}
[class*="membersWrap"] > [class*="members-"] {
border-radius: 0 0 0 8px;
}
[class*="membersWrap"]:hover > [class*="members-"] {
border-radius: 0 0 0 8px;
}
[class*="membersWrap"]:hover {
opacity: 100%;
right: 0;
z-index: 2;
box-sizing: border-box;
-webkit-box-sizing: border-box;
border: 1px solid var(--background-modifier-accent);
border-width: 0 0 2px 2px;
border-radius: 0 0 0 8px;
}
I removed media screen and change opacity from 75% to 0% for hovering effects.
And change the right from -180 to -220px, so that it will only hover when the mouse is in the scrollbar,.
For vertical screen I'd recommend using horizontal server list too
@hexed nymph is there a fix for the scrollbar, that is unusable
talked in dms but if anyone else needs a scrollbar on the left side
[class*="managedReactiveScroller"] {
direction: rtl;
}
[class*="scrollerInner"] {
direction: ltr;
}```
no longer works unfortunately
i can't update the original message so i'll just post the updated thing here
/* member list thingy */
@media screen and (max-width: 1080px) {
main form {
z-index: 2;
width: calc(100% - 9vw);
}
[class^="membersWrap"]:hover>[class^="members-"],
[class^="membersWrap"]>[class^="members-"] {
border-radius: 0 0 0 8px;
}
[class^="content"]>[class^="container"]:has([class^="membersWrap"]),
[class^="content"]>[class^="membersWrap"] /* group dms */
{
position: absolute;
opacity: 75%;
right: -180px;
transition: all 300ms cubic-bezier(0.22, 1, 0.36, 1);
z-index: 1;
box-sizing: border-box;
-webkit-box-sizing: border-box;
}
[class^="content"]>[class^="container"]:has([class^="membersWrap"]):hover,
[class^="content"]>[class^="membersWrap"]:hover /* group dms */
{
opacity: 100%;
right: 0;
z-index: 2;
box-sizing: border-box;
-webkit-box-sizing: border-box;
border: 1px solid var(--background-modifier-accent);
border-width: 0 0 2px 2px;
border-radius: 0 0 0 8px;
}
}```
@rich wharf
hey im here from discord search. i see other ppl having this issue.
i just pasted that and it doesnt seem to work
is this still broke or am i doing it wrong?