From acdcfe533d01e0dd7825c10a2d22d00026582f6e Mon Sep 17 00:00:00 2001 From: Adam Bradley Date: Tue, 1 Apr 2014 22:30:10 -0500 Subject: [PATCH] apply .item-radio android hack only to android .grade-b/c --- scss/_radio.scss | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/scss/_radio.scss b/scss/_radio.scss index 1406005edd..0f75fa12ad 100644 --- a/scss/_radio.scss +++ b/scss/_radio.scss @@ -47,10 +47,11 @@ // Hack for Android to correctly display the checked item // http://timpietrusky.com/advanced-checkbox-hack -.item-radio { - -webkit-animation: androidCheckedbugfix infinite 1s; +.platform-android.grade-b .item-radio, +.platform-android.grade-c .item-radio { + -webkit-animation: androidCheckedbugfix infinite 1s; } -@-webkit-keyframes androidCheckedbugfix { - from { padding:0; } - to { padding:0; } +@-webkit-keyframes androidCheckedbugfix { + from { padding: 0; } + to { padding: 0; } }