"disabled" class doesn't disable the link
Created by: matthewspace
One feature that I'd like to request is regarding the .nav-link.disabled
class.
Adding the disabled
class to the link only changes the color of the link; however it would be convenient if the class kept the default mouse pointer state and when clicked it wouldn't redirect you to the specified URL. This is what it currently looks like when you hover your mouse over the disabled link:
I'd say changing the .nav-link.disabled
class up a bit would be nice.
.nav-link.disabled {
color: #6c757d;
pointer-events: none;
cursor: default;
}