I am facing a problem that i have created a checkbox displaying + and - for expand and collapse. HTML Code -
<input type=checkbox class="ins" ng-model=show ng-class='{open:show}'><b>Show</b>
CSS code is -
.ins {
-moz-appearance:none;
-o-appearance:none;
-webkit-appearance: none;
width: 14px;
height: 14px;
}
.ins:after {
content: ' + ';
font-weight: 800;
}
.ins.open[type=checkbox]:after {
content:" - ";
font-weight: 800;
}
https://jsfiddle.net/1jj1714e/
it works perfectly fine on chrome, but same code not works on Mozilla