X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/fd24fbe43ef6f898f31804aff16ea6911a014ff8..aa48015966dd61d462f43a1a336b1700c78624aa:/src/store/processes/process.ts diff --git a/src/store/processes/process.ts b/src/store/processes/process.ts index e62e5036..2a81669c 100644 --- a/src/store/processes/process.ts +++ b/src/store/processes/process.ts @@ -97,6 +97,10 @@ export const getProcessStatusStyles = (status: string, theme: ArvadosTheme): Rea case ProcessStatus.FAILED: color = theme.customs.colors.red900; break; + case ProcessStatus.QUEUED: + color = theme.customs.colors.grey600; + running = true; + break; default: color = theme.customs.colors.grey600; break; @@ -109,7 +113,7 @@ export const getProcessStatusStyles = (status: string, theme: ArvadosTheme): Rea // Set text color to status color when running, else use white text for solid button color: running ? color : theme.palette.common.white, // Set border color when running, else omit the style entirely - ...(running ? {border: `1px solid ${color}`} : {}), + ...(running ? {border: `2px solid ${color}`} : {}), }; };