Add a css class to the checkbox indicator

This commit is contained in:
taehoon 2019-03-22 13:49:58 -04:00
parent cf72ebb407
commit 91502a25a4
2 changed files with 28 additions and 28 deletions

View file

@ -36,7 +36,7 @@ export default {
return (
<label class="checkbox" {...wrapperProps}>
<input type="checkbox" {...inputProps} />
<i />
<i class="checkbox-indicator" />
{children && <span>{children}</span>}
</label>
)

View file

@ -5,10 +5,7 @@
display: inline-block;
padding-left: 1.2em;
input[type=checkbox] {
display: none;
& + i::before {
&-indicator::before {
position: absolute;
left: 0;
top: 0;
@ -32,12 +29,15 @@
box-sizing: border-box;
}
&:checked + i::before {
input[type=checkbox] {
display: none;
&:checked + .checkbox-indicator::before {
color: $fallback--text;
color: var(--text, $fallback--text);
}
&:disabled + i::before {
&:disabled + .checkbox-indicator::before {
opacity: .5;
}
}