I am working with Bootstrap SASS and Bootstrap SASS Loader.
I am defining a _bootstrap-customizations.scss
file that allows me to override BS default variables without changing it's core files.
The core files define some a:hover, a:active
CSS declarations.
I would like to turn that off universally for all a
elements without
defining this explicitly on each link
by name-spacing or whatever
or using
!important
I'd like to turn a:hover
effects off completely(from _bootstrap-customizations.scss
).
If it matters I'm using the BEM methodology as well for writing my SASS files