From 06221b90d2b632d2a77953611a4f61d1097cf13e Mon Sep 17 00:00:00 2001 From: Plastikmensch Date: Wed, 13 Sep 2023 08:44:40 +0200 Subject: [PATCH] Fix wrong gradient color on collapsed private mentions (#2402) Upstream changed the background color of private mentions, but the gradient used for collapsed toots still used the old color. Signed-off-by: Plastikmensch --- app/javascript/flavours/glitch/styles/components/status.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/javascript/flavours/glitch/styles/components/status.scss b/app/javascript/flavours/glitch/styles/components/status.scss index 7542002622..e25636780e 100644 --- a/app/javascript/flavours/glitch/styles/components/status.scss +++ b/app/javascript/flavours/glitch/styles/components/status.scss @@ -362,8 +362,8 @@ &.status-direct > .status__content::after { background: linear-gradient( - rgba(lighten($ui-base-color, 8%), 0), - rgba(lighten($ui-base-color, 8%), 1) + rgba(mix($ui-base-color, $ui-highlight-color, 95%), 0), + rgba(mix($ui-base-color, $ui-highlight-color, 95%), 1) ); }