Skip to content
Snippets Groups Projects
Commit 8b0ed2d7 authored by Camille Villa's avatar Camille Villa
Browse files

Make icons respond to light / dark theme; fixes #1822

parent 98dcb054
No related branches found
No related tags found
No related merge requests found
......@@ -28,11 +28,10 @@ class WindowSideBarButtons extends Component {
<>
<IconButton
aria-label="Open information companion window"
color="inherit"
onClick={() => (toggleWindowSideBarPanel('info'))}
>
<InfoIcon
color={this.sideBarPanelCurrentlySelected('info') ? 'action' : 'inherit'}
color={this.sideBarPanelCurrentlySelected('info') ? 'primary' : 'inherit'}
/>
</IconButton>
</>
......
......@@ -50,7 +50,7 @@ class WindowTopMenuButton extends Component {
return (
<>
<IconButton
color="primary"
color="inherit"
aria-label="Menu"
className={classes.ctrlBtn}
aria-haspopup="true"
......
......@@ -51,7 +51,7 @@ class WorkspaceMenuButton extends Component {
<>
<ListItem>
<IconButton
color="primary"
color="default"
id="menuBtn"
aria-label="Menu"
className={classes.ctrlBtn}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment