21 lines
382 B
SCSS
21 lines
382 B
SCSS
|
@import '../../vars';
|
||
|
|
||
|
.disc-view {
|
||
|
& > box { // Horizontal box with image and disc label
|
||
|
color: #ccc;
|
||
|
}
|
||
|
|
||
|
& .track-list {
|
||
|
& > row {
|
||
|
&:not(:active):not(:selected) { // Neither active nor selected, see gtk overrides
|
||
|
&:nth-child(odd):not(:hover) {
|
||
|
background-color: $midnight;
|
||
|
}
|
||
|
|
||
|
&:nth-child(even), &:hover {
|
||
|
background-color: $grey;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|