I am setting my RadzenCheckBox to disabled. The checkbox is checked, but when disabled you cannot see the checkbox unless you hover over it with the mouse. What am I doing wrong?
Hi @BillLinck,
Which theme are you using?
Update: Managed to reproduce the issue. Will be fixed with the next version.
Until then, you can add this CSS to temporarily fix the issue:
div > .rz-chkbox-box.rz-state-disabled.rz-state-active {
background-color: var(--rz-checkbox-checked-disabled-background-color);
border: var(--rz-checkbox-checked-disabled-border);
opacity: 0.5;
}
Thank you for your quick response.