mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Merge branch 'master' into i2907-NoCodeGasLimit
This commit is contained in:
commit
c0cf665b85
@ -3,6 +3,8 @@
|
|||||||
## Current Master
|
## Current Master
|
||||||
|
|
||||||
- Estimating gas limit for simple ether sends now faster & cheaper, by avoiding VM usage on recipients with no code.
|
- 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.
|
- 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.
|
- Fix bug that prevented eth_signTypedData from signing bytes.
|
||||||
- Further improve gas price estimation.
|
- Further improve gas price estimation.
|
||||||
|
@ -161,6 +161,7 @@ AccountDetailScreen.prototype.render = function () {
|
|||||||
textOverflow: 'ellipsis',
|
textOverflow: 'ellipsis',
|
||||||
paddingTop: '3px',
|
paddingTop: '3px',
|
||||||
width: '5em',
|
width: '5em',
|
||||||
|
height: '15px',
|
||||||
fontSize: '13px',
|
fontSize: '13px',
|
||||||
fontFamily: 'Montserrat Light',
|
fontFamily: 'Montserrat Light',
|
||||||
textRendering: 'geometricPrecision',
|
textRendering: 'geometricPrecision',
|
||||||
|
@ -441,7 +441,9 @@ input.large-input {
|
|||||||
.account-detail-section {
|
.account-detail-section {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
|
overflow-x: hidden;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
|
max-height: 465px;
|
||||||
flex-direction: inherit;
|
flex-direction: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user