New: Changing icon during import to blue

Closes #7992
This commit is contained in:
Mark McDowall 2025-08-30 12:51:43 -07:00
parent 9ebe043bd9
commit a69d1ab5fe
No known key found for this signature in database
3 changed files with 6 additions and 1 deletions

View file

@ -90,7 +90,7 @@ function QueueStatus(props: QueueStatusProps) {
if (trackedDownloadState === 'importing') {
title += ` - ${translate('Importing')}`;
iconKind = kinds.PURPLE;
iconKind = kinds.PRIMARY;
}
if (trackedDownloadState === 'failedPending') {

View file

@ -26,6 +26,10 @@
color: var(--warningColor);
}
.primary {
color: var(--primaryColor);
}
.purple {
color: var(--purple);
}

View file

@ -6,6 +6,7 @@ interface CssExports {
'disabled': string;
'info': string;
'pink': string;
'primary': string;
'purple': string;
'success': string;
'warning': string;