From f6a3e98ac3dcb19d54e7fdbba96bf2fa15fc2b3f Mon Sep 17 00:00:00 2001 From: Sawan Sunar <62794662+Sawansunar56@users.noreply.github.com> Date: Mon, 2 Dec 2024 22:04:39 +0530 Subject: [PATCH] fix deck button not clickable in stats screen (#3602) Changed z-index of the underlying spinner --- CONTRIBUTORS | 1 + ts/routes/graphs/RangeBox.svelte | 2 ++ 2 files changed, 3 insertions(+) diff --git a/CONTRIBUTORS b/CONTRIBUTORS index a4b1aefb1..9bc58bf5c 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -197,6 +197,7 @@ twwn Cy Pokhrel Park Hyunwoo Tomas Fabrizio Orsi +Sawan Sunar ******************** diff --git a/ts/routes/graphs/RangeBox.svelte b/ts/routes/graphs/RangeBox.svelte index 6be754fe7..a0c895e8e 100644 --- a/ts/routes/graphs/RangeBox.svelte +++ b/ts/routes/graphs/RangeBox.svelte @@ -144,11 +144,13 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html animation: spin; animation-duration: 1s; animation-iteration-count: infinite; + z-index: -1; opacity: 0; &.loading { opacity: 0.5; + z-index: 1; transition: opacity var(--transition-slow); } }