Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Issue 8608: When using tab key focus does not appear correctly on chat rows #10368

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@
}
:focus-visible {
outline: 0;
box-shadow: 0px 0px 0px 1px #0185ff;
box-shadow: inset 0px 0px 0px 2px #0185ff;
}
:focus[data-focusvisible-polyfill] {
outline: 0;
box-shadow: 0px 0px 0px 1px #0185ff;
box-shadow: inset 0px 0px 0px 2px #0185ff;
}
input:focus-visible, input:focus[data-focusvisible-polyfill],
select:focus-visible, select:focus[data-focusvisible-polyfill] {
Expand Down