[ARVADOS-WORKBENCH2] updated: 1.2.0-231-gaca52d4
Git user
git at public.curoverse.com
Mon Sep 3 05:37:02 EDT 2018
Summary of changes:
.../process-panel/process-information-card.tsx | 22 +++-------------------
.../process-panel/process-subprocesses-card.tsx | 18 +-----------------
2 files changed, 4 insertions(+), 36 deletions(-)
via aca52d4ea87faf5063db188998edfee1dea4e002 (commit)
from e181bd846a9a1982d29f8b86c44edd94baec58e4 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit aca52d4ea87faf5063db188998edfee1dea4e002
Author: Pawel Kowalczyk <pawel.kowalczyk at contractors.roche.com>
Date: Mon Sep 3 11:36:53 2018 +0200
small changes
Feature #13859
Arvados-DCO-1.1-Signed-off-by: Pawel Kowalczyk <pawel.kowalczyk at contractors.roche.com>
diff --git a/src/views/process-panel/process-information-card.tsx b/src/views/process-panel/process-information-card.tsx
index 1162a61..db0ee60 100644
--- a/src/views/process-panel/process-information-card.tsx
+++ b/src/views/process-panel/process-information-card.tsx
@@ -14,8 +14,7 @@ import { Process, getProcessStatusColor } from '~/store/processes/process';
import { getProcessStatus } from '~/store/processes/process';
-type CssRules = 'card' | 'iconHeader' | 'label' | 'value' | 'chip' | 'link' | 'content' | 'title' | 'avatar'
- | 'headerActive' | 'headerCompleted' | 'headerQueued' | 'headerFailed' | 'headerCanceled';
+type CssRules = 'card' | 'iconHeader' | 'label' | 'value' | 'chip' | 'link' | 'content' | 'title' | 'avatar';
const styles: StyleRulesCallback<CssRules> = (theme: ArvadosTheme) => ({
card: {
@@ -63,22 +62,7 @@ const styles: StyleRulesCallback<CssRules> = (theme: ArvadosTheme) => ({
title: {
overflow: 'hidden',
paddingTop: theme.spacing.unit * 0.5
- },
- headerActive: {
- backgroundColor: theme.customs.colors.blue500,
- },
- headerCompleted: {
- backgroundColor: theme.customs.colors.green700,
- },
- headerQueued: {
- backgroundColor: theme.customs.colors.grey500,
- },
- headerFailed: {
- backgroundColor: theme.customs.colors.red900,
- },
- headerCanceled: {
- backgroundColor: theme.customs.colors.red900,
- },
+ }
});
export interface ProcessInformationCardDataProps {
@@ -111,7 +95,7 @@ export const ProcessInformationCard = withStyles(styles, { withTheme: true })(
}
title={
<Tooltip title={process.containerRequest.name}>
- <Typography noWrap variant="title">
+ <Typography noWrap variant="title" color='inherit'>
{process.containerRequest.name}
</Typography>
</Tooltip>
diff --git a/src/views/process-panel/process-subprocesses-card.tsx b/src/views/process-panel/process-subprocesses-card.tsx
index 1bf2d4d..57c127a 100644
--- a/src/views/process-panel/process-subprocesses-card.tsx
+++ b/src/views/process-panel/process-subprocesses-card.tsx
@@ -14,8 +14,7 @@ import { Process, getProcessStatus, getProcessRuntime } from '~/store/processes/
import { formatTime } from '~/common/formatters';
import { getProcessStatusColor } from '~/store/processes/process';
-export type CssRules = 'label' | 'value' | 'title' | 'content' | 'action' | 'options' | 'status' | 'rightSideHeader' | 'titleHeader'
- | 'header' | 'headerActive' | 'headerCompleted' | 'headerQueued' | 'headerFailed' | 'headerCanceled';
+export type CssRules = 'label' | 'value' | 'title' | 'content' | 'action' | 'options' | 'status' | 'rightSideHeader' | 'titleHeader'| 'header';
const styles: StyleRulesCallback<CssRules> = (theme: ArvadosTheme) => ({
label: {
@@ -57,21 +56,6 @@ const styles: StyleRulesCallback<CssRules> = (theme: ArvadosTheme) => ({
paddingTop: 0,
paddingBottom: 0,
},
- headerActive: {
- backgroundColor: theme.customs.colors.blue500,
- },
- headerCompleted: {
- backgroundColor: theme.customs.colors.green700,
- },
- headerQueued: {
- backgroundColor: theme.customs.colors.grey500,
- },
- headerFailed: {
- backgroundColor: theme.customs.colors.red900,
- },
- headerCanceled: {
- backgroundColor: theme.customs.colors.red900,
- },
});
export enum SubprocessesStatus {
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list