[ARVADOS-WORKBENCH2] created: 1.2.0-419-g4f3d190
Git user
git at public.curoverse.com
Wed Sep 19 06:38:50 EDT 2018
at 4f3d1900faecf35980a7ffaed154d857b1c6f6da (commit)
commit 4f3d1900faecf35980a7ffaed154d857b1c6f6da
Author: Pawel Kowalczyk <pawel.kowalczyk at contractors.roche.com>
Date: Wed Sep 19 12:38:29 2018 +0200
upload-data-button
Feature #14041
Arvados-DCO-1.1-Signed-off-by: Pawel Kowalczyk <pawel.kowalczyk at contractors.roche.com>
diff --git a/src/components/collection-panel-files/collection-panel-files.tsx b/src/components/collection-panel-files/collection-panel-files.tsx
index d08d36d..c3cb4ac 100644
--- a/src/components/collection-panel-files/collection-panel-files.tsx
+++ b/src/components/collection-panel-files/collection-panel-files.tsx
@@ -19,7 +19,7 @@ export interface CollectionPanelFilesProps {
onCollapseToggle: (id: string, status: TreeItemStatus) => void;
}
-type CssRules = 'root' | 'cardSubheader' | 'nameHeader' | 'fileSizeHeader' | 'uploadIcon';
+type CssRules = 'root' | 'cardSubheader' | 'nameHeader' | 'fileSizeHeader' | 'uploadIcon' | 'button';
const styles: StyleRulesCallback<CssRules> = theme => ({
root: {
@@ -37,6 +37,10 @@ const styles: StyleRulesCallback<CssRules> = theme => ({
},
uploadIcon: {
transform: 'rotate(180deg)'
+ },
+ button: {
+ marginRight: -theme.spacing.unit,
+ marginTop: '0px'
}
});
@@ -46,12 +50,13 @@ export const CollectionPanelFiles =
<Card className={classes.root}>
<CardHeader
title="Files"
+ classes={{ action: classes.button }}
action={
<Button onClick={onUploadDataClick}
variant='raised'
color='primary'
size='small'>
- <DownloadIcon className={classes.uploadIcon}/>
+ <DownloadIcon className={classes.uploadIcon} />
Upload data
</Button>
} />
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list