Fix styling for the table

pull/3094/head
ninabreznik 7 years ago committed by yann300
parent bccd700a62
commit 014c3e8dc5
  1. 73
      src/app/execution/txLogger.js

@ -64,19 +64,8 @@ var css = csjs`
.txTable, .tr, .td { .txTable, .tr, .td {
border-collapse: collapse; border-collapse: collapse;
font-size: 10px; font-size: 10px;
} color: ${styles.terminal.text_Primary};
.tr { border: 1px solid ${styles.terminal.text_Secondary};
width: 70%;
border-bottom: 1px solid white;
display: flex;
align-items: center;
}
.td:first-child {
min-width: 30%;
width: 30%;
display: flex;
align-items: baseline;
font-weight: bold;
} }
#txTable { #txTable {
margin-top: 1%; margin-top: 1%;
@ -85,6 +74,7 @@ var css = csjs`
width: 85%; width: 85%;
} }
.tr, .td { .tr, .td {
padding: 4px;
vertical-align: baseline; vertical-align: baseline;
} }
.td:first-child { .td:first-child {
@ -394,10 +384,9 @@ function createTable (opts) {
var contractAddress = yo` var contractAddress = yo`
<tr class="${css.tr}"> <tr class="${css.tr}">
<td class="${css.td}"> contractAddress <td class="${css.td}"> contractAddress </td>
${copyToClipboard(() => opts.contractAddress)}
</td>
<td class="${css.td}">${opts.contractAddress} <td class="${css.td}">${opts.contractAddress}
${copyToClipboard(() => opts.contractAddress)}
</td> </td>
</tr> </tr>
` `
@ -405,10 +394,9 @@ function createTable (opts) {
var from = yo` var from = yo`
<tr class="${css.tr}"> <tr class="${css.tr}">
<td class="${css.td} ${css.tableTitle}"> from <td class="${css.td} ${css.tableTitle}"> from </td>
${copyToClipboard(() => opts.from)}
</td>
<td class="${css.td}">${opts.from} <td class="${css.td}">${opts.from}
${copyToClipboard(() => opts.from)}
</td> </td>
</tr> </tr>
` `
@ -423,10 +411,9 @@ function createTable (opts) {
} }
var to = yo` var to = yo`
<tr class="${css.tr}"> <tr class="${css.tr}">
<td class="${css.td}"> to <td class="${css.td}"> to </td>
${copyToClipboard(() => data.to ? data.to : toHash)}
</td>
<td class="${css.td}">${toHash} <td class="${css.td}">${toHash}
${copyToClipboard(() => data.to ? data.to : toHash)}
</td> </td>
</tr> </tr>
` `
@ -434,10 +421,9 @@ function createTable (opts) {
var gas = yo` var gas = yo`
<tr class="${css.tr}"> <tr class="${css.tr}">
<td class="${css.td}"> gas <td class="${css.td}"> gas </td>
${copyToClipboard(() => opts.gas)}
</td>
<td class="${css.td}">${opts.gas} gas <td class="${css.td}">${opts.gas} gas
${copyToClipboard(() => opts.gas)}
</td> </td>
</tr> </tr>
` `
@ -450,10 +436,9 @@ function createTable (opts) {
if (opts.transactionCost) { if (opts.transactionCost) {
table.appendChild(yo` table.appendChild(yo`
<tr class="${css.tr}"> <tr class="${css.tr}">
<td class="${css.td}"> transaction cost <td class="${css.td}"> transaction cost </td>
${copyToClipboard(() => opts.transactionCost)}
</td>
<td class="${css.td}">${opts.transactionCost} gas ${callWarning} <td class="${css.td}">${opts.transactionCost} gas ${callWarning}
${copyToClipboard(() => opts.transactionCost)}
</td> </td>
</tr>`) </tr>`)
} }
@ -461,20 +446,18 @@ function createTable (opts) {
if (opts.executionCost) { if (opts.executionCost) {
table.appendChild(yo` table.appendChild(yo`
<tr class="${css.tr}"> <tr class="${css.tr}">
<td class="${css.td}"> execution cost <td class="${css.td}"> execution cost </td>
${copyToClipboard(() => opts.executionCost)}
</td>
<td class="${css.td}">${opts.executionCost} gas ${callWarning} <td class="${css.td}">${opts.executionCost} gas ${callWarning}
${copyToClipboard(() => opts.executionCost)}
</td> </td>
</tr>`) </tr>`)
} }
var hash = yo` var hash = yo`
<tr class="${css.tr}"> <tr class="${css.tr}">
<td class="${css.td}"> hash <td class="${css.td}"> hash </td>
${copyToClipboard(() => opts.hash)}
</td>
<td class="${css.td}">${opts.hash} <td class="${css.td}">${opts.hash}
${copyToClipboard(() => opts.hash)}
</td> </td>
</tr> </tr>
` `
@ -482,10 +465,9 @@ function createTable (opts) {
var input = yo` var input = yo`
<tr class="${css.tr}"> <tr class="${css.tr}">
<td class="${css.td}"> input <td class="${css.td}"> input </td>
${copyToClipboard(() => opts.input)}
</td>
<td class="${css.td}">${opts.input} <td class="${css.td}">${opts.input}
${copyToClipboard(() => opts.input)}
</td> </td>
</tr> </tr>
` `
@ -494,10 +476,9 @@ function createTable (opts) {
if (opts['decoded input']) { if (opts['decoded input']) {
var inputDecoded = yo` var inputDecoded = yo`
<tr class="${css.tr}"> <tr class="${css.tr}">
<td class="${css.td}"> decoded input <td class="${css.td}"> decoded input </td>
${copyToClipboard(opts['decoded input'])}
</td>
<td class="${css.td}">${opts['decoded input']} <td class="${css.td}">${opts['decoded input']}
${copyToClipboard(opts['decoded input'])}
</td> </td>
</tr>` </tr>`
table.appendChild(inputDecoded) table.appendChild(inputDecoded)
@ -518,12 +499,11 @@ function createTable (opts) {
} }
var logs = yo` var logs = yo`
<tr class="${css.tr}"> <tr class="${css.tr}">
<td class="${css.td}"> logs <td class="${css.td}"> logs </td>
${copyToClipboard(() => JSON.stringify(stringified, null, '\t'))}
${copyToClipboard(() => JSON.stringify(opts.logs.raw || '0'))}
</td>
<td class="${css.td}" id="logs"> <td class="${css.td}" id="logs">
${JSON.stringify(stringified, null, '\t')} ${JSON.stringify(stringified, null, '\t')}
${copyToClipboard(() => JSON.stringify(stringified, null, '\t'))}
${copyToClipboard(() => JSON.stringify(opts.logs.raw || '0'))}
</td> </td>
</tr> </tr>
` `
@ -532,10 +512,9 @@ function createTable (opts) {
var val = opts.val != null ? typeConversion.toInt(opts.val) : 0 var val = opts.val != null ? typeConversion.toInt(opts.val) : 0
val = yo` val = yo`
<tr class="${css.tr}"> <tr class="${css.tr}">
<td class="${css.td}"> value <td class="${css.td}"> value </td>
${copyToClipboard(() => `${val} wei`)}
</td>
<td class="${css.td}">${val} wei <td class="${css.td}">${val} wei
${copyToClipboard(() => `${val} wei`)}
</td> </td>
</tr> </tr>
` `

Loading…
Cancel
Save