reduce fill color time effect - dark back arrow color

This commit is contained in:
JDonadio 2017-03-07 15:39:40 -03:00
commit 107694cd58
2 changed files with 8 additions and 5 deletions

View file

@ -28,9 +28,7 @@ angular.module('copayApp.controllers').controller('pincodeController', function(
$scope.$apply(); $scope.$apply();
}); });
if (!$scope.locking && isComplete()) { if (!$scope.locking && isComplete()) {
$timeout(function() { $scope.save();
$scope.save();
});
} }
}; };
@ -72,7 +70,9 @@ angular.module('copayApp.controllers').controller('pincodeController', function(
configService.set(opts, function(err) { configService.set(opts, function(err) {
if (err) $log.debug(err); if (err) $log.debug(err);
$scope.close(); $timeout(function() {
$scope.close();
});
}); });
}; };

View file

@ -3,6 +3,9 @@
.bar.bar-clear { .bar.bar-clear {
background-color: transparent; background-color: transparent;
border: none; border: none;
.back-button .icon:before {
color: #2d3f50;
}
} }
.content { .content {
text-align: center; text-align: center;
@ -62,7 +65,7 @@
box-shadow: 0 0 1px 0px rgb( 255, 255, 255); box-shadow: 0 0 1px 0px rgb( 255, 255, 255);
width: 5px; width: 5px;
height: 5px; height: 5px;
transition: background-color .5s ease-in-out; transition: background-color .1s ease-in-out;
} }
.filled { .filled {
background-color: #666666; background-color: #666666;