From 1ded7698fff24e203dac113702121bfe576796a0 Mon Sep 17 00:00:00 2001 From: wukko Date: Sat, 27 Jul 2024 19:26:39 +0600 Subject: [PATCH] web/Omnibox: fix input area dimming in safari when processing --- web/src/components/save/Omnibox.svelte | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/web/src/components/save/Omnibox.svelte b/web/src/components/save/Omnibox.svelte index cfff9f83..b39b4b60 100644 --- a/web/src/components/save/Omnibox.svelte +++ b/web/src/components/save/Omnibox.svelte @@ -264,6 +264,11 @@ color: var(--gray); } + /* fix for safari */ + input:disabled { + opacity: 1; + } + #action-container { display: flex; flex-direction: row;