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
Not sure why outline was deliberately, removed, hiding the indication of where your keyboard focus is:
https://github.com/tastejs/todomvc-app-css/blob/master/index.css#L37
I've found that in a more accessible TodoMVC implementation, I need to add the following CSS:
/* this block re-adds the outline, to support keyboard navigation / tabbing */ :focus, .view label:focus, .todo-list li .toggle:focus + label, .toggle-all:focus + label { /* !important needed, because todomvc styles deliberately disable the outline */ outline: #d86f95 solid !important; }
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Not sure why outline was deliberately, removed, hiding the indication of where your keyboard focus is:
https://github.com/tastejs/todomvc-app-css/blob/master/index.css#L37
I've found that in a more accessible TodoMVC implementation, I need to add the following CSS:
The text was updated successfully, but these errors were encountered: