message_failed: Hide focus rectangle while animating.

The focus rectangle would spin along with the arrows, which looked bad.

We do want to allow focus rectangles on this element for keyboard interaction,
so we just disable the focus rectangle during the animation.

Fixes #24110.
This commit is contained in:
Praveen Kumar 2023-01-20 00:10:27 +05:30 committed by GitHub
parent cc35e2f9b2
commit 5b89f34f48
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -1078,6 +1078,7 @@ td.pointer {
.rotating {
display: inline-block;
outline: none;
animation: rotate 1s infinite linear;
}