Open thejonroberts opened 1 month ago
ex: all
When I tab through a form, the focus outline disappears for certain inputs. Notable in case contact form. Affects at least checkbox inputs.
This is annoying for me, who likes to use keyboard for things, but a huge problem for accessibility.
I expect to see an outline of where I currently am in the form so that I can tab navigate all the way through it.
Login Details: Link to QA site
Login Emails:
/all_casa_admins/sign_in
password for all users: 12345678
public/assets/css/main.css
a:focus, input:focus, textarea:focus, button:focus, .btn:focus, .btn.focus, .btn:not(:disabled):not(.disabled).active, .btn:not(:disabled):not(.disabled):active { text-decoration: none; outline: none; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; }
In app/views/layouts/application.html.erb:
app/views/layouts/application.html.erb
<%= javascript_include_tag "application", "data-turbo-track": "reload", defer: true %> <%= stylesheet_link_tag "application", "data-turbo-track": "reload" %> <% if all_casa_admin_signed_in? %> <%= javascript_include_tag "all_casa_admin", "data-turbo-track": "reload", defer: true %> <% end %> <link rel="stylesheet" href="/assets/css/lineicons.css"> <link rel="stylesheet" href="/assets/css/materialdesignicons.min.css"> <link rel="stylesheet" href="/assets/css/main.css">
proposed solutions:
stylesheet_link_tag
Hi! I would like to give it a try on this issue. Could you please assign it to me?
Impacted User Types
Environment
ex: all
Current Behavior
When I tab through a form, the focus outline disappears for certain inputs. Notable in case contact form. Affects at least checkbox inputs.
This is annoying for me, who likes to use keyboard for things, but a huge problem for accessibility.
Expected Behavior
I expect to see an outline of where I currently am in the form so that I can tab navigate all the way through it.
How to Replicate
How to access the QA site
Login Details:
Link to QA site
Login Emails:
/all_casa_admins/sign_in
password for all users: 12345678
The Problem:
public/assets/css/main.css
In
app/views/layouts/application.html.erb
:proposed solutions:
stylesheet_link_tag
in app layout?