From e7d14d79135352ab88fe9089271a55fe24bc7b54 Mon Sep 17 00:00:00 2001 From: jlukic Date: Wed, 25 Dec 2013 12:55:07 -0500 Subject: [PATCH] Fixes heinous typo in horizontal flip out --- src/modules/transition.less | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/modules/transition.less b/src/modules/transition.less index 6303be02c..861abb012 100755 --- a/src/modules/transition.less +++ b/src/modules/transition.less @@ -26,6 +26,7 @@ *******************************/ .ui.animating.transition { + display: block; backface-visibility: hidden; transform: translateZ(0); } @@ -149,7 +150,7 @@ /*-------------- - Slide + Slide ---------------*/ .ui.slide.down.transition.in { @@ -198,7 +199,7 @@ *******************************/ /*-------------- - Emphasis + Emphasis ---------------*/ /* Flash */ @@ -293,11 +294,11 @@ @keyframes horizontalFlipOut { 0% { transform: rotateY(0deg); - opacity: 0; + opacity: 1; } 100% { transform: rotateY(90deg); - opacity: 1; + opacity: 0; } }