system24 icon indicating copy to clipboard operation
system24 copied to clipboard

online status dot/icon not showing

Open gogobombs opened this issue 7 months ago • 5 comments

this was an issue before the new look update, but it appears it still hasnt been fixed. all it shows is the black square outline.

Image

gogobombs avatar Apr 23 '25 06:04 gogobombs

not happening on my side, paste your versions please.

mine: stable 392431 (274b190) Build Override: N/A Vencord e99e89e (Vesktop v1.5.6) Electron 35.1.5 Chromium 134.0.6998.179

refact0r avatar Apr 23 '25 15:04 refact0r

not op, but had the same issue. versions: stable 392949 (6c410c7) Build Override: N/A Windows 11 64-bit (10.0.26100) BetterDiscord stable 1.12.2 Chrome/130.0.6723.191 Electron/33.4.0

seems like the issue is fixed when changing saturation to 100% in accessibility settings. if it's anything below 100% the status colours disappear

73frogs avatar Apr 23 '25 21:04 73frogs

ah that makes sense actually

refact0r avatar Apr 24 '25 01:04 refact0r

not op, but had the same issue. versions: stable 392949 (6c410c7) Build Override: N/A Windows 11 64-bit (10.0.26100) BetterDiscord stable 1.12.2 Chrome/130.0.6723.191 Electron/33.4.0

seems like the issue is fixed when changing saturation to 100% in accessibility settings. if it's anything below 100% the status colours disappear

I was going crazy trying to fix this, even considered just getting rid of the unrounding part of the css. I don't even remember changing saturation levels hahaha. Thank you.

japray avatar Jul 14 '25 17:07 japray

Oops I also just had this issue and forgor to search the issues before making a quick PR (cuz it took like 5 minutes) anyways this will fix it: #134

You can also add the code to your custom CSS in the meantime (just copy and paste):

.wrapper__44b0c[aria-label*="Online"]::after {
    background: var(--online-2) !important;
}
.wrapper__44b0c[aria-label*="Do Not Disturb"]::after {
    background: var(--dnd-2) !important;
}
.wrapper__44b0c[aria-label*="Idle"]::after {
    background: var(--idle-2) !important;
}
.wrapper__44b0c[aria-label*="Offline"]::after {
    background: var(--offline-2) !important;
}
.wrapper__44b0c[aria-label*="Streaming"]::after {
    background: var(--streaming-2);
}

pupto-bismol avatar Nov 10 '25 03:11 pupto-bismol