I use Foundation (without SCSS) as the front-end framework for my web project. When it comes to customization, I prefer not to modify any third-party modules referenced by my project, but use the cascading order rules of CSS to override whatever properties defined in the framework that I want to override. I have a tricky scenario here, however.
Foundation disables the user agent's outline
property for for text:focused
with text:focused {outline: none !important}
. Is there any way, without modifying the framework's CSS, to force the use of the user agent's outline
property?