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
{{ message }}
This repository has been archived by the owner on Dec 11, 2019. It is now read-only.
Did you search for similar issues before submitting this one?
yes
Describe the issue you encountered:
a lot of style issues arise because standard css rules are not for electron applications and devs need to remember overriding bad UX standards
recomendations:
box-sizing: border-box; (simpler box model)
-webkit-user-select: none; (non selectable text is standard outside of webviews)
*:focus {
outline: none; (no focus outlines)
}
The text was updated successfully, but these errors were encountered:
Did you search for similar issues before submitting this one?
yes
Describe the issue you encountered:
a lot of style issues arise because standard css rules are not for electron applications and devs need to remember overriding bad UX standards
eg:
#4355
or
#4509
recomendations:
box-sizing: border-box; (simpler box model)
-webkit-user-select: none; (non selectable text is standard outside of webviews)
*:focus {
outline: none; (no focus outlines)
}
The text was updated successfully, but these errors were encountered: