diff --git a/src/css/mobile.css b/src/css/mobile.css index d786de388..eddc3d93e 100644 --- a/src/css/mobile.css +++ b/src/css/mobile.css @@ -559,6 +559,13 @@ a.pin-button:active { padding-bottom: 20px; } +.reveal-modal.animated.fadeOutUp, +.reveal-modal.animated.slideInUp, +.reveal-modal.animated.slideInDown { + -webkit-animation-duration: 0.3s; + animation-duration: 0.3s; +} + input[type="color"], input[type="date"], input[type="datetime-local"], diff --git a/src/js/services/txStatus.js b/src/js/services/txStatus.js index af5418fef..f4e3cb92a 100644 --- a/src/js/services/txStatus.js +++ b/src/js/services/txStatus.js @@ -43,7 +43,7 @@ angular.module('copayApp.services').factory('txStatus', function($modal, lodash, modalInstance.result.finally(function() { var m = angular.element(document.getElementsByClassName('reveal-modal')); - m.addClass('animated slideOutDown'); + m.addClass('animated fadeOutUp'); }); };