From 0ab3e230e0e8d6e1a0bf30fdfdfff0de8340f31b Mon Sep 17 00:00:00 2001 From: Brandy Carney Date: Thu, 12 Nov 2015 16:44:46 -0500 Subject: [PATCH] refactor(list): fixed opacity again...because wrapping the input broke it references #494 --- ionic/components/checkbox/checkbox.scss | 2 +- ionic/components/radio/radio.scss | 2 +- ionic/components/switch/switch.scss | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ionic/components/checkbox/checkbox.scss b/ionic/components/checkbox/checkbox.scss index fca4a344a7..177ffc23f1 100644 --- a/ionic/components/checkbox/checkbox.scss +++ b/ionic/components/checkbox/checkbox.scss @@ -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; diff --git a/ionic/components/radio/radio.scss b/ionic/components/radio/radio.scss index b0f1cdc658..34f3cc62e8 100644 --- a/ionic/components/radio/radio.scss +++ b/ionic/components/radio/radio.scss @@ -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; diff --git a/ionic/components/switch/switch.scss b/ionic/components/switch/switch.scss index 4a2f45b35e..5695291654 100644 --- a/ionic/components/switch/switch.scss +++ b/ionic/components/switch/switch.scss @@ -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;