Found 8 bookmarks
Newest
Beautiful focus outlines · Medienbäcker Thomas Günther
Beautiful focus outlines · Medienbäcker Thomas Günther
Some good focus considerations by @medienbaecker@mastodon.social
Unfortunately, focus outlines are often overlooked in web design. Clients and designers might not even notice them, leaving developers to handle design and implementation. Some might even suggest removing focus outlines for a cleaner aesthetic 😱
·medienbaecker.com·
Beautiful focus outlines · Medienbäcker Thomas Günther
Aria-activedescendant is not focus | Sarah Higley
Aria-activedescendant is not focus | Sarah Higley
@codingchaos@vis.social with everything there is to know about aria-activedescendant, and more!
This is an attribute that is entirely concerned with screen reader accessibility. Specifically, it allows certain scoped exceptions to the screen reader behavior of only enabling interaction with a single element at a time.
The thing about ARIA is that it does not affect browser behavior or functionality -- only semantics and accessibility API mappings. All keyboard events will still fire on the true focused element, and there are no global DOM methods to query the currently relevant active descendant in the manner of document.activeElement. The only context in which the active descendant behaves like a second focus is when it comes to a screen reader's virtual cursor.
Even for screen readers, aria-activedescendant is not entirely the same as a second focus.
·sarahmhigley.com·
Aria-activedescendant is not focus | Sarah Higley
Where to Put Focus When Deleting a Thing
Where to Put Focus When Deleting a Thing
TL;DR: When deleting something you should generally move focus to the prior equivalent control or its grouping container. Why This Is a Thing Plenty of user interfaces let users delete things that are on the screen. It may be an extra address, a calendar item, a message (the same as…
·adrianroselli.com·
Where to Put Focus When Deleting a Thing