From c91622b760dd4e919f890de2ecdf46d4e9573d13 Mon Sep 17 00:00:00 2001 From: Adam Bradley Date: Mon, 10 Mar 2014 11:40:50 -0500 Subject: [PATCH] fix(actionsheet): Use transition instead of animation for backdrop, fix for Android 2.3 --- scss/_action-sheet.scss | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/scss/_action-sheet.scss b/scss/_action-sheet.scss index 7b277c5e605..4d19cfa40e9 100644 --- a/scss/_action-sheet.scss +++ b/scss/_action-sheet.scss @@ -4,6 +4,7 @@ */ .action-sheet-backdrop { + @include transition(background-color 300ms ease-in-out); position: fixed; top: 0; left: 0; @@ -13,13 +14,6 @@ background-color: rgba(0,0,0,0); &.active { - @include animation(fadeInHalf 0.3s); - @include animation-fill-mode(both); - } - - &.active-remove { - @include animation(fadeOutHalf 0.3s); - @include animation-fill-mode(both); background-color: rgba(0,0,0,0.5); } }