Fix the send search bg, mcc icon coloring, pre-auth header.
This commit is contained in:
parent
9b643003a1
commit
0d4fd06bcc
5 changed files with 86 additions and 21 deletions
|
|
@ -92,10 +92,10 @@ angular.module('copayApp.controllers').controller('bitpayCardController', functi
|
|||
return !tx.pending && tx.type.indexOf('93') == -1;
|
||||
});
|
||||
self.bitpayCardTransactionHistoryConfirming = lodash.filter(txs, function(tx) {
|
||||
return tx.pending;
|
||||
return tx.pending && tx.type.indexOf('93') == -1;
|
||||
});
|
||||
self.bitpayCardTransactionHistoryPreAuth = lodash.includes(txs, function(tx) {
|
||||
return tx.type.indexOf('93') > -1;
|
||||
self.bitpayCardTransactionHistoryPreAuth = lodash.filter(txs, function(tx) {
|
||||
return tx.pending && tx.type.indexOf('93') > -1;
|
||||
});
|
||||
|
||||
lodash.forEach(self.bitpayCardTransactionHistoryConfirming, function(tx) {
|
||||
|
|
|
|||
|
|
@ -133,7 +133,7 @@ angular.module('copayApp.controllers').controller('tabSendController', function(
|
|||
};
|
||||
|
||||
$scope.searchBlurred = function() {
|
||||
if ($scope.formData.search == null) {
|
||||
if ($scope.formData.search == null || $scope.formData.search.length == 0) {
|
||||
$scope.searchFocus = false;
|
||||
}
|
||||
};
|
||||
|
|
|
|||
|
|
@ -13,6 +13,10 @@
|
|||
color: #727272;
|
||||
padding: 2px 1rem;
|
||||
background: #f8f8f9;
|
||||
i {
|
||||
position: absolute;
|
||||
padding-left: 5px;
|
||||
}
|
||||
}
|
||||
|
||||
.comment {
|
||||
|
|
@ -86,11 +90,15 @@
|
|||
|
||||
&.send .svg #-Transaction-icons {
|
||||
}
|
||||
&.receive .svg #-Transaction-icons {
|
||||
&.receive .svg #-Transaction-icons,
|
||||
&.receive .tx-icon .houston {
|
||||
stroke: #09C286;
|
||||
color: #09C286;
|
||||
}
|
||||
&.pending .svg #-Transaction-icons {
|
||||
&.pending .svg #-Transaction-icons,
|
||||
&.pending .tx-icon .houston {
|
||||
stroke: $v-bitcoin-orange;
|
||||
color: $v-bitcoin-orange;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue