Fix tx-notif and animation duration

This commit is contained in:
Gustavo Maximiliano Cortez 2015-05-07 19:15:38 -03:00
commit 2f3d660695
No known key found for this signature in database
GPG key ID: 15EDAD8D9F2EB1AF
2 changed files with 8 additions and 1 deletions

View file

@ -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"],

View file

@ -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');
});
};