diff --git a/src/app/execution/txLogger.js b/src/app/execution/txLogger.js
index 7357898600..b6f94a7895 100644
--- a/src/app/execution/txLogger.js
+++ b/src/app/execution/txLogger.js
@@ -50,11 +50,6 @@ var css = csjs`
}
.debug, .details {
color: ${styles.terminal.link_Debug};
- text-decoration: underline;
- font-weight: bold;
- min-height: 18px;
- max-height: 18px;
- width: 55px;
min-width: 55px;
margin-left: 5px;
cursor: pointer;
@@ -157,8 +152,8 @@ function renderKnownTransaction (self, data) {
${context(self, {from, to, data})}
@@ -208,8 +203,8 @@ function renderCall (self, data) {
[call] from:${from}, to:${to}, data:${input}, return:
${JSON.stringify(typeConversion.stringify(data.resolvedData.decodedReturnValue), null, '\t')}
@@ -253,8 +248,8 @@ function renderUnknownTransaction (self, data) {
${context(self, {from, to, data})}
diff --git a/test-browser/helpers/contracts.js b/test-browser/helpers/contracts.js
index faa860d01c..ec9ea6ca18 100644
--- a/test-browser/helpers/contracts.js
+++ b/test-browser/helpers/contracts.js
@@ -76,7 +76,7 @@ function testFunction (fnFullName, txHash, log, expectedInput, expectedReturn, e
.pause(500)
.waitForElementPresent('#editor-container div[class^="terminal"] span[id="tx' + txHash + '"]')
.assert.containsText('#editor-container div[class^="terminal"] span[id="tx' + txHash + '"] span', log)
- .click('#editor-container div[class^="terminal"] span[id="tx' + txHash + '"] div[class^="details"]')
+ .click('#editor-container div[class^="terminal"] span[id="tx' + txHash + '"] button[class^="details"]')
.perform(function (client, done) {
if (expectedReturn) {
client.assert.containsText('#editor-container div[class^="terminal"] span[id="tx' + txHash + '"] table[class^="txTable"] #decodedoutput', expectedReturn)
diff --git a/test-browser/tests/ballot.js b/test-browser/tests/ballot.js
index 48e9a5c067..ae431ba378 100644
--- a/test-browser/tests/ballot.js
+++ b/test-browser/tests/ballot.js
@@ -34,7 +34,7 @@ function runTests (browser, testData) {
.testFunction('delegate - transact (not payable)', '0xd3cd54e2f76f3993078ecf9e1b54a148def4520afc141a182293b3610bddf10f',
'[vm] from:0xca3...a733c, to:Ballot.delegate(address) 0x692...77b3a, value:0 wei, data:0x5c1...4d2db, 0 logs, hash:0xd3c...df10f',
{types: 'address to', values: '"0x4b0897b0513fdc7c541b6d9d7e929c4e5364d2db"'}, null, null)
- .click('span#tx0xd3cd54e2f76f3993078ecf9e1b54a148def4520afc141a182293b3610bddf10f div[class^="debug"]')
+ .click('span#tx0xd3cd54e2f76f3993078ecf9e1b54a148def4520afc141a182293b3610bddf10f button[class^="debug"]')
.pause(1000)
.click('#jumppreviousbreakpoint')
.click('#stepdetail .title')