You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
The radio buttons for the "First Time Buyer" and "Previous Patterns" are not focusable because the actual radio button is not being displayed.
Expected behavior
The 'First Time Buyer' and 'Previous Patterns' radio buttons are focusable. Someone should be able to 'tab' into those inputs
Additional context
The inputs should be focusable so that users who use assistive technology can interact with them.
They aren't currently focusable because they aren't being displayed. Browsers will do some checking to see if the the HTML element is supposed to be there (this is where display:none is messing it up) and will ignore anything that isn't going to be displayed.
If you delete that line in the css, the radio buttons will come back and this fixes the issue, but it messes up the page visually. I tried to use opacity: 0 to compromise, but still had no luck.
The text was updated successfully, but these errors were encountered:
Describe the bug
The radio buttons for the "First Time Buyer" and "Previous Patterns" are not focusable because the actual radio button is not being displayed.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
The 'First Time Buyer' and 'Previous Patterns' radio buttons are focusable. Someone should be able to 'tab' into those inputs
Additional context
The inputs should be focusable so that users who use assistive technology can interact with them.
They aren't currently focusable because they aren't being displayed. Browsers will do some checking to see if the the HTML element is supposed to be there (this is where display:none is messing it up) and will ignore anything that isn't going to be displayed.
If you delete that line in the css, the radio buttons will come back and this fixes the issue, but it messes up the page visually. I tried to use
opacity: 0
to compromise, but still had no luck.The text was updated successfully, but these errors were encountered: