desktop redo

This commit is contained in:
2025-11-05 12:29:30 +01:00
parent 928753add8
commit 934fb6b689
7 changed files with 795 additions and 360 deletions
+16 -11
View File
@@ -755,6 +755,22 @@ export const createDocumentsTableHeaderActions = ({
return (
<>
{isDeskView && typeof onShowDeskHelp === 'function' ? (
<>
<button
type="button"
className="icon-button"
onClick={onShowDeskHelp}
aria-label="Show desk view tips"
title="Show desk view tips"
>
<InfoIcon />
</button>
<span className="main-content__actions-divider" aria-hidden="true">
<MinusVerticalIcon />
</span>
</>
) : null}
<div className="view-toggle" role="group" aria-label="Change view">
<button
type="button"
@@ -796,17 +812,6 @@ export const createDocumentsTableHeaderActions = ({
>
<RefreshIcon />
</button>
{isDeskView && typeof onShowDeskHelp === 'function' ? (
<button
type="button"
className="icon-button"
onClick={onShowDeskHelp}
aria-label="Show desk view tips"
title="Show desk view tips"
>
<InfoIcon />
</button>
) : null}
</>
);
};