#🎨-theme-development

1 messages · Page 66 of 1

late lichen
#

try changing the padding on the attachment button

burnt lake
# late lichen try changing the padding on the attachment button
.form_f75fb0 {
    background-image: url("https://i.imgur.com/n3kumsf.png"); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(32, 32, 32, 0.527); 
    border-radius: 10px;
    position: relative;
}


.form_f75fb0::before {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.4);
    pointer-events: none;
    z-index: 1;
}


.form_f75fb0 .textArea__74017 {
    background: transparent !important;
    border: none !important;
    z-index: 2;
    box-sizing: border-box;
}

.form_f75fb0 .markup__75297 {
    z-index: 2;
    color: white;
    font-weight: 500;
}


.form_f75fb0 .placeholder__1b31f {
    z-index: 2;
    color: rgba(255, 255, 255, 0.8);
}


.form_f75fb0 * {
    background: transparent !important;
}


.form_f75fb0 button {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.6) !important; 
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: white !important;
}
late lichen
tranquil whale
#

A bit

#

Mainly was looking at profile pop up and qol

#

And some shenanigans

river pecan
#

make everything fullscreen wide and scrollable

#

like

#

uhhh

#

like the server list and channel navigation was combined by someone

tranquil whale
#

blade did that already

#

like this

#

this my current project

tranquil whale
#

better tooltip?

burnt sky
tranquil whale
burnt sky
tranquil whale
#

steam theming?

burnt sky
#

yeah

tranquil whale
#

got too adictive

burnt sky
#

you don't say

tranquil whale
#

might do theming for vs code

tranquil whale
burnt sky
#

the majority of the theme i put together for discord is all from actual useful snips
just so i could use discord easier on a vertical monitor :)

tranquil whale
burnt sky
#

works well on a normal monitor aswell

tranquil whale
#

this is tthe best thing I have ever made lol

#

could potentially do something with the board

#

or maybe the game pop ups

#

how do I check class names again I forgot

tranquil whale
#

--custom-widget-max-widget-height: 100vh;
--custom-widget-bar-padding: 12px;
--custom-widget-body-padding: 4px;
--custom-widget-bar-height: 20px;

echo frost
#

that gets rid of steam's character

burnt sky
echo frost
#

oh whoa

burnt sky
#

hell even 2007 ms office :) if you want to match between windows and a discord version

echo frost
#

what is that

burnt sky
#

its similar to vencord

#

and yes theres plugins

echo frost
#

whoa

burnt sky
lunar bough
#

woah finally something cool

#

space theme is wildddd

burnt sky
#

@lunar bough spaceenergy did have an exact matching discord theme to go with it but all the class updates etc.. and visual refresh just killed development of it

#

how it looked

lunar bough
#

I see

#

approved for colored embeds which I have

gentle wraith
burnt sky
gentle wraith
#

my bad sir

#

i didnt see the message at first

#

visual refresh killed like most great themes right

onyx mesa
pure cairn
#

My favourite theme, noon

burnt lake
#

Can a background wallpaper be applied to form_f75fb0?

late lichen
# burnt lake ``` .form_f75fb0 { background-image: url("https://i.imgur.com/n3kumsf.png");...
.form_f75fb0 .channelTextArea_f75fb0 {
    background-image: url("https://i.imgur.com/n3kumsf.png") !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-color: rgba(32, 32, 32, 0.527);
    border-radius: 10px;
    position: relative;
} 

.form_f75fb0 .themedBackground__74017 {
    background: transparent !important;
    backdrop-filter: none !important;
}

.form_f75fb0::before {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.4);
    pointer-events: none;
    z-index: 1;
}

.form_f75fb0 .textArea__74017 {
    background: transparent !important;
    border: none !important;
    z-index: 2;
    box-sizing: border-box;
}

.form_f75fb0 .markup__75297 {
    z-index: 2;
    color: white;
    font-weight: 500;
}

.form_f75fb0 .placeholder__1b31f {
    z-index: 2;
    color: rgba(255, 255, 255, 0.8);
}


.form_f75fb0 button {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.6) !important; 
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: white !important;
}
burnt lake
# late lichen ```css .form_f75fb0 .channelTextArea_f75fb0 { background-image: url("https:/...
.form_f75fb0 .channelTextArea_f75fb0 {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background-color: rgba(32, 32, 32, 0.527);
}

.form_f75fb0 .channelTextArea_f75fb0::before,
.form_f75fb0 .channelTextArea_f75fb0::after {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: slideShow 16s infinite ease-in-out;
    transition: opacity 1.5s ease-in-out;
    will-change: opacity;
}


.form_f75fb0 .channelTextArea_f75fb0::before {
    background-image: url("https://i.imgur.com/n3kumsf.png");
    animation-delay: 0s;
}


.form_f75fb0 .channelTextArea_f75fb0::after {
    background-image: url("https://i.imgur.com/gEXoBXN.png");
    animation-delay: 8s;
}


@keyframes slideShow {
    0%, 45% { opacity: 1; }
    50%, 95% { opacity: 0; }
    100% { opacity: 1; }
}


.form_f75fb0 .themedBackground__74017 {
    background: transparent !important;
    backdrop-filter: none !important;
}

.form_f75fb0 .textArea__74017 {
    background: transparent !important;
    border: none !important;
    z-index: 2;
}

.form_f75fb0 .markup__75297 {
    z-index: 2;
    color: white;
    font-weight: 500;
}

.form_f75fb0 .placeholder__1b31f {
    z-index: 2;
    color: rgba(255, 255, 255, 0.8);
}

.form_f75fb0 button {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.6) !important; 
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: white !important;
}

I'm rather stupid that the buttons disappear on the second slide.

late lichen
#
/* :small_blue_diamond: Drugie zdjęcie */
.form_f75fb0 .channelTextArea_f75fb0::after {
    background-image: url("https://i.imgur.com/gEXoBXN.png");
    animation-delay: 8s;
    z-index: -1; /* added this */
}
burnt lake
late lichen
#

did you snipe the rest of the thing?

burnt lake
late lichen
#

for me its fine

.form_f75fb0 .channelTextArea_f75fb0 {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background-color: rgba(32, 32, 32, 0.527);
}

.form_f75fb0 .channelTextArea_f75fb0::before,
.form_f75fb0 .channelTextArea_f75fb0::after {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: slideShow 16s infinite ease-in-out;
    transition: opacity 1.5s ease-in-out;
    will-change: opacity;
}


.form_f75fb0 .channelTextArea_f75fb0::before {
    background-image: url("https://i.imgur.com/n3kumsf.png");
    animation-delay: 0s;
}


.form_f75fb0 .channelTextArea_f75fb0::after {
    background-image: url("https://i.imgur.com/gEXoBXN.png");
    animation-delay: 8s;
    z-index: -1;
}


@keyframes slideShow {
    0%, 45% { opacity: 1; }
    50%, 95% { opacity: 0; }
    100% { opacity: 1; }
}


