koto/theme/_main.scss
Joshua Strobl 77b4e900e6 Implement initial audiobook UX (some of which is a bit of a WIP).
- Renamed various components and moved them to src/components.
- Renamed KOTO_PREFERRED_MODEL* to KOTO_PREFERRED_PLAYLIST*
- Renamed koto string utility functions to always be prefixed with koto_utils_string_ for consistency.
- Added configuration options for show / hiding various album information, as well as preferred sort type.
- Changed db schema to reflect various metadata changes (sorry).
- Implemented genre, narrator, year aggregation from KotoTrack to KotoAlbum for use in KotoAlbumInfo and audiobooks.
- Rearchitected our playlist functionality for KotoAlbums to always have an inner KotoPlaylist that is used.
- Added various getters / setters for new koto_album functionality.
- Implement aggregation of KotoAlbum pointer aggregation in the KotoArtist as a GQueue and GListStore instead of GList so we can get all the albums associated with an artist and use the GListStore for the audiobook view.
- Implement some initial album sorting in Artists (more work to do on this front).
- Many improvements to file indexing logic for CD and position detection, various new koto_track_helpers.
- Add new logic for knowing when to hide playlists given we generate them for each Album now.
- Fix missing updates of KotoPlaylist in KotoNav.
- Added playback position to KotoPlayerbar, renamed bar refs to self.
- New Playlist state saving.
- Updated track ticking logic for track in KotoPlaybackEngine.
- Fixed playback position detection in our KotoPlaybackEngine by swapping from GST_FORMAT_DEFAULT to GST_FORMAT_TIME.
- Changed our get_progress to divide by GST_SECOND.
- Fixed missing type checks in various KotoPlaybackEngine functions.

Fixes #13. Fixes #14. Fixes #15.
2021-08-10 19:18:46 +03:00

52 lines
1.4 KiB
SCSS

@import 'components/album-info';
@import 'components/audiobook-view';
@import 'components/badge';
@import 'components/cover-art-button';
@import 'components/gtk-overrides';
@import 'components/track-list';
@import 'components/track-table';
@import 'components/writer-page';
@import 'pages/audiobook-library';
@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;
border-bottom-width: 0; // Unset default styling for headerbar
&:active windowcontrols button { // Minimize, Maximize, Close buttons when window is active
color: $text-color-bright;
text-decoration-color: $text-color-bright;
}
&:not(:active) windowcontrols button { // Minimize, Maximize, Close buttons when window is inactive
color: $text-color-faded;
text-decoration-color: $text-color-faded;
}
}
.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
.writer-page { // Writer page in Audiobook
padding: $itempadding;
}
}