From 2f3d6606956a649a19f175fd14d91a453803f739 Mon Sep 17 00:00:00 2001 From: Gustavo Maximiliano Cortez Date: Thu, 7 May 2015 19:15:38 -0300 Subject: [PATCH] Fix tx-notif and animation duration --- src/css/mobile.css | 7 +++++++ src/js/services/txStatus.js | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) 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'); }); };