1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Change networks from lock screen.

This commit is contained in:
Kevin Serrano 2017-02-15 15:35:56 -08:00
parent cdd4faa917
commit fbabcf6191
No known key found for this signature in database
GPG Key ID: 7CC862A58D2889B4
2 changed files with 7 additions and 7 deletions

View File

@ -122,9 +122,9 @@ App.prototype.renderAppBar = function () {
background: props.isUnlocked ? 'white' : 'none',
height: '36px',
position: 'relative',
zIndex: 2,
zIndex: 10,
},
}, props.isUnlocked && [
}, [
h('div', {
style: {
@ -159,14 +159,14 @@ App.prototype.renderAppBar = function () {
]),
// metamask name
h('h1', {
props.isUnlocked && h('h1', {
style: {
position: 'relative',
left: '9px',
},
}, 'MetaMask'),
h('div', {
props.isUnlocked && h('div', {
style: {
display: 'flex',
flexDirection: 'row',
@ -175,7 +175,7 @@ App.prototype.renderAppBar = function () {
}, [
// small accounts nav
h(Tooltip, { title: 'Switch Accounts' }, [
props.isUnlocked && h(Tooltip, { title: 'Switch Accounts' }, [
h('img.cursor-pointer.color-orange', {
src: 'images/switch_acc.svg',
style: {
@ -190,7 +190,7 @@ App.prototype.renderAppBar = function () {
]),
// hamburger
h(SandwichExpando, {
props.isUnlocked && h(SandwichExpando, {
width: 16,
barHeight: 2,
padding: 0,

View File

@ -27,7 +27,7 @@ Mascot.prototype.render = function () {
this.handleAnimationEvents()
return h('#metamask-mascot-container', {
style: { zIndex: 2 },
style: { zIndex: 0 },
})
}