Adds amount directive
This commit is contained in:
parent
fb275d4b08
commit
e1d65bc557
6 changed files with 727 additions and 554 deletions
76
src/js/directives/amount.js
Normal file
76
src/js/directives/amount.js
Normal file
|
|
@ -0,0 +1,76 @@
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @desc amount directive that can be used to display formatted financial values
|
||||||
|
* @example <amount value="12.49382901" currency="BCH"></amount>
|
||||||
|
*/
|
||||||
|
angular.module('bitcoincom.directives')
|
||||||
|
.directive('amount', [
|
||||||
|
'$timeout',
|
||||||
|
function($timeout) {
|
||||||
|
return {
|
||||||
|
restrict: 'E',
|
||||||
|
scope: {
|
||||||
|
value: '=',
|
||||||
|
currency: '='
|
||||||
|
},
|
||||||
|
templateUrl: 'views/includes/amount.html',
|
||||||
|
controller: ['$scope', function($scope) {
|
||||||
|
var decimalPlaces = {
|
||||||
|
'0': ['BIF', 'CLP', 'DJF', 'GNF', 'ILS', 'JPY', 'KMF', 'KRW', 'MGA', 'PYG', 'RWF', 'UGX', 'VND', 'VUV', 'XAF', 'XOF', 'XPF'],
|
||||||
|
'3': ['BHD', 'IQD', 'JOD', 'KWD', 'OMR', 'TND'],
|
||||||
|
'8': ['BCH', 'BTC']
|
||||||
|
};
|
||||||
|
|
||||||
|
var numberWithCommas = function(x) {
|
||||||
|
return parseFloat(x).toLocaleString();
|
||||||
|
};
|
||||||
|
|
||||||
|
var buildAmount = function(start, middle, end) {
|
||||||
|
$scope.start = start;
|
||||||
|
$scope.middle = middle;
|
||||||
|
$scope.end = end;
|
||||||
|
};
|
||||||
|
|
||||||
|
var getDecimalPlaces = function(currency) {
|
||||||
|
if (decimalPlaces['0'].indexOf($scope.currency.toUpperCase()) > -1) return '0';
|
||||||
|
if (decimalPlaces['3'].indexOf($scope.currency.toUpperCase()) > -1) return '3';
|
||||||
|
if (decimalPlaces['8'].indexOf($scope.currency.toUpperCase()) > -1) return '8';
|
||||||
|
return '2';
|
||||||
|
};
|
||||||
|
|
||||||
|
switch (getDecimalPlaces($scope.currency)) {
|
||||||
|
case '0':
|
||||||
|
var valueFormatted = numberWithCommas(Math.round(parseFloat($scope.value)));
|
||||||
|
buildAmount(valueFormatted, '', '');
|
||||||
|
break;
|
||||||
|
|
||||||
|
case '2':
|
||||||
|
var valueProcessing = parseFloat(parseFloat($scope.value).toFixed(2));
|
||||||
|
var valueFormatted = numberWithCommas(valueProcessing);
|
||||||
|
buildAmount(valueFormatted, '', '');
|
||||||
|
break;
|
||||||
|
|
||||||
|
case '3':
|
||||||
|
var valueProcessing = parseFloat(parseFloat($scope.value).toFixed(3));
|
||||||
|
var valueFormatted = numberWithCommas(valueProcessing);
|
||||||
|
buildAmount(valueFormatted, '', '');
|
||||||
|
break;
|
||||||
|
|
||||||
|
case '8':
|
||||||
|
var valueFormatted = parseFloat($scope.value).toFixed(8);
|
||||||
|
if (parseFloat($scope.value) == 0) {
|
||||||
|
buildAmount('0', '', '');
|
||||||
|
} else {
|
||||||
|
buildAmount(valueFormatted, '', '');
|
||||||
|
var start = numberWithCommas(valueFormatted.slice(0, -5));
|
||||||
|
var middle = valueFormatted.slice(-5, -2);
|
||||||
|
var end = valueFormatted.substr(valueFormatted.length - 2);
|
||||||
|
buildAmount(start, middle, end);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}]
|
||||||
|
};
|
||||||
|
}
|
||||||
|
]);
|
||||||
27
src/sass/components/amount.scss
Normal file
27
src/sass/components/amount.scss
Normal file
|
|
@ -0,0 +1,27 @@
|
||||||
|
.amount {
|
||||||
|
.start,
|
||||||
|
.middle,
|
||||||
|
.end,
|
||||||
|
.currency {
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.start {
|
||||||
|
font-size: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.middle {
|
||||||
|
font-size: 0.7857em;
|
||||||
|
margin-left: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.end {
|
||||||
|
font-size: 0.7857em;
|
||||||
|
margin-left: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.currency {
|
||||||
|
font-size: 1em;
|
||||||
|
margin-left: 5px;
|
||||||
|
}
|
||||||
|
}
|
||||||
1
src/sass/components/components.scss
Normal file
1
src/sass/components/components.scss
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
@import "amount.scss";
|
||||||
|
|
@ -9,4 +9,5 @@
|
||||||
@import "mixins/mixins";
|
@import "mixins/mixins";
|
||||||
@import "views/views";
|
@import "views/views";
|
||||||
@import "directives/directives";
|
@import "directives/directives";
|
||||||
|
@import "components/components";
|
||||||
@import "shame";
|
@import "shame";
|
||||||
|
|
|
||||||
541
www/css/main.css
541
www/css/main.css
|
|
@ -9970,7 +9970,7 @@ ion-nav-bar.hide {
|
||||||
.card {
|
.card {
|
||||||
margin: 20px 14px; }
|
margin: 20px 14px; }
|
||||||
|
|
||||||
ion-view.deflash-blue:before, ion-view#view-amount:before, ion-view#view-confirm:before, ion-view#copayers-invitation:before, ion-view#tab-home:before, ion-view#tab-receive:before, ion-view#tab-send:before, ion-view.settings:before, ion-view#bitpayCard:before, ion-view#bitpayCard-intro:before, ion-view#view-address-book:before, ion-view#addresses:before, ion-view#send-feedback:before, ion-view#choose-fee-level:before, ion-view#txp-details:before, ion-view#coinbase:before, ion-view#glidera:before, ion-view#amazon:before, ion-view#mercadolibre:before, ion-view#custom-amount:before {
|
ion-view.deflash-blue:before, ion-view#view-amount:before, ion-view#view-confirm:before, ion-view#copayers-invitation:before, ion-view#tab-home:before, ion-view#tab-receive:before, ion-view#tab-send:before, ion-view.settings:before, ion-view#bitpayCard:before, ion-view#bitpayCard-intro:before, ion-view#view-address-book:before, ion-view#addresses:before, ion-view#choose-fee-level:before, ion-view#txp-details:before, ion-view#coinbase:before, ion-view#glidera:before, ion-view#amazon:before, ion-view#mercadolibre:before, ion-view#custom-amount:before {
|
||||||
content: " ";
|
content: " ";
|
||||||
display: block;
|
display: block;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
|
@ -9980,7 +9980,7 @@ ion-view.deflash-blue:before, ion-view#view-amount:before, ion-view#view-confirm
|
||||||
height: 44px;
|
height: 44px;
|
||||||
background-color: #fab915; }
|
background-color: #fab915; }
|
||||||
|
|
||||||
.platform-ios.platform-cordova:not(.fullscreen) ion-view.deflash-blue:before, .platform-ios.platform-cordova:not(.fullscreen) ion-view#view-amount:before, .platform-ios.platform-cordova:not(.fullscreen) ion-view#view-confirm:before, .platform-ios.platform-cordova:not(.fullscreen) ion-view#copayers-invitation:before, .platform-ios.platform-cordova:not(.fullscreen) ion-view#tab-home:before, .platform-ios.platform-cordova:not(.fullscreen) ion-view#tab-receive:before, .platform-ios.platform-cordova:not(.fullscreen) ion-view#tab-send:before, .platform-ios.platform-cordova:not(.fullscreen) ion-view.settings:before, .platform-ios.platform-cordova:not(.fullscreen) ion-view#bitpayCard:before, .platform-ios.platform-cordova:not(.fullscreen) ion-view#bitpayCard-intro:before, .platform-ios.platform-cordova:not(.fullscreen) ion-view#view-address-book:before, .platform-ios.platform-cordova:not(.fullscreen) ion-view#addresses:before, .platform-ios.platform-cordova:not(.fullscreen) ion-view#send-feedback:before, .platform-ios.platform-cordova:not(.fullscreen) ion-view#choose-fee-level:before, .platform-ios.platform-cordova:not(.fullscreen) ion-view#txp-details:before, .platform-ios.platform-cordova:not(.fullscreen) ion-view#coinbase:before, .platform-ios.platform-cordova:not(.fullscreen) ion-view#glidera:before, .platform-ios.platform-cordova:not(.fullscreen) ion-view#amazon:before, .platform-ios.platform-cordova:not(.fullscreen) ion-view#mercadolibre:before, .platform-ios.platform-cordova:not(.fullscreen) ion-view#custom-amount:before {
|
.platform-ios.platform-cordova:not(.fullscreen) ion-view.deflash-blue:before, .platform-ios.platform-cordova:not(.fullscreen) ion-view#view-amount:before, .platform-ios.platform-cordova:not(.fullscreen) ion-view#view-confirm:before, .platform-ios.platform-cordova:not(.fullscreen) ion-view#copayers-invitation:before, .platform-ios.platform-cordova:not(.fullscreen) ion-view#tab-home:before, .platform-ios.platform-cordova:not(.fullscreen) ion-view#tab-receive:before, .platform-ios.platform-cordova:not(.fullscreen) ion-view#tab-send:before, .platform-ios.platform-cordova:not(.fullscreen) ion-view.settings:before, .platform-ios.platform-cordova:not(.fullscreen) ion-view#bitpayCard:before, .platform-ios.platform-cordova:not(.fullscreen) ion-view#bitpayCard-intro:before, .platform-ios.platform-cordova:not(.fullscreen) ion-view#view-address-book:before, .platform-ios.platform-cordova:not(.fullscreen) ion-view#addresses:before, .platform-ios.platform-cordova:not(.fullscreen) ion-view#choose-fee-level:before, .platform-ios.platform-cordova:not(.fullscreen) ion-view#txp-details:before, .platform-ios.platform-cordova:not(.fullscreen) ion-view#coinbase:before, .platform-ios.platform-cordova:not(.fullscreen) ion-view#glidera:before, .platform-ios.platform-cordova:not(.fullscreen) ion-view#amazon:before, .platform-ios.platform-cordova:not(.fullscreen) ion-view#mercadolibre:before, .platform-ios.platform-cordova:not(.fullscreen) ion-view#custom-amount:before {
|
||||||
height: 64px; }
|
height: 64px; }
|
||||||
|
|
||||||
.just-a-hint, .icon.bp-arrow-right, .icon.bp-arrow-down, .icon.bp-arrow-up {
|
.just-a-hint, .icon.bp-arrow-right, .icon.bp-arrow-down, .icon.bp-arrow-up {
|
||||||
|
|
@ -10071,10 +10071,12 @@ ion-view.deflash-blue:before, ion-view#view-amount:before, ion-view#view-confirm
|
||||||
.loading .spinner svg {
|
.loading .spinner svg {
|
||||||
margin-top: 0; }
|
margin-top: 0; }
|
||||||
|
|
||||||
.button.button-primary.button-standard, .button.button-secondary.button-standard, .button.button-light.button-standard, .button.button-assertive.button-standard,
|
.button.button-primary.button-standard, .button.button-secondary.button-standard, .button.button-light.button-standard, .button.button-white.button-standard, .button.button-green.button-standard, .button.button-assertive.button-standard,
|
||||||
.onboarding .button.button-primary.button-standard,
|
.onboarding .button.button-primary.button-standard,
|
||||||
.onboarding .button.button-secondary.button-standard,
|
.onboarding .button.button-secondary.button-standard,
|
||||||
.onboarding .button.button-light.button-standard,
|
.onboarding .button.button-light.button-standard,
|
||||||
|
.onboarding .button.button-white.button-standard,
|
||||||
|
.onboarding .button.button-green.button-standard,
|
||||||
.onboarding .button.button-assertive.button-standard {
|
.onboarding .button.button-assertive.button-standard {
|
||||||
width: 85%;
|
width: 85%;
|
||||||
max-width: 300px;
|
max-width: 300px;
|
||||||
|
|
@ -10118,10 +10120,12 @@ ion-view.deflash-blue:before, ion-view#view-amount:before, ion-view#view-confirm
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
color: #fff; }
|
color: #fff; }
|
||||||
|
|
||||||
.button.button-primary.button-standard + .button-standard, .button.button-secondary.button-standard + .button-standard, .button.button-light.button-standard + .button-standard, .button.button-assertive.button-standard + .button-standard,
|
.button.button-primary.button-standard + .button-standard, .button.button-secondary.button-standard + .button-standard, .button.button-light.button-standard + .button-standard, .button.button-white.button-standard + .button-standard, .button.button-green.button-standard + .button-standard, .button.button-assertive.button-standard + .button-standard,
|
||||||
.onboarding .button.button-primary.button-standard + .button-standard,
|
.onboarding .button.button-primary.button-standard + .button-standard,
|
||||||
.onboarding .button.button-secondary.button-standard + .button-standard,
|
.onboarding .button.button-secondary.button-standard + .button-standard,
|
||||||
.onboarding .button.button-light.button-standard + .button-standard,
|
.onboarding .button.button-light.button-standard + .button-standard,
|
||||||
|
.onboarding .button.button-white.button-standard + .button-standard,
|
||||||
|
.onboarding .button.button-green.button-standard + .button-standard,
|
||||||
.onboarding .button.button-assertive.button-standard + .button-standard {
|
.onboarding .button.button-assertive.button-standard + .button-standard {
|
||||||
margin-top: 1rem; }
|
margin-top: 1rem; }
|
||||||
|
|
||||||
|
|
@ -10183,8 +10187,67 @@ ion-view.deflash-blue:before, ion-view#view-amount:before, ion-view#view-confirm
|
||||||
font-size: 0.7em !important;
|
font-size: 0.7em !important;
|
||||||
display: inline !important; }
|
display: inline !important; }
|
||||||
|
|
||||||
.button.button-full {
|
.button {
|
||||||
|
border-radius: 6px; }
|
||||||
|
.button.button-full {
|
||||||
display: block; }
|
display: block; }
|
||||||
|
.button-green {
|
||||||
|
border-color: #FFF;
|
||||||
|
background-color: #719561;
|
||||||
|
color: #FFF;
|
||||||
|
border: 0px;
|
||||||
|
box-shadow: 0 2px 11px 0 #C1C1C1; }
|
||||||
|
.button-green:hover {
|
||||||
|
color: #FFF;
|
||||||
|
text-decoration: none; }
|
||||||
|
.button-green.active, .button-green.activated {
|
||||||
|
border-color: #FFF;
|
||||||
|
background-color: #606060; }
|
||||||
|
.button-green.button-clear {
|
||||||
|
border-color: transparent;
|
||||||
|
background: none;
|
||||||
|
box-shadow: none;
|
||||||
|
color: #FFF; }
|
||||||
|
.button-green.button-icon {
|
||||||
|
border-color: transparent;
|
||||||
|
background: none; }
|
||||||
|
.button-green.button-outline {
|
||||||
|
border-color: #C1C1C1;
|
||||||
|
background: transparent;
|
||||||
|
color: #C1C1C1; }
|
||||||
|
.button-green.button-outline.active, .button-green.button-outline.activated {
|
||||||
|
background-color: #C1C1C1;
|
||||||
|
box-shadow: none;
|
||||||
|
color: #fff; }
|
||||||
|
.button-white {
|
||||||
|
border-color: #C1C1C1;
|
||||||
|
background-color: #FFF;
|
||||||
|
color: #606060;
|
||||||
|
box-shadow: 0 2px 11px 0 #C1C1C1; }
|
||||||
|
.button-white:hover {
|
||||||
|
color: #606060;
|
||||||
|
text-decoration: none; }
|
||||||
|
.button-white.active, .button-white.activated {
|
||||||
|
border-color: #FFF;
|
||||||
|
background-color: #C1C1C1; }
|
||||||
|
.button-white.button-clear {
|
||||||
|
border-color: transparent;
|
||||||
|
background: none;
|
||||||
|
box-shadow: none;
|
||||||
|
color: #FFF; }
|
||||||
|
.button-white.button-icon {
|
||||||
|
border-color: transparent;
|
||||||
|
background: none; }
|
||||||
|
.button-white.button-outline {
|
||||||
|
border-color: #C1C1C1;
|
||||||
|
background: transparent;
|
||||||
|
color: #C1C1C1; }
|
||||||
|
.button-white.button-outline.active, .button-white.button-outline.activated {
|
||||||
|
background-color: #C1C1C1;
|
||||||
|
box-shadow: none;
|
||||||
|
color: #fff; }
|
||||||
|
.button-white.activated {
|
||||||
|
color: #FFF; }
|
||||||
|
|
||||||
.button-clear {
|
.button-clear {
|
||||||
background: none !important; }
|
background: none !important; }
|
||||||
|
|
@ -10197,6 +10260,22 @@ textarea.d-block {
|
||||||
display: block;
|
display: block;
|
||||||
width: 100%; }
|
width: 100%; }
|
||||||
|
|
||||||
|
qrcode {
|
||||||
|
position: relative; }
|
||||||
|
qrcode.qr-overlay::before {
|
||||||
|
content: "";
|
||||||
|
background-size: 100% 100%;
|
||||||
|
display: block;
|
||||||
|
left: 88px;
|
||||||
|
margin-top: 88px;
|
||||||
|
width: 44px;
|
||||||
|
height: 44px;
|
||||||
|
position: absolute; }
|
||||||
|
qrcode.qr-overlay--bch::before {
|
||||||
|
background-image: url("../img/qr-overlay-bch.png"); }
|
||||||
|
qrcode.qr-overlay--btc::before {
|
||||||
|
background-image: url("../img/qr-overlay-btc.png"); }
|
||||||
|
|
||||||
.center-block {
|
.center-block {
|
||||||
float: none;
|
float: none;
|
||||||
margin: 0 auto; }
|
margin: 0 auto; }
|
||||||
|
|
@ -10237,6 +10316,10 @@ textarea.d-block {
|
||||||
font-weight: 700; }
|
font-weight: 700; }
|
||||||
#tab-home .card > .item-heading .icon, #tab-home .list > .item-heading .icon, #tab-send .card > .item-heading .icon, #tab-send .list > .item-heading .icon {
|
#tab-home .card > .item-heading .icon, #tab-home .list > .item-heading .icon, #tab-send .card > .item-heading .icon, #tab-send .list > .item-heading .icon {
|
||||||
color: #667; }
|
color: #667; }
|
||||||
|
#tab-home .card > .item-heading .subtitle, #tab-home .list > .item-heading .subtitle, #tab-send .card > .item-heading .subtitle, #tab-send .list > .item-heading .subtitle {
|
||||||
|
color: #667;
|
||||||
|
font-size: 12px;
|
||||||
|
font-weight: 300; }
|
||||||
|
|
||||||
#view-add .item {
|
#view-add .item {
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
|
|
@ -10260,21 +10343,19 @@ textarea.d-block {
|
||||||
#view-add .bg.join {
|
#view-add .bg.join {
|
||||||
padding: 10px; }
|
padding: 10px; }
|
||||||
|
|
||||||
#view-amount .recipient-label {
|
#view-amount {
|
||||||
|
background: #494949; }
|
||||||
|
#view-amount .recipient-label {
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
padding-bottom: 0;
|
padding-bottom: 0;
|
||||||
color: #667; }
|
color: #667; }
|
||||||
|
#view-amount .item-no-bottom-border + .item {
|
||||||
#view-amount .item-no-bottom-border + .item {
|
|
||||||
border-top: 0; }
|
border-top: 0; }
|
||||||
|
#view-amount .icon-bitpay-card {
|
||||||
#view-amount .icon-bitpay-card {
|
|
||||||
background-image: url("../img/icon-bitpay.svg"); }
|
background-image: url("../img/icon-bitpay.svg"); }
|
||||||
|
#view-amount .icon-amazon {
|
||||||
#view-amount .icon-amazon {
|
|
||||||
background-image: url("../img/icon-amazon.svg"); }
|
background-image: url("../img/icon-amazon.svg"); }
|
||||||
|
@media (max-width: 480px) {
|
||||||
@media (max-width: 480px) {
|
|
||||||
#view-amount .bitcoin-address {
|
#view-amount .bitcoin-address {
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
padding-left: 48px; }
|
padding-left: 48px; }
|
||||||
|
|
@ -10287,21 +10368,17 @@ textarea.d-block {
|
||||||
width: 30px;
|
width: 30px;
|
||||||
height: 30px;
|
height: 30px;
|
||||||
box-shadow: none; } }
|
box-shadow: none; } }
|
||||||
|
@media (max-width: 320px) {
|
||||||
@media (max-width: 320px) {
|
|
||||||
#view-amount .bitcoin-address > span:last-child {
|
#view-amount .bitcoin-address > span:last-child {
|
||||||
margin-left: -2px; } }
|
margin-left: -2px; } }
|
||||||
|
#view-amount .send-gravatar {
|
||||||
#view-amount .send-gravatar {
|
|
||||||
left: 11px;
|
left: 11px;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 10px; }
|
top: 10px; }
|
||||||
|
#view-amount .amount span input {
|
||||||
#view-amount .amount span input {
|
|
||||||
display: inline;
|
display: inline;
|
||||||
width: 120px; }
|
width: 120px; }
|
||||||
|
#view-amount .amount-pane-recipient {
|
||||||
#view-amount .amount-pane-recipient {
|
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 95px;
|
top: 95px;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
|
|
@ -10349,8 +10426,7 @@ textarea.d-block {
|
||||||
display: inline-block; }
|
display: inline-block; }
|
||||||
#view-amount .amount-pane-recipient .amount > div:first-child {
|
#view-amount .amount-pane-recipient .amount > div:first-child {
|
||||||
display: inherit; } }
|
display: inherit; } }
|
||||||
|
#view-amount .amount-pane-no-recipient {
|
||||||
#view-amount .amount-pane-no-recipient {
|
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 0;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
|
|
@ -10380,8 +10456,7 @@ textarea.d-block {
|
||||||
top: 66px; }
|
top: 66px; }
|
||||||
#view-amount .amount-pane-no-recipient .amount .light {
|
#view-amount .amount-pane-no-recipient .amount .light {
|
||||||
color: #9b9bab; }
|
color: #9b9bab; }
|
||||||
|
#view-amount .amount {
|
||||||
#view-amount .amount {
|
|
||||||
padding-top: 10px;
|
padding-top: 10px;
|
||||||
padding-bottom: 10px; }
|
padding-bottom: 10px; }
|
||||||
#view-amount .amount .icon-toggle {
|
#view-amount .amount .icon-toggle {
|
||||||
|
|
@ -10454,8 +10529,7 @@ textarea.d-block {
|
||||||
#view-amount .amount__result-equiv {
|
#view-amount .amount__result-equiv {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
font-size: 16px; } }
|
font-size: 16px; } }
|
||||||
|
#view-amount .scroll-content {
|
||||||
#view-amount .scroll-content {
|
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column; }
|
flex-direction: column; }
|
||||||
#view-amount .scroll-content .send-amount {
|
#view-amount .scroll-content .send-amount {
|
||||||
|
|
@ -10600,9 +10674,14 @@ textarea.d-block {
|
||||||
@media (max-height: 480px) {
|
@media (max-height: 480px) {
|
||||||
#view-amount .scroll-content .keypad-container .keypad {
|
#view-amount .scroll-content .keypad-container .keypad {
|
||||||
font-size: 12px; } }
|
font-size: 12px; } }
|
||||||
|
#view-amount ion-content {
|
||||||
|
margin-bottom: constant(safe-area-inset-bottom);
|
||||||
|
/* iOS 11.0 */
|
||||||
|
margin-bottom: env(safe-area-inset-bottom);
|
||||||
|
/* iOS 11.2 */ }
|
||||||
|
|
||||||
#view-confirm {
|
#view-confirm {
|
||||||
background-color: #ffffff; }
|
background-color: #494949; }
|
||||||
#view-confirm .item-note {
|
#view-confirm .item-note {
|
||||||
float: none; }
|
float: none; }
|
||||||
#view-confirm .item-note .fee-rate {
|
#view-confirm .item-note .fee-rate {
|
||||||
|
|
@ -10622,6 +10701,13 @@ textarea.d-block {
|
||||||
margin-top: -3px; }
|
margin-top: -3px; }
|
||||||
#view-confirm .toggle {
|
#view-confirm .toggle {
|
||||||
cursor: pointer; }
|
cursor: pointer; }
|
||||||
|
#view-confirm ion-content {
|
||||||
|
background-color: #ffffff; }
|
||||||
|
#view-confirm slide-to-accept, #view-confirm slide-to-accept-success {
|
||||||
|
margin-bottom: constant(safe-area-inset-bottom);
|
||||||
|
/* iOS 11.0 */
|
||||||
|
margin-bottom: env(safe-area-inset-bottom);
|
||||||
|
/* iOS 11.2 */ }
|
||||||
|
|
||||||
#copayers-invitation .button-share {
|
#copayers-invitation .button-share {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
|
|
@ -10728,6 +10814,8 @@ textarea.d-block {
|
||||||
|
|
||||||
#tab-home .card-banner {
|
#tab-home .card-banner {
|
||||||
padding: 0; }
|
padding: 0; }
|
||||||
|
#tab-home .card-banner svg {
|
||||||
|
margin: 40px auto 40px; }
|
||||||
#tab-home .card-banner__img {
|
#tab-home .card-banner__img {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
display: block; }
|
display: block; }
|
||||||
|
|
@ -10951,123 +11039,154 @@ textarea.d-block {
|
||||||
#cordova-plugin-qrscanner-still, #cordova-plugin-qrscanner-video-preview {
|
#cordova-plugin-qrscanner-still, #cordova-plugin-qrscanner-video-preview {
|
||||||
background-color: #fab915 !important; }
|
background-color: #fab915 !important; }
|
||||||
|
|
||||||
#tab-send .input input {
|
#tab-send-header {
|
||||||
|
height: 300px;
|
||||||
|
width: 100%; }
|
||||||
|
|
||||||
|
#tab-send-contacts {
|
||||||
|
height: calc(100vh - 300px - 50px - 44px);
|
||||||
|
/* screen size - button container - bottom-tab-menu - header top */
|
||||||
|
overflow: scroll; }
|
||||||
|
#tab-send-contacts.ios {
|
||||||
|
height: calc(100vh - 300px - 50px - 44px - 18px); }
|
||||||
|
|
||||||
|
#tab-send .input {
|
||||||
|
width: 100%; }
|
||||||
|
#tab-send .input input {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: auto; }
|
height: 57px;
|
||||||
|
background: #FFF;
|
||||||
#tab-send .input.item {
|
border: 1px #D9D9D9 solid; }
|
||||||
height: 55px; }
|
#tab-send .input input::placeholder {
|
||||||
|
color: #DCDCDC; }
|
||||||
#tab-send .input i.left {
|
#tab-send .input i.left {
|
||||||
padding-left: 15px; }
|
padding-left: 15px; }
|
||||||
|
#tab-send .input i.qr {
|
||||||
#tab-send .input i.qr {
|
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
cursor: hand;
|
cursor: hand;
|
||||||
padding-right: 5px; }
|
padding-right: 5px; }
|
||||||
|
|
||||||
#tab-send .qr-scan-icon {
|
#tab-send .send-wrapper {
|
||||||
cursor: pointer;
|
padding: 18px 9px 9px 9px;
|
||||||
cursor: hand;
|
|
||||||
border-left: 1px solid #e4e4e4;
|
|
||||||
padding-left: 10px; }
|
|
||||||
|
|
||||||
#tab-send .qr-icon {
|
|
||||||
line-height: 20px; }
|
|
||||||
|
|
||||||
#tab-send .zero-state-cta {
|
|
||||||
padding-bottom: 3vh;
|
|
||||||
left: 0; }
|
|
||||||
|
|
||||||
#tab-send .send-heading {
|
|
||||||
font-size: 14px;
|
|
||||||
font-weight: bold;
|
|
||||||
padding: 0 0 16px 0;
|
|
||||||
border: none; }
|
|
||||||
|
|
||||||
#tab-send .send-header-wrapper {
|
|
||||||
padding: 10px;
|
|
||||||
background-color: white;
|
|
||||||
box-shadow: 0px 5px 10px 0px #cccccc; }
|
|
||||||
|
|
||||||
#tab-send .search-wrapper {
|
|
||||||
background-color: #f2f2f2;
|
background-color: #f2f2f2;
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
border: none; }
|
border: none; }
|
||||||
#tab-send .search-wrapper .svg#Bitcoin_Symbol {
|
#tab-send .send-wrapper:after {
|
||||||
width: 14px; }
|
display: block;
|
||||||
#tab-send .search-wrapper .svg#Bitcoin_Symbol .st0 {
|
position: relative;
|
||||||
fill: #cccccc; }
|
height: 1px;
|
||||||
#tab-send .search-wrapper.focus {
|
background: #DEDEDE;
|
||||||
background: none; }
|
bottom: 0;
|
||||||
#tab-send .search-wrapper.focus .svg#Bitcoin_Symbol {
|
content: '';
|
||||||
display: none; }
|
margin: 10px 6px 0px; }
|
||||||
#tab-send .search-wrapper.focus .search-input {
|
#tab-send .send-wrapper.focus .search-input {
|
||||||
padding-left: 30px; }
|
padding-left: 30px; }
|
||||||
#tab-send .search-wrapper.focus .search-input:focus::-webkit-input-placeholder {
|
#tab-send .send-wrapper.focus .search-input:focus::-webkit-input-placeholder {
|
||||||
opacity: 0; }
|
opacity: 0; }
|
||||||
|
#tab-send .send-wrapper .buttons {
|
||||||
#tab-send .abs-v-center {
|
margin: auto;
|
||||||
position: absolute;
|
margin-top: 18px; }
|
||||||
top: 50%;
|
#tab-send .send-wrapper .buttons .button {
|
||||||
transform: translateY(-50%); }
|
height: 60px;
|
||||||
|
line-height: 16px;
|
||||||
|
margin-right: 0px;
|
||||||
|
width: 95%;
|
||||||
|
max-width: none;
|
||||||
|
padding: 2px; }
|
||||||
|
#tab-send .send-wrapper .buttons .button-clipboard-paste {
|
||||||
|
margin-left: 0; }
|
||||||
|
#tab-send .send-wrapper .buttons .button-clipboard-paste .address {
|
||||||
|
display: none; }
|
||||||
|
#tab-send .send-wrapper .buttons .button-clipboard-paste .icon {
|
||||||
|
background: url(../img/icon-clipboard-paste.svg);
|
||||||
|
width: 15px;
|
||||||
|
height: 19px;
|
||||||
|
display: inline-block;
|
||||||
|
margin-bottom: 4px; }
|
||||||
|
#tab-send .send-wrapper .buttons .button-clipboard-paste.contains-address, #tab-send .send-wrapper .buttons .button-clipboard-paste.contains-content {
|
||||||
|
background: #FAB915;
|
||||||
|
color: #FFF !important;
|
||||||
|
border: 0;
|
||||||
|
box-shadow: 0 2px 11px 0 #C1C1C1; }
|
||||||
|
#tab-send .send-wrapper .buttons .button-clipboard-paste.contains-address .address, #tab-send .send-wrapper .buttons .button-clipboard-paste.contains-content .address {
|
||||||
|
display: none; }
|
||||||
|
#tab-send .send-wrapper .buttons .button-clipboard-paste.contains-address .icon, #tab-send .send-wrapper .buttons .button-clipboard-paste.contains-content .icon {
|
||||||
|
background: url(../img/icon-clipboard-paste-white.svg); }
|
||||||
|
#tab-send .send-wrapper .buttons .button-clipboard-paste.contains-address.contains-address .address, #tab-send .send-wrapper .buttons .button-clipboard-paste.contains-content.contains-address .address {
|
||||||
|
display: inline; }
|
||||||
|
#tab-send .send-wrapper .buttons .button-clipboard-paste.contains-address.contains-address .non-address, #tab-send .send-wrapper .buttons .button-clipboard-paste.contains-content.contains-address .non-address {
|
||||||
|
display: none; }
|
||||||
|
#tab-send .send-wrapper .buttons .button span {
|
||||||
|
font-size: 14px; }
|
||||||
|
#tab-send .send-wrapper .buttons .button img {
|
||||||
|
height: 16px;
|
||||||
|
width: auto;
|
||||||
|
margin: 2px 0 4px; }
|
||||||
|
#tab-send .send-wrapper .buttons .button-qr {
|
||||||
|
font-weight: bold;
|
||||||
|
max-width: none;
|
||||||
|
width: 100%;
|
||||||
|
height: 95px;
|
||||||
|
margin-top: 20px; }
|
||||||
|
#tab-send .send-wrapper .buttons .button-qr img {
|
||||||
|
vertical-align: middle;
|
||||||
|
margin-right: 12px;
|
||||||
|
width: 43px;
|
||||||
|
height: 43px; }
|
||||||
|
#tab-send .send-wrapper .buttons .button-qr span {
|
||||||
|
font-size: 19px; }
|
||||||
|
|
||||||
#tab-send .search-input {
|
#tab-send .search-input {
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
padding-left: 30px; }
|
padding-left: 30px; }
|
||||||
|
|
||||||
#tab-send .separator-left {
|
|
||||||
border-left: 1px solid #d9d9df;
|
|
||||||
padding-left: 10px;
|
|
||||||
height: 70%; }
|
|
||||||
|
|
||||||
#tab-send .bitcoin-address {
|
|
||||||
border-top: none;
|
|
||||||
padding-bottom: .5rem; }
|
|
||||||
@media (max-width: 480px) {
|
|
||||||
#tab-send .bitcoin-address input {
|
|
||||||
font-size: 14px; } }
|
|
||||||
#tab-send .bitcoin-address .icon {
|
|
||||||
line-height: 31px;
|
|
||||||
padding-top: 2px;
|
|
||||||
padding-bottom: 1px; }
|
|
||||||
|
|
||||||
#tab-send .show-more {
|
|
||||||
text-align: center;
|
|
||||||
padding: 20px;
|
|
||||||
font-size: 16px;
|
|
||||||
color: #387ef5;
|
|
||||||
font-weight: bold; }
|
|
||||||
|
|
||||||
#tab-send .sendTip {
|
#tab-send .sendTip {
|
||||||
|
padding-top: 5vh;
|
||||||
text-align: center; }
|
text-align: center; }
|
||||||
#tab-send .sendTip > .item-heading {
|
|
||||||
margin-top: 10px;
|
|
||||||
background: 0 none; }
|
|
||||||
#tab-send .sendTip img {
|
|
||||||
content: url("../img/app/tab-icons/ico-send-selected.svg"); }
|
|
||||||
#tab-send .sendTip .item {
|
#tab-send .sendTip .item {
|
||||||
border-style: none; }
|
border-style: none; }
|
||||||
#tab-send .sendTip > .title {
|
#tab-send .sendTip > .title {
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
font-weight: bold;
|
|
||||||
color: #445;
|
color: #445;
|
||||||
margin: 20px 10px; }
|
margin: 20px 10px; }
|
||||||
#tab-send .sendTip > .subtitle {
|
#tab-send .sendTip > .subtitle {
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
line-height: 1.5em;
|
line-height: 1.5em;
|
||||||
font-weight: 300;
|
font-weight: 300;
|
||||||
color: #445;
|
color: #6F6F70;
|
||||||
margin: 20px 1em 2.5em; }
|
margin: 20px 1em 2.5em; }
|
||||||
#tab-send .sendTip .big-icon-svg .bg.green {
|
#tab-send .sendTip .big-icon-svg .bg.green {
|
||||||
padding: 0 10px;
|
padding: 0 10px;
|
||||||
box-shadow: none; }
|
box-shadow: none; }
|
||||||
|
#tab-send .sendTip .buttons {
|
||||||
|
margin-top: 18px; }
|
||||||
|
#tab-send .sendTip .buttons .button {
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 19px; }
|
||||||
|
#tab-send .sendTip .button-first-contact img {
|
||||||
|
height: 19px;
|
||||||
|
width: 19px;
|
||||||
|
margin-right: 6px;
|
||||||
|
vertical-align: sub; }
|
||||||
|
|
||||||
|
#tab-send .item-heading {
|
||||||
|
line-height: 16px;
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: bold; }
|
||||||
|
#tab-send .item-heading .subtitle {
|
||||||
|
color: #B5B2B2;
|
||||||
|
font-size: 12px;
|
||||||
|
font-weight: 300; }
|
||||||
|
|
||||||
#tab-send .list .item {
|
#tab-send .list .item {
|
||||||
|
font-weight: 600;
|
||||||
color: #444;
|
color: #444;
|
||||||
border-top: none;
|
padding-top: 0.6rem;
|
||||||
padding-top: 1.5rem;
|
padding-bottom: 0.6rem; }
|
||||||
padding-bottom: 1.5rem; }
|
#tab-send .list .item p {
|
||||||
|
font-weight: normal; }
|
||||||
|
#tab-send .list .item.item-icon-left {
|
||||||
|
padding-left: 64px; }
|
||||||
#tab-send .list .item .big-icon-svg {
|
#tab-send .list .item .big-icon-svg {
|
||||||
left: 5px; }
|
left: 5px; }
|
||||||
#tab-send .list .item .big-icon-svg > .bg {
|
#tab-send .list .item .big-icon-svg > .bg {
|
||||||
|
|
@ -11077,7 +11196,7 @@ textarea.d-block {
|
||||||
#tab-send .list .item:before {
|
#tab-send .list .item:before {
|
||||||
display: block;
|
display: block;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
width: 80%;
|
width: 100%;
|
||||||
height: 1px;
|
height: 1px;
|
||||||
background: rgba(221, 221, 221, 0.3);
|
background: rgba(221, 221, 221, 0.3);
|
||||||
top: 0;
|
top: 0;
|
||||||
|
|
@ -11096,6 +11215,28 @@ textarea.d-block {
|
||||||
#tab-send .scroll {
|
#tab-send .scroll {
|
||||||
height: 100%; }
|
height: 100%; }
|
||||||
|
|
||||||
|
#tab-send .card.contacts {
|
||||||
|
margin: 4px 4px 16px 4px;
|
||||||
|
border-radius: 6px;
|
||||||
|
box-shadow: 0px 2px 1px 0 #C1C1C1; }
|
||||||
|
#tab-send .card.contacts .gravatar {
|
||||||
|
border-radius: 30px;
|
||||||
|
height: 40px;
|
||||||
|
width: 40px; }
|
||||||
|
|
||||||
|
@media only screen and (min-device-width: 320px) and (max-device-width: 568px) {
|
||||||
|
#tab-send .send-wrapper .buttons .button-qr {
|
||||||
|
height: 60px; }
|
||||||
|
#tab-send .send-wrapper .buttons .button-qr span {
|
||||||
|
font-size: 16px; }
|
||||||
|
#tab-send #tab-send-header {
|
||||||
|
height: 270px; }
|
||||||
|
#tab-send #tab-send-contacts {
|
||||||
|
height: calc(100vh - 270px - 50px - 44px);
|
||||||
|
/* screen size - button container - bottom-tab-menu - header top */ }
|
||||||
|
#tab-send #tab-send-contacts.ios {
|
||||||
|
height: calc(100vh - 270px - 50px - 44px - 18px); } }
|
||||||
|
|
||||||
.settings .icon-bitpay {
|
.settings .icon-bitpay {
|
||||||
background-image: url("../img/icon-bitpay.svg"); }
|
background-image: url("../img/icon-bitpay.svg"); }
|
||||||
|
|
||||||
|
|
@ -11604,7 +11745,8 @@ textarea.d-block {
|
||||||
fill: white; }
|
fill: white; }
|
||||||
#walletDetails .bp-content {
|
#walletDetails .bp-content {
|
||||||
position: relative;
|
position: relative;
|
||||||
height: 100%; }
|
height: 100%;
|
||||||
|
height: calc(100% - env(safe-area-inset-bottom) * 2); }
|
||||||
#walletDetails .bp-content.status-bar {
|
#walletDetails .bp-content.status-bar {
|
||||||
margin-top: 20px; }
|
margin-top: 20px; }
|
||||||
#walletDetails .bar-header {
|
#walletDetails .bar-header {
|
||||||
|
|
@ -11618,7 +11760,8 @@ textarea.d-block {
|
||||||
background-color: inherit !important; }
|
background-color: inherit !important; }
|
||||||
#walletDetails ion-content {
|
#walletDetails ion-content {
|
||||||
padding-top: 0;
|
padding-top: 0;
|
||||||
top: 0; }
|
top: 0;
|
||||||
|
margin-bottom: 16px; }
|
||||||
#walletDetails ion-content.collapsible {
|
#walletDetails ion-content.collapsible {
|
||||||
margin-top: 210px; }
|
margin-top: 210px; }
|
||||||
#walletDetails ion-content .scroll {
|
#walletDetails ion-content .scroll {
|
||||||
|
|
@ -12211,7 +12354,6 @@ a.item {
|
||||||
position: relative;
|
position: relative;
|
||||||
height: 70px;
|
height: 70px;
|
||||||
border-color: #fab915;
|
border-color: #fab915;
|
||||||
background-color: #fab915;
|
|
||||||
padding-top: 20px;
|
padding-top: 20px;
|
||||||
margin-bottom: 50px;
|
margin-bottom: 50px;
|
||||||
text-align: center; }
|
text-align: center; }
|
||||||
|
|
@ -13013,74 +13155,13 @@ a.item {
|
||||||
.onboarding-illustration-backup-warning {
|
.onboarding-illustration-backup-warning {
|
||||||
background-image: url(../img/app/backup-warning.svg); }
|
background-image: url(../img/app/backup-warning.svg); }
|
||||||
|
|
||||||
#rate-card .item-heading {
|
#share-app {
|
||||||
font-weight: 700; }
|
|
||||||
|
|
||||||
#rate-card .row {
|
|
||||||
border: none; }
|
|
||||||
|
|
||||||
#rate-card .item-icon-right {
|
|
||||||
margin: 0; }
|
|
||||||
|
|
||||||
#rate-card .feedback-flow-button {
|
|
||||||
margin-bottom: 20px; }
|
|
||||||
|
|
||||||
#rate-card .icon-svg > img {
|
|
||||||
height: 1.8rem;
|
|
||||||
margin-bottom: 5px; }
|
|
||||||
|
|
||||||
#send-feedback {
|
|
||||||
background-color: #ffffff; }
|
|
||||||
#send-feedback .row {
|
|
||||||
border: none; }
|
|
||||||
#send-feedback .skip {
|
|
||||||
color: rgba(255, 255, 255, 0.3); }
|
|
||||||
#send-feedback .feedback-heading {
|
|
||||||
padding-top: 20px; }
|
|
||||||
#send-feedback .feedback-title {
|
|
||||||
padding-left: 10px;
|
|
||||||
font-size: 20px;
|
|
||||||
font-weight: bold;
|
|
||||||
color: #445; }
|
|
||||||
#send-feedback .rating {
|
|
||||||
text-align: right;
|
|
||||||
padding-right: 15px; }
|
|
||||||
#send-feedback .comment {
|
|
||||||
padding: 0 20px 20px;
|
|
||||||
font-size: 1rem;
|
|
||||||
line-height: 1.5em;
|
|
||||||
font-weight: 300;
|
|
||||||
color: #445; }
|
|
||||||
#send-feedback .user-feedback {
|
|
||||||
border-top: 1px solid #f2f2f2;
|
|
||||||
border-bottom: 1px solid #f2f2f2;
|
|
||||||
padding: 20px;
|
|
||||||
width: 100%;
|
|
||||||
margin-bottom: 20px;
|
|
||||||
-webkit-appearance: none; }
|
|
||||||
#send-feedback .send-feedback-star {
|
|
||||||
height: 1rem;
|
|
||||||
margin-left: 5px; }
|
|
||||||
#send-feedback .form-fade-in {
|
|
||||||
opacity: 0;
|
|
||||||
animation-name: fadeIn;
|
|
||||||
animation-duration: .5s;
|
|
||||||
animation-fill-mode: forwards;
|
|
||||||
animation-timing-function: ease-in; }
|
|
||||||
|
|
||||||
@keyframes fadeIn {
|
|
||||||
from {
|
|
||||||
opacity: 0; }
|
|
||||||
to {
|
|
||||||
opacity: 1; } }
|
|
||||||
|
|
||||||
#complete {
|
|
||||||
background-color: #fff; }
|
background-color: #fff; }
|
||||||
#complete .complete-layout {
|
#share-app .share-app-layout {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
height: 100%; }
|
height: 100%; }
|
||||||
#complete .complete-layout__expand {
|
#share-app .share-app-layout__expand {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
|
|
@ -13089,36 +13170,27 @@ a.item {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
transition: opacity .3s; }
|
transition: opacity .3s; }
|
||||||
#complete .complete-layout__expand.fade-in {
|
#share-app .share-app-layout__expand.fade-in {
|
||||||
opacity: 1; }
|
opacity: 1; }
|
||||||
#complete .share-the-love-illustration {
|
#share-app .share-the-love-illustration {
|
||||||
width: 5rem;
|
width: 5rem;
|
||||||
margin: 1rem; }
|
margin: 1rem; }
|
||||||
#complete .send-feedback-illustration {
|
#share-app .subtitle {
|
||||||
height: 16rem;
|
|
||||||
margin: 1rem; }
|
|
||||||
#complete .feedback-title {
|
|
||||||
font-size: 20px;
|
|
||||||
font-weight: bold;
|
|
||||||
color: #445;
|
|
||||||
margin: 20px 10px;
|
|
||||||
text-align: center; }
|
|
||||||
#complete .subtitle {
|
|
||||||
padding: 10px 30px 20px;
|
padding: 10px 30px 20px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
color: #667; }
|
color: #667; }
|
||||||
#complete .icon-svg > img {
|
#share-app .icon-svg > img {
|
||||||
height: 16rem;
|
height: 16rem;
|
||||||
width: 16rem;
|
width: 16rem;
|
||||||
margin: 10px; }
|
margin: 10px; }
|
||||||
#complete .socialsharing-icon {
|
#share-app .socialsharing-icon {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 60px; }
|
width: 60px; }
|
||||||
#complete .addressbook-icon-svg {
|
#share-app .addressbook-icon-svg {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 50px;
|
width: 50px;
|
||||||
height: 50px; }
|
height: 50px; }
|
||||||
#complete .share-buttons {
|
#share-app .share-buttons {
|
||||||
padding: 50px 10px 30px;
|
padding: 50px 10px 30px;
|
||||||
background-color: #f2f2f2;
|
background-color: #f2f2f2;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
|
@ -13130,7 +13202,7 @@ a.item {
|
||||||
animation-fill-mode: forwards;
|
animation-fill-mode: forwards;
|
||||||
animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
||||||
animation-delay: .2s; }
|
animation-delay: .2s; }
|
||||||
#complete .share-buttons__action {
|
#share-app .share-buttons__action {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
color: #667;
|
color: #667;
|
||||||
font-size: .9rem;
|
font-size: .9rem;
|
||||||
|
|
@ -13148,38 +13220,6 @@ a.item {
|
||||||
transform: translateY(0);
|
transform: translateY(0);
|
||||||
opacity: 1; } }
|
opacity: 1; } }
|
||||||
|
|
||||||
#rate-app {
|
|
||||||
background-color: #ffffff;
|
|
||||||
text-align: center; }
|
|
||||||
#rate-app .skip-rating {
|
|
||||||
color: #445;
|
|
||||||
position: absolute;
|
|
||||||
top: 5px;
|
|
||||||
right: 10px;
|
|
||||||
padding: 15px; }
|
|
||||||
#rate-app .icon-svg > img {
|
|
||||||
width: 80px;
|
|
||||||
height: 80px;
|
|
||||||
margin-top: 15px; }
|
|
||||||
#rate-app .feedback-title {
|
|
||||||
font-size: 20px;
|
|
||||||
font-weight: bold;
|
|
||||||
color: #445;
|
|
||||||
margin: 80px 50px 10px;
|
|
||||||
text-align: center; }
|
|
||||||
#rate-app .share-the-love-illustration {
|
|
||||||
width: 5rem;
|
|
||||||
margin: 1rem; }
|
|
||||||
#rate-app .subtitle {
|
|
||||||
padding: 10px 30px 20px 40px;
|
|
||||||
color: #667; }
|
|
||||||
#rate-app .rate-buttons {
|
|
||||||
bottom: 0;
|
|
||||||
width: 100%;
|
|
||||||
position: absolute;
|
|
||||||
background-color: #f2f2f2;
|
|
||||||
padding: 30px 0 15px; }
|
|
||||||
|
|
||||||
action-sheet .bp-action-sheet__sheet {
|
action-sheet .bp-action-sheet__sheet {
|
||||||
background: #fff;
|
background: #fff;
|
||||||
width: calc(100% + 1px);
|
width: calc(100% + 1px);
|
||||||
|
|
@ -13800,7 +13840,11 @@ slide-to-accept-success {
|
||||||
transform: translateY(5rem);
|
transform: translateY(5rem);
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
transition: transform 400ms ease, opacity 400ms ease;
|
transition: transform 400ms ease, opacity 400ms ease;
|
||||||
transition-delay: 250ms; }
|
transition-delay: 250ms;
|
||||||
|
margin-bottom: constant(safe-area-inset-bottom);
|
||||||
|
/* iOS 11.0 */
|
||||||
|
margin-bottom: env(safe-area-inset-bottom);
|
||||||
|
/* iOS 11.2 */ }
|
||||||
slide-to-accept-success .slide-success__footer.reveal {
|
slide-to-accept-success .slide-success__footer.reveal {
|
||||||
-webkit-transform: translateY(0);
|
-webkit-transform: translateY(0);
|
||||||
transform: translateY(0);
|
transform: translateY(0);
|
||||||
|
|
@ -13858,16 +13902,16 @@ slide-to-accept-success {
|
||||||
line-height: 30px; }
|
line-height: 30px; }
|
||||||
#txp-details .head .amount-label .amount,
|
#txp-details .head .amount-label .amount,
|
||||||
#view-confirm .head .amount-label .amount {
|
#view-confirm .head .amount-label .amount {
|
||||||
font-size: 38px;
|
font-size: 16px;
|
||||||
margin-bottom: .5rem; }
|
color: #9B9B9B;
|
||||||
#txp-details .head .amount-label .amount > .unit,
|
|
||||||
#view-confirm .head .amount-label .amount > .unit {
|
|
||||||
font-family: "Roboto-Light"; }
|
font-family: "Roboto-Light"; }
|
||||||
#txp-details .head .amount-label .alternative,
|
#txp-details .head .amount-label .alternative,
|
||||||
#view-confirm .head .amount-label .alternative {
|
#view-confirm .head .amount-label .alternative {
|
||||||
font-size: 16px;
|
font-size: 38px;
|
||||||
font-family: "Roboto-Light";
|
margin-bottom: .5rem; }
|
||||||
color: #9B9B9B; }
|
#txp-details .head .amount-label .alternative > .unit,
|
||||||
|
#view-confirm .head .amount-label .alternative > .unit {
|
||||||
|
font-family: "Roboto-Light"; }
|
||||||
#txp-details .item,
|
#txp-details .item,
|
||||||
#view-confirm .item {
|
#view-confirm .item {
|
||||||
border-color: #EFEFEF; }
|
border-color: #EFEFEF; }
|
||||||
|
|
@ -14155,6 +14199,10 @@ wallet-selector .subheader {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
padding-bottom: 10px;
|
padding-bottom: 10px;
|
||||||
border-bottom: 1px solid #EFEFEF; }
|
border-bottom: 1px solid #EFEFEF; }
|
||||||
|
wallet-selector .subheader .subtitle {
|
||||||
|
color: #667;
|
||||||
|
font-size: 12px;
|
||||||
|
font-weight: 300; }
|
||||||
wallet-selector .subheader .wallet-coin-logo {
|
wallet-selector .subheader .wallet-coin-logo {
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
margin-right: 5px; }
|
margin-right: 5px; }
|
||||||
|
|
@ -15018,6 +15066,27 @@ log-options #check-bar .checkbox-icon {
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
display: inline-block; }
|
display: inline-block; }
|
||||||
|
|
||||||
|
.amount .start,
|
||||||
|
.amount .middle,
|
||||||
|
.amount .end,
|
||||||
|
.amount .currency {
|
||||||
|
display: inline-block; }
|
||||||
|
|
||||||
|
.amount .start {
|
||||||
|
font-size: 1em; }
|
||||||
|
|
||||||
|
.amount .middle {
|
||||||
|
font-size: 0.7857em;
|
||||||
|
margin-left: 5px; }
|
||||||
|
|
||||||
|
.amount .end {
|
||||||
|
font-size: 0.7857em;
|
||||||
|
margin-left: 5px; }
|
||||||
|
|
||||||
|
.amount .currency {
|
||||||
|
font-size: 1em;
|
||||||
|
margin-left: 5px; }
|
||||||
|
|
||||||
/* This is for rules that don't yet have a home.
|
/* This is for rules that don't yet have a home.
|
||||||
* Our goal is to delete this file. Search the regex: /class=".*CLASS.*?"/
|
* Our goal is to delete this file. Search the regex: /class=".*CLASS.*?"/
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -11,9 +11,8 @@
|
||||||
<link rel="stylesheet" type="text/css" href="css/chartist.css">
|
<link rel="stylesheet" type="text/css" href="css/chartist.css">
|
||||||
<link rel="stylesheet" type="text/css" href="css/bitcoin.com.css">
|
<link rel="stylesheet" type="text/css" href="css/bitcoin.com.css">
|
||||||
<link rel="stylesheet" type="text/css" href="css/icomoon.css">
|
<link rel="stylesheet" type="text/css" href="css/icomoon.css">
|
||||||
<title>Bitcoin.com Wallet - Bitcoin.com Wallet</title>
|
<title>Bitcoin.com Wallet</title>
|
||||||
<link rel="shortcut icon" href="img/app/favicon.ico">
|
<link rel="shortcut icon" href="img/app/favicon.ico">
|
||||||
<script src="https://www.googletagmanager.com/gtag/js?id=UA-59964190-23"></script>
|
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue