From c4eb2fb3ea1c1f0753a6bed736503528f4e539cf Mon Sep 17 00:00:00 2001 From: Dan Date: Wed, 6 Sep 2017 10:54:27 -0230 Subject: [PATCH] Account-detail address is a readonly input. --- ui/app/components/qr-code.js | 6 ++++-- ui/app/css/itcss/components/modal.scss | 3 +++ 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 {