themes: use the disabled color more globally.

Don't use it only on menus. For instance, there were disabled checkboxes
(and their label) in plug-ins which were not showing different at all,
and it's confusing. Now both menu items, and other type of settings will
show similar "disabled" style.
This commit is contained in:
Jehan 2022-08-21 12:12:32 +02:00
parent fbbe3dbaa9
commit c4682be682

View file

@ -16,6 +16,10 @@
color: @fg-color; color: @fg-color;
} }
*:disabled {
color: @disabled-fg-color;
}
#image-menubar, GtkImageMenuItem { #image-menubar, GtkImageMenuItem {
background-color: @bg-color; background-color: @bg-color;
color: @fg-color; color: @fg-color;
@ -319,10 +323,6 @@ menubar > menuitem:hover {
background: @extreme-selected-color; background: @extreme-selected-color;
} }
menubar *:disabled {
color: @disabled-fg-color;
}
menuitem *:hover { menuitem *:hover {
color: @fg-color; color: @fg-color;
background: @extreme-selected-color; background: @extreme-selected-color;