Commit b9e5775a authored by ninabreznik's avatar ninabreznik Committed by yann300

Resize icons and put delete to the end and replace it with a trash bin

parent 4def8f69
......@@ -24,7 +24,7 @@ var pendingTxsText = yo`<span></span>`
function runTab (container, appAPI, appEvents) {
var events = new EventManager()
var clearInstanceElement = yo`<i class="${css.clearinstance} ${css.icon} fa fa-minus-square-o" title="Clear Instances List" aria-hidden="true"></i>`
var clearInstanceElement = yo`<i class="${css.clearinstance} ${css.icon} fa fa-trash" title="Clear Instances List" aria-hidden="true"></i>`
clearInstanceElement.addEventListener('click', () => {
events.trigger('clearInstance', [])
})
......@@ -34,9 +34,9 @@ function runTab (container, appAPI, appEvents) {
<div class="${css.pendingTxsText}">
${pendingTxsText}
<span class="${css.transactionActions}">
${clearInstanceElement}
${recorderInterface.recordButton}
${recorderInterface.runButton}
${clearInstanceElement}
</span>
</div>
</div>`
......
......@@ -177,8 +177,11 @@ var css = csjs`
}
.transactionActions {
display: flex;
width: 50px;
width: 70px;
justify-content: space-between;
border: 1px solid ${styles.rightPanel.runTab.additionalText_Color};
padding: 5px;
border-radius: 3px;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment