41 lines
656 B
CSS
41 lines
656 B
CSS
#seek-scale slider {
|
|
margin: 0px;
|
|
opacity: 0%;
|
|
min-width: 10px;
|
|
min-height: 10px;
|
|
}
|
|
|
|
#volume-scale slider {
|
|
margin: -5px;
|
|
min-width: 15px;
|
|
min-height: 15px;
|
|
}
|
|
|
|
#play-queue listview {
|
|
background-color: rgba(0,0,0,0);
|
|
}
|
|
|
|
/* make drag and drop indicator take up entire perimeter */
|
|
#play-queue listview row {
|
|
padding: 0;
|
|
}
|
|
|
|
#play-queue .playing {
|
|
background-color: color-mix(in srgb, var(--accent-bg-color) 40%, transparent);
|
|
}
|
|
|
|
#play-queue .playing label.title {
|
|
font-weight: bold;
|
|
}
|
|
|
|
gridview.albums {
|
|
background-color: rgba(0,0,0,0);
|
|
}
|
|
|
|
gridview.albums child {
|
|
margin: 10px;
|
|
}
|
|
|
|
gridview.albums child image {
|
|
margin: 10px;
|
|
}
|