mirror of
https://github.com/rustmailer/bichon.git
synced 2026-08-03 07:48:34 +02:00
fix: ensure unselected checkboxes are visible in dark mode #70
This commit is contained in:
@@ -251,7 +251,12 @@ export function SyncFoldersDialog({ currentRow, open, onOpenChange }: Props) {
|
|||||||
<TreeItemIconContainer {...getIconContainerProps()}>
|
<TreeItemIconContainer {...getIconContainerProps()}>
|
||||||
<TreeItemIcon status={status} />
|
<TreeItemIcon status={status} />
|
||||||
</TreeItemIconContainer>
|
</TreeItemIconContainer>
|
||||||
<TreeItemCheckbox {...getCheckboxProps()} />
|
<TreeItemCheckbox {...getCheckboxProps()} sx={{
|
||||||
|
color: 'hsl(var(--muted-foreground) / 0.4)',
|
||||||
|
'&.Mui-checked': {
|
||||||
|
color: 'hsl(var(--primary))',
|
||||||
|
},
|
||||||
|
}} />
|
||||||
<CustomLabel
|
<CustomLabel
|
||||||
{...getLabelProps({
|
{...getLabelProps({
|
||||||
exists: item.exists,
|
exists: item.exists,
|
||||||
|
|||||||
Reference in New Issue
Block a user