We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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
The text was updated successfully, but these errors were encountered:
Hi! I would like to give it a try on this issue. Could you please assign it to me?
Sorry, something went wrong.
No branches or pull requests
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?The text was updated successfully, but these errors were encountered: