File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -415,6 +415,9 @@ small {
415
415
font-size : 18px ;
416
416
padding-left : 8px ;
417
417
}
418
+ .navbar {
419
+ margin-bottom : 0px ;
420
+ }
418
421
}
419
422
420
423
.show_small {
@@ -438,10 +441,11 @@ small {
438
441
{
439
442
display : none;
440
443
}
444
+
441
445
.multiop tr td : nth-child (5 ){
442
446
display : table-cell;
443
447
}
444
-
448
+
445
449
# address-token-transfers .block {
446
450
max-width : 100vw ;
447
451
overflow : hidden;
Original file line number Diff line number Diff line change @@ -240,8 +240,8 @@ Ethplorer = {
240
240
var opParties = '' ;
241
241
if ( op . address ) {
242
242
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>' ;
245
245
} else if ( op . from && op . to ) {
246
246
var from = '<span class="cuttable-address">from ' + op . from + '</span>' ;
247
247
var to = '<span class="cuttable-address">to ' + op . to + '</span>' ;
@@ -251,7 +251,7 @@ Ethplorer = {
251
251
var row = $ (
252
252
'<tr data-op-idx="' + idx + '">' +
253
253
'<td><a class="dashed">Details</a></td>' +
254
- '<td><span>' + op . type +
254
+ '<td><span>' + op . type . toString ( ) . toUpperCase ( ) +
255
255
'<span class="show_small"> ' + op . value + ' ' + op . symbol + '</span>' +
256
256
'<br class="show_small"> ' + opParties + '</span></td>' +
257
257
'<td class="text-right"><span>' + op . value + '</span></td>' +
You can’t perform that action at this time.
0 commit comments