refactor(list): fixed opacity again...because wrapping the input broke it

references #494
This commit is contained in:
Brandy Carney
2015-11-12 16:44:46 -05:00
parent 50c682a669
commit 0ab3e230e0
3 changed files with 3 additions and 3 deletions

View File

@@ -8,7 +8,7 @@ ion-checkbox {
@include user-select-none();
}
ion-checkbox[aria-disabled=true] > * {
ion-checkbox[aria-disabled=true] .item-inner > * {
pointer-events: none;
opacity: 0.5;
color: $subdued-text-color;

View File

@@ -9,7 +9,7 @@ ion-radio {
@include user-select-none();
}
ion-radio[aria-disabled=true] > * {
ion-radio[aria-disabled=true] .item-inner > * {
opacity: 0.5;
color: $subdued-text-color;
pointer-events: none;

View File

@@ -13,7 +13,7 @@ ion-switch media-switch {
cursor: pointer;
}
ion-switch[aria-disabled=true] > * {
ion-switch[aria-disabled=true] .item-inner > * {
pointer-events: none;
opacity: 0.5;
color: $subdued-text-color;