aboutsummaryrefslogtreecommitdiff
path: root/less
diff options
context:
space:
mode:
authorfat <[email protected]>2014-10-02 21:52:53 -0700
committerfat <[email protected]>2014-10-02 21:52:53 -0700
commit582bb7dcdc85e54d09a14a0e9d9e87b22bc1d7d5 (patch)
tree2f10cbd3b272a21bb9b6be71117dc082bff1e92d /less
parent3fda099f5c69fe1cb7a217aaecf73a7131a4d513 (diff)
downloadbootstrap-582bb7dcdc85e54d09a14a0e9d9e87b22bc1d7d5.tar.xz
bootstrap-582bb7dcdc85e54d09a14a0e9d9e87b22bc1d7d5.zip
fix #14254 Modal Sometimes Does Not Appear after Multiple Displays in Safari
Diffstat (limited to 'less')
-rw-r--r--less/modals.less4
1 files changed, 2 insertions, 2 deletions
diff --git a/less/modals.less b/less/modals.less
index 6da50ba92..1de622050 100644
--- a/less/modals.less
+++ b/less/modals.less
@@ -30,10 +30,10 @@
// When fading in the modal, animate it to slide down
&.fade .modal-dialog {
- .translate3d(0, -25%, 0);
+ .translate(0, -25%);
.transition-transform(~"0.3s ease-out");
}
- &.in .modal-dialog { .translate3d(0, 0, 0) }
+ &.in .modal-dialog { .translate(0, 0) }
}
.modal-open .modal {
overflow-x: hidden;