Files
Adam Bradley a7505f6ac9 fix(disable): disable tap for inputs
I know this change allows the bottom line to have an opacity too, but
this is the lesser of evils. Removed use of * selector, and able to
disable tap inputs.
Closes #610
2015-11-20 20:29:28 -06:00

16 lines
244 B
SCSS

// Checkbox
// --------------------------------------------------
ion-checkbox {
cursor: pointer;
@include user-select-none();
}
ion-checkbox[aria-disabled=true] {
opacity: 0.5;
color: $subdued-text-color;
pointer-events: none;
}