mirror of https://github.com/zulip/zulip.git
user_circles: Use background color instead of transparency.
This sets us up to layer the status bubbles over avatars.
This commit is contained in:
parent
77064a1726
commit
c39ae45d95
|
@ -15,13 +15,13 @@
|
||||||
border-color: var(--color-user-circle-idle);
|
border-color: var(--color-user-circle-idle);
|
||||||
background: linear-gradient(
|
background: linear-gradient(
|
||||||
to bottom,
|
to bottom,
|
||||||
hsl(0deg 0% 100% / 0%) 50%,
|
var(--color-background) 50%,
|
||||||
var(--color-user-circle-idle) 50%
|
var(--color-user-circle-idle) 50%
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
.user_circle_empty {
|
.user_circle_empty {
|
||||||
background-color: transparent;
|
background-color: var(--color-background);
|
||||||
border-color: hsl(0deg 0% 50%);
|
border-color: hsl(0deg 0% 50%);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue