mirror of
https://github.com/Radarr/Radarr
synced 2025-12-06 08:28:50 +01:00
New: Changing icon during import to blue
This commit is contained in:
parent
e841c9b764
commit
57f602eb02
3 changed files with 6 additions and 1 deletions
|
|
@ -90,7 +90,7 @@ function QueueStatus(props: QueueStatusProps) {
|
|||
|
||||
if (trackedDownloadState === 'importing') {
|
||||
title += ` - ${translate('Importing')}`;
|
||||
iconKind = kinds.PURPLE;
|
||||
iconKind = kinds.PRIMARY;
|
||||
}
|
||||
|
||||
if (trackedDownloadState === 'failedPending') {
|
||||
|
|
|
|||
|
|
@ -26,6 +26,10 @@
|
|||
color: var(--warningColor);
|
||||
}
|
||||
|
||||
.primary {
|
||||
color: var(--primaryColor);
|
||||
}
|
||||
|
||||
.purple {
|
||||
color: var(--purple);
|
||||
}
|
||||
|
|
|
|||
1
frontend/src/Components/Icon.css.d.ts
vendored
1
frontend/src/Components/Icon.css.d.ts
vendored
|
|
@ -6,6 +6,7 @@ interface CssExports {
|
|||
'disabled': string;
|
||||
'info': string;
|
||||
'pink': string;
|
||||
'primary': string;
|
||||
'purple': string;
|
||||
'success': string;
|
||||
'warning': string;
|
||||
|
|
|
|||
Loading…
Reference in a new issue