mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 13:31:54 +00:00
fix(svelte): Show focus style when tabbing through search query examples (#64439)
## Test plan Manual testing.
This commit is contained in:
parent
e93b69bef2
commit
9667975db6
@ -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;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user