1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-23 18:41:38 +01:00

Account-detail address is a readonly input.

This commit is contained in:
Dan 2017-09-06 10:54:27 -02:30 committed by Chi Kei Chan
parent 1d5a725ffb
commit c4eb2fb3ea
2 changed files with 7 additions and 2 deletions

View File

@ -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,
// }),

View File

@ -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 {