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.
34 lines
799 B
SCSS
34 lines
799 B
SCSS
@import 'components/cover-art-button';
|
|
@import 'components/gtk-overrides';
|
|
@import 'components/track-table';
|
|
@import 'pages/artist-view';
|
|
@import 'pages/music-local';
|
|
@import 'pages/playlist-page';
|
|
|
|
@import 'button';
|
|
@import 'disc-view';
|
|
@import 'expander';
|
|
@import 'player-bar';
|
|
@import 'primary-nav';
|
|
@import 'track-item';
|
|
|
|
window {
|
|
color: $text-color-bright;
|
|
background-color: $bg-primary;
|
|
|
|
& > headerbar, & > headerbar:active {
|
|
background-color: $bg-secondary;
|
|
background-image: none;
|
|
}
|
|
|
|
.koto-dialog-container {
|
|
background-color: transparentize($bg-secondary, 0.25);
|
|
padding: 20px;
|
|
}
|
|
|
|
// All the classes we want consistent padding applied to for its primary content
|
|
.artist-view-content, // Has the albums
|
|
.playlist-page { // Individual playlists
|
|
padding: $itempadding;
|
|
}
|
|
}
|