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:
Prakhar Pratyush
2023-09-16 14:18:22 +05:30
committed by Tim Abbott
parent f778316b5a
commit 72b3a53864

View File

@@ -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 {