system24
system24 copied to clipboard
online status dot/icon not showing
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.
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
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
ah that makes sense actually
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.
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);
}