Skip to content

Commit b3c8705

Browse files
committed
Small css fixes
1 parent df9a057 commit b3c8705

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

css/ethplorer.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,8 @@ a.dashed {
301301
.total-in-out-small {
302302
font-size: 0.8em;
303303
opacity: 0.4;
304-
line-height: 12px;
304+
line-height: 14px;
305+
padding-top: 4px;
305306
}
306307

307308
/* Timer*/

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script>
1818
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>
1919
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
20-
<script src="/js/bignumber.js?v=8"></script>
21-
<script src="/js/ethplorer.js?v=8"></script>
20+
<script src="/js/bignumber.js?v=9"></script>
21+
<script src="/js/ethplorer.js?v=9"></script>
2222
<script src="/cfg/config.ethplorer.js?v=3"></script>
2323
</head>
2424
<body>

js/ethplorer.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -490,8 +490,8 @@ Ethplorer = {
490490
value += '<br />';
491491
var totalIn = Ethplorer.Utils.toBig(balance.totalIn).div(Math.pow(10, oToken.decimals));
492492
var totalOut = Ethplorer.Utils.toBig(balance.totalOut).div(Math.pow(10, oToken.decimals));
493-
value += ('<div class="total-in-out-small">Total IN: ' + Ethplorer.Utils.formatNum(totalIn, true, oToken.decimals, true) + '<br />');
494-
value += ('Total OUT: ' + Ethplorer.Utils.formatNum(totalOut, true, oToken.decimals, true) + '</div>');
493+
value += ('<div class="total-in-out-small">Total In: ' + Ethplorer.Utils.formatNum(totalIn, true, oToken.decimals, true) + '<br />');
494+
value += ('Total Out: ' + Ethplorer.Utils.formatNum(totalOut, true, oToken.decimals, true) + '</div>');
495495
row.append('<TD>' + value + '</TD>');
496496
}
497497
row.find('td:eq(1)').addClass('text-right');

0 commit comments

Comments
 (0)