mirror of
https://github.com/navidrome/navidrome.git
synced 2026-08-01 07:21:17 +00:00
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:
parent
664217f3f7
commit
c91721363b
@ -51,6 +51,7 @@ const useStyles = makeStyles({
|
||||
borderRadius: '4px',
|
||||
flexShrink: 0,
|
||||
cursor: 'pointer',
|
||||
filter: 'none !important',
|
||||
},
|
||||
row: {
|
||||
cursor: 'pointer',
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user