From a704eaaf603e0845076bba64a9b6204625381942 Mon Sep 17 00:00:00 2001 From: Kevin Froman Date: Wed, 9 Oct 2019 22:32:19 -0500 Subject: [PATCH] make outgoing connections scroll better & not be textarea --- static-data/www/private/index.html | 2 +- static-data/www/private/main.css | 4 ++++ static-data/www/shared/main/stats.js | 1 - 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/static-data/www/private/index.html b/static-data/www/private/index.html index ecc548f2..b632a108 100755 --- a/static-data/www/private/index.html +++ b/static-data/www/private/index.html @@ -188,7 +188,7 @@ Outgoing Connections:
-
Unable to get nodes
+
Unable to get nodes

Blocks
diff --git a/static-data/www/private/main.css b/static-data/www/private/main.css index 2d7ed83f..c90b2ae5 100755 --- a/static-data/www/private/main.css +++ b/static-data/www/private/main.css @@ -12,4 +12,8 @@ .motdCard{ margin-top: 1em; +} + +#connectedNodes{ + overflow-y: auto; } \ No newline at end of file diff --git a/static-data/www/shared/main/stats.js b/static-data/www/shared/main/stats.js index 3265ce4f..3517bd3b 100755 --- a/static-data/www/shared/main/stats.js +++ b/static-data/www/shared/main/stats.js @@ -19,7 +19,6 @@ uptimeDisplay = document.getElementById('uptime') connectedDisplay = document.getElementById('connectedNodes') connectedDisplay.style.maxHeight = '300px' -connectedDisplay.style.overflowY = 'scroll' storedBlockDisplay = document.getElementById('storedBlocks') queuedBlockDisplay = document.getElementById('blockQueue') lastIncoming = document.getElementById('lastIncoming')