Fix bottom border on headerbar and enforce our text coloring on headerbar window controls.

This ensures our light and dark theme styling of the headerbar remains consistent regardless of the default stylesheet.
This commit is contained in:
Joshua Strobl 2021-07-07 22:16:28 +03:00
parent 2669eca219
commit ddf4b73c46

View file

@ -19,6 +19,17 @@ window {
& > 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 {