make outgoing connections scroll better & not be textarea
This commit is contained in:
parent
47e81a4bb5
commit
a704eaaf60
@ -188,7 +188,7 @@
|
|||||||
<i class="fas fa-link"></i>
|
<i class="fas fa-link"></i>
|
||||||
Outgoing Connections:
|
Outgoing Connections:
|
||||||
<div class="control">
|
<div class="control">
|
||||||
<pre id='connectedNodes' class="textarea" rows="5" readonly>Unable to get nodes</pre>
|
<pre id='connectedNodes'>Unable to get nodes</pre>
|
||||||
</div>
|
</div>
|
||||||
<br>
|
<br>
|
||||||
<h6>Blocks</h6>
|
<h6>Blocks</h6>
|
||||||
|
@ -13,3 +13,7 @@
|
|||||||
.motdCard{
|
.motdCard{
|
||||||
margin-top: 1em;
|
margin-top: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#connectedNodes{
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
@ -19,7 +19,6 @@
|
|||||||
uptimeDisplay = document.getElementById('uptime')
|
uptimeDisplay = document.getElementById('uptime')
|
||||||
connectedDisplay = document.getElementById('connectedNodes')
|
connectedDisplay = document.getElementById('connectedNodes')
|
||||||
connectedDisplay.style.maxHeight = '300px'
|
connectedDisplay.style.maxHeight = '300px'
|
||||||
connectedDisplay.style.overflowY = 'scroll'
|
|
||||||
storedBlockDisplay = document.getElementById('storedBlocks')
|
storedBlockDisplay = document.getElementById('storedBlocks')
|
||||||
queuedBlockDisplay = document.getElementById('blockQueue')
|
queuedBlockDisplay = document.getElementById('blockQueue')
|
||||||
lastIncoming = document.getElementById('lastIncoming')
|
lastIncoming = document.getElementById('lastIncoming')
|
||||||
|
Loading…
Reference in New Issue
Block a user