mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-11 05:35:25 +03:00
Fix action group icon colors
This commit is contained in:
parent
ff823b87c8
commit
26f4677cbb
@ -56,7 +56,7 @@ export default function ReviewActionGroup({
|
|||||||
onClearSelected();
|
onClearSelected();
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<FaCompactDisc />
|
<FaCompactDisc className="text-secondary-foreground" />
|
||||||
{isDesktop && <div className="text-primary">Export</div>}
|
{isDesktop && <div className="text-primary">Export</div>}
|
||||||
</Button>
|
</Button>
|
||||||
)}
|
)}
|
||||||
@ -65,15 +65,15 @@ export default function ReviewActionGroup({
|
|||||||
size="sm"
|
size="sm"
|
||||||
onClick={onMarkAsReviewed}
|
onClick={onMarkAsReviewed}
|
||||||
>
|
>
|
||||||
<FaCircleCheck />
|
<FaCircleCheck className="text-secondary-foreground" />
|
||||||
{isDesktop && <div className="text-primary">Mark as reviewed</div>}
|
{isDesktop && <div className="text-primary">Mark as reviewed</div>}
|
||||||
</Button>
|
</Button>
|
||||||
<Button
|
<Button
|
||||||
className="p-2 flex items-center gap-1"
|
className="p-2 flex items-center gap-2"
|
||||||
size="sm"
|
size="sm"
|
||||||
onClick={onDelete}
|
onClick={onDelete}
|
||||||
>
|
>
|
||||||
<HiTrash />
|
<HiTrash className="text-secondary-foreground" />
|
||||||
{isDesktop && <div className="text-primary">Delete</div>}
|
{isDesktop && <div className="text-primary">Delete</div>}
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user