fix(svelte): Show focus style when tabbing through search query examples (#64439)

## Test plan

Manual testing.
This commit is contained in:
Felix Kling 2024-08-13 14:11:28 +02:00 committed by GitHub
parent e93b69bef2
commit 9667975db6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -137,6 +137,12 @@
user-select: none;
border: 1px solid transparent;
// We use box-shadow for focus styles. Since we set our own
// box-shadow we have to explicitly combine it with the focus box-shadow.
&:focus-visible {
box-shadow: var(--focus-shadow-inset), var(--search-input-shadow);
}
&:hover {
border-color: var(--border-color);
text-decoration: none;