Inherit color for missed icon buttons
This commit is contained in:
@@ -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>
|
||||||
|
|||||||
@@ -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>
|
||||||
|
|||||||
Reference in New Issue
Block a user