update icon fill colors

This commit is contained in:
Abhinav 2022-06-28 16:18:51 +05:30
parent 9f213b17a4
commit 50b0b2ffa8
3 changed files with 12 additions and 3 deletions

View file

@ -13,7 +13,12 @@ export default function CollectionSort(props: CollectionSortProps) {
return ( return (
<OverflowMenu <OverflowMenu
ariaControls="collection-sort" ariaControls="collection-sort"
triggerButtonIcon={<SortIcon />}> triggerButtonIcon={<SortIcon />}
triggerButtonProps={{
sx: {
background: (theme) => theme.palette.fill.dark,
},
}}>
<CollectionSortOptions {...props} /> <CollectionSortOptions {...props} />
</OverflowMenu> </OverflowMenu>
); );

View file

@ -29,7 +29,11 @@ export default function AllCollectionsHeader({
activeSortBy={collectionSortBy} activeSortBy={collectionSortBy}
setCollectionSortBy={setCollectionSortBy} setCollectionSortBy={setCollectionSortBy}
/> />
<IconButton onClick={onClose}> <IconButton
onClick={onClose}
sx={{
background: (theme) => theme.palette.fill.dark,
}}>
<Close /> <Close />
</IconButton> </IconButton>
</Stack> </Stack>

View file

@ -209,7 +209,7 @@ const CollectionOptions = (props: CollectionOptionsProps) => {
triggerButtonIcon={<MoreVertIcon />} triggerButtonIcon={<MoreVertIcon />}
triggerButtonProps={{ triggerButtonProps={{
sx: { sx: {
background: (theme) => theme.palette.background.paper, background: (theme) => theme.palette.fill.dark,
}, },
}}> }}>
{activeCollection?.type === CollectionType.album && ( {activeCollection?.type === CollectionType.album && (