From f8ade2bf083253886eef8ee37768fe9ddb12cdb0 Mon Sep 17 00:00:00 2001 From: wukko Date: Mon, 24 Jun 2024 23:48:37 +0600 Subject: [PATCH] web/Omnibox: don't show focus stroke in link bar --- web/src/components/save/Omnibox.svelte | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/web/src/components/save/Omnibox.svelte b/web/src/components/save/Omnibox.svelte index 87682876..f4d80b54 100644 --- a/web/src/components/save/Omnibox.svelte +++ b/web/src/components/save/Omnibox.svelte @@ -153,6 +153,10 @@ font-size: inherit; } + #link-area:focus-visible { + box-shadow: unset; + } + #link-area::placeholder { color: var(--gray); }