From a2b36bbabb2cf8db42d16f51464f9fc0480d4bd0 Mon Sep 17 00:00:00 2001 From: Hardik Dharmani Date: Sat, 29 Apr 2023 02:33:37 +0530 Subject: [PATCH] user_card: Fix user_card background for dark theme for width < $md_min. Previously, in the dark theme, the `background-color: #18222f` of the `.popover` class took precedence over the `background-color: hsla(0,0%,0%,.7)` of the `.message-info-popover` and `.user-info-popover` classes. This commit fixes this issue by adding !important to the background-color property of `.message-info-popover, .user-info-popover` classes. --- web/styles/popovers.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/styles/popovers.css b/web/styles/popovers.css index 7a5642ae17..c577c67b78 100644 --- a/web/styles/popovers.css +++ b/web/styles/popovers.css @@ -606,7 +606,7 @@ ul { width: 100%; height: 100%; - background-color: hsl(0deg 0% 0% / 70%); + background-color: hsl(0deg 0% 0% / 70%) !important; border-radius: 0; border: none;