X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/76b1c50413fee98f2ff8a3d2308252de6a37048c..f6f88d9ca9cdeeeebfadcfe999789bfb9f69e5c6:/src/views/process-panel/process-details-card.tsx?ds=sidebyside diff --git a/src/views/process-panel/process-details-card.tsx b/src/views/process-panel/process-details-card.tsx index 15728eb61f..37f01dd701 100644 --- a/src/views/process-panel/process-details-card.tsx +++ b/src/views/process-panel/process-details-card.tsx @@ -16,7 +16,7 @@ import { Button, } from '@material-ui/core'; import { ArvadosTheme } from 'common/custom-theme'; -import { CloseIcon, MoreOptionsIcon, ProcessIcon, StartIcon, StopIcon } from 'components/icon/icon'; +import { CloseIcon, MoreVerticalIcon, ProcessIcon, StartIcon, StopIcon } from 'components/icon/icon'; import { Process, isProcessRunnable, isProcessResumable, isProcessCancelable } from 'store/processes/process'; import { MPVPanelProps } from 'components/multi-panel-view/multi-panel-view'; import { ProcessDetailsAttributes } from './process-details-attributes'; @@ -59,10 +59,10 @@ const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ fontSize: '0.78rem', }, cancelButton: { - color: theme.customs.colors.red900, - borderColor: theme.customs.colors.red900, + color: theme.palette.common.white, + backgroundColor: theme.customs.colors.red900, '&:hover': { - borderColor: theme.customs.colors.red900, + backgroundColor: theme.customs.colors.red900, }, '& svg': { fontSize: '22px', @@ -126,7 +126,7 @@ export const ProcessDetailsCard = withStyles(styles)( {isProcessCancelable(process) &&