From 89bc33ce4c561b7751256c8c7d104cfd815c22e5 Mon Sep 17 00:00:00 2001 From: iae SAUDI Date: Fri, 1 May 2015 03:15:22 +0300 Subject: [PATCH] Fix Animation on Safari Fix Animation issue in the LESS file :) --- build/less/dropdown.less | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/build/less/dropdown.less b/build/less/dropdown.less index a7e699aab..ffd3c26b2 100644 --- a/build/less/dropdown.less +++ b/build/less/dropdown.less @@ -295,27 +295,27 @@ } @-webkit-keyframes flipInX { 0% { - transform: perspective(400px) rotate3d(1, 0, 0, 90deg); - transition-timing-function: ease-in; + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); + -webkit-transition-timing-function: ease-in; opacity: 0; } 40% { - transform: perspective(400px) rotate3d(1, 0, 0, -20deg); - transition-timing-function: ease-in; + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); + -webkit-transition-timing-function: ease-in; } 60% { - transform: perspective(400px) rotate3d(1, 0, 0, 10deg); + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg); opacity: 1; } 80% { - transform: perspective(400px) rotate3d(1, 0, 0, -5deg); + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg); } 100% { - transform: perspective(400px); + -webkit-transform: perspective(400px); } } @@ -344,4 +344,4 @@ } } } -} \ No newline at end of file +}