Slide up/down for all modals

This commit is contained in:
Gustavo Maximiliano Cortez 2015-05-05 13:02:40 -03:00
commit 17184c8d48
2 changed files with 68 additions and 3 deletions

View file

@ -359,7 +359,7 @@ ul.off-canvas-list li a:hover {
background: none; background: none;
} }
a, button, .button, input, textarea, select, .reveal-modal { a, button, .button, input, textarea, select {
-webkit-box-shadow: none !important; -webkit-box-shadow: none !important;
-moz-box-shadow: none !important; -moz-box-shadow: none !important;
box-shadow: none !important; box-shadow: none !important;
@ -559,6 +559,72 @@ a.pin-button:active {
height: 100%; height: 100%;
overflow: auto; overflow: auto;
padding-bottom: 20px; padding-bottom: 20px;
-webkit-animation-duration: 0.3s;
animation-duration: 0.3s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
@-webkit-keyframes slideOutDown {
0% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
visibility: visible;
}
100% {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
@keyframes slideOutDown {
0% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
visibility: visible;
}
100% {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
.reveal-modal.fade {
-webkit-animation-name: slideOutDown;
animation-name: slideOutDown;
}
@-webkit-keyframes slideInUp {
0% {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
visibility: visible;
}
100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInUp {
0% {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
visibility: visible;
}
100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.reveal-modal.fade.in {
-webkit-animation-name: slideInUp;
animation-name: slideInUp;
} }
input[type="color"], input[type="color"],

View file

@ -277,9 +277,8 @@ angular.module('copayApp.controllers').controller('walletHomeController', functi
}; };
var modalInstance = $modal.open({ var modalInstance = $modal.open({
animation: true,
templateUrl: 'views/modals/txp-details.html', templateUrl: 'views/modals/txp-details.html',
windowClass: 'full animated slideInUp', windowClass: 'full',
controller: ModalInstanceCtrl, controller: ModalInstanceCtrl,
}); });