diff options
author | Frankie <frankie.pangilinan@consensys.net> | 2016-06-30 07:11:09 +0800 |
---|---|---|
committer | Frankie <frankie.pangilinan@consensys.net> | 2016-06-30 07:12:19 +0800 |
commit | e0daea35a98b294d503d5d9a9625d977295ea4cc (patch) | |
tree | 210198e37ba016ebdc953904ce8a20b6fa1a4721 /ui/app | |
parent | 2c36c17238b7641295e1ed6e51e11b2842c03fdb (diff) | |
download | tangerine-wallet-browser-e0daea35a98b294d503d5d9a9625d977295ea4cc.tar tangerine-wallet-browser-e0daea35a98b294d503d5d9a9625d977295ea4cc.tar.gz tangerine-wallet-browser-e0daea35a98b294d503d5d9a9625d977295ea4cc.tar.bz2 tangerine-wallet-browser-e0daea35a98b294d503d5d9a9625d977295ea4cc.tar.lz tangerine-wallet-browser-e0daea35a98b294d503d5d9a9625d977295ea4cc.tar.xz tangerine-wallet-browser-e0daea35a98b294d503d5d9a9625d977295ea4cc.tar.zst tangerine-wallet-browser-e0daea35a98b294d503d5d9a9625d977295ea4cc.zip |
Add network name to indicator and some css fixes
-also fix custom net work bug in drop down where it
thinks local:8545 is custom.
Diffstat (limited to 'ui/app')
-rw-r--r-- | ui/app/app.js | 2 | ||||
-rw-r--r-- | ui/app/components/drop-menu-item.js | 3 | ||||
-rw-r--r-- | ui/app/components/network.js | 40 | ||||
-rw-r--r-- | ui/app/css/index.css | 17 |
4 files changed, 51 insertions, 11 deletions
diff --git a/ui/app/app.js b/ui/app/app.js index 034e062e6..5846cb11e 100644 --- a/ui/app/app.js +++ b/ui/app/app.js @@ -139,7 +139,7 @@ App.prototype.renderAppBar = function () { h('h1', { style: { position: 'relative', - left: '3px', + left: '9px', }, }, 'MetaMask'), diff --git a/ui/app/components/drop-menu-item.js b/ui/app/components/drop-menu-item.js index a31c9c7c4..00bb16868 100644 --- a/ui/app/components/drop-menu-item.js +++ b/ui/app/components/drop-menu-item.js @@ -41,7 +41,8 @@ DropMenuItem.prototype.activeNetworkRender = function () { if (activeNetwork === '2') return h('.check', ' ✓') break case 'Localhost 8545': - if (activeNetwork > '2') return h('.check', ' ✓') + debugger + if (activeNetwork === 'http://localhost:8545') return h('.check', ' ✓') break default: if (activeNetwork === 'custom') return h('.check', ' ✓') diff --git a/ui/app/components/network.js b/ui/app/components/network.js index 9f7287371..25488f6b7 100644 --- a/ui/app/components/network.js +++ b/ui/app/components/network.js @@ -47,17 +47,39 @@ Network.prototype.render = function () { (function () { switch (iconName) { case 'ethereum-network': - return h('.menu-icon.diamond') + return h('.network-indicator',[ + h('.menu-icon.diamond'), + h('.network-name',{ + style: { + color: '#039396', + }}, + 'Etherum Main Net') + ]) case 'morden-test-network': - return h('.menu-icon.red-dot') + return h('.network-indicator',[ + h('.menu-icon.red-dot'), + h('.network-name',{ + style: { + color: '#ff6666', + }}, + 'Morden Test Net') + ]) default: - return h('i.fa.fa-question-circle.fa-lg', { - ariaHidden: true, - style: { - margin: '10px', - color: 'rgb(125, 128, 130)', - }, - }) + return h('.network-indicator',[ + h('i.fa.fa-question-circle.fa-lg', { + ariaHidden: true, + style: { + margin: '10px', + color: 'rgb(125, 128, 130)', + }, + }), + + h('.network-name',{ + style: { + color: '#AEAEAE', + }}, + 'Private Network'), + ]) } })(), ]) diff --git a/ui/app/css/index.css b/ui/app/css/index.css index d46c859ad..fc10e56b6 100644 --- a/ui/app/css/index.css +++ b/ui/app/css/index.css @@ -141,6 +141,23 @@ textarea.twelve-word-phrase { resize: none; } +.network-indicator { + display: flex; + align-items: center; + font-size: 0.6em; + +} + +.network-name { + position: absolute; + top: 8px; + width: 5.2em; + line-height: 9px; +} + +.check { + color: #F7861C; +} /* app sections */ |