re-enable arrows in sidebar categories.

This commit is contained in:
Olivier Gagnon 2021-09-19 14:45:14 -04:00
parent 505040137f
commit dade51a26b

@ -344,7 +344,7 @@ export function SidebarRoot(props: IProps): React.ReactElement {
<ComputerIcon color="primary" /> <ComputerIcon color="primary" />
</ListItemIcon> </ListItemIcon>
<ListItemText primary={<Typography>Hacking</Typography>} /> <ListItemText primary={<Typography>Hacking</Typography>} />
{hackingOpen ? <ExpandLessIcon /> : <ExpandMoreIcon />} {hackingOpen ? <ExpandLessIcon color="primary" /> : <ExpandMoreIcon color="primary" />}
</ListItem> </ListItem>
<Collapse in={hackingOpen} timeout="auto" unmountOnExit> <Collapse in={hackingOpen} timeout="auto" unmountOnExit>
<List> <List>
@ -438,7 +438,7 @@ export function SidebarRoot(props: IProps): React.ReactElement {
<AccountBoxIcon color="primary" /> <AccountBoxIcon color="primary" />
</ListItemIcon> </ListItemIcon>
<ListItemText primary={<Typography>Character</Typography>} /> <ListItemText primary={<Typography>Character</Typography>} />
{characterOpen ? <ExpandLessIcon /> : <ExpandMoreIcon />} {characterOpen ? <ExpandLessIcon color="primary" /> : <ExpandMoreIcon color="primary" />}
</ListItem> </ListItem>
<Collapse in={characterOpen} timeout="auto" unmountOnExit> <Collapse in={characterOpen} timeout="auto" unmountOnExit>
<ListItem <ListItem
@ -548,7 +548,7 @@ export function SidebarRoot(props: IProps): React.ReactElement {
<PublicIcon color="primary" /> <PublicIcon color="primary" />
</ListItemIcon> </ListItemIcon>
<ListItemText primary={<Typography>World</Typography>} /> <ListItemText primary={<Typography>World</Typography>} />
{worldOpen ? <ExpandLessIcon /> : <ExpandMoreIcon />} {worldOpen ? <ExpandLessIcon color="primary" /> : <ExpandMoreIcon color="primary" />}
</ListItem> </ListItem>
<Collapse in={worldOpen} timeout="auto" unmountOnExit> <Collapse in={worldOpen} timeout="auto" unmountOnExit>
<ListItem <ListItem
@ -682,7 +682,7 @@ export function SidebarRoot(props: IProps): React.ReactElement {
<LiveHelpIcon color="primary" /> <LiveHelpIcon color="primary" />
</ListItemIcon> </ListItemIcon>
<ListItemText primary={<Typography>Help</Typography>} /> <ListItemText primary={<Typography>Help</Typography>} />
{helpOpen ? <ExpandLessIcon /> : <ExpandMoreIcon />} {helpOpen ? <ExpandLessIcon color="primary" /> : <ExpandMoreIcon color="primary" />}
</ListItem> </ListItem>
<Collapse in={helpOpen} timeout="auto" unmountOnExit> <Collapse in={helpOpen} timeout="auto" unmountOnExit>
<ListItem <ListItem