fix avatar statuses for visual refresh

This commit is contained in:
Cynthia Foxwell 2025-03-24 23:45:16 -06:00
parent 6d6b51ee88
commit d1f2396c76
Signed by: Cynosphere
SSH key fingerprint: SHA256:H3SM8ufP/uxqLwKSH7xY89TDnbR9uOHzjLoBr0tlajk
2 changed files with 12 additions and 5 deletions

View file

@ -111,7 +111,9 @@ div[class^="listItem_"] [class^="wrapper_"] > svg > foreignObject,
left: 0;
border-radius: 0% !important;
box-shadow: inset 0 0 0 1px var(--status-color), inset 0 0 0 2px #{colors.$tertiary},
box-shadow:
inset 0 0 0 1px var(--status-color),
inset 0 0 0 2px #{colors.$tertiary},
inset 0 0 2px 3px #{colors.$primary};
}
& > svg {
@ -133,16 +135,20 @@ div[class^="listItem_"] [class^="wrapper_"] > svg > foreignObject,
}
}
&:has(rect[fill="#23a55a"]) {
&:has(rect[fill="#23a55a"]),
&:has(rect[fill="#43a25a"]) {
--status-color: #{colors.$c2};
}
&:has(rect[fill="#f0b232"]) {
&:has(rect[fill="#f0b232"]),
&:has(rect[fill="#ca9654"]) {
--status-color: #{colors.$c3};
}
&:has(rect[fill="#f23f43"]) {
&:has(rect[fill="#f23f43"]),
&:has(rect[fill="#d83a42"]) {
--status-color: #{colors.$c5};
}
&:has(rect[fill="#593695"]) {
&:has(rect[fill="#593695"]),
&:has(rect[fill="#9147ff"]) {
--status-color: #{colors.$c4};
}
}

View file

@ -1015,6 +1015,7 @@ svg[fill="#FF73FA"] {
--channels-default: #{colors.$c7};
--text-brand: #{colors.$accent};
--bg-brand: #{colors.$accent};
--bg-base-primary: #{colors.$primary} !important;
--bg-base-secondary: #{colors.$secondary} !important;
--bg-base-tertiary: #{colors.$tertiary} !important;