working on multi select for list item

This commit is contained in:
booploops 2021-12-16 00:15:43 -08:00
parent 64a8529f65
commit fc015ea559
2 changed files with 34 additions and 6 deletions

View file

@ -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%);
}