Skip to content

Commit 3509bd8

Browse files
committed
Some fixes
1 parent ccc66bf commit 3509bd8

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

css/ethplorer.css

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -415,6 +415,9 @@ small {
415415
font-size: 18px;
416416
padding-left: 8px;
417417
}
418+
.navbar {
419+
margin-bottom: 0px;
420+
}
418421
}
419422

420423
.show_small {
@@ -438,10 +441,11 @@ small {
438441
{
439442
display: none;
440443
}
444+
441445
.multiop tr td:nth-child(5){
442446
display: table-cell;
443447
}
444-
448+
445449
#address-token-transfers .block {
446450
max-width: 100vw;
447451
overflow: hidden;

js/ethplorer.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -240,8 +240,8 @@ Ethplorer = {
240240
var opParties = '';
241241
if(op.address){
242242
op.to = op.address;
243-
var address = op.address; // Ethplorer.Utils.getEthplorerLink(op.address, op.address, false);
244-
opParties = 'for ' + address;
243+
var address = op.address;
244+
opParties = '<span class="cuttable-address">for ' + address + '</span>';
245245
}else if(op.from && op.to){
246246
var from = '<span class="cuttable-address">from ' + op.from + '</span>';
247247
var to = '<span class="cuttable-address">to ' + op.to + '</span>';
@@ -251,7 +251,7 @@ Ethplorer = {
251251
var row = $(
252252
'<tr data-op-idx="' + idx + '">' +
253253
'<td><a class="dashed">Details</a></td>' +
254-
'<td><span>' + op.type +
254+
'<td><span>' + op.type.toString().toUpperCase() +
255255
'<span class="show_small"> ' + op.value + ' ' + op.symbol + '</span>' +
256256
'<br class="show_small"> ' + opParties + '</span></td>' +
257257
'<td class="text-right"><span>' + op.value + '</span></td>' +

0 commit comments

Comments
 (0)