diff --git a/index.html b/index.html index 7025f8d861..46d018a659 100644 --- a/index.html +++ b/index.html @@ -56,13 +56,18 @@ body { width: 18ex; display: inline-block; } +strong.col1 { + top: -10px; + position: relative; + margin-bottom: 5px; +} .col2 { width: 60ex; } textarea.col2 { - height: 100px; - background: #fff6dd; - border-color: #efece2; + height: 20px; + border-color: #bebebe; + margin-bottom: 5px; } .runButton { width: 30ex; @@ -253,8 +258,7 @@ var renderContracts = function(data, source) { .append($('
').text((contract.bytecode.length / 2) + ' bytes')) .append(tableRow('Bytecode', contract.bytecode)) .append(tableRow('Interface', contract['interface'])) - .append(tableRow('Solidity Interface', contract.solidity_interface)) - .append(textRow('Deploy Instructions', gethDeploy(contractName,contract['interface'],contract.bytecode))) + .append(textRow('Geth deploy', gethDeploy(contractName,contract['interface'],contract.bytecode))) .append(getDetails(contract, source, contractName)); $('#output').append(contractOutput); } @@ -266,12 +270,13 @@ var tableRow = function(description, data) { }; var textRow = function(description, data) { return $('
') - .append($('').text(description)) - .append($('")); + .append($('').text(description)) + .append($('")); }; var getDetails = function(contract, source, contractName) { var button = $(''); var details = $('
') + .append(tableRow('Solidity Interface', contract.solidity_interface)) .append(tableRow('Opcodes', contract.opcodes)); var funHashes = ''; for (var fun in contract.functionHashes)