From ad31a3938e330f618075aa1d870a81057c83164a Mon Sep 17 00:00:00 2001 From: "Caleb D. Williams" Date: Wed, 6 Aug 2025 15:13:27 -0500 Subject: [PATCH] fix: progress indicator sets the pointer events to none on the progress indicator --- client-src/progress.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client-src/progress.js b/client-src/progress.js index 984c4773d7..acac9ed77a 100644 --- a/client-src/progress.js +++ b/client-src/progress.js @@ -52,6 +52,7 @@ export function defineProgressElement() { position: fixed; right: 5%; top: 5%; + pointer-events: none; transition: opacity .25s ease-in-out; z-index: 2147483645; } @@ -116,6 +117,7 @@ export function defineProgressElement() { position: fixed; top: 0; left: 0; + pointer-events: none; height: 4px; width: 100vw; z-index: 2147483645;