Do you know how I could style a checkbox when it is disabled?
E.g.:
Use CSS's :disabled selector (for CSS3):
:disabled
checkbox-style { } checkbox-style:disabled { }
Or you need to use javascript to alter the style based on when you enable/disable it (Assuming it is being enabled/disabled based on your question).