2021-08-10 19:18:46 +03:00
|
|
|
@import 'components/album-info';
|
|
|
|
@import 'components/audiobook-view';
|
|
|
|
@import 'components/badge';
|
2021-05-27 15:47:45 +03:00
|
|
|
@import 'components/cover-art-button';
|
2021-05-07 16:45:57 +03:00
|
|
|
@import 'components/gtk-overrides';
|
2021-08-10 19:18:46 +03:00
|
|
|
@import 'components/track-list';
|
2021-07-06 13:06:20 +03:00
|
|
|
@import 'components/track-table';
|
2021-08-10 19:18:46 +03:00
|
|
|
@import 'components/writer-page';
|
|
|
|
@import 'pages/audiobook-library';
|
2021-07-06 13:06:20 +03:00
|
|
|
@import 'pages/artist-view';
|
2021-05-07 16:45:57 +03:00
|
|
|
@import 'pages/music-local';
|
|
|
|
@import 'pages/playlist-page';
|
2021-02-25 18:15:36 +02:00
|
|
|
|
|
|
|
@import 'button';
|
2021-02-27 17:26:24 +02:00
|
|
|
@import 'disc-view';
|
2021-02-25 18:15:36 +02:00
|
|
|
@import 'expander';
|
|
|
|
@import 'player-bar';
|
|
|
|
@import 'primary-nav';
|
|
|
|
@import 'track-item';
|
|
|
|
|
|
|
|
window {
|
2021-05-27 15:47:45 +03:00
|
|
|
color: $text-color-bright;
|
|
|
|
background-color: $bg-primary;
|
|
|
|
|
2021-02-25 18:15:36 +02:00
|
|
|
& > headerbar, & > headerbar:active {
|
2021-05-27 15:47:45 +03:00
|
|
|
background-color: $bg-secondary;
|
2021-02-25 18:15:36 +02:00
|
|
|
background-image: none;
|
2021-07-07 22:16:28 +03:00
|
|
|
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;
|
|
|
|
}
|
2021-02-25 18:15:36 +02:00
|
|
|
}
|
2021-05-07 16:45:57 +03:00
|
|
|
|
|
|
|
.koto-dialog-container {
|
2021-05-27 15:47:45 +03:00
|
|
|
background-color: transparentize($bg-secondary, 0.25);
|
2021-05-07 16:45:57 +03:00
|
|
|
padding: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
// All the classes we want consistent padding applied to for its primary content
|
|
|
|
.artist-view-content, // Has the albums
|
2021-08-10 19:18:46 +03:00
|
|
|
.playlist-page, // Individual playlists
|
|
|
|
.writer-page { // Writer page in Audiobook
|
2021-08-17 19:27:33 +03:00
|
|
|
padding: $padding;
|
2021-05-07 16:45:57 +03:00
|
|
|
}
|
2021-02-25 18:15:36 +02:00
|
|
|
}
|