X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/ccd25ad858c7961eaa797f01bdfed94f6c6eed29..b3ffad71aa43fcb8db2d2c7a20ee0ef588e37e04:/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..26604228fc 100644 --- a/src/views-components/main-app-bar/help-menu.tsx +++ b/src/views-components/main-app-bar/help-menu.tsx @@ -3,9 +3,9 @@ // SPDX-License-Identifier: AGPL-3.0 import * as React from "react"; -import { MenuItem, Typography } from "@material-ui/core"; +import { MenuItem, Typography, ListSubheader } 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,16 @@ export const HelpMenu = withStyles(styles)( icon={} id="help-menu" title="Help"> - Help + Help { links.map(link => - - - + + + {link.title} - - ) + + + ) } );