aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkumavis <aaron@kumavis.me>2016-07-07 11:52:28 +0800
committerkumavis <aaron@kumavis.me>2016-07-07 11:52:28 +0800
commitd892fffce2c0a73139a4052030c3e93dc8af8d9a (patch)
treee610aafe5dd65c1e2568a2a94d6eda4a6a072710
parent5c4c902c94f03f50c0169e35cb0fea81df5193e6 (diff)
parenta038eed6e3fc678246bc880afb0dacf9defac8e2 (diff)
downloadtangerine-wallet-browser-d892fffce2c0a73139a4052030c3e93dc8af8d9a.tar.gz
tangerine-wallet-browser-d892fffce2c0a73139a4052030c3e93dc8af8d9a.tar.zst
tangerine-wallet-browser-d892fffce2c0a73139a4052030c3e93dc8af8d9a.zip
Merge branch 'master' of github.com:MetaMask/metamask-plugin into fastinject
-rw-r--r--CHANGELOG.md1
-rw-r--r--ui/app/app.js6
2 files changed, 4 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 547573eb9..54ac629e0 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,7 @@
- Fix formatting of ETH balance
- Fix formatting of account details.
- Use web3 minified dist for faster inject times
+- Fix issue where dropdowns were not in front of icons.
## 2.5.0 2016-06-29
diff --git a/ui/app/app.js b/ui/app/app.js
index dcc44ee65..4dd41d570 100644
--- a/ui/app/app.js
+++ b/ui/app/app.js
@@ -108,7 +108,7 @@ App.prototype.renderAppBar = function () {
background: props.isUnlocked ? 'white' : 'none',
height: '36px',
position: 'relative',
- zIndex: 1,
+ zIndex: 2,
},
}, props.isUnlocked && [
@@ -197,10 +197,10 @@ App.prototype.renderNetworkDropdown = function () {
onClickOutside: (event) => {
this.setState({ isNetworkMenuOpen: !isOpen })
},
+ zIndex: 1,
style: {
position: 'absolute',
left: 0,
- zIndex: 0,
},
innerStyle: {
background: 'white',
@@ -245,13 +245,13 @@ App.prototype.renderDropdown = function () {
return h(MenuDroppo, {
isOpen: isOpen,
+ zIndex: 1,
onClickOutside: (event) => {
this.setState({ isMainMenuOpen: !isOpen })
},
style: {
position: 'absolute',
right: 0,
- zIndex: 0,
},
innerStyle: {
background: 'white',