2021-02-27 17:26:24 +02:00
|
|
|
@import "vars";
|
|
|
|
|
|
|
|
.disc-view {
|
|
|
|
& > box { // Horizontal box with image and disc labe
|
|
|
|
color: #ccc;
|
|
|
|
margin: 10px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
& .track-list {
|
|
|
|
& > row {
|
2021-05-07 16:45:57 +03:00
|
|
|
&:not(:active):not(:selected) { // Neither active nor selected, see gtk overrides
|
|
|
|
&:nth-child(odd):not(:hover) {
|
|
|
|
background-color: $midnight;
|
|
|
|
}
|
2021-02-27 17:26:24 +02:00
|
|
|
|
2021-05-07 16:45:57 +03:00
|
|
|
&:nth-child(even), &:hover {
|
|
|
|
background-color: $grey;
|
|
|
|
}
|
2021-02-27 17:26:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|