diff --git a/internal/web/static/index.html b/internal/web/static/index.html index ba8a37f..30d7c15 100644 --- a/internal/web/static/index.html +++ b/internal/web/static/index.html @@ -1219,8 +1219,9 @@ flex: 1; min-width: 0; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12px; - overflow-wrap: anywhere; - word-break: break-all; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; color: var(--text); } .donate-thanks { margin-top: 14px; font-size: 13px; color: var(--text-dim); text-align: center; } @@ -3213,7 +3214,9 @@ @@ -8131,7 +8134,8 @@ function openDonate() { document.getElementById('donateModal').classList.add('active'); } function closeDonate() { document.getElementById('donateModal').classList.remove('active'); } function copyDonateAddr() { - var v = document.getElementById('donateAddr').textContent.trim(); + var el = document.getElementById('donateAddr'); + var v = (el.dataset.full || el.textContent).trim(); navigator.clipboard.writeText(v).then(function () { showToast(t('copied')) }).catch(function () { }); }