Is there a way to change the appearance of my enabled and disabled checkboxes to be green? I've tried adjusting various CSS properties but so far have only been able to change the outline color. Any tips on how to make the checkbox itself appear green or where to find some predefined images like this one: https://i.sstatic.net/5VHGz.png ?
Sample HTML code:
<label>
<input type="checkbox" ng-model="t.isCorrected" disabled/>
{{('sth.isCorrectedLabel') | translate}}
</label>
Corresponding CSS code:
input[type=checkbox][disabled]:checked {
outline:2px solid green;
accent-color: green !important;
background-color: #FA9E57 !important;
}