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
1 changed files with 1 additions and 0 deletions
|
|
@ -51,6 +51,7 @@ const useStyles = makeStyles({
|
||||||
borderRadius: '4px',
|
borderRadius: '4px',
|
||||||
flexShrink: 0,
|
flexShrink: 0,
|
||||||
cursor: 'pointer',
|
cursor: 'pointer',
|
||||||
|
filter: 'none !important',
|
||||||
},
|
},
|
||||||
row: {
|
row: {
|
||||||
cursor: 'pointer',
|
cursor: 'pointer',
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue