Files
2015-08-03 11:24:47 -05:00

25 lines
330 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] {
pointer-events: none;
opacity: 0.5;
color: gray;
}