diff options
| author | fat <[email protected]> | 2014-10-02 21:52:53 -0700 |
|---|---|---|
| committer | fat <[email protected]> | 2014-10-02 21:52:53 -0700 |
| commit | 582bb7dcdc85e54d09a14a0e9d9e87b22bc1d7d5 (patch) | |
| tree | 2f10cbd3b272a21bb9b6be71117dc082bff1e92d /less | |
| parent | 3fda099f5c69fe1cb7a217aaecf73a7131a4d513 (diff) | |
| download | bootstrap-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.less | 4 |
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; |
