From eccbf007ab9b40f9a6a8af45f67a071ee33b39f2 Mon Sep 17 00:00:00 2001 From: Jade Herd Date: Mon, 30 Oct 2023 12:48:21 -0400 Subject: [PATCH] fix: various css embedded svgs and danger menu carets (#246) --- src/components/_chat.scss | 20 ++++++++++++++++++++ src/components/_popouts.scss | 4 ++++ 2 files changed, 24 insertions(+) diff --git a/src/components/_chat.scss b/src/components/_chat.scss index 157f110..1e1661e 100644 --- a/src/components/_chat.scss +++ b/src/components/_chat.scss @@ -642,3 +642,23 @@ div[class^="chat"] div[class^="homeContainer"] { aside[class^="membersWrap"] { height: 100%; } + +// system message icons +div[class^="message"][class*="isSystemMessage"] div[class^="icon"] { + // User Joined icon + &[style*="/assets/7378a83d74ce97d83380.svg"], + // Answered call icon + &[style*="/assets/9f3b9c1b6e5f77294951.svg"] { + @include recolor($green); + } + + // Missed call icon + &[style*="/assets/a1d461025204711133ec.svg"] { + @include recolor($subtext0); + } + + // User left icon + &[style*="/assets/192510ade1abc3149b46.svg"] { + @include recolor($red); + } +} diff --git a/src/components/_popouts.scss b/src/components/_popouts.scss index f5c4458..0d20fe2 100644 --- a/src/components/_popouts.scss +++ b/src/components/_popouts.scss @@ -31,6 +31,10 @@ div[class^="layerContainer"] [role="menu"] { color: $text; } + &:hover [class*="caret"] { + color: $crust; + } + // make active items have dark text &:active:not([class*="hideInteraction_"]) { color: var(--background-floating);