diff --git a/resources/cider-ui/style.less b/resources/cider-ui/style.less index ac19a218..62c49d79 100644 --- a/resources/cider-ui/style.less +++ b/resources/cider-ui/style.less @@ -1941,7 +1941,6 @@ input[type="range"].web-slider.display--small::-webkit-slider-thumb { font-size: 14px; justify-content: center; align-items: center; - cursor: pointer; border-bottom: 1px solid rgb(200 200 200 / 10%); .artwork { @@ -1955,6 +1954,26 @@ input[type="range"].web-slider.display--small::-webkit-slider-thumb { margin: 12px; border: 0px; outline: none; + position: relative; + overflow: hidden; + + .overlay-play { + background: rgba(0, 0, 0, 0.5); + opacity: 0; + appearance: none; + border: 0; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + padding: 0px; + z-index: 5; + cursor: pointer; + &:hover { + opacity: 1; + } + } } .artwork.round { @@ -2020,6 +2039,10 @@ input[type="range"].web-slider.display--small::-webkit-slider-thumb { } } + &.mediaitem-selected { + background: var(--selected); + } + &:hover { background: rgb(200 200 200 / 10%); } diff --git a/resources/cider-ui/views/components/mediaitem-list-item.ejs b/resources/cider-ui/views/components/mediaitem-list-item.ejs index 712aa585..d0ef3694 100644 --- a/resources/cider-ui/views/components/mediaitem-list-item.ejs +++ b/resources/cider-ui/views/components/mediaitem-list-item.ejs @@ -2,20 +2,24 @@