This commit is contained in:
Vince 2021-12-04 23:01:58 +08:00
parent ab91507a07
commit 0c87eecbab
2 changed files with 8 additions and 4 deletions

View File

@ -181,7 +181,7 @@ $list_shadow: if($variant == 'light',
} }
&:disabled { &:disabled {
&, label { color: transparentize($selected_fg_color, 0.5); } color: transparentize($selected_fg_color, 0.5);
background-color: transparentize($selected_fg_color, 1); background-color: transparentize($selected_fg_color, 1);
border-color: transparentize($selected_fg_color, 0.6); border-color: transparentize($selected_fg_color, 0.6);
box-shadow: none; box-shadow: none;
@ -1718,7 +1718,7 @@ headerbar {
border-color: darken($selection_mode_bg, 4%); border-color: darken($selection_mode_bg, 4%);
} }
button:not(.flat):not(.suggested-action):not(.destructive-action):not(.titlebutton) { button:not(.flat):not(.suggested-action):not(.destructive-action):not(.titlebutton):not(.combo) {
@include button(undecorated); @include button(undecorated);
@extend %selected-button; @extend %selected-button;
} }

View File

@ -1712,7 +1712,11 @@ window.background.csd {
> headerbar:first-child { > headerbar:first-child {
@extend %side_headerbar_left; @extend %side_headerbar_left;
&.selection-mode { color: $header_fg; } &.selection-mode {
color: $header_fg;
> button:not(.flat):not(.suggested-action):not(.destructive-action):not(.titlebutton):not(.combo) { @extend %headerbar_buttons; }
}
} }
> headerbar:last-child { > headerbar:last-child {
@ -1722,7 +1726,7 @@ window.background.csd {
color: $header_fg; color: $header_fg;
border-color: $header_border; border-color: $header_border;
> button:not(.flat):not(.suggested-action):not(.destructive-action):not(.titlebutton) { @extend %headerbar_buttons; } > button:not(.flat):not(.suggested-action):not(.destructive-action):not(.titlebutton):not(.combo) { @extend %headerbar_buttons; }
} }
} }
} }