mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Add caret to indicate network is dropdown.
This commit is contained in:
parent
13c7b28d40
commit
8d7f78c1a5
@ -74,6 +74,7 @@ Network.prototype.render = function () {
|
|||||||
color: '#039396',
|
color: '#039396',
|
||||||
}},
|
}},
|
||||||
'Ethereum Main Net'),
|
'Ethereum Main Net'),
|
||||||
|
h('i.fa.fa-caret-down.fa-lg'),
|
||||||
])
|
])
|
||||||
case 'ropsten-test-network':
|
case 'ropsten-test-network':
|
||||||
return h('.network-indicator', [
|
return h('.network-indicator', [
|
||||||
@ -83,6 +84,7 @@ Network.prototype.render = function () {
|
|||||||
color: '#ff6666',
|
color: '#ff6666',
|
||||||
}},
|
}},
|
||||||
'Ropsten Test Net'),
|
'Ropsten Test Net'),
|
||||||
|
h('i.fa.fa-caret-down.fa-lg'),
|
||||||
])
|
])
|
||||||
case 'kovan-test-network':
|
case 'kovan-test-network':
|
||||||
return h('.network-indicator', [
|
return h('.network-indicator', [
|
||||||
@ -92,6 +94,7 @@ Network.prototype.render = function () {
|
|||||||
color: '#690496',
|
color: '#690496',
|
||||||
}},
|
}},
|
||||||
'Kovan Test Net'),
|
'Kovan Test Net'),
|
||||||
|
h('i.fa.fa-caret-down.fa-lg'),
|
||||||
])
|
])
|
||||||
case 'rinkeby-test-network':
|
case 'rinkeby-test-network':
|
||||||
return h('.network-indicator', [
|
return h('.network-indicator', [
|
||||||
@ -101,6 +104,7 @@ Network.prototype.render = function () {
|
|||||||
color: '#e7a218',
|
color: '#e7a218',
|
||||||
}},
|
}},
|
||||||
'Rinkeby Test Net'),
|
'Rinkeby Test Net'),
|
||||||
|
h('i.fa.fa-caret-down.fa-lg'),
|
||||||
])
|
])
|
||||||
default:
|
default:
|
||||||
return h('.network-indicator', [
|
return h('.network-indicator', [
|
||||||
@ -116,6 +120,7 @@ Network.prototype.render = function () {
|
|||||||
color: '#AEAEAE',
|
color: '#AEAEAE',
|
||||||
}},
|
}},
|
||||||
'Private Network'),
|
'Private Network'),
|
||||||
|
h('i.fa.fa-caret-down.fa-lg'),
|
||||||
])
|
])
|
||||||
}
|
}
|
||||||
})(),
|
})(),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user