.form_f75fb0 .themedBackground__74017 {
    background: transparent !important;
    backdrop-filter: none !important;
}

.form_f75fb0 .textArea__74017 {
    background: transparent !important;
    border: none !important;
    z-index: 2;
}

.form_f75fb0 .markup__75297 {
    z-index: 2;
    color: white;
    font-weight: 500;
}

.form_f75fb0 .placeholder__1b31f {
    z-index: 2;
    color: rgba(255, 255, 255, 0.8);
}

.form_f75fb0 button {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.6) !important; 
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: white !important;
}
burnt lake
#

Hmm

burnt lake
late lichen
#

i wish the maximize button went like this when maximized

wintry cape
#

Is that from opera?

late lichen
#

yes, thats where i got the thing from

tranquil whale
#

thought on this bar borde

wintry cape
late lichen
#

yea

wintry cape
#

Example: #fff is white.

late lichen
#

#6f1EFA

wintry cape
#

Ok

late lichen
#

why

wintry cape
#

The color

#

You can't color a image

#

Wait 2 minutes and i will show you image of the result

#

For some reason, the left side is cut off, but it works for purple.

#

The corner issue should be fixed aswell

#

@late lichen I fixed it

#
/* The other buttons */
.winButton_c38106 rect,
.winButton_c38106 polygon {
  fill: #6f1EFA;
}
[aria-label=Maximise] svg {/* Blueish: https://i.imgur.com/0J4YAVd.png  */
  background: url("https://i.imgur.com/0J4YAVd.png") center/cover;
  rect {
    display: none;
  }
}
late lichen
#

why is mine so broken

#

it was the aria-label

late lichen
half crystal
#

since this will get me banned in #🎨-css-snippets -
foxy jumpscare

