aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app
diff options
context:
space:
mode:
authorDan <danjm.com@gmail.com>2017-09-06 21:24:27 +0800
committerChi Kei Chan <chikeichan@gmail.com>2017-09-08 01:26:21 +0800
commitc4eb2fb3ea1c1f0753a6bed736503528f4e539cf (patch)
treebb74699a5a73be3f3022329b17e4ba0c054f2c86 /ui/app
parent1d5a725ffbcd0fe3123d3bbb5889abce99cbaabe (diff)
downloadtangerine-wallet-browser-c4eb2fb3ea1c1f0753a6bed736503528f4e539cf.tar.gz
tangerine-wallet-browser-c4eb2fb3ea1c1f0753a6bed736503528f4e539cf.tar.zst
tangerine-wallet-browser-c4eb2fb3ea1c1f0753a6bed736503528f4e539cf.zip
Account-detail address is a readonly input.
Diffstat (limited to 'ui/app')
-rw-r--r--ui/app/components/qr-code.js6
-rw-r--r--ui/app/css/itcss/components/modal.scss3
2 files changed, 7 insertions, 2 deletions
diff --git a/ui/app/components/qr-code.js b/ui/app/components/qr-code.js
index 8d6b43b6c..8e4d01c00 100644
--- a/ui/app/components/qr-code.js
+++ b/ui/app/components/qr-code.js
@@ -47,11 +47,13 @@ QrCodeView.prototype.render = function () {
},
}),
h('.div.ellip-address-wrapper', [
- h('span.qr-ellip-address', {
+ h('input.qr-ellip-address', {
style: {
width: '247px',
},
- }, Qr.data),
+ value: Qr.data,
+ readonly: 'readonly',
+ }),
// h(CopyButton, {
// value: Qr.data,
// }),
diff --git a/ui/app/css/itcss/components/modal.scss b/ui/app/css/itcss/components/modal.scss
index 6c2cc7293..7117159dc 100644
--- a/ui/app/css/itcss/components/modal.scss
+++ b/ui/app/css/itcss/components/modal.scss
@@ -203,6 +203,9 @@
.account-details-modal-wrapper .qr-ellip-address {
width: 254px;
+ border: none;
+ font-family: 'Montserrat Light';
+ font-size: 14px;
}
.account-details-modal-wrapper .btn-clear {