I am trying to turn a checkbox into an icon, that when you click, turns red, and then back to gray when you click again. This works perfect on all modern browsers (except IE).
I have been playing around with it for a while and this is how far I got (Look in IE):
http://jsfiddle.net/d67uyfn7/1/
<input class="edit-hours" name="staff.Locked" type="checkbox" ng-model="staff.Locked" id="editHours" ng-show="!isSharedLink && selectedProject.Project.IsDraft" />
For reference, this is how it is supposed to look/function (Look in Chrome):
<input class="edit-hours" name="staff.Locked" type="checkbox" ng-model="staff.Locked" id="editHours" ng-show="!isSharedLink && selectedProject.Project.IsDraft" />
Any suggestions? Thanks!