Adjust styling of disabled checkboxes

Signed-off-by: Raimund Schlüßler <raimund.schluessler@mailbox.org>
This commit is contained in:
Raimund Schlüßler 2019-08-31 21:36:20 +02:00
parent 4246795c89
commit ad9dc5c5c1
No known key found for this signature in database
GPG key ID: 036FA7EB1A599178

View file

@ -1188,10 +1188,15 @@
margin-right: 3px;
opacity: 0.5;
input[type='checkbox'].checkbox:checked + label::before {
background-image: var(--icon-checkmark-000);
background-color: unset;
border-color: unset;
input[type='checkbox'].checkbox {
&:checked + label::before {
background-image: var(--icon-checkmark-000);
background-color: unset;
border-color: unset;
}
&:disabled + label::before {
background-color: var(--color-background-darker) !important;
}
}
}