legacy-modules
legacy-modules copied to clipboard
font-awesome not available in css
I can load font-awesome as and html <i class="fa fa-fw fa-square-o unchecked"></i>
But when i try to reshape my checkboxes via css it show nothing but an empty div.
`
.fancy-checkbox input[type="checkbox"],
.fancy-checkbox .checked {
display: none;
}
.fancy-checkbox input[type="checkbox"]:checked ~ .checked
{
display: inline-block;
}
.fancy-checkbox input[type="checkbox"]:checked ~ .unchecked
{
display: none;
}
`
this comment might help