Merged fixes to Wallet Details.

This commit is contained in:
Brendon Duncan 2018-08-13 17:00:32 +12:00
commit b7d2c3e05c
2 changed files with 6 additions and 4 deletions

View file

@ -304,6 +304,7 @@ angular.module('copayApp.controllers').controller('walletDetailsController', fun
}; };
function refreshAmountSection(scrollPos) { function refreshAmountSection(scrollPos) {
var AMOUNT_HEIGHT_BASE = 270;
$scope.showBalanceButton = false; $scope.showBalanceButton = false;
if ($scope.status) { if ($scope.status) {
$scope.showBalanceButton = ($scope.status.totalBalanceSat != $scope.status.spendableAmount); $scope.showBalanceButton = ($scope.status.totalBalanceSat != $scope.status.spendableAmount);
@ -315,16 +316,16 @@ angular.module('copayApp.controllers').controller('walletDetailsController', fun
} }
scrollPos = scrollPos || 0; scrollPos = scrollPos || 0;
var amountHeight = 210 - scrollPos; var amountHeight = AMOUNT_HEIGHT_BASE - scrollPos;
if (amountHeight < 80) { if (amountHeight < 80) {
amountHeight = 80; amountHeight = 80;
} }
var contentMargin = amountHeight; var contentMargin = amountHeight;
if (contentMargin > 210) { if (contentMargin > AMOUNT_HEIGHT_BASE) {
contentMargin = 210; contentMargin = AMOUNT_HEIGHT_BASE;
} }
var amountScale = (amountHeight / 210); var amountScale = (amountHeight / AMOUNT_HEIGHT_BASE);
if (amountScale < 0.5) { if (amountScale < 0.5) {
amountScale = 0.5; amountScale = 0.5;
} }

View file

@ -261,6 +261,7 @@
.no-alternative { .no-alternative {
padding-top: 45px; padding-top: 45px;
} }
.item.item-footer { .item.item-footer {
font-weight: lighter; font-weight: lighter;
} }