diff options
author | kumavis <kumavis@users.noreply.github.com> | 2018-01-17 02:42:59 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-17 02:42:59 +0800 |
commit | b046f96d4b0809422ac8e1dbfcbdd7a545e7ff3f (patch) | |
tree | fdc65f6be4250ba62080dddefb14741417529f41 | |
parent | 27ca48b369c1bf66298bb878477353a7ec3f9130 (diff) | |
parent | 003b4a721c162734a26d5b67a4e0f6a551b7de01 (diff) | |
download | tangerine-wallet-browser-b046f96d4b0809422ac8e1dbfcbdd7a545e7ff3f.tar tangerine-wallet-browser-b046f96d4b0809422ac8e1dbfcbdd7a545e7ff3f.tar.gz tangerine-wallet-browser-b046f96d4b0809422ac8e1dbfcbdd7a545e7ff3f.tar.bz2 tangerine-wallet-browser-b046f96d4b0809422ac8e1dbfcbdd7a545e7ff3f.tar.lz tangerine-wallet-browser-b046f96d4b0809422ac8e1dbfcbdd7a545e7ff3f.tar.xz tangerine-wallet-browser-b046f96d4b0809422ac8e1dbfcbdd7a545e7ff3f.tar.zst tangerine-wallet-browser-b046f96d4b0809422ac8e1dbfcbdd7a545e7ff3f.zip |
Merge pull request #2929 from MetaMask/i2779-FirefoxSpecifyAccountDetailHeight
I2779 firefox specify account detail height
-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 5c2252dae..ea500fafe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Current Master +- 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 d4f707e0b..c9a8a774d 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 c0bf18c23..b40d48b5d 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; } |