Fix code related to changing from temporary playlists to permanent ones. Implement new centralized Koto Paths for defining our variables and revdns name for consistency. Updated Album View to leverage KotoCoverArtButton component. Started refactoring our theming to support multiple variants. It isn't where I want it yet but we'll get there.
21 lines
No EOL
382 B
SCSS
21 lines
No EOL
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;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |