work on player, fix seek issue + show cover in the button

This commit is contained in:
bkfox
2016-12-09 20:10:32 +01:00
parent 7752e37b74
commit 8d3400a0f6
3 changed files with 19 additions and 3 deletions

View File

@ -364,10 +364,23 @@ ul.list {
.player .item:not([selected]) .button > img.play {
display: block;
}
.player .item:not([selected]) .button > img:not(.play) {
.player .item:not([selected]) .button > img:not(.play):not(.cover) {
display: none;
}
.player .item .button > img.cover {
display: block;
position: absolute;
transition: opacity 0.2s;
}
.player .item:hover .button > img.cover {
/* display: none; */
opacity: 0.2;
}
main .player .actions .action:not(.add),
.section_player .actions .action.add,