From c91721363b7de714ce7ac13b4331acacebade7ff Mon Sep 17 00:00:00 2001 From: Deluan Date: Mon, 6 Apr 2026 08:36:28 -0400 Subject: [PATCH] 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 --- ui/src/common/SongDatagrid.jsx | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/src/common/SongDatagrid.jsx b/ui/src/common/SongDatagrid.jsx index d2c98bbe7..5d2ae3ed1 100644 --- a/ui/src/common/SongDatagrid.jsx +++ b/ui/src/common/SongDatagrid.jsx @@ -51,6 +51,7 @@ const useStyles = makeStyles({ borderRadius: '4px', flexShrink: 0, cursor: 'pointer', + filter: 'none !important', }, row: { cursor: 'pointer',