Problem/Motivation
We noticed that the color change for the 2nd level menu links doesn't work. I think that's because it gets overridden by the .navbar-nav > .dropdown.active > .dropdown-menu .nav-link selector. I think that color definition in _navbar-second-level-horizontal.scss can be removed.
Steps to reproduce
Set up a menu with the 2nd level displayed horizontally.
Proposed resolution
Either remove the color definition or add the
@include hover-focus() {
color: $header-link-hover-color;
}
definition.
| Comment | File | Size | Author |
|---|---|---|---|
| #4 | 3173581-2nd-level-menu-links-hover-4.patch | 689 bytes | sasanikolic |
| #3 | 3173581-2nd-level-menu-links-hover.patch | 757 bytes | sasanikolic |
Comments
Comment #2
sasanikolic commentedComment #3
sasanikolic commentedThis patch removes the color definition for the 2nd level menu links that are under an active 1st level link. Although now I double-checked, and I see this was explecitly set in
dc644b25ebf301caece6f12966891fc1f2ad4f91commit. Not sure why, as there's no specific comment.Maybe it'd be better to add a hover effect in this case?
Comment #4
sasanikolic commentedHere is the patch with the 2nd proposal.
Comment #6
pivica commentedThx, committed.