koto/theme/components/_gtk-overrides.scss
Joshua Strobl 8334323af8 Implement support for dedicated theme CSS files from our gresource.
Properly implement light and gruvbox themes. Yay!
2021-05-27 15:47:45 +03:00

135 lines
No EOL
2.5 KiB
SCSS

@import '../vars';
@mixin selected-row-styling {
color: $selected-row-color-text;
background-color: $selected-row-color-bg;
border: 0; // Don't have a border
border-image: none; // GTK uses an image which is weird
border-image-width: 0;
outline: none;
outline-offset: 0;
outline-style: none;
}
button {
.text-button {
&:not(.destructive-action):not(.suggested-action) { // Is just a plain ol' normal text button
color: $button-normal-color-text;
background: $button-normal-color-bg;
border-color: $button-normal-color-border;
}
}
&.destructive-action {
color: $button-destructive-color-text;
background-color: $button-destructive-color-bg;
background-image: none;
border-width: 0;
}
&.suggested-action { // Adwaita makes it blue but we want it green
color: $button-suggested-color-text;
background-color: $button-suggested-color-bg;
background-image: none;
border-width: 0;
}
}
checkbutton {
color: $text-color-bright;
&:active {
background-color: transparent;
}
}
check {
background-image: none;
&:not(:checked) { // Not checked
color: $text-color-faded;
}
&:active {
background-color: transparent;
}
&:checked { // Checked but not actively pressing on it
color: $text-color-bright;
background-color: $koto-primary-color;
}
}
entry {
color: $text-color-bright;
background: $input-background;
border-color: $border-color;
placeholder { // Placeholder text
color: $text-color-faded;
}
}
listview {
background-color: transparent;
}
list:not(.discs-list), listview {
&:not(.track-list) > row { // Rows which are now in the track list
&:active, &:selected { // Active or selected
@include selected-row-styling;
}
}
&.track-list > row {
&:selected { // Only selected rows
@include selected-row-styling;
}
}
}
popover.background {
& > arrow, & > contents {
background-color: $bg-primary;
border-color: $border-color;
}
& > contents {
color: $text-color-bright;
}
}
range {
&.dragging { // Dragging a range
& > trough {
highlight {
border-color: $koto-primary-color;
}
& > slider {
background-color: $koto-primary-color;
}
}
}
}
scale { // Progress bar
highlight {
background-color: $koto-primary-color;
border-color: $koto-primary-color;
}
slider { // Slider
outline-color: $koto-primary-color;
}
}
scalebutton {
&, button, image {
color: $player-bar-icon-color;
}
&:active, &:checked, &:hover, button:active, button:checked, button:hover {
background-color: transparent;
}
}