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

View File

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