From b6011993b31b80484f981936c1d012f112f106ab Mon Sep 17 00:00:00 2001 From: pupto-bismol <116475299+pupto-bismol@users.noreply.github.com> Date: Sun, 9 Nov 2025 19:18:28 -0800 Subject: [PATCH] fix status dot color selectors in build/system24.css --- build/system24.css | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/build/system24.css b/build/system24.css index 7b2b54c..55ae56f 100644 --- a/build/system24.css +++ b/build/system24.css @@ -521,20 +521,20 @@ body { right: -4px; border: 2px solid var(--background-base-lower); } - .wrapper__44b0c:has(rect[fill='#43a25a'])::after, - .container__1ce5d:has(.status_a423bd[style='background-color: rgb(67, 162, 90);'])::after { + + .wrapper__44b0c[aria-label*="Online"]::after { background: var(--online-2) !important; } - .wrapper__44b0c:has(rect[fill='#d83a42'])::after { + .wrapper__44b0c[aria-label*="Do Not Disturb"]::after { background: var(--dnd-2) !important; } - .wrapper__44b0c:has(rect[fill='#ca9654'])::after { + .wrapper__44b0c[aria-label*="Idle"]::after { background: var(--idle-2) !important; } - .wrapper__44b0c:has(rect[fill='#82838b'])::after { + .wrapper__44b0c[aria-label*="Offline"]::after { background: var(--offline-2) !important; } - .wrapper__44b0c:has(rect[fill='#9147ff'])::after { + .wrapper__44b0c[aria-label*="Streaming"]::after { background: var(--streaming-2); }