diff options
Diffstat (limited to 'dist/css/bootstrap.css')
| -rw-r--r-- | dist/css/bootstrap.css | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index a7f8c1254..7a168a65d 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -5212,10 +5212,13 @@ button.close { } .modal.fade .modal-dialog { - -webkit-transform: transition .3s ease-out, translate(0, -25%); - -ms-transform: transition .3s ease-out, translate(0, -25%); - -o-transform: transition .3s ease-out, translate(0, -25%); - transform: transition .3s ease-out, translate(0, -25%); + -webkit-transition: -webkit-transform .3s ease-out; + -o-transition: -o-transform .3s ease-out; + transition: transform .3s ease-out; + -webkit-transform: translate(0, -25%); + -ms-transform: translate(0, -25%); + -o-transform: translate(0, -25%); + transform: translate(0, -25%); } .modal.in .modal-dialog { |
