koto/theme/pages/_music-local.scss
Joshua Strobl cf81682f8c Start implementing Playlist functionality via KotoCurrentPlaylist and KotoPlaylist.
Implement functionality for gracefully showing the play button on top of KotoAlbumArt images. Implemented a new koto_indexed_album_set_as_current_playlist function for setting an album as the current playlist, useful when clicking to play an album via its artwork.
2021-03-10 13:44:08 +02:00

50 lines
842 B
SCSS

@import '../vars';
.page-music-local {
& > .artist-list {
&, & > viewport, & > viewport > list {
background-color: $midnight;
}
& > viewport > list {
& > row {
padding: $halvedpadding;
}
}
}
& > stack {
& > .artist-view {
& > viewport > .artist-view-content {
padding: $itempadding;
& > .album-strip {
margin-bottom: $itempadding;
& > flowboxchild {
margin-right: $itempadding;
}
}
& > .album-list {
& > flowboxchild > .album-view {
& > overlay {
margin-right: $itempadding;
& > revealer > box { // Inner controls
background-color: rgba(0,0,0,0.75);
}
}
& > box {
& > label {
font-size: xx-large;
font-weight: 900;
padding: $halvedpadding 0;
}
}
}
}
}
}
}
}