Merge branch '19715-preserve-url-autologout' into main. Closes #19715
[arvados-workbench2.git] / src / store / processes / process.ts
index e62e503600b0838bf9dee8a4e88928281a564677..2a81669cc7ad55772b9695c4e20d77cfca130412 100644 (file)
@@ -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}`} : {}),
     };
 };