xp-discord-theme icon indicating copy to clipboard operation
xp-discord-theme copied to clipboard

serverbar huge grey bar beneath

Open Mass1milian0 opened this issue 1 year ago • 5 comments

there is this gray bar, i thought it was the discover server button, so i removed it, but that wasn't it

image

Mass1milian0 avatar Nov 26 '24 10:11 Mass1milian0

upon further inspection, i noticed that by disabling flex-direction: column; the issue gets fixed

image image

however i disabled it for the class .itemsContainer_fe3ef which seems like an instanced class, if removed for the general class, i have no idea what implications it may have

Mass1milian0 avatar Nov 26 '24 10:11 Mass1milian0

I have the same issue, but removing flex-direction: column only makes everything appear to move to the left:

image

devgocri avatar Dec 11 '24 06:12 devgocri

it's wierd, but, you are running a macos, which may interpret the css rules differently, however, the developer of this theme doesn't seem active anymore, this may be abandoned @devgocri

Mass1milian0 avatar Dec 11 '24 11:12 Mass1milian0

Changing flex-direction didn't work for me either.

After some experimentation over the past week, this is what I ended up adding into Vencord's QuickCSS to fix the theme for me:

#app-mount > div.appAsidePanelWrapper_bd26cc > div.notAppAsidePanel_bd26cc > div.app_bd26cc > div > div.layers_d4b6c5.layers_a01fb1 > div > div > nav > ul
{
    background: linear-gradient(to left, var(--xp-window-color-1), var(--xp-window-color-1) 12%, var(--xp-window-color-2));
    box-shadow: inset 0 0 3px 2px var(--xp-window-color-1),inset -2px 0 2px 1px rgba(255,255,255,.7);
}

.footer_d71945
{
    background: unset;
}

.unreadMentionsIndicatorTop_fea3ef, .unreadMentionsIndicatorBottom_fea3ef {
    visibility: hidden;
}

.guilds_a4d4d9 .scroller_fea3ef {
    background: unset;
    box-shadow: unset;
}

TReKiE avatar Dec 12 '24 01:12 TReKiE

New version for the latest changes:

#app-mount > div.appAsidePanelWrapper_a3002d > div.notAppAsidePanel_a3002d > div.app_a3002d > div > div.layers__960e4.layers__160d8 > div > div > nav > ul,
div:nth-child(2) > nav > ul
{
    background: linear-gradient(to left, var(--xp-window-color-1), var(--xp-window-color-1) 12%, var(--xp-window-color-2));
    box-shadow: inset 0 0 3px 2px var(--xp-window-color-1),inset -2px 0 2px 1px rgba(255,255,255,.7);
}

.footer__214dc, .theme-light .content__37e49, .theme-dark .content__37e49
{
    background: unset;
}

.unreadMentionsIndicatorTop_ef3116, .unreadMentionsIndicatorBottom_ef3116 {
    visibility: hidden;
}

.guilds_c48ade .scroller_ef3116 {
    background: unset;
    box-shadow: unset;
}

.theme-light .title_b6c092 {
    color: white;
}

TReKiE avatar Feb 21 '25 16:02 TReKiE