We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
For linked images where the image is assigned CSS class img-responsive, there is no visible indication when the link is focused.
img-responsive
Steps to Reproduce:
Expected: Focus should be visible. Actual: Focus is not visible.
WCAG Success Criteria (AA): 2.4.7: Focus Visible
Relevant technique: CSS C15: Using CSS to change the presentation of a user interface component when it receives focus
Relevant failure: F78: Failure of Success Criterion 2.4.7 due to styling element outlines and borders in a way that removes or renders non-visible the visual focus indicator
Remediation guidance:
Focus styling appears to be absent due to assignment of display: block on images of class name img-responsive.
display: block
The text was updated successfully, but these errors were encountered:
remove img class to allow focus outline #358
b431758
Signed-off-by: Robert Jolly <[email protected]>
No branches or pull requests
For linked images where the image is assigned CSS class
img-responsive
, there is no visible indication when the link is focused.Steps to Reproduce:
Expected: Focus should be visible.
Actual: Focus is not visible.
WCAG Success Criteria (AA): 2.4.7: Focus Visible
Relevant technique: CSS C15: Using CSS to change the presentation of a user interface component when it receives focus
Relevant failure: F78: Failure of Success Criterion 2.4.7 due to styling element outlines and borders in a way that removes or renders non-visible the visual focus indicator
Remediation guidance:
Focus styling appears to be absent due to assignment of
display: block
on images of class nameimg-responsive
.The text was updated successfully, but these errors were encountered: