Skip to content

Commit

Permalink
Merge pull request #192 from dancetrain/master
Browse files Browse the repository at this point in the history
Fixed Bug on IE11 #173
  • Loading branch information
vodkabears committed Nov 29, 2015
2 parents b83c5a6 + 9271ab5 commit de33e1b
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/remodal-default-theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand All @@ -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 */
Expand Down

0 comments on commit de33e1b

Please sign in to comment.