Implemented no albums view and improved indexing of file content directly within an artist.
Every KotoArtist now has a dedicated KotoPlaylist that is dynamically generated during KotoArtist initialization and contains references to all KotoTracks. Fixed weird parsing error with some track names that had single quote (ew) and made changes so various parts of the UX would not freak out when we didn't have an album associated with a track.
This commit is contained in:
parent
2bf5aa9388
commit
34ca201121
19 changed files with 948 additions and 530 deletions
49
theme/components/_track-table.scss
Normal file
49
theme/components/_track-table.scss
Normal file
|
@ -0,0 +1,49 @@
|
|||
.track-list-content { // Our Track List
|
||||
& > .track-list-header,
|
||||
.track-list-columned-item {
|
||||
font-size: x-large;
|
||||
padding: 3ex 2ex;
|
||||
}
|
||||
|
||||
& > .track-list-header { // Headers
|
||||
font-weight: bold;
|
||||
|
||||
.koto-button { // All Koto buttons in our header
|
||||
&.active { // Is active
|
||||
color: $green;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
& > .track-list-columned { // Column content
|
||||
& > row {
|
||||
&:not(:selected) {
|
||||
color: $text-color-bright;
|
||||
}
|
||||
|
||||
&:nth-child(odd):not(:selected) {
|
||||
background-color: $bg-secondary;
|
||||
}
|
||||
|
||||
& > .track-list-columned-item { // Track rows
|
||||
font-size: x-large;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.track-column-number { // Column section within header and track items
|
||||
|
||||
}
|
||||
|
||||
.track-column-name { // Name section within header and track items
|
||||
|
||||
}
|
||||
|
||||
.track-column-album { // Album section within headers and track items
|
||||
|
||||
}
|
||||
|
||||
.track-column-artist { // Artist section within headers and track items
|
||||
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue