-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bug: Smart Menu font color in 2nd level differs from 1st level and might even be invisible #459
Comments
My not-so-nice-fix is: /* Fix für Github Boost Union Issue #459 */
.navbar.navbar-dark.bg-dark .dropdown-item + ul > li > a,
.navbar.navbar-dark.bg-primary .dropdown-item + ul > li > a {
color: inherit;
}
.navbar.navbar-dark.bg-dark .dropdown-item + ul > li > a:hover,
.navbar.navbar-dark.bg-dark .dropdown-item + ul > li > a:focus,
.navbar.navbar-dark.bg-primary .dropdown-item + ul > li > a:hover,
.navbar.navbar-dark.bg-primary .dropdown-item + ul > li > a:focus {
color: #fff !important;
background-color: #002350;
}
.dropdown-menu > .dropdown-submenu > ul {
border-radius: 0 !important;
}
/* Ende Fix */ |
Dear @BerengarWLehr , |
Info: @kaaermes and @BerengarWLehr The fix is in planning for the next smart menu dev cycle :-) |
Many thanks for your patience with this issue. In the unexpected case that PR #602 will introduce new hovering issues, a follow-up issue should be opened. |
As visible in the screenshots color and background-color are not in line with the 1st level colors. The text is invisible due to the rule
background color is overriden by
It would be splendid if the 2nd level would behave as the 1st level (also using the same border-radius) but also as the following css rule:
The text was updated successfully, but these errors were encountered: