Closed lewisl9029 closed 2 years ago
I vote for option 1, as well.
I know this is unpopular, but the main idea is to remove all the styles, and then the user/developer will add focus styles.
Think that this is the reset project, and on top of it, you can add any new level of styles.
If you check checkboxes and radio buttons, you will see that you can't see them after resetting them. This is because the main idea is to reset, and after that, web developers will add their styles.
This article is a little dated now, but Eric Meyer reflects on – in his words – the "blunder" of removing visible focus styles from his original CSS reset.
That said, this isn't an exact parallel and @elad2412's position isn't unreasonable. But I fear that developers are much more likely to verify that a checkbox is visible than that the focus styles are appropriate.
@elad2412 would you be open to option 2, i.e. add something prominent to the readme to recommend providing focus styles?
While I completely agree with @SeanMcP that it's probably not going to be enough, and a vast majority of users that adopt this reset will end up ignoring focus states completely, we'll at least be in a slightly better situation than the status quo where it's not mentioned at all.
Hi @SeanMcP, This CSS reset's primary goal is to take the CSS reset to the next level of resetting the basic styles which aren't under shadow DOM. I understand your opinion, but this misses this CSS reset's primary goal.
Hi @lewisl9029, I added the "Accessibility Recommendation" section on the READ ME.
Issue closed.
Just wanted to add that this seems to bring back the browser focus styles. There may be some missing use cases but this seems to work:
:focus {
outline: revert;
}
Putting that below the-new-css-reset
seems to do the trick.
First of all, thank you so much for building this! I've been trying it out in a few projects and it's honestly been a breath of fresh air to not have to constantly fight with default user agent styles to get things looking exactly the way I want.
That said, I do have some concerns around accessibility of the reset in its default configuration, specifically because it removes the default browser focus outlines. This is the reset working as intended, but as it grows in popularity I fear that people who use it might not realize this and will build apps with really poor accessibility for keyboard users by not providing any custom focus styles on top of the reset.
Some potential ideas to work around this:
I would personally vastly prefer 1 as a safer default, but 2 is probably better than nothing if we want to err on the purist side and override as much styling as possible. Definitely open to other ideas as well, and happy to send a PR once we settle on the approach!