diff options
author | Dan Finlay <dan@danfinlay.com> | 2018-01-17 03:05:40 +0800 |
---|---|---|
committer | Dan Finlay <dan@danfinlay.com> | 2018-01-17 03:05:40 +0800 |
commit | c0cf665b8581df4fe1ea360f28c0d2ed940c21c8 (patch) | |
tree | 27edbac0dd434666b7081de4e08c7b7b5b0defd2 | |
parent | 8fb62b97c5b0901c7e4402d49538db87396c8579 (diff) | |
parent | b046f96d4b0809422ac8e1dbfcbdd7a545e7ff3f (diff) | |
download | dexon-wallet-c0cf665b8581df4fe1ea360f28c0d2ed940c21c8.tar.gz dexon-wallet-c0cf665b8581df4fe1ea360f28c0d2ed940c21c8.tar.zst dexon-wallet-c0cf665b8581df4fe1ea360f28c0d2ed940c21c8.zip |
Merge branch 'master' into i2907-NoCodeGasLimit
-rw-r--r-- | CHANGELOG.md | 2 | ||||
-rw-r--r-- | ui/app/account-detail.js | 1 | ||||
-rw-r--r-- | ui/app/css/index.css | 2 |
3 files changed, 5 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 5adf16cb..1da6da21 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,8 @@ ## Current Master - Estimating gas limit for simple ether sends now faster & cheaper, by avoiding VM usage on recipients with no code. +- Add an extra px to address for Firefox clipping. +- Fix Firefox scrollbar. - Open metamask popup for transaction confirmation before gas estimation finishes and add a loading screen over transaction confirmation. - Fix bug that prevented eth_signTypedData from signing bytes. - Further improve gas price estimation. diff --git a/ui/app/account-detail.js b/ui/app/account-detail.js index d4f707e0..c9a8a774 100644 --- a/ui/app/account-detail.js +++ b/ui/app/account-detail.js @@ -161,6 +161,7 @@ AccountDetailScreen.prototype.render = function () { textOverflow: 'ellipsis', paddingTop: '3px', width: '5em', + height: '15px', fontSize: '13px', fontFamily: 'Montserrat Light', textRendering: 'geometricPrecision', diff --git a/ui/app/css/index.css b/ui/app/css/index.css index c0bf18c2..b40d48b5 100644 --- a/ui/app/css/index.css +++ b/ui/app/css/index.css @@ -441,7 +441,9 @@ input.large-input { .account-detail-section { display: flex; flex-wrap: wrap; + overflow-x: hidden; overflow-y: auto; + max-height: 465px; flex-direction: inherit; } |