mirror of https://github.com/zulip/zulip.git
css: Fix the color of alert word in dark theme.
This was incorrectly not declared as a theme-dependant color. Fixes #28407.
This commit is contained in:
parent
bd38e6cb69
commit
e3744627ac
|
@ -211,7 +211,7 @@
|
|||
}
|
||||
|
||||
.alert-word {
|
||||
background-color: hsl(18deg 100% 84%);
|
||||
background-color: var(--color-background-alert-word);
|
||||
}
|
||||
|
||||
/* Timestamps */
|
||||
|
|
|
@ -235,6 +235,7 @@ body {
|
|||
--color-outline-tab-picker-tab-option: hsl(0deg 0% 0% / 30%);
|
||||
--color-background-tab-picker-tab-option-hover: hsl(0deg 0% 100% / 60%);
|
||||
--color-background-popover: hsl(0deg 0% 100%);
|
||||
--color-background-alert-word: hsl(18deg 100% 84%);
|
||||
|
||||
/* Compose box colors */
|
||||
--color-compose-send-button-icon-color: hsl(0deg 0% 100%);
|
||||
|
@ -521,6 +522,7 @@ body {
|
|||
--color-background-tab-picker-selected-tab: hsl(0deg 0% 100% / 7%);
|
||||
--color-outline-tab-picker-tab-option: hsl(0deg 0% 100% / 12%);
|
||||
--color-background-tab-picker-tab-option-hover: hsl(0deg 0% 100% / 5%);
|
||||
--color-background-alert-word: hsl(22deg 70% 35%);
|
||||
|
||||
/* Compose box colors */
|
||||
--color-compose-send-button-focus-shadow: hsl(0deg 0% 100% / 80%);
|
||||
|
|
Loading…
Reference in New Issue