2024-11-16 08:34:32 +00:00
|
|
|
toolbarview#main {
|
2024-11-13 21:28:49 +00:00
|
|
|
/* from amberol */
|
2024-11-16 09:15:45 +00:00
|
|
|
background:
|
|
|
|
linear-gradient(
|
|
|
|
127deg,
|
|
|
|
color-mix(in srgb, var(--background-color-0) 55%, transparent),
|
|
|
|
color-mix(in srgb, var(--background-color-0) 0%, transparent) 70.71%),
|
|
|
|
linear-gradient(
|
|
|
|
217deg,
|
|
|
|
color-mix(in srgb, var(--background-color-1) 55%, transparent),
|
|
|
|
color-mix(in srgb, var(--background-color-1) 0%, transparent) 70.71%),
|
|
|
|
linear-gradient(
|
|
|
|
336deg,
|
|
|
|
color-mix(in srgb, var(--background-color-2) 55%, transparent),
|
|
|
|
color-mix(in srgb, var(--background-color-2) 0%, transparent) 70.71%);
|
2024-11-13 21:28:49 +00:00
|
|
|
transition-property: background;
|
|
|
|
transition-duration: 250ms;
|
|
|
|
transition-timing-function: ease;
|
|
|
|
}
|
|
|
|
|
2024-10-12 18:41:03 +00:00
|
|
|
#seek-scale slider {
|
|
|
|
margin: 0px;
|
|
|
|
opacity: 0%;
|
|
|
|
min-width: 10px;
|
|
|
|
min-height: 10px;
|
|
|
|
}
|
2024-10-12 18:44:10 +00:00
|
|
|
|
2024-11-16 09:04:21 +00:00
|
|
|
#seek-scale trough highlight {
|
|
|
|
background-color: var(--background-color-0);
|
|
|
|
}
|
|
|
|
|
2024-10-12 18:44:10 +00:00
|
|
|
#volume-scale slider {
|
|
|
|
margin: -5px;
|
|
|
|
min-width: 15px;
|
|
|
|
min-height: 15px;
|
|
|
|
}
|
2024-10-19 12:04:52 +00:00
|
|
|
|
2024-11-13 17:10:45 +00:00
|
|
|
#play-queue listview {
|
|
|
|
background-color: rgba(0,0,0,0);
|
|
|
|
}
|
|
|
|
|
2024-11-05 15:25:17 +00:00
|
|
|
/* make drag and drop indicator take up entire perimeter */
|
|
|
|
#play-queue listview row {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2024-11-13 20:37:53 +00:00
|
|
|
#play-queue .playing {
|
|
|
|
background-color: color-mix(in srgb, var(--accent-bg-color) 40%, transparent);
|
|
|
|
}
|
|
|
|
|
2024-10-27 20:39:29 +00:00
|
|
|
#play-queue .playing label.title {
|
2024-10-19 12:04:52 +00:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
2024-11-07 20:54:01 +00:00
|
|
|
|
2024-11-13 17:10:45 +00:00
|
|
|
gridview.albums {
|
|
|
|
background-color: rgba(0,0,0,0);
|
|
|
|
}
|
|
|
|
|
2024-11-07 20:54:01 +00:00
|
|
|
gridview.albums child {
|
|
|
|
margin: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
gridview.albums child image {
|
|
|
|
margin: 10px;
|
|
|
|
}
|
2024-11-16 08:57:14 +00:00
|
|
|
|
|
|
|
#play-queue-page picture.playing-cover-art {
|
|
|
|
border-radius: 10px;
|
|
|
|
box-shadow: rgba(0, 0, 0, 0.6) 0px 0px 7px;
|
|
|
|
}
|