Fixes play icon color in "Light" theme (#972)

* fix(ui/src/album): White play button on hover for all themes - #960

* fix(PlayButton) : White play button for light theme - #960

* fix(PlayButton) : White play button for light theme - #960

* bug(AlbumGridView.js) - Album play button defaults to white, can be overridden - #960

Signed-off-by: Shishir <shishir.srik@gmail.com>

* bug(AlbumGridView.js) - Album play button defaults to white, can be overridden - #960

* Reverted package.json and package-lock.json - #960

Signed-off-by: Shishir <shishir.srik@gmail.com>

* Missing lint script added - #960

Signed-off-by: Shishir <shishir.srik@gmail.com>

* Removed color, added className and made record required in PlayButton.propTypes - #960
This commit is contained in:
Shishir A S
2021-04-06 19:32:44 +05:30
committed by GitHub
parent dbda8712f2
commit c57fa7a8fc
2 changed files with 5 additions and 15 deletions
+1 -2
View File
@@ -73,7 +73,7 @@ const useStyles = makeStyles(
textDecoration: 'none',
},
albumContainer: {},
albumPlayButton: {},
albumPlayButton: { color: 'white' },
}),
{ name: 'NDAlbumGridView' }
)
@@ -128,7 +128,6 @@ const AlbumGridTile = ({ showArtist, record, basePath }) => {
subtitle={
<PlayButton
className={classes.albumPlayButton}
color={'white'}
record={record}
size="small"
/>