themes: Fix "box" on highlighted checkbox label

The checkbox label wasn't included the :hover CSS, so its background
color didn't change. This created a "box" around the label without the
highlight color when the mouse was over it.
This commit is contained in:
Alx Sa 2023-06-17 19:01:39 +00:00
parent 45e91bd550
commit addc37880e
1 changed files with 1 additions and 1 deletions

View File

@ -320,7 +320,7 @@ checkbutton, checkbutton.text-button, radiobutton, checkbutton label {
background-color: @bg-color; background-color: @bg-color;
} }
checkbutton:hover, checkbutton.text-button:hover, radiobutton:hover, checkbutton label:hover { checkbutton:hover, checkbutton.text-button:hover, checkbutton:hover label, radiobutton:hover, checkbutton label:hover {
color: @fg-color; color: @fg-color;
background-color: @hover-color; background-color: @hover-color;
} }