apex4x
Version:
The Comprehensive ARIA Development Suite
21 lines (17 loc) • 476 B
CSS
/**********************************************
Common Checkbox styles
*************************************************/
.aria-checkbox {
float: left;
cursor: pointer;
width: 200px;
padding: 20px;
text-align: center;
background: url(./img/checkbox/unchecked.svg) no-repeat;
}
.aria-checkbox.checked {
background: url(./img/checkbox/checked.svg) no-repeat;
}
.aria-checkbox.partially-checked {
background: url(./img/checkbox/indeterminate.svg) no-repeat;
}