user_circles: Fix bug causing incorrect colors in typeahead.

c39ae45d95 was incorrect, and should
only have been applied to the circles in the buddy list avatars.
In other places in the app, the transparency was over other colors
of background.
This commit is contained in:
evykassirer 2024-11-06 12:58:40 -08:00 committed by Tim Abbott
parent 45d9c04e8e
commit 898af8a9af
2 changed files with 14 additions and 2 deletions

View File

@ -172,6 +172,18 @@ $user_status_emoji_width: 24px;
height: 0.4em;
top: 1.6em;
left: 1.6em;
&.user_circle_idle {
background: linear-gradient(
to bottom,
var(--color-background) 50%,
var(--color-user-circle-idle) 50%
);
}
&.user_circle_empty {
background-color: var(--color-background);
}
}
.empty-list-message {

View File

@ -19,13 +19,13 @@
border-color: var(--color-user-circle-idle);
background: linear-gradient(
to bottom,
var(--color-background) 50%,
hsl(0deg 0% 100% / 0%) 50%,
var(--color-user-circle-idle) 50%
);
}
.user_circle_empty {
background-color: var(--color-background);
background-color: transparent;
border-color: hsl(0deg 0% 50%);
}