mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Implement 'clear buttons' for tx view
This commit is contained in:
parent
6fd1c15a5c
commit
267d12646c
@ -56,6 +56,44 @@ TxView.prototype.render = function () {
|
|||||||
}, [
|
}, [
|
||||||
]),
|
]),
|
||||||
|
|
||||||
|
h('div.flex-row.flex-wrap', {
|
||||||
|
style: {
|
||||||
|
margin: '1.8em 1.3em 0.8em 1.3em',
|
||||||
|
flex: '1 0 auto',
|
||||||
|
}
|
||||||
|
}, [
|
||||||
|
|
||||||
|
h('div.flex-column.flex-center', {
|
||||||
|
style: {
|
||||||
|
width: '100%',
|
||||||
|
}
|
||||||
|
}, [
|
||||||
|
|
||||||
|
h('div', {}, 'ETH LOGO'),
|
||||||
|
|
||||||
|
h('div', {}, '1001.124 ETH'),
|
||||||
|
|
||||||
|
h('div', {}, '$300,000 USD'),
|
||||||
|
|
||||||
|
]),
|
||||||
|
|
||||||
|
h('div.flex-row.flex-center', {
|
||||||
|
style: {
|
||||||
|
width: '100%',
|
||||||
|
}
|
||||||
|
}, [
|
||||||
|
h('button.btn-clear', {
|
||||||
|
textAlign: 'center'
|
||||||
|
}, 'BUY'),
|
||||||
|
|
||||||
|
h('button.btn-clear', {
|
||||||
|
textAlign: 'center'
|
||||||
|
}, 'SEND'),
|
||||||
|
|
||||||
|
]),
|
||||||
|
|
||||||
|
]),
|
||||||
|
|
||||||
h('div.flex-row', {
|
h('div.flex-row', {
|
||||||
style: {
|
style: {
|
||||||
margin: '1.8em 1.3em 0.8em 1.3em',
|
margin: '1.8em 1.3em 0.8em 1.3em',
|
||||||
|
@ -96,51 +96,6 @@ WalletView.prototype.render = function () {
|
|||||||
active: true,
|
active: true,
|
||||||
}),
|
}),
|
||||||
|
|
||||||
// Buy Buttons
|
|
||||||
// for index.css
|
|
||||||
// TODO: move into a class
|
|
||||||
// div.wallet-btn {
|
|
||||||
// border: 1px solid rgb(91, 93, 103);
|
|
||||||
// border-radius: 2px;
|
|
||||||
// height: 30px;
|
|
||||||
// width: 75px;
|
|
||||||
// font-size: 0.8em;
|
|
||||||
// text-align: center;
|
|
||||||
// line-height: 25px;
|
|
||||||
// }
|
|
||||||
|
|
||||||
h('div.flex-row', {
|
|
||||||
style: {
|
|
||||||
marginLeft: '1.3em',
|
|
||||||
marginTop: '0.8em',
|
|
||||||
}
|
|
||||||
}, [
|
|
||||||
h('div', {
|
|
||||||
style: {
|
|
||||||
border: '1px solid rgb(91, 93, 103)',
|
|
||||||
borderRadius: '2px',
|
|
||||||
height: '20px',
|
|
||||||
width: '50px',
|
|
||||||
fontSize: '0.8em',
|
|
||||||
textAlign: 'center',
|
|
||||||
}
|
|
||||||
}, 'BUY'),
|
|
||||||
h('div.wallet-btn', {
|
|
||||||
onClick: () => {
|
|
||||||
this.props.showSendPage();
|
|
||||||
},
|
|
||||||
style: {
|
|
||||||
border: '1px solid rgb(91, 93, 103)',
|
|
||||||
borderRadius: '2px',
|
|
||||||
height: '20px',
|
|
||||||
width: '50px',
|
|
||||||
fontSize: '0.8em',
|
|
||||||
textAlign: 'center',
|
|
||||||
marginLeft: '.6em',
|
|
||||||
}
|
|
||||||
}, 'SEND'),
|
|
||||||
]),
|
|
||||||
|
|
||||||
// Wallet contents
|
// Wallet contents
|
||||||
h(Content, {
|
h(Content, {
|
||||||
title: "Total Token Balance",
|
title: "Total Token Balance",
|
||||||
|
@ -89,6 +89,25 @@ input:focus, textarea:focus {
|
|||||||
background-color: #02C9B1; // TODO: reusable color in colors.css
|
background-color: #02C9B1; // TODO: reusable color in colors.css
|
||||||
}
|
}
|
||||||
|
|
||||||
|
button.btn-clear {
|
||||||
|
width: 100px;
|
||||||
|
height: 50px;
|
||||||
|
background: white;
|
||||||
|
border: 1px solid;
|
||||||
|
font-size: .7em;
|
||||||
|
}
|
||||||
|
|
||||||
|
// No longer used in flat design, remove when modal buttons done
|
||||||
|
// div.wallet-btn {
|
||||||
|
// border: 1px solid rgb(91, 93, 103);
|
||||||
|
// border-radius: 2px;
|
||||||
|
// height: 30px;
|
||||||
|
// width: 75px;
|
||||||
|
// font-size: 0.8em;
|
||||||
|
// text-align: center;
|
||||||
|
// line-height: 25px;
|
||||||
|
// }
|
||||||
|
|
||||||
// .btn-red {
|
// .btn-red {
|
||||||
// background: rgba(254, 35, 17, 1);
|
// background: rgba(254, 35, 17, 1);
|
||||||
// box-shadow: 0px 3px 6px rgba(254, 35, 17, 0.36);
|
// box-shadow: 0px 3px 6px rgba(254, 35, 17, 0.36);
|
||||||
|
@ -23,8 +23,6 @@ MainContainer.prototype.render = function () {
|
|||||||
// - pass resulting h() to MainContainer
|
// - pass resulting h() to MainContainer
|
||||||
// - error checking in separate func
|
// - error checking in separate func
|
||||||
// - router in separate func
|
// - router in separate func
|
||||||
//
|
|
||||||
// 4. style all buttons as <button>s: accessibility + mobile focus
|
|
||||||
let contents = {
|
let contents = {
|
||||||
component: AccountAndTransactionDetails,
|
component: AccountAndTransactionDetails,
|
||||||
key: 'account-detail',
|
key: 'account-detail',
|
||||||
|
Loading…
Reference in New Issue
Block a user