mirror of
https://github.com/zulip/zulip.git
synced 2026-06-24 21:08:25 +08:00
modal: Fix button colors in dark theme.
Use the dark purple color we use for `send` buttom on the `confirm` button. Fix color of `cancel` and `disabled` buttons in dark mode.
This commit is contained in:
parent
a23cc709e8
commit
8123ebbfc0
@ -27,6 +27,19 @@ body.dark-theme {
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
/************************* MODAL DARK THEME *******************/
|
||||
.dialog_cancel_button {
|
||||
background-color: hsl(211, 29%, 14%);
|
||||
color: hsl(0, 0%, 100%);
|
||||
border: 1px solid hsla(0, 0%, 0%, 0.6);
|
||||
}
|
||||
|
||||
.modal__btn:disabled {
|
||||
opacity: 1;
|
||||
background-color: hsla(0, 0%, 83%, 0.5);
|
||||
}
|
||||
|
||||
|
||||
.enter_sends kbd {
|
||||
background-color: hsl(211, 29%, 14%);
|
||||
border-color: hsl(211, 29%, 14%);
|
||||
|
||||
@ -140,7 +140,7 @@
|
||||
|
||||
.dialog_submit_button {
|
||||
margin-left: 12px;
|
||||
background-color: hsl(214, 100%, 31%);
|
||||
background-color: hsl(240, 96%, 68%);
|
||||
color: hsl(0, 0%, 100%) !important;
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user