-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
Refactor language picker to improve accessibility #6538
Refactor language picker to improve accessibility #6538
Conversation
@@ -1636,5 +1636,7 @@ Mange hilsner fra Umbraco robotten | |||
<key alias="openBackofficeSearch">Åben backoffice søgning</key> | |||
<key alias="openCloseBackofficeHelp">Åben/Luk backoffice hjælp</key> | |||
<key alias="openCloseBackofficeProfileOptions">Åben/Luk dine profil indstillinger</key> | |||
<key alias="currentLanguage">Aktivt sprog:</key> | |||
<key alias="switchLanguage">Skift sprog til:</key> |
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.
@BatJan I would probably just add the colons in the view/controller instead. It would make it easier to reuse these keys in other areas.
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.
Yes, good point - Done now 👍
Thanks @BatJan - we'll have a look soon! |
Awesome, thanks very much @BatJan ! |
…ton (#6561) * Improves accessability of the three dot tree options button * Updated list view headers styling to have the link/hand cursor visible only if the header is sortable (and hence clicking has an effect) * Allows members to be ordered by additional system fields (#6575) * Fix ContentType.Alias matching in PublishedContentExtensions an… (#6577) * Fixes an error in #6538 by moving the colon character to the sr-only span * V8: Move misplaced colon in language selector (#6692) * V8: It should be possible to disallow all types at content root (#6580) * Pick macro parameters in an infinite editor like content type properties (#6586) * Reload node children after publishing with descendants * Correct URL decoding of macro partial view names (#6592) * Fix semantics for list views (#6595) * fixes test * fixing tests * Improved menu context
Prerequisites
Description
In this PR I have done the following
<div>
and<a>
to<button>
to fix keyboard navigation and semanticsaria-haspopup
andaria-expanded
attributesThe visual changes from before and after can be seen below
Before
After
I look forward to receive any feedback you might have for this 👍