Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scss/_modal.scss3
1 files changed, 2 insertions, 1 deletions
diff --git a/scss/_modal.scss b/scss/_modal.scss
index ce3b3e80c0..3eb193a162 100644
--- a/scss/_modal.scss
+++ b/scss/_modal.scss
@@ -31,7 +31,8 @@
// When fading in the modal, animate it to slide down
&.fade .modal-dialog {
- transform: transition .3s ease-out, translate(0, -25%);
+ transform: translate(0, -25%);
+ transition: transform .3s ease-out;
}
&.in .modal-dialog { transform: translate(0, 0); }
}