X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/ccd25ad858c7961eaa797f01bdfed94f6c6eed29..ee788af733dd0dd4d4df793fccf7019094f579a2:/src/views-components/main-app-bar/help-menu.tsx diff --git a/src/views-components/main-app-bar/help-menu.tsx b/src/views-components/main-app-bar/help-menu.tsx index 00fa08cce7..de3ed3b8e2 100644 --- a/src/views-components/main-app-bar/help-menu.tsx +++ b/src/views-components/main-app-bar/help-menu.tsx @@ -5,7 +5,7 @@ import * as React from "react"; import { MenuItem, Typography } from "@material-ui/core"; import { DropdownMenu } from "~/components/dropdown-menu/dropdown-menu"; -import { ImportContacts } from "~/components/icon/icon"; +import { ImportContactsIcon, HelpIcon } from "~/components/icon/icon"; import { ArvadosTheme } from '~/common/custom-theme'; import { StyleRulesCallback, WithStyles, withStyles } from '@material-ui/core/styles'; @@ -14,20 +14,23 @@ type CssRules = 'link' | 'icon' | 'title' | 'linkTitle'; const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ link: { textDecoration: 'none', - color: 'inherit' + color: 'inherit', + width: '100%', + display: 'flex' }, icon: { width: '16px', height: '16px' }, title: { - marginLeft: theme.spacing.unit * 2, paddingBottom: theme.spacing.unit * 0.5, + paddingLeft: theme.spacing.unit * 2, + paddingTop: theme.spacing.unit * 0.5, outline: 'none', }, linkTitle: { marginLeft: theme.spacing.unit - } + }, }); const links = [ @@ -55,15 +58,18 @@ export const HelpMenu = withStyles(styles)( icon={} id="help-menu" title="Help"> - Help +
  • + Help +
  • { links.map(link => - - - - {link.title} - - ) + + + + {link.title} + + + ) } );