Merge pull request #320 from MetaMask/i318

send-tx remove account select button
feature/default_network_editable
kumavis 8 years ago committed by GitHub
commit d3a8f3eebe
  1. 4
      ui/app/css/lib.css
  2. 8
      ui/app/send.js

@ -218,3 +218,7 @@ hr.horizontal-line {
display: flex;
align-items: center;
}
.invisible {
visibility: hidden;
}

@ -61,7 +61,7 @@ SendTransactionScreen.prototype.render = function () {
},
}, [
// invisible placeholder for later
// back button
h('i.fa.fa-arrow-left.fa-lg.cursor-pointer.color-orange', {
onClick: this.back.bind(this),
}),
@ -74,10 +74,8 @@ SendTransactionScreen.prototype.render = function () {
}),
]),
// small accounts nav
h('i.fa.fa-users.fa-lg.cursor-pointer.color-orange', {
onClick: this.navigateToAccounts.bind(this),
}),
// invisible place holder
h('i.fa.fa-users.fa-lg.invisible'),
]),

Loading…
Cancel
Save