How do I change the color of a checkbox if it disabled. Couldn't find anything in customize theme or in the Style.
Also the disabled and hover color
You can use your browser's CSS inspector to find anything you need. For example the background of the checked checkbox is set like this:
.rz-chkbox-box.rz-state-active {
background-color: #3f8cb3;
border: 1px solid #dadfe2;
}
To use a different background for disabled checkboxes you can use this CSS rule:
.rz-chkbox-box.rz-state-active.rz-state-disabled {
background-color: red;
}
The hover background is available in the Theme Builder: