This commit is contained in:
Adam Bradley
2015-03-25 22:33:29 -05:00
parent 6f035ed1a8
commit 0e0c0df733
4 changed files with 96 additions and 9 deletions

View File

@ -0,0 +1,24 @@
// Checkbox
// --------------------------------------------------
.checkbox-on {
display: none;
}
.checkbox-off {
display: block;
}
.checkbox[aria-checked=true] {
.checkbox-on {
display: block;
}
.checkbox-off {
display: none;
}
}