X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/f0d519637c997df11d5b1a1b32b3d9e4a2872325..97de0bf90660e72220f350483981e35d53a5998f:/src/components/details-attribute/details-attribute.tsx diff --git a/src/components/details-attribute/details-attribute.tsx b/src/components/details-attribute/details-attribute.tsx index 3888b04b..78b4341d 100644 --- a/src/components/details-attribute/details-attribute.tsx +++ b/src/components/details-attribute/details-attribute.tsx @@ -8,7 +8,7 @@ import { StyleRulesCallback, WithStyles, withStyles } from '@material-ui/core/st import { ArvadosTheme } from '~/common/custom-theme'; import * as classnames from "classnames"; -type CssRules = 'attribute' | 'label' | 'value' | 'link'; +type CssRules = 'attribute' | 'label' | 'value' | 'lowercaseValue' | 'link'; const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ attribute: { @@ -17,28 +17,35 @@ const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ marginBottom: theme.spacing.unit }, label: { + boxSizing: 'border-box', color: theme.palette.grey["500"], width: '40%' }, value: { + boxSizing: 'border-box', width: '60%', display: 'flex', alignItems: 'flex-start', textTransform: 'capitalize' }, + lowercaseValue: { + textTransform: 'lowercase' + }, link: { width: '60%', color: theme.palette.primary.main, textDecoration: 'none', - overflowWrap: 'break-word' + overflowWrap: 'break-word', + cursor: 'pointer' } }); interface DetailsAttributeDataProps { label: string; classLabel?: string; - value?: string | number; + value?: React.ReactNode; classValue?: string; + lowercaseValue?: boolean; link?: string; children?: React.ReactNode; } @@ -46,12 +53,12 @@ interface DetailsAttributeDataProps { type DetailsAttributeProps = DetailsAttributeDataProps & WithStyles; export const DetailsAttribute = withStyles(styles)( - ({ label, link, value, children, classes, classLabel, classValue }: DetailsAttributeProps) => + ({ label, link, value, children, classes, classLabel, classValue, lowercaseValue }: DetailsAttributeProps) => {label} { link ? {value} - : + : {value} {children} }