Merge branch 'master' of github.com:MetaMask/metamask-plugin into fastinject

feature/default_network_editable
kumavis 9 years ago
commit d892fffce2
  1. 1
      CHANGELOG.md
  2. 6
      ui/app/app.js

@ -5,6 +5,7 @@
- Fix formatting of ETH balance - Fix formatting of ETH balance
- Fix formatting of account details. - Fix formatting of account details.
- Use web3 minified dist for faster inject times - Use web3 minified dist for faster inject times
- Fix issue where dropdowns were not in front of icons.
## 2.5.0 2016-06-29 ## 2.5.0 2016-06-29

@ -108,7 +108,7 @@ App.prototype.renderAppBar = function () {
background: props.isUnlocked ? 'white' : 'none', background: props.isUnlocked ? 'white' : 'none',
height: '36px', height: '36px',
position: 'relative', position: 'relative',
zIndex: 1, zIndex: 2,
}, },
}, props.isUnlocked && [ }, props.isUnlocked && [
@ -197,10 +197,10 @@ App.prototype.renderNetworkDropdown = function () {
onClickOutside: (event) => { onClickOutside: (event) => {
this.setState({ isNetworkMenuOpen: !isOpen }) this.setState({ isNetworkMenuOpen: !isOpen })
}, },
zIndex: 1,
style: { style: {
position: 'absolute', position: 'absolute',
left: 0, left: 0,
zIndex: 0,
}, },
innerStyle: { innerStyle: {
background: 'white', background: 'white',
@ -245,13 +245,13 @@ App.prototype.renderDropdown = function () {
return h(MenuDroppo, { return h(MenuDroppo, {
isOpen: isOpen, isOpen: isOpen,
zIndex: 1,
onClickOutside: (event) => { onClickOutside: (event) => {
this.setState({ isMainMenuOpen: !isOpen }) this.setState({ isMainMenuOpen: !isOpen })
}, },
style: { style: {
position: 'absolute', position: 'absolute',
right: 0, right: 0,
zIndex: 0,
}, },
innerStyle: { innerStyle: {
background: 'white', background: 'white',

Loading…
Cancel
Save