Skip to content
Snippets Groups Projects
Unverified Commit 1c27dc1e authored by Júlia Jaeger Foresti's avatar Júlia Jaeger Foresti Committed by GitHub
Browse files

chore: sidebar actions pressed state (#29877)

parent 174c28d4
No related branches found
No related tags found
No related merge requests found
......@@ -14,7 +14,14 @@ const Directory = (props: DirectoryProps) => {
router.navigate('/directory');
});
return <Sidebar.TopBar.Action {...props} icon='notebook-hashtag' onClick={handleDirectory} />;
return (
<Sidebar.TopBar.Action
{...props}
icon='notebook-hashtag'
onClick={handleDirectory}
pressed={router.getLocationPathname().includes('/directory')}
/>
);
};
export default Directory;
......@@ -13,7 +13,9 @@ const SidebarHeaderActionHome: VFC<Omit<HTMLAttributes<HTMLElement>, 'is'>> = (p
router.navigate('/home');
});
return showHome ? <Sidebar.TopBar.Action {...props} icon='home' onClick={handleHome} /> : null;
return showHome ? (
<Sidebar.TopBar.Action {...props} icon='home' onClick={handleHome} pressed={router.getLocationPathname().includes('/home')} />
) : null;
};
export default SidebarHeaderActionHome;
......@@ -53,7 +53,7 @@ export const palette = [
list: [
{ name: 'button-background-secondary-default', token: '', color: '#0D0F11' },
{ name: 'button-background-secondary-hover', token: '', color: '#3A404B' },
{ name: 'button-background-secondary-press', token: '', color: '#2C313A' },
{ name: 'button-background-secondary-press', token: '', color: '#4C5362' },
{ name: 'button-background-secondary-focus', token: '', color: '#0D0F11' },
{ name: 'button-background-secondary-keyfocus', token: '', color: '#2F343D' },
{ name: 'button-background-secondary-disabled', token: '', color: '#2F343D' },
......
......@@ -55,7 +55,7 @@ export const palette = [
list: [
{ name: 'button-background-secondary-default', token: '', color: '#0D0F11' },
{ name: 'button-background-secondary-hover', token: '', color: '#3A404B' },
{ name: 'button-background-secondary-press', token: '', color: '#2C313A' },
{ name: 'button-background-secondary-press', token: '', color: '#4C5362' },
{ name: 'button-background-secondary-focus', token: '', color: '#0D0F11' },
{ name: 'button-background-secondary-keyfocus', token: '', color: '#2F343D' },
{ name: 'button-background-secondary-disabled', token: '', color: '#2F343D' },
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment