Add "disabled" style for form controls

This commit is contained in:
Matthias 2024-03-30 09:03:28 +01:00
parent a27c65a86c
commit c8a0174726

View File

@ -159,6 +159,10 @@
.form-control {
color: $fg-color;
background: $bg-dark;
&:disabled {
color: darken($fg-color, 30%);
background: lighten($bg-dark, 10%);
}
}
.popover {