mirror of https://github.com/zulip/zulip.git
modals: Fix background color bug from background color changes.
This commit is contained in:
parent
b3196e5310
commit
47c107faa5
|
@ -861,7 +861,7 @@ div.overlay {
|
|||
.overlay-messages-container {
|
||||
position: relative;
|
||||
height: 95%;
|
||||
background-color: hsl(0deg 0% 100%);
|
||||
background-color: var(--color-background-modal);
|
||||
border-radius: 4px;
|
||||
padding: 0;
|
||||
width: 58%;
|
||||
|
|
|
@ -860,6 +860,7 @@
|
|||
.nav > li > a:hover,
|
||||
.subscriptions-container .subscriptions-header,
|
||||
.user-groups-container .user-groups-header,
|
||||
.overlay-messages-header,
|
||||
.grey-box,
|
||||
.white-box,
|
||||
.stream-email,
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
border-radius: 4px;
|
||||
overflow: hidden;
|
||||
|
||||
background-color: hsl(0deg 0% 100%);
|
||||
background-color: var(--color-background-modal);
|
||||
}
|
||||
|
||||
.overlay-tabs {
|
||||
|
|
Loading…
Reference in New Issue