Inherit color for missed icon buttons

This commit is contained in:
schroda
2025-01-26 03:26:24 +01:00
parent b7fc1ae6ff
commit 5d52fc4455
2 changed files with 7 additions and 2 deletions

View File

@@ -190,6 +190,7 @@ export const ChapterList = ({
<IconButton <IconButton
disabled={areAllChaptersRead} disabled={areAllChaptersRead}
onClick={() => Chapters.markAsRead(Chapters.getNonRead(chapters), true, manga.id)} onClick={() => Chapters.markAsRead(Chapters.getNonRead(chapters), true, manga.id)}
color="inherit"
> >
<DoneAllIcon /> <DoneAllIcon />
</IconButton> </IconButton>
@@ -198,7 +199,11 @@ export const ChapterList = ({
{(popupState) => ( {(popupState) => (
<> <>
<Tooltip title={t('chapter.action.download.add.label.action')}> <Tooltip title={t('chapter.action.download.add.label.action')}>
<IconButton disabled={areAllChaptersDownloaded} {...bindTrigger(popupState)}> <IconButton
disabled={areAllChaptersDownloaded}
{...bindTrigger(popupState)}
color="inherit"
>
<DownloadIcon /> <DownloadIcon />
</IconButton> </IconButton>
</Tooltip> </Tooltip>

View File

@@ -29,7 +29,7 @@ export const ChaptersToolbarMenu = ({ options, optionsDispatch }: IProps) => {
return ( return (
<> <>
<Tooltip title={t('settings.title')}> <Tooltip title={t('settings.title')}>
<IconButton onClick={() => setOpen(true)}> <IconButton onClick={() => setOpen(true)} color="inherit">
<FilterList color={isFiltered ? 'warning' : undefined} /> <FilterList color={isFiltered ? 'warning' : undefined} />
</IconButton> </IconButton>
</Tooltip> </Tooltip>