body:has(.message__5126c[data-list-item-id$="22"])::after {
    content: "get foxied";
    position: absolute;
    z-index: 200;
    background: url(https://blade04208.github.io/css/img/fnaf-foxy.gif);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: all 0.6s steps(1, end);

    @starting-style {
        opacity: 1;
    }
}
echo frost
#

i don't think @starting-style is working

half crystal
#

it does work

echo frost
#

oh

#

wait now it worked

#

what's the point of the [data-list-item-id$="22"]?

half crystal
echo frost
#

yeah but why is it 22

half crystal
echo frost
#

oh i understand it now

half crystal
tranquil whale
#

Will try tmrw

wintry cape
flat gull
#

how can you change the width of panels__5e434(user/vc panel)?
setting a margin moves some stuff offscreen and padding leaves a background

#

I want it to only take up the width of the channels, not the serverlist (used to have a snippet but that one broke)

pure cairn
flat gull
#

🙏

burnt lake
# burnt lake and emoji is broke : :

The solution is this XD

@keyframes wallpaperRotate {
    0%, 33% {
        background-image: url('https://i.imgur.com/gEXoBXN.png');
    }
    34%, 66% {
        background-image: url('https://i.imgur.com/xhZAYR8.jpeg');
    }
    67%, 100% {
        background-image: url('https://i.imgur.com/hnbz4FC.png');
    }
}

.scrollableContainer__74017 {
    background-image: url('https://i.imgur.com/gEXoBXN.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: wallpaperRotate 23s infinite;
}

.form_f75fb0 .placeholder__1b31f {
    z-index: 2;
    color: rgb(255, 255, 255);
}
late lichen
wintry cape
#

That is something in your theme

#

It should be like this

late lichen
wintry cape
#

True, but then you need to move only the minimise button lower

late lichen
#

it does that

#
.winButton_c38106.winButtonMinMax_c38106:nth-child(1) svg rect {
    width: 12px !important;
    x: 0px !important;
    y: 11px !important
}
wintry cape
#

Then why is your maximise button higher

#

Uh

#

You should use the aria-label, not the winbutton

wintry cape
late lichen
#

why, nth-child(1) does that

wintry cape
#

No, you are editing the rect values

late lichen
#

of the minimize

wintry cape
#

You don't need to edit the rect values

#

Just move the svg a bit lower

late lichen
#

its cause i also change the size of it

wintry cape
#

Ok, but did you replace the maximise button to the right position?

late lichen
#

no, i didnt move it

late lichen
#

you can local resource images?

echo frost
#

whoa i figured out how to do this again sort of (without :has)

.buttonsInner__5126c:not(:hover)>:is(.separator_f84418~span:not(:nth-last-child(2)), :nth-child(-n+6), .separator_f84418) {
  display: none;
}
#

it'll only show the first 3 buttons on hover, but that's not too bad

forest minnow
#

is there perchance a reference sheet for every element

echo frost
#

ctrl+shift+i

forest minnow
#

a bit tedious don't you think

#

is this what I'm supposed to be looking at?

vestal field
forest minnow
#

damn

#

anything about this btw?

#

changed the css to fit the docs from betterdiscord

echo frost
# forest minnow

main-color isn't a thing
and background-color will only change the background color of body

echo frost
forest minnow
#

i was hoping someone had something stored away

forest minnow
echo frost
#

yeah and what are you expecting "something" to be

forest minnow
#

a reference sheet

echo frost
#

it's a bad reference sheet if it told you to do main-color and not --main-color

burnt sky
#

its probably there to be used as a var()

forest minnow
#

var()?

echo frost
#

it needs to have -- to be a var

#

variable

forest minnow
#

i know what a variable is; haven't heard of uit used in css

echo frost
forest minnow
#

so that's what those are

#

alright, here's what i've got now

echo frost
#

--main-color doesn't exist

forest minnow
#

hm

echo frost
#

it might be a variable for a theme

forest minnow
#

ah

echo frost
#

what are you wanting to do

forest minnow
#

yeah i've been trying to use the variables from another theme i installed

forest minnow
#

just message content for now

echo frost
#
:root {
  --custom-theme-text-color: #ff00ff;
  --custom-theme-text-color-amount: 100%;
}```
forest minnow
#

I see

#

hm

#

still not giving anything

echo frost
#

I think you're doing something wrong then

#

is that the only css you have?

forest minnow
echo frost
#

remove the .theme-dark {font-family:...}

#

and use the font variable

echo frost
# echo frost and use the font variable
:root {
    --font-primary: "gg sans", "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --font-display: "gg sans", "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --font-headline: "ABC Ginto Nord", "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --font-code: "gg mono", "Source Code Pro", Consolas, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", Monaco, "Courier New", Courier, monospace;
    --font-clan-body: Fraunces, "gg sans", serif, "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --font-clan-signature: Corinthia, "gg sans", cursive, "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --font-display-marketing: "ABC Ginto Discord", "gg sans", serif, "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --font-display-marketing-header: "ABC Ginto Nord Discord", "gg sans", serif, "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
#

but that should work if it's your only css

#

@forest minnow ^

forest minnow
#

figured out why it wasn't working; turned out i was editing the wrong file lmao

#

thanks for the help!

forest minnow
#

is there documentation somewhere?

echo frost
#

ctrl+shift+i

forest minnow
#

ok thanks

echo frost
#

in case it's not clear from that screenshot, click --font-primary

#

then it'll take you to the definition

tiny wing
#

This css stopped working or something is wrong with it I tried the updater site but nothing changed can anyone help plz.

 /**──────────║ Collapsible Emoji Picker ║──────────*/
    .chat_f75fb0 .textArea__74017 {
        margin-right: 45px !important;
        border-radius: 16px;

        +.buttons__74017 {
            right: 3px;
            border-radius: var(--roundness-xs);

            &:hover {
                backdrop-filter: blur(3px);
            }

            &:not(:hover)>:not(:last-child) {
                display: none;
            }

            &:not(:hover)>.separator_aa63ab {
                margin-left: 0;

                &::before {
                    display: none;
                }

                button>div {
                    margin-left: 8px;
                }
            }
        }
    }
burnt sky
# tiny wing This css stopped working or something is wrong with it I tried the updater site ...
/* Collapse the chat buttons except when hovering */
[class^=chat_] [class*=textArea_] {
  margin-right: 32px;
  +[class^=buttons_] {
    position: absolute;
    right: 0;
    &:not(:hover)>:not(:has(> [class^=emojiButton] )) {
      display: none;
    }
    &:not(:hover)>[class^=container_] button>div {
      margin-left: 8px;
    }
    >:has(> [class*=emojiButton_]) {
        order: 99;
    }
    >:has(> .app-launcher-entrypoint) {
        order: -1;
    }
  }
}```
try this
tiny wing
burnt sky
#

im not sure why either i just know the snip works

#

but this snip doesn't seem to make discord lag even though it has :has in it

echo frost
#

it looks like it might always show the emoji picker instead of always showing the right-most button

echo frost
tiny wing
echo frost
#

what

#

I thought I updated it

#

I can double check in a few hours

#

-remind 3h check snippet

#

!remind 3h check snippet

sturdy trenchBOT
#

Alright @echo frost, in 3 hours: check snippet

burnt sky
#

@echo frost it does work just the display: none part makes the icon not be avaliable

tranquil whale
#

!remind 8h tinker with emoji picker

sturdy trenchBOT
#

Alright @tranquil whale, in 8 hours: tinker with emoji picker

sturdy trenchBOT
#

@echo frost, <t:1762808965:R>: check snippet

echo frost
tiny wing
burnt sky
#

gotta love when you have to get creative with a color to match everything when all you can use in it is color: for a border

sturdy trenchBOT
#

@tranquil whale, <t:1762817040:R>: tinker with emoji picker

echo frost
burnt sky
echo frost
#

maybe theres another element

burnt sky
#

thats directly from your snippet

echo frost
#

yes

#

it should maybe be a last-of-type

#

can you send the html

tranquil whale
#

/* top bar */
.title_c38106 {
padding: 2px 2px;
background: rgba(210, 34, 131, 0.6)/var(--window-colour)/;
backdrop-filter: blur(var(--window-blur)) !important;
width: 1190px;
border-style: ridge;/outset, inset, ridge and groove work well/
border-width: 4px;
border-radius: 12px;
border-color: #d1889f;
position: relative;
z-index: 0;
display: ruby;
}

#

edit the server name box

vital echo
#

how much is --radius-lg/md/sm

plain kelp
#

Check them in devtools

vital echo
plain kelp
vital echo
plain kelp
#

Perfectly regular devtools

vital echo
plain kelp
#

Select any element, search --radius, it's right there

pure cairn
vital echo
plain kelp
#

Yeah that used to happen for me a few weeks ago

vital echo
plain kelp
#

Not sure what changed, it works fine today

clear siren
#

my devtools have also been unbearably slow recently to the point it's barely usable

#

I'm never updating my css

onyx mesa
#

devtools been working fine for me

clear siren
#

idk if it's a vesktop thing

#

but after ctrlshifti I have to wait like 5 seconds before I can hit the inspector button and the element I want or it'll just not work, clicking anything takes like 7 seconds before the style pane updates

brazen quartz
#

it's a discord thing, likely because of too many vars

clear siren
#

idk it wasn't this bad before I think it became much worse after recent vesktop update with new electron version

brazen quartz
#

I see, I am still on electron 35

burnt lake
#

What was the name of that application that allowed you to change Steam colors, etc.?

half crystal
burnt lake
burnt sky
brazen quartz
#

use ctrl+shift+i to stop guessing, but .channelTextArea__74017 { border-radius: 0 !important; }

burnt sky
#

me fixing just one icon being brigher also me adding a hover affect to all those icons :)
not sure what other buttons im missing now lol

tranquil whale
#

i need help making a buble effect for containers

burnt sky
pure cairn
#

What even is that color

plain kelp
#

Brownrange

burnt sky
tiny wing
#

how can I have the channel list in the centre instead of aligned to the left

brazen quartz
#

.name__2ea32 { text-align: center; }

tiny wing
wintry cape
harsh harbor
wintry cape
#

Your welcome.

harsh harbor
#

anyone know the class name for this header?

clear siren
#

ctrl shift i, click button in topleft, click element you want to know all about

onyx mesa
halcyon crypt
#

I just drop it here, Discord changed channelAppLauncher_e6e74f to app-launcher-entrypoint, so if you want to hide the "app launcher" button:

.app-launcher-entrypoint{
    display: none !important;
}```
crisp sluice
#

Got one for hiding the nitro gift button?

pure cairn
#
.buttons__74017 > div[aria-disabled="false"] {
  display: none;
}```
crisp sluice
#

Thank

marble monolith
#

they broke the thing I was using to hide this recently and never figured out a new way, anyone got a snippet for that

marble monolith
#

yes

sage tusk
marble monolith
#

icon and text

sage tusk
marble monolith
#

thanks!

sage tusk
#

Ofc

tepid depot
#

I can't see this anymore. Has it been removed?

echo frost
#

Is the experiments plugin enabled?

oak plover
#

Most of the tabs got removed, a lot of it was moved to discord’s devtools iirc

#

There’s still two tabs there though

echo frost
#

experiments is still there for me

oak plover
#

Yeah idk what they’re talking about

junior drum
#

anyone got css to hide the app launcher?

#

[class*=channelAppLauncher_] {display: none !important;} doesnt work anymore

junior drum
#

oh im blind

lunar bough
#

!important isn't needed in it btw

mystic fjord
#

how do i make this transparent

half crystal
# mystic fjord

Oh if it's that then just set your green color to transparent

mystic fjord
#

how

mystic fjord
#

what command

half crystal
mystic fjord
#

i wanna make it GREEN transparent

#

like tinted green

half crystal
mystic fjord
#

uh

#

where do i put in the color

half crystal
#

Ok um @mystic fjord
Grab your original color and throw it back in
Then, hover over the green square until the color picker pops up
Go to the slider to the right of the rainbow and drag that down

plain kelp
#

#009C4A7F

mystic fjord
#

what do y'all think

#

better?

#

which one do yall like the most

#

ok

#

@half crystal need your opinion

#

which one looks best

onyx mesa
#

holy moly

mystic fjord
#

which one

tranquil whale
clear siren
#

glass gang

tender hedge
#

also using cachy os btw

crimson skiff
#

one day, i will join you linux users

pure cairn
#

Same

clear siren
onyx mesa
#

why is this corner like this and why can i not fix it

pure cairn
#

Maybe the nameplate background corner is like that so you can't change it

onyx mesa
#

when it's the gaming one the right corner is rounded for some reason

pure cairn
#

That's weird

lunar bough
onyx mesa
#

it also only applies with the name plate applied

lunar bough
#

yea

#

I have also added in my css

#

overflow: hidden for .panels__5e434

onyx mesa
#

wait that might actually fix it, let me try it

lunar bough
#

yea like i have my own big css but i have overflow is the key

onyx mesa
#

yeah the adding overflow has fixed

#

thanks, this been bothering me for some time

lunar bough
#

yeah same, tbf i noticed it a while ago since it only applied when u dont have those vc, quest, listenalong xd

lunar bough
onyx mesa
#

im satisfied as long as that corner is fixed

lunar bough
#

yep

pliant dove
#

Anyone know how to change the new fonts thing that discord implemented recently, been thinking it would be a great idea to update my API to allow edits for that to be edited as well as the old gg sans font

#

Some of them are just unable to be read, so I want to switch them to my dyslexia friendly comic code font

pure cairn
#

You mean the name styles?

#

I believe every style has a different class in their element, so you can probably find them by inspecting the name styles popout

plain kelp
#

You can also simply disable the styles in accessibility settings

vital echo
#

how can i get rid of the rounded sides?

already changed every --radius-xx to 0px, and also cant find border-radius for this one

pure cairn
#

You selected the wrong element, go up on the html tree

errant zenith
tender hedge
#

since the ones ive seen dont work anymore and i had to make my own

errant zenith
#

are they gonna even appear tho?

#

since i dont have the normal buttons anyways

tender hedge
#

?

errant zenith
# tender hedge ?

like are they going to work since the normal window controls dont appear anyway

tender hedge
#

if using vesktop and enabling discord titlebar they should

#

since im hiding my kde plasma titlebar on discord

#

and using builtin

errant zenith
#

they dont work tho

#

so no point in having them ig

tender hedge
#

ah

#

i know the discord titlebar can also be stupid and have something overlayed on the buttons which make them unclickable

errant zenith
#

nah its just hyprland

tender hedge
#

ah

#

it would still look a bit better than a half empty titlebar

#

even if the buttons dont work

errant zenith
#

tbf im waiting for the back/forward buttons

#

theyre gonna nicely fill up the space

#

and be actually useful for me

#

for some reason enabling the experiment does nothing

tender hedge
#

for me not as much as i just use the back and forward buttons on my mouse

tender hedge
#

for some reason

#

i remember having them without enabling them some time ago

errant zenith
#

i still have it on my windows install

tender hedge
#

huh

errant zenith
#

(that i dont even use that much so its useless)

tender hedge
#

what experiment adds them

errant zenith
errant zenith
tender hedge
#

weird

#

think they removed them then

#

atleast on the linux version

#

maybe it works on the regular version

errant zenith
#

i did this instead for now

tender hedge
errant zenith
#

huh

#

interesting

tender hedge
#

just doesnt support builtin titlebar which is why i dont use it'

#

or it does and i just dont know how to enable it

#

and vesktop likely doesnt have the arrows because it uses the web version of discord

chilly knoll
chilly knoll
#

is it catppuccin

errant zenith
errant zenith
chilly knoll
chilly knoll
errant zenith
errant zenith
chilly knoll
errant zenith
#

my whole setup is sort of catppucinnified

#

can show in a moment

#

best i could do considering you cant get actual catppuccin stuff anywhere lmfao

tender hedge
#

whats the keyboard

errant zenith
tender hedge
#

ah mines the monsgeek m1 v5 moonlight white

errant zenith
chilly knoll
errant zenith
#

the mic is not usually there

chilly knoll
wispy swan
#

I was using this for transparency on windows. It was working fine but after update it just stopped working. any solutions?

onyx mesa
#

my discord has been working too smoothly as of lately, need to add some more :has

vivid flame
#

use devilbros stuff if you want your discord to lag 100% will happen

pliant dove
pure cairn
tiny wing
#

Anyone has a working version of this please

/**──────────║ Collapsible Message Actions ║──────────*/
    .buttonsInner__5126c:not(:hover)>[role=button]:not(:has(>svg>[d^="M4 14a2 2 0 1 0 0-4 2 2"]), .dangerous_f7ecac) {
        display: none;
    }

    /**──────────║ Hide Favourite Emoji On Message Bar ║──────────*/
    .popoverReactionHoverBar_f84418 {
        background: none !important;
        border: none !important;
        box-shadow: none !important;

        .hoverBarButton_f84418 {
            background: var(--backgroundfade) !important;
            border-radius: var(--roundness-m);

            &:hover {
                background: var(--background-base-lowest) !important;
                border: 1px solid var(--border-G1);
            }

            &:hover .icon_f84418 {
                transform: none;
            }
        }
    }

    .buttonsInner__5126c>div:not(:last-of-type),
    .buttonsInner__5126c>.hoverBarButton_f84418>div {
        width: 0;
        height: 0;
        min-width: 0;
        padding: 0;
        margin: 0;
        opacity: 0;
        transition: min-width 0.15s ease-out,
            width 0.15s ease-out,
            height 0.15s ease-out,
            padding 0.15s ease-out,
            opacity 0.15s ease-out,
            transform .2s cubic-bezier(.16, 1, .3, 1);
    }

    .buttonsInner__5126c:hover>.hoverBarButton_f84418:not(:last-of-type) {
        width: 24px;
        height: 24px;
        min-width: 24px;
        padding: 2px;
        opacity: 1;

        >div {
            width: 20px;
            height: 20px;
            opacity: 1;
        }
    }

    .buttonsInner__5126c:hover>.separator_f84418 {
        width: 1px;
        height: 24px;
        margin: 2px 4px;
        opacity: 1;
    }
pure cairn
#

Shows all message buttons only when hovering the last one

#

Instead of all the time

tiny wing
#

It shrinks this to a single icon upon hovering it, it reveals the entire section

onyx mesa
#

like this one?

@import url('https://raw.githubusercontent.com/moonself/Vencord-Repos/refs/heads/main/Message%20Actions%20Hover');
pure cairn
#

Self plug, approbe venniehehe

onyx mesa
#

i haven't updated or touched it in a while but it works just fine

tiny wing
pure cairn
#

Also thanks for fixing the threads/forum memberlist the other day

onyx mesa
pure cairn
onyx mesa
pure cairn
#

Yeah np venniehehe

#

Glad it works fine now

#

Until the next hash reroll

gusty charm
#

Is there a way to move this? I am new to this, so I apologize.

pure cairn
#

In that picture, what are you referring to when you say "this"?

#

The tab title at the center?

gusty charm
pure cairn
#

Where do you want to move it?

safe mist
clear siren
#

.title_edbb22 { display: none; }

half crystal
#

i am doing horrifying things

river warren
#

hello chat! how would i reorder the buttons in the messagebar?

#

have this old css snippet i made (this gif is old) that compacts the messagebar when not in use

#

but the recent discord update places the gift box as the rightmost messagebar button. for reasons i hope are obvious, this is fucking catastrophically terrible for me, especially since my messagebar currently looks like this

#

that is to say: i want to put the emoji button back as the rightmost button. how?

echo frost
clear siren
#

you might also be interested in the new experiment dev://experiment/2025-09-chat-input-ia-desktop

#

I like variant 2 best

chilly knoll
#

so i changed the status icons from the default discord one but whenever someone types then stops the status icon is reverted to the default one

#

anyone know how to fix this? ive been at it for hours and i genuinly cant fix it

echo frost
#

you'd probably need to send your css

chilly knoll
#

!remind 8h send css

sturdy trenchBOT
#

Alright @chilly knoll, in 8 hours: send css

echo frost
#

wait what it shouldn't be going back to a normal phone icon when they type
it should have dots when they type

#

this is in the member list right?

sturdy trenchBOT
#

@chilly knoll, <t:1763256646:R>: send css

chilly knoll
chilly knoll
#

and yeh for the member list

half crystal
burnt lake
#

Someone is working on CSS optimization, if that's the reason why Discord uses 2-3 GB of RAM.

clear siren
#

it isn't

pure cairn
#

css optimisation? what is that?

onyx mesa
#

i dabble into some css optimisation myself

half crystal
plain kelp
#

Css can be responsible for cpu usage, but not much ram

half crystal
plain kelp
#

Yeah, true

#

No idea why it does that

wind geyser
#

removes all css lol

burnt lake
wind geyser
#

Man what the hell is your titlebar

burnt lake
burnt lake
onyx mesa
#

is discord really the issue when you got brave eating up 8gb of memory

burnt lake
errant zenith
echo frost
chilly knoll
#

it basically goes like:
custom status icon > typing dots > stock status icon

echo frost
#

oh like immediately after they stop typing for a bit it doesn't work?

#

oh

chilly knoll
echo frost
echo frost
#

if it's forever, then just look at the html again

chilly knoll
echo frost
#

oh
well have you looked at the html just to confirm it doesn't change?
I think it might be funky stuff with masks that I've seen before

#

I don't really have time to look at it today

weak fiber
#

is there any css to remove this thing? I can't find anything by searching in this server

#

it pops up every couple of days

chilly knoll
timber mist
#

it should be called something like "Do Not Disturb Reminder" i think

weak fiber
timber mist
proper obsidian
#

i know it's bad practice, but why does*{border-radius:0px;} do absolutely nothing? *{outline:1px solid red;} performs as intended

#

works as intended with !important. this is so fucking weird

echo frost
#

because * has very low specificity, so if anything is already defining a border-radius, it'll have higher specificty

#

and 0 is the default border-radius

#

so anything that's border-radius: unset will look the same as 0

#

if you do border-radius: 32px; or something, you will notice a difference

#

you'll notice a difference between the red outline with and without the !important

blissful ledge
#

how do i make this rounded

brazen quartz
#

.panels__5e434 { border-radius: 100px; }

stray hamlet
#

hey, what's the CSS for the avatar decorations in chat?

#

can't seem to find them, i've made chat avatars bigger so the deco is now desynced

#

nvm found it

weak fiber
#

is there any css I could use to block specific reactions from appearing on messages?

pure cairn
#

Probably with some :has() and aria-label shenanigans

brazen quartz
brazen quartz
#

🈵

echo frost
#

oh

deep lichen
#

Hello, how can I shrink the server sidebar and server icons to be thinner ?

sage tusk
chilly knoll
pure cairn
#

how fitting

deep lichen
#

Also, do you know how to move the user pill to the left (the one that has the pfp, mute, deafen, etc) for example?

#

I've trying to use the developer tools but no luck

deep lichen
sage tusk
deep lichen
#

Entire thing

pure cairn
#
.panels__5e434 {
  left: 80px;
}```
Play around with this
deep lichen
#

Thanks you guys, really appreciated

pure cairn
deep lichen
chilly knoll
blissful ledge
sage tusk
onyx mesa
chilly knoll
onyx mesa
#

sorry for what

onyx mesa
#

i fixed my chatbar finally

sage tusk
# tranquil whale

They wanted to make their own radius edits, 100px is unlikely they'll use it so it'll look better for them

late lichen
#

how do i properly setup the padding on this??

#

-# the last one is the reason im messing with the padding

pure cairn
#

I'd use a margin, not a padding

late lichen
#

i mean, the last one is the effect i want, channels to get blurred under the user area thing

pure cairn
#

thanks for specifying

late lichen
#

but the "margin" on the last channel is different between servers, on one its like 4px and on the other its like 8px

wraith hound
#

hello is there any way to change the background too? not just hiding the server id

wraith hound
echo frost
#

the tooltip

#

possibly, but i need to go to bed

lofty yew
#

is there a way to reorder these? it's playing with my muscle memory

clear siren
#

dev://experiment/2025-09-chat-input-ia-desktop

#

that experiment is being rolled out, try the different options

#

there is also a way to reorder them in css if/when the experiment goes away though but right now I recommend trying the above

lofty yew
#

5th one worked, thanks a lot

mortal veldt
#

Um, excuse me, after yesterday's update, this thing is suddenly not transparent anymore, anyone know why? Cat_Q_Q
I am using Discord's CleanVision 7.0.1

onyx mesa
#

class name might have changed

oak plover
#

i thought that was already reverted

brazen quartz
#

guilds got new tooltips specifically for them

echo frost
#

oh nice the animated tooltips are back to normal

#

those were annoying me a lot

wintry cape
mortal veldt
wintry cape
#

Is it?

#

Let me get the html rq

wintry cape
echo frost
pure cairn
#

wdym animated?

echo frost
#

there's a slide in anim

mortal veldt
wintry cape
#

Great!

wraith hound
wintry cape
wraith hound
wintry cape
#

No problem

mortal veldt
#

Can anyone teach me where to change the text's color?
I can barely see the texts now XD

brazen quartz
#

:root { --channel-text-area-placeholder: #f09 !important; }

mortal veldt
brazen quartz
#

--input-placeholder-text

mortal veldt
brazen quartz
#

no, it's not

mortal veldt
chilly knoll
#

is it better to fix a theme manually or run it through the class updater

pure cairn
#

Use the class updater first

#

If it doesn't work, do it manually

iron smelt
#

Agreed

chilly knoll
#

alr thnx

#

whats the link for it again

pure cairn
#

For the future

chilly knoll
pure cairn
#

I mean, it's the 2nd to last message in that channel

chilly knoll
#

oh yeh

#

i didnt even notice it was read-only or in my channel list

pearl temple
#

how to fix this from NOT being transparent?

#

it isn't transparent in a server, but it's transparent when I'm in my DMs

long zephyr
#

is it just me or the themes are not showing on better discord

errant zenith
chilly knoll
#

@iron smelt why the ❓

wintry cape
wraith hound
#

does discord change the search bar tooltip? it turns into default one again :/

brazen quartz
#

discord currently has 2 (3 if counting the guild hover one) tooltips - "inbox" and "show members list" buttons have both of them

wraith hound
#

so maybe i just wait til the fix it ?

brazen quartz
#

you theme both if you feel like it

wraith hound
#

:/

brazen quartz
#

which one though

wraith hound
brazen quartz
#

they redesigned it, so you have to retheme it

chilly knoll
#

like they did with the settings redesign

half crystal
pure cairn
#

You okay?

chilly knoll
#

doesnt seem like it lol

cloud joltBOT
# pure cairn You okay?
Rule 12\. Do your own research

Most questions have already been answered. Before asking, read #1257025907625951423 and use Discord's search function to look up keywords related to your question.

velvet pawn
#

erm this actually is a support rule so it doesn't apply there

half crystal
velvet pawn
half crystal
velvet pawn
#

gonna disable your rabbits rq

#

brb

half crystal
chilly knoll
half crystal
hollow badge
#

Probably a stupid question and one that's been answered before, but I promise I've searched for it and couldn't find an answer: How do I add some... padding above the the User bar thing so that the channel/DMs don't get cut off abruptly but would look like in the second image? I apologize if it's been answered before!

smoky belfry
#

Probably by adjusting some values properly, my thing to redesign the user area doesn't do that

#

It's likely smth where you should set a variable to a value instead of manually setting a size to that value

burnt lake
#

How does CSS work to apply images only to this area?

pure cairn
#

background, ::after or ::before pseudo-elements

burnt lake
pure cairn
#

it depends on what those lines are there for

burnt lake
pure cairn
burnt lake
#

picker tool

chilly knoll
marble monolith
#

I made a solution with CSS:

.winButton_c38106 {
  display: none;
}```
pure cairn
pure cairn
marble monolith
burnt lake
pure cairn
marble monolith
#

yeah that's not there for me

pure cairn
#

in the general Vencord settings

#

that's weird

#

oh wait

marble monolith
pure cairn
#

guess you'll have to wait for it to be merged

marble monolith
#

yea

pure cairn
#

unless it's a Canary bug and it might be reverted

marble monolith
#

at least I found a CSS fix

pure cairn
#

yea as long as it works it's fine

marble monolith
#

yup

pure cairn
chilly knoll
chilly knoll
pure cairn
# burnt lake in content__5e434

alright, as you can see from that screenshot it says "subgrid", that's because the element you're selecting is a cell in a grid made by its parent

pure cairn
#

now, what cell do you want to apply a background to?

burnt lake
harsh harbor
#

anyone know how i would change the background color to the folders?

burnt lake
harsh harbor
burnt lake
harsh harbor
#

you see the background behind these server icons? those

burnt lake
harsh harbor
#

of the servers now

burnt lake
harsh harbor
#

in folders

pure cairn
burnt lake
burnt lake
#
.folderGroup__48112 {
    background-color: peru /*change to like color*/
}
burnt lake
burnt lake
harsh harbor
#

yes but using the code for it doesn't do anything

harsh harbor
#

its not working

burnt lake
harsh harbor
#

no

burnt lake
#

try

harsh harbor
#

that did not fix it

harsh harbor
#

fixed it with this:

#
.isExpanded__48112 .folderGroupBackground__48112 {
    background-color: #000;
}```
burnt lake
#

XD

harsh harbor
#

weird css moment

burnt lake
#

Is it possible to render the entire Discord CSS?

harsh harbor
#

anyone know how i would go about changing this gradient to be a solid black background

brazen quartz
#

.pulseGradient__11664 { display: none; }

harsh harbor
echo frost
pure cairn
#

cuz since they have to, well, scroll
they need an overflow, which is going above them

#

if you were to apply overflow: visible to the guilds and dms/channels scrollers and scroll down, you'd see the guilds/dms poking through

tranquil whale
#

thinking of designing a custom font for one of my themes what vibe should I go with

pure cairn
#

Wingdings

tranquil whale
#

new widget

glad fulcrum
#

we have a problem!

late lichen
#

anyone knows a way to detect if the window is maximized without checking the size?

tranquil whale
noble sleet
#

Is there a way to hide specific stickers that are sent in chat?

echo frost
floral ether
noble sleet
floral ether
burnt lake
pure cairn
#

I guess you could set a few ::before pseudo-elements on the scrollers, give them an absolute positioning and then a background-image

#

Actually, no
Because if you want the images to be outside the scroller's container you'd have to overflow: visible the scrollers, which would make the other elements visible

#

Idk send me what you want to do and I'll see if I can make it work

pure cairn
#

Holy necroposting

#

Are these the paths?

burnt lake
chilly knoll
#

wait yeh they are

pure cairn
# chilly knoll i think so yeh
.linkTop__2ea32 >.iconContainer__2ea32 {
  &::before {
    z-index: 999;
    width: 20px;
    height: 20px;
    content: "";
    position: absolute;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24'%3E%3Cpath fill='%234e5058' d='M7.25 9A.75.75 0 0 1 8 8.25h8a.75.75 0 0 1 0 1.5H8A.75.75 0 0 1 7.25 9m0 3.5a.75.75 0 0 1 .75-.75h5.5a.75.75 0 0 1 0 1.5H8a.75.75 0 0 1-.75-.75' stroke-width='0.7' stroke='%234e5058' /%3E%3C/svg%3E");
  }

  >.icon__2ea32 > path {
    d: path("m13.629 20.472l-.542.916c-.483.816-1.69.816-2.174 0l-.542-.916c-.42-.71-.63-1.066-.968-1.262c-.338-.197-.763-.204-1.613-.219c-1.256-.021-2.043-.098-2.703-.372a5 5 0 0 1-2.706-2.706C2 14.995 2 13.83 2 11.5v-1c0-3.273 0-4.91.737-6.112a5 5 0 0 1 1.65-1.651C5.59 2 7.228 2 10.5 2h3c3.273 0 4.91 0 6.113.737a5 5 0 0 1 1.65 1.65C22 5.59 22 7.228 22 10.5v1c0 2.33 0 3.495-.38 4.413a5 5 0 0 1-2.707 2.706c-.66.274-1.447.35-2.703.372c-.85.015-1.275.022-1.613.219c-.338.196-.548.551-.968 1.262");
  }
}```
#

gonna make dinner now, bye

chilly knoll
chilly knoll
burnt lake
# burnt lake

continuation of the strip, without changing its position, because it is supposed to be a plain background

#

but I don't know how to paste or split containers and so on

pure cairn
pure cairn
burnt lake
pure cairn
#

Is the wallpaper the same for all the length of the belt?

burnt lake
#

I want to extend the belt I already have.

pure cairn
#
.title_c38106 {
  background: none !important;
}```
#

?

burnt lake
pure cairn
#

now that I look at it, where tf is your top bar

pure cairn
#

why is your left area stuck to the top

#

and why are your input area elements not properly centered, except for the attachment button?

#

the more I look at it, the more I feel pain

burnt lake
late lichen
static path
#

uh

#

is there a chat to ask questions about quick css or something?

brazen quartz
half crystal
sour storm
#

redoing my theme finally and really want to do something like this (softx) but cant figure it out

#

anyone have a snippet for these?

pure cairn
half crystal
# pure cairn Absolutely sane

ℹ️ Notice:
You are talking to Blade0. (Also known as @half crystal, the.rabbit.disabler, Blade04208, Blade02408, BladeZero4208, "hubba bubba", or "Bob" (Formally).)
Blade0 is batshit insane and does not understand the concept of the following words, or any concepts surrounding these words:

Stupid, Pointless, Idiotic, Impractical, Unnecessary, Useless, Insane, Mental Asylum
He will not stop at anything until his predetermined goals have been achieved.
Please take this into account next time you interact with him.

Good day

From the desk of Legal
Rabbit Disabler Industries
Behind You
https://rabbitdisablerindustries.store

pure cairn
half crystal
pure cairn
#

I wonder if it would be easier to check if the server is unread and set an effect on it or just enlarge the unread pill and moving it behind the server icon

half crystal
pure cairn
sour storm
#

cant for the life of me figure out how he did it

#

thus the question

#

but i like it

pure cairn
#

working on it

pure cairn
#
.folderGuildsList__48112 > .listItem__650eb {
  >.pill_e5445c {
    overflow: visible;
    top: -2px;
    left: 18px;
    width: 44px;
    height: 44px;
    
    >.item__58105 {
      border-radius: 50%;
      left: 3.5px;
      width: inherit;
      height: inherit !important;
      transform: unset !important;
      filter: drop-shadow(0 0 4px white);
    }
  }

  >div:not([class]) {
    border-radius: 50% !important;
    overflow: hidden;

    .icon__6e9f8 {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 6px solid black;
    }
  }
}```
rough sketch, play around with this and find what you like best
#

maybe tomorrow I'll read the original code and make a better version of this ^

echo frost
#

oh you already made it

oak plover
#

It bothers me cause I think at one point there was an unread class and then when they switched the server design from the 50px versions to the 48px ones the unread pill height got based on some js nonsense

sour storm
pure cairn
#

Weird because it was working on my end

echo frost
#

it wasn't quite working for me either

sour storm
#

how would you format it without the nesting?

pure cairn
#

I'll check later if it still works for me, it would be funny if discord changed classes during the night lmfao

sour storm
#

i think that might be whats fucking it over

#

fwiw the rest of this theme has literally no nesting at all

#

no the classes are correct, at least as far as i can tell

pure cairn
#

I don't know honestly, I just woke up

sour storm
#

hmm

#

its awful

#

its not organized at all

#

it probably looks terrible on windows

pure cairn
#

I'll give it a look later

#

Been busy trying to get something else working

half crystal
#

this is the code softx uses

pure cairn
#

Yeah, it's the one I was looking at yesterday evening before going to sleep lol

#

I don't know scss but at least the properties should be the same as css

subtle rose
#

vsb 1 scam

cloud joltBOT
sour storm
#

yay

tidal vapor
late lichen
pure cairn
# tidal vapor

All separate members have a background applied to them as well

tidal vapor
#

oh

pure cairn
#

Have you managed to get it working?

tidal vapor
#

really janky

#

lemme send a video if you dont mind

#

it either works halfway or is entirely broken

pure cairn
#
.chatContent_f75fb0 + .container_c8ffbb, /* memberlist */
.content_f75fb0 .container_c8ffbb, /* forum memberlist */
.chatContent_f75fb0 + .membersWrap_c8ffbb, /* forum thread memberlist */
.members_c8ffbb, /* another layer on memberlist */
.member_c8ffbb, /* each member also has a bg */
#

these are the selectors for that area

#

you want to set background: none on the last 2

tidal vapor
pure cairn
#

could you please send the actual code instead of a screenshot? so that I can tweak and test it without having to copy it manually

#

thanks

pure cairn
#

with the image link so I can actually test its transparency, please

tidal vapor
#

this?

pure cairn
#

yes, use blockquotes

#

so it doesn't render as an embed

tidal vapor
#

nevermind

#

found it

pure cairn
#

yep

#

alright, do you want the image to be fully visible?

#

like this

tidal vapor
#

thats good enough

pure cairn
#
/* member */
.membersWrap_c8ffbb:hover::-webkit-scrollbar {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  display: none !important;
}
.members_c8ffbb {
  --paddingY: 15px;
  position: absolute;
  z-index: 100;
  top: 47%;
  max-height: 80vh;
  overflow-y: auto;
  right: 0%;
  background: none;
  transform: translate(95%, -50%) !important;
  background-image: url("https://cdn.discordapp.com/attachments/1415378553066750116/1444657147748155402/still_dope_powerwalk_burning_off_the_calories.png?ex=692ed2d0&is=692d8150&hm=9b1f9fd93b32e5ef4c09876a7ce7327fb7ae5e261ec49b9b753ff3383e41966e&");
  transition: all 0.35s ease;
  border-radius: 30px;
  height: 82.5vh;
}
.members_c8ffbb:hover {
  transform: translate(0%, -50%) !important;
  height: 82.5vh;
}
/* simply tweak this part with a different background color */
.member_c8ffbb {
  background: none;
}
tidal vapor
#

thanks!!

pure cairn
#

np

tidal vapor
#

the initial member background is still like there

#

this thing

#

its

pure cairn
#

alright

#
.container_c8ffbb {
  background: none;
}```
tidal vapor
pure cairn
#

it's a bit difficult without the full theme

#

because there's so many things that have a background

tidal vapor
pure cairn
#

fixed

tidal vapor
#

o

pure cairn
#

replace your .members_c8ffbb with .membersWrap_c8ffbb

#

do not replace .member_c8ffbb

tidal vapor
#

hover

#

wait what

pure cairn
#

wait what indeed, there's no image now

tidal vapor
#

yeah it outright refuses to work now

pure cairn
#

oh yeah

#

my bad

tidal vapor
#

its ok

late lichen
#

both .members_c8ffbb and .membersWrap_c8ffbb have backgrounds

pure cairn
#

.members_c8ffbb set its background to none

#

alongside the other stuff

#
/* member */
.membersWrap_c8ffbb:hover::-webkit-scrollbar {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  display: none !important;
}
.membersWrap_c8ffbb {
  --paddingY: 15px;
  position: absolute;
  z-index: 100;
  top: 47%;
  max-height: 80vh;
  overflow-y: auto;
  right: 0%;
  background: none;
  transform: translate(95%, -50%) !important;
  background-image: url("https://cdn.discordapp.com/attachments/1415378553066750116/1444657147748155402/still_dope_powerwalk_burning_off_the_calories.png?ex=692ed2d0&is=692d8150&hm=9b1f9fd93b32e5ef4c09876a7ce7327fb7ae5e261ec49b9b753ff3383e41966e&");
  transition: all 0.35s ease;
  border-radius: 30px;
  height: 82.5vh;
}
.membersWrap_c8ffbb:hover {
  transform: translate(0%, -50%) !important;
  height: 82.5vh;
}
.members_c8ffbb {
  background: none;
}
/* simply tweak this part with a different background color */
.member_c8ffbb {
  background: none;
}```
#

so full code becomes like this

tidal vapor
#

it works flawlessly now!!!

#

thanksss

pure cairn
#

np

#

I would not use a discord attachment link since they expire after a while tho

#

try something like imgur or catbox

tidal vapor
pure cairn
tidal vapor
#

trying to make it look the same as this

pure cairn
#

liquid glass-ish

tidal vapor
#

yup

#

looks pretty nice and doesnt get in the way

pure cairn
#

so no colors needed

tidal vapor
#

pretty much yea

pure cairn
#

just a shit ton of backdrop blur

tidal vapor
#

most you can do is just slight tint

pure cairn
tidal vapor
#

ok im not sure if this is just a discord thing i can't change but to illustrate it very clearly
i have the border radius set to like 30px, the top is fine but the bottom seems faded for some reason

tidal vapor
late lichen
#

its a mask

/*floatingsidebar*/

nav[class*="guilds"]::-webkit-scrollbar {
  display: none !important;
}

nav[class*="guilds"] {
  --paddingY: 15px;
  position: absolute;
  z-index: 100;
  top: 50%;
  max-height: auto;
  overflow-y: auto;
  transform: translate(-90%, -50%) !important;
  transition: all 0.35s ease;
  border-radius: 35px;
  background-color: rgba(255, 0, 0, 1);
  backdrop-filter: blur(30px);
  padding-top: var(--paddingY);
  padding-bottom: 15px;
  mask: none;
}

nav[class*="guilds"] div {
  transform: scale(0);
}

nav[class*="guilds"]:hover {
  transform: translate(0%, -50%) !important;
  height: auto;
}

nav[class*="guilds"]:hover div {
  transform: scale(100%);
}
tidal vapor
#

thanks

tidal vapor
#

would it be possible to turn this into a floating sidebar in dms

languid copper
#

might be possible

tidal vapor
#

i need to know the selector for it

pure cairn
#

the X's are a placeholder for the user ID so you can just use something like
aside[aria-labelledby^="user-profile-sidebar-heading-"]
as selector

#

also anyone got an idea why devtools' been laggy asf lately?

brazen quartz
#

tons of vars being displayed all at once

#

firefox (and maybe chrome, I haven't updated yet) fixed it by hiding unused ones behind a button

pure cairn
#

great

smoky belfry
#

am i the only one to dislike the new server header ?

errant zenith
smoky belfry
#

omg i just noticed smth horrible
code blocks when unspoilered keep some ass overlay or smth
if i remove spoilerContent__299eb from the message, it goes away, but idk exactly how tf i'm gonna have to fix it

atomic plank
#

feels more like a theme thing then a vencord thing but can I restore my native linux titlebar and get rid of this one with the stupid buttons in the bar?

tender hedge
echo frost
#

for linux

pure cairn
#

I think there was a PR for that

atomic plank
#

Ah cool, I'll check the vencord settings, if it's not there I'll wait for the PR

sour storm
#

how do i change the poll selected color without also changing the not-selected color

#

just changing the background color of the selected option

#

ah nevermind

#

--custom-poll-style-vote-percentage

#

is the variable that changes just the poll selected color

tidal vapor
#

do you guys know how to get rid of this black gap when somebody's typing in any given channel
its kinda bothersome

brazen quartz
#

.chatGradientBase__36d07 { display: none; }

tidal vapor
brazen quartz
#

it's the reason for existing but it's always there

tidal vapor
#

alr ill just keep it in that case

tidal vapor
#

is there a way to like
make the dm icon stay on top
kinda annoying having a small server list which looks cool but scrolling slightly just makes the dm icon disappear

brazen quartz
# tidal vapor is there a way to like make the dm icon stay on top kinda annoying having a smal...
    --scroller_non-linux-top-padding: 4px;
    --scroller_bg: var(--background-base-lowest);
    --scroller_gap: var(--space-xs);

    gap: 0 !important;

    & > :nth-child(1),
    & > :nth-child(2) {
        background-color: var(--scroller_bg) !important;
        padding-bottom: var(--scroller_gap) !important;
        position: sticky !important;
        z-index: 999 !important;
    }

    /* Home */
    & > :nth-child(1) {
        top: 0 !important;
    }

    /* DMs */
    & > :nth-child(2) {
        margin-bottom: var(--scroller_gap) !important;
        top: calc(
            var(--scroller_non-linux-top-padding) + var(--guildbar-avatar-size) +
                var(--scroller_gap)
        ) !important;
        align-items: center !important;
        /* Hidden when nothing is unread */
        visibility: visible;

        &::before {
            content: "";
            /* Stolen from .guildSeparator__252b6 */
            background-color: var(--app-border-frame);
            border-radius: 1px;
            height: 1px;
            width: 32px;
        }

        &::after {
            content: "";
            position: absolute;
            inset-inline: 0;
            inset-block-start: unset;
            inset-block-end: calc(var(--scroller_gap) * -1);
            height: var(--scroller_gap);
            background-image: linear-gradient(var(--scroller_bg), transparent);
        }
    }

    /* Border */
    & > :nth-child(3) {
        display: none;
    }

    :root:where(.platform-mac, .platform-win) & {
        padding-top: 0 !important;

        & > :nth-child(1) {
            padding-top: var(--scroller_non-linux-top-padding) !important;
        }
    }
}
tidal vapor
#

hold on lemme send the css i have for the serverlist

brazen quartz
#

works on my machine (tm)

tidal vapor
tidal vapor
brazen quartz
#

how do you even open servers with that

tidal vapor
#

its functional

#

all you gotta do is hover and click

brazen quartz
tidal vapor
#

huh

#

i think there's some css you have that conflicts with mine

#

im not sure

brazen quartz
#

it's the only css applied

tidal vapor
#

you hover over to the side and then all you gotta do is keep your cursor there where the servers are located

#

is it automatically closing once you're out of the hovering margin or something

brazen quartz
#

there's just nothing

tidal vapor
brazen quartz
#

no, so diy

tidal vapor
#

alr

pure cairn
tidal vapor
pure cairn
#

Funny

#

And cursed

half crystal
brazen quartz
#

these are not the same buttons that are used everywhere else