From 205917f9d06a7fbdbd5baea7fdd43b4541723972 Mon Sep 17 00:00:00 2001 From: Karl Stolley Date: Tue, 11 Feb 2025 10:10:01 -0500 Subject: [PATCH] user_circles: Experiment with horizontal gradient on idle circles. --- web/styles/user_circles.css | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/web/styles/user_circles.css b/web/styles/user_circles.css index 8711d4d97a..6a01b2dbae 100644 --- a/web/styles/user_circles.css +++ b/web/styles/user_circles.css @@ -3,7 +3,13 @@ } .user-circle-idle { - color: var(--color-user-circle-idle); + background: linear-gradient( + to right, + var(--color-user-circle-idle) 25%, + transparent + ); + background-clip: text; + -webkit-text-fill-color: transparent; } .user-circle-offline {