2021-02-25 18:15:36 +02:00
|
|
|
@import 'vars';
|
|
|
|
|
|
|
|
.player-bar {
|
2021-05-27 15:47:45 +03:00
|
|
|
background-color: $bg-secondary;
|
2021-02-25 18:15:36 +02:00
|
|
|
background-image: none;
|
|
|
|
padding: $halvedpadding;
|
|
|
|
|
2021-05-27 15:47:45 +03:00
|
|
|
.koto-button {
|
|
|
|
&:not(.toggled) {
|
|
|
|
color: $player-bar-icon-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.toggled {
|
|
|
|
color: $text-color-bright;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-17 19:27:33 +03:00
|
|
|
.playerbar-primary-controls, // Primary
|
|
|
|
.playerbar-secondary-controls { // Secondary
|
|
|
|
& > .koto-button { // Direct descendents
|
|
|
|
margin: 0 $quarterpadding;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.playerbar-primary-controls { // Primary Controls
|
|
|
|
.playerbar-advanced-controls { // Advanced controls
|
|
|
|
margin-left: $padding;
|
|
|
|
|
|
|
|
& > entry { // Inner GtkEntry
|
|
|
|
margin: 0 $halvedpadding;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-07 16:45:57 +03:00
|
|
|
.playerbar-info { // Central info section
|
|
|
|
& > box { // Info labels
|
|
|
|
margin-left: 2ex;
|
|
|
|
|
2021-05-27 15:47:45 +03:00
|
|
|
& > image {
|
|
|
|
color: $text-color-faded;
|
|
|
|
}
|
|
|
|
|
2021-05-07 16:45:57 +03:00
|
|
|
& > label {
|
|
|
|
margin-top: 6px;
|
|
|
|
margin-bottom: 6px;
|
|
|
|
|
|
|
|
&:nth-child(1) { // Title
|
|
|
|
font-size: x-large;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:not(:nth-child(1)) { // Album and Artist
|
|
|
|
font-size: large;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:nth-child(2) { // Album
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
&:nth-child(3) { // Artist
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-08-10 19:18:46 +03:00
|
|
|
|
|
|
|
.playerbar-secondary-controls { // Secondary controls
|
|
|
|
label { // Inner playback position label
|
|
|
|
font-size: large;
|
|
|
|
margin-right: $halvedpadding;
|
|
|
|
}
|
|
|
|
}
|
2021-02-25 18:15:36 +02:00
|
|
|
}
|