[A11y] Fix Framework filter tooltip's confusing double behavior #9454
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Addresses #9414
The tooltip next to the Frameworks filters served both as a popover (showed some info when you hovered) and also as a link to our Target Frameworks docs, and the same tooltip icon produced two separate tab stops that told users this icon served different purposes. We needed to either separate these into 2 separate controls, or get rid of one of them. I got rid of the popover, but using the 'title' attribute in the link allows me to serve up the same information when a user hovers or tabs to the link icon. I think this should fix the a11y issue while still providing the users the same level of context.
I also changed the link to point to our nuget.org filtering and sorting docs, rather than this page that covers Target Frameworks in general. The search docs are more relevant in this case, and they contain a link to the Target Frameworks docs anyway.
Earlier, we would see this popover when we hovered on the icon,
Now, when you hover, the same information will pop up, but it will look different to these popovers. I wasn't able to get a screenshot because the info disappeared when I tried, but it looks like what you'll see when you hover over any of the other links on the search page like owners or tags. There is no other UI change.