Do you know how I could style a checkbox when it is disabled?
E.g.:
If you're trying to stop someone from updating the checkbox so it appears disabled then just use JQuery
$('input[type=checkbox]').click(false);
You can then style the checkbox.