#I m using discord on a vertical monitor

1 messages ยท Page 1 of 1 (latest)

tight belfry
#

This is actually so nice wtf!! pleading_kitty

tight belfry
#

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

hexed nymph
#

did you try removing the media query around it?

#

also just realized it doesn't work in threads ๐Ÿ’€

tight belfry
#

i noticed the 1080px part

#

even without the entire <@&1118512947539492864>edia query tho

#

oops sorry to them

tight belfry
#

it looks so good

#

I wanna be that good at css

hexed nymph
#

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

tight belfry
#

im on browser too

hexed nymph
#

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

low forge
#

neat

tight belfry
#

I got it working btw ^_^ tysm

hexed nymph
#

nice

#

what did you change?

tight belfry
#

Im so glad it works now tho

honest niche
#
/* 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,.

tight belfry
#

Good work

mellow fjord
#

For vertical screen I'd recommend using horizontal server list too

lethal halo
#

@hexed nymph is there a fix for the scrollbar, that is unusable

hexed nymph
#

talked in dms but if anyone else needs a scrollbar on the left side

[class*="managedReactiveScroller"] {
    direction: rtl;
}

[class*="scrollerInner"] {
    direction: ltr;
}```
rich wharf
#

no longer works unfortunately

hexed nymph
#

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

rigid viper
#

hey im here from discord search. i see other ppl having this issue.

#

i just pasted that and it doesnt seem to work

rigid viper
#

is this still broke or am i doing it wrong?

rigid viper