From f8fa3d8387fd7ca4e53cda8c28738ff4025f1433 Mon Sep 17 00:00:00 2001
From: Conrad Zelck <git@simpel.cc>
Date: Fri, 6 Oct 2023 17:16:13 +0200
Subject: [PATCH] style: disable dialog.busy-dialog::backdrop

As the busy dialog most of the time is very short a backdrop tends the
whole page to flicker. To avoid that let it original w/o backdrop.

Signed-off-by: Conrad Zelck <git@simpel.cc>
---
 style.css | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/style.css b/style.css
index b09ecdc..b45806a 100644
--- a/style.css
+++ b/style.css
@@ -54,6 +54,10 @@ dialog::backdrop {
   background: rgba(85, 85, 85, 0.80);
 }
 
+dialog.busy-dialog::backdrop {
+  background: inherit;
+}
+
 .error-dialog {
   color: white;
   background-color: #AE0000;
-- 
GitLab