Skip to content
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

Dropdowns in resonsive mode still have up arrows #4903

Closed
atamur opened this issue Sep 1, 2012 · 1 comment
Closed

Dropdowns in resonsive mode still have up arrows #4903

atamur opened this issue Sep 1, 2012 · 1 comment

Comments

@atamur
Copy link

atamur commented Sep 1, 2012

Hi,

code at the line 111 in less/responsive-navbar.less:

  .nav-collapse .dropdown-menu:before,
  .nav-collapse .dropdown-menu:after {
    display: none;
  }

doesn't work as intended as the actual class for the arrows is much more specific now:
.navbar .nav > li > .dropdown-menu:before

I worked around that with the following patch on top of 2.1.0

@media (max-width: 767px) {

    .navbar .nav-collapse .nav > li > .dropdown-menu:before,
    .navbar .nav-collapse .nav > li > .dropdown-menu:after {
        display: none;
    }

}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants