From ec53cc8707f830b0888c8c8cb6d4ae3cb03b2471 Mon Sep 17 00:00:00 2001 From: Matthias Wirth Date: Sun, 31 Jul 2022 13:38:32 +0200 Subject: [PATCH] loader: don't gray out page --- html/script.js | 2 +- html/style.css | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/html/script.js b/html/script.js index e0ca4bd..077c948 100644 --- a/html/script.js +++ b/html/script.js @@ -1890,7 +1890,7 @@ function startPage() { selectAllPlanes(); if (!heatmap) - jQuery("#loader").addClass("hidden"); + jQuery("#loader").hide(); if (replay) { showReplayBar(); diff --git a/html/style.css b/html/style.css index 0f59ae5..3f308c7 100644 --- a/html/style.css +++ b/html/style.css @@ -272,7 +272,6 @@ select { white-space: pre-line; } -div#loader { z-index: 99; position: absolute; left: 0; top: 0; bottom: 0; right: 0; background: #000; opacity: 0.8; filter: alpha(opacity=80); } #loader_progress { width: calc(250px * var(--SCALE)); height: calc( 20px * var(--SCALE)); position: absolute; top: 50%; left: 50%; margin: calc(128px * var(--SCALE)) 0 0 - calc(125px * var(--SCALE)); }