20000: Add test for process cancel button, rename Run Process to Run
[arvados-workbench2.git] / src / views / process-panel / process-details-card.tsx
index 4a7d195ec2e5b1ee7b21a5cccce6779c1128b00b..be046004760792d8cccc057c6684f23f892c8724 100644 (file)
@@ -63,10 +63,6 @@ const styles: StyleRulesCallback<CssRules> = (theme: ArvadosTheme) => ({
         }
     },
     runButton: {
-        backgroundColor: theme.customs.colors.green700,
-        '&:hover': {
-            backgroundColor: theme.customs.colors.green800,
-        },
         padding: "0px 5px 0 0",
         marginRight: "5px",
     },
@@ -123,7 +119,7 @@ export const ProcessDetailsCard = withStyles(styles)(
                                 className={classes.runButton}
                                 onClick={() => runAction && runAction(process.containerRequest.uuid)}>
                                 <StartIcon />
-                                Run Process
+                                Run
                             </Button>}
                         {process.container &&
                             (process.container.state === ContainerState.QUEUED ||