2021-02-27 17:26:24 +02:00
|
|
|
@import "vars";
|
|
|
|
|
2021-05-27 15:47:45 +03:00
|
|
|
.discs-list {
|
|
|
|
background-color: transparent;
|
|
|
|
border-color: transparent;
|
|
|
|
border-width: 0;
|
|
|
|
|
|
|
|
.disc-view {
|
|
|
|
& > box { // Horizontal box with image and disc label
|
|
|
|
color: $text-color-faded;
|
|
|
|
margin: 10px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
& .track-list {
|
|
|
|
& > row {
|
|
|
|
&:not(:active):not(:selected) { // Neither active nor selected, see gtk overrides
|
|
|
|
color: $text-color-bright;
|
|
|
|
|
|
|
|
&:nth-child(odd):not(:hover) {
|
|
|
|
background-color: $bg-primary;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:nth-child(even), &:hover {
|
|
|
|
background-color: $bg-secondary;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-02-27 17:26:24 +02:00
|
|
|
}
|
2021-05-27 15:47:45 +03:00
|
|
|
}
|