fixing checked button color not correctly inheriting plasma's intended color

This commit is contained in:
Eudaimon 2021-11-13 18:08:02 +01:00
parent 610c38760e
commit 5279308a25
1 changed files with 4 additions and 4 deletions

View File

@ -31,7 +31,7 @@ text widgets and the like base background color */
@define-color button_fg_color @theme_button_foreground_normal_breeze;
@define-color theme_button_foreground_active_breeze @button_pushed_fg;
@define-color theme_button_background_active_breeze @button_pushed_bg;
@define-color theme_button_decoration_focus_breeze @button_pushed_bg;
/*
@ -666,7 +666,7 @@ notebook > header > tabs > arrow:hover,
button:active,
button:checked, button.flat:active, button.flat:checked {
color: @theme_button_foreground_active_breeze;
background-color: @theme_button_background_active_breeze;
background-color: @theme_button_decoration_focus_breeze;
outline-color: alpha(black, 0.1);
border-color: @border_color;
@ -681,10 +681,10 @@ notebook > header > tabs > arrow:hover,
/*transition-duration: 50ms; */}
button:checked:hover, button.flat:checked:hover {
background-color: shade(@theme_button_background_active_breeze, 1.1);
background-color: shade(@theme_button_decoration_focus_breeze, 1.1);
}
button:checked:focus, button.flat:checked:focus {
background-color: shade(@theme_button_background_active_breeze, 1.2);
background-color: shade(@theme_button_decoration_focus_breeze, 1.2);
}
notebook > header > tabs > arrow:disabled, button.titlebutton:disabled, button.suggested-action:disabled, button.destructive-action:disabled,