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

21 lines
298 B
SCSS

// Switch
// --------------------------------------------------
ion-switch {
display: block;
@include user-select-none();
}
ion-switch media-switch {
margin: 0;
cursor: pointer;
}
ion-switch[aria-disabled=true] {
opacity: 0.5;
color: $subdued-text-color;
pointer-events: none;
}