-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Accessibility improvements #868
Conversation
@@ -23,7 +23,7 @@ p { | |||
|
|||
a { | |||
color: $action-color; | |||
text-decoration: none; | |||
text-decoration-skip: ink; |
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.
Unknown property text-decoration-skip
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.
Hound should recognize this going forward from 6e88449#diff-b9ee5b6eb41f94a0d74486255de4ad10R128
Great! Could I get you to rebase this? |
Underlines are a standard way of indicating a link. By only using color to indicate links, people with vision impairments, such as color blindness, might not be able to distinguish linked text from non-linked text.
The vertical pipe is read aloud by screen readers. So a page title of `page | Administrate` would be read as "page vertical pipe Administrate." By using a hyphen instead, the screen reader will read as "page, Administrate." Related: #794
ARIA landmark roles provide useful navigation features for assistive technology and helps people understand the content structure.
b445299
to
62af02d
Compare
@nickcharlton Rebased. |
page | Administrate
would be read as ”page vertical pipe Administrate.”