mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 04:53:36 +00:00
inline_topic_edit: Fix spinner not visible in the dark mode.
A spinner is shown when the request is in progress for inline topic edit. Earlier, the spinner was not visible in the dark theme. This commit makes it visible by setting a different fill color in the dark theme.
This commit is contained in:
committed by
Tim Abbott
parent
f778316b5a
commit
72b3a53864
@@ -247,6 +247,7 @@ body {
|
||||
--color-unread-marker: hsl(217deg 64% 59%);
|
||||
--color-background-modal: hsl(212deg 28% 18%);
|
||||
--color-unmuted-or-followed-topic-list-item: hsl(236deg 33% 90%);
|
||||
--color-recipient-bar-controls-spinner: hsl(0deg 0% 100%);
|
||||
|
||||
/* Text colors */
|
||||
--color-text-default: hsl(0deg 0% 100% / 75%);
|
||||
@@ -2484,6 +2485,10 @@ div.topic_edit_spinner {
|
||||
div.topic_edit_spinner .loading_indicator_spinner {
|
||||
width: 14px;
|
||||
height: 14px;
|
||||
|
||||
& path {
|
||||
fill: var(--color-recipient-bar-controls-spinner);
|
||||
}
|
||||
}
|
||||
|
||||
.message_edit_spinner {
|
||||
|
||||
Reference in New Issue
Block a user