From f233efd4a26b194114a535b5ef613e2e0f36a52c Mon Sep 17 00:00:00 2001 From: mmcwilliams Date: Mon, 12 Feb 2018 13:59:54 -0500 Subject: [PATCH] Hide spinner unless explicitly shown --- app/www/static/css/index.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/www/static/css/index.css b/app/www/static/css/index.css index 6af2666..7ef3263 100644 --- a/app/www/static/css/index.css +++ b/app/www/static/css/index.css @@ -326,9 +326,14 @@ footer > div.selected{ display: block; } #spinner{ + display: none; margin-top: 200px; } +#spinner.active{ + display: block; +} + #disconnect,#scan{ display: none; }