Отключенный флажок CSS
<input type="checkbox" disabled="disabled"/>
/*Or with CSS
<div id="checkbox">
<input type="checkbox"/>
</div>
#checkbox {
pointer-events: none
}
MitchAloha