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:
authorStarsam80 <samraskauskas@gmail.com>2016-11-29 00:23:59 +0300
committerMark Otto <markd.otto@gmail.com>2016-11-29 00:23:59 +0300
commitb226766b62bf91c54dba5e586e557c39a03bdda6 (patch)
tree3888b37c71c80227daf16d3a69354d6975fb4ccb /scss/_modal.scss
parent2f9a94caac58a68a12c17818da0d1e2c2402368e (diff)
Remove lots of duplication + minor cleanup (#21238)
* Remove comment that duplicated some code * Use transition mixin whenever possible * Create a new function to reduce duplication * Use the new `breakpoint-infix` method
Diffstat (limited to 'scss/_modal.scss')
-rw-r--r--scss/_modal.scss2
1 files changed, 1 insertions, 1 deletions
diff --git a/scss/_modal.scss b/scss/_modal.scss
index c6f56637dd..85aef719b6 100644
--- a/scss/_modal.scss
+++ b/scss/_modal.scss
@@ -28,7 +28,7 @@
// When fading in the modal, animate it to slide down
&.fade .modal-dialog {
- transition: transform .3s ease-out;
+ @include transition(transform .3s ease-out);
transform: translate(0, -25%);
}
&.active .modal-dialog { transform: translate(0, 0); }