-
Notifications
You must be signed in to change notification settings - Fork 10k
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 small visual quirk in thumbnail viewer #10363
Conversation
outline: 0; | ||
} | ||
|
||
#thumbnailView > a:focus { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Out of curiosity, is there a reason why these two blocks couldn't just be combined like so:
#thumbnailView > a:active,
#thumbnailView > a:focus {
outline: 0;
}
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Out of curiosity, is there a reason why these two blocks couldn't just be combined like so:
#thumbnailView > a:active, #thumbnailView > a:focus { outline: 0; }
No, there isn't, I forgot you could group selectors like that. Thanks!
/botio-linux preview |
From: Bot.io (Linux m4)ReceivedCommand cmd_preview from @timvandermeij received. Current queue size: 0 Live output at: http://54.67.70.0:8877/c0f24a3c4e126b1/output.txt |
From: Bot.io (Linux m4)SuccessFull output at http://54.67.70.0:8877/c0f24a3c4e126b1/output.txt Total script time: 1.69 mins Published |
Nice work! |
Remove the blue/red selection that would appear when you click a thumbnail in the thumbnail viewer in Firefox.
Fixes #10209