fix(ui): prevent theme CSS filters from affecting disc cover art (fix #5312)

The Squiddies Glass theme applies a CSS color filter to all images inside
table cells (MuiTableCell '& img'), which was intended for small playback
indicator icons. This inadvertently also applied to disc cover art
thumbnails in multi-disc album views, turning them into solid color
blocks. Adding 'filter: none !important' to the discCoverArt style
ensures cover art images are always displayed correctly regardless of
the active theme.

Signed-off-by: Deluan <deluan@navidrome.org>
This commit is contained in:
Deluan 2026-04-06 08:36:28 -04:00
parent 664217f3f7
commit c91721363b

View File

@ -51,6 +51,7 @@ const useStyles = makeStyles({
borderRadius: '4px',
flexShrink: 0,
cursor: 'pointer',
filter: 'none !important',
},
row: {
cursor: 'pointer',