From c39ae45d954a982cbc7fa1a216a048877d18c419 Mon Sep 17 00:00:00 2001 From: evykassirer Date: Thu, 24 Oct 2024 14:30:13 -0700 Subject: [PATCH] user_circles: Use background color instead of transparency. This sets us up to layer the status bubbles over avatars. --- web/styles/user_circles.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/styles/user_circles.css b/web/styles/user_circles.css index aaa20d9590..74f81fb4ab 100644 --- a/web/styles/user_circles.css +++ b/web/styles/user_circles.css @@ -15,13 +15,13 @@ border-color: var(--color-user-circle-idle); background: linear-gradient( to bottom, - hsl(0deg 0% 100% / 0%) 50%, + var(--color-background) 50%, var(--color-user-circle-idle) 50% ); } .user_circle_empty { - background-color: transparent; + background-color: var(--color-background); border-color: hsl(0deg 0% 50%); }