mirror of https://github.com/zulip/zulip.git
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.
This commit is contained in:
parent
d43c5e6071
commit
a2b36bbabb
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue