From e0daea35a98b294d503d5d9a9625d977295ea4cc Mon Sep 17 00:00:00 2001 From: Frankie Date: Wed, 29 Jun 2016 16:11:09 -0700 Subject: 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. --- ui/app/components/network.js | 40 +++++++++++++++++++++++++++++++--------- 1 file changed, 31 insertions(+), 9 deletions(-) (limited to 'ui/app/components/network.js') 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'), + ]) } })(), ]) -- cgit