Files
2015-07-31 18:22:38 -05:00

24 lines
306 B
SCSS

// Checkbox
// --------------------------------------------------
.checkbox {
position: relative;
cursor: pointer;
@include user-select-none();
}
.checkbox input {
display: none;
}
.checkbox .input-label {
max-width: 100%;
}
.checkbox[aria-disabled=true] {
opacity: 0.5;
color: gray;
}