From 9271ab5cad4012b40a335bcefa92ae47e3181453 Mon Sep 17 00:00:00 2001 From: Pavel Borsky Date: Wed, 28 Oct 2015 06:55:25 +0300 Subject: [PATCH] Fixed Bug on IE11 #173 --- src/remodal-default-theme.css | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/remodal-default-theme.css b/src/remodal-default-theme.css index 84f33bf..186a5d0 100644 --- a/src/remodal-default-theme.css +++ b/src/remodal-default-theme.css @@ -17,15 +17,16 @@ .remodal-overlay.remodal-is-opening, .remodal-overlay.remodal-is-closing { + animation-duration: 0.3s; animation-fill-mode: forwards; } .remodal-overlay.remodal-is-opening { - animation: remodal-overlay-opening-keyframes 0.3s; + animation-name: remodal-overlay-opening-keyframes; } .remodal-overlay.remodal-is-closing { - animation: remodal-overlay-closing-keyframes 0.3s; + animation-name: remodal-overlay-closing-keyframes; } /* Default theme styles of the wrapper */ @@ -50,15 +51,16 @@ .remodal.remodal-is-opening, .remodal.remodal-is-closing { + animation-duration: 0.3s; animation-fill-mode: forwards; } .remodal.remodal-is-opening { - animation: remodal-opening-keyframes 0.3s; + animation-name: remodal-opening-keyframes; } .remodal.remodal-is-closing { - animation: remodal-closing-keyframes 0.3s; + animation-name: remodal-closing-keyframes; } /* Vertical align of the modal dialog */