[ARVADOS-WORKBENCH2] updated: 1.2.0-684-g468c4ed
Git user
git at public.curoverse.com
Thu Oct 18 03:24:22 EDT 2018
Summary of changes:
src/views/process-panel/process-subprocesses-card.tsx | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
via 468c4ed9a390a1b0f2dad222b43707779ab49f16 (commit)
from 98a57d51cba2d02e8337a04eaabee1f37ad84cac (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 468c4ed9a390a1b0f2dad222b43707779ab49f16
Author: Pawel Kowalczyk <pawel.kowalczyk at contractors.roche.com>
Date: Thu Oct 18 09:24:09 2018 +0200
refs #14350-more-options-on-subprocesses-misplaced
Arvados-DCO-1.1-Signed-off-by: Pawel Kowalczyk <pawel.kowalczyk at contractors.roche.com>
diff --git a/src/views/process-panel/process-subprocesses-card.tsx b/src/views/process-panel/process-subprocesses-card.tsx
index f052545..be4ad90 100644
--- a/src/views/process-panel/process-subprocesses-card.tsx
+++ b/src/views/process-panel/process-subprocesses-card.tsx
@@ -14,7 +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';
+export type CssRules = 'label' | 'value' | 'title' | 'content' | 'action' | 'options' | 'status' | 'rightSideHeader' | 'titleHeader' | 'header' | 'moreOptions';
const styles: StyleRulesCallback<CssRules> = (theme: ArvadosTheme) => ({
label: {
@@ -56,6 +56,9 @@ const styles: StyleRulesCallback<CssRules> = (theme: ArvadosTheme) => ({
paddingTop: 0,
paddingBottom: 0,
},
+ moreOptions: {
+ position: 'absolute'
+ }
});
export interface SubprocessItemProps {
@@ -88,7 +91,7 @@ export const ProcessSubprocessesCard = withStyles(styles, { withTheme: true })(
className={classes.options}
aria-label="More options"
onClick={onContextMenu}>
- <MoreOptionsIcon />
+ <MoreOptionsIcon className={classes.moreOptions}/>
</IconButton>
</Tooltip>
</div>
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list