question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

bootstrap@4.0.0-alpha.6 breaks dropdown css

See original GitHub issue

Just a warning that the 4.0.0 alpha release for bootstrap 4 breaks the drop down css.

You can reproduce error with

npm i bootstrap@next --save 

or

npm i bootstrap@4.0.0-alpha.6 --save

Issue Analytics

  • State:open
  • Created 7 years ago
  • Reactions:7
  • Comments:9

github_iconTop GitHub Comments

7reactions
lucasgladdingcommented, Feb 11, 2017

It looks like they just switched ‘open’ to ‘show’ on the dropdown parent. A quick fix would be adding this as custom CSS to your project.

.open {
  > .dropdown-menu {
    display: block;
  }
  > a {
    outline: 0;
  }
}

I’ll try to put together a pull request for it. I would just add ‘show’ to the select component template, though I need to check to confirm that.

1reaction
jmlscommented, Feb 1, 2017

anyone got a fix for this ? desperately need the select to work 😉

Read more comments on GitHub >

github_iconTop Results From Across the Web

Dropdowns - Bootstrap
Dropdowns are toggleable, contextual overlays for displaying lists of links and more. They're made interactive with the included Bootstrap dropdown ...
Read more >
Bootstrap 4 Cheat Sheet - The ultimate list of Bootstrap classes
Quickly find your Bootstrap classes on this interactive Bootstrap cheat sheet. It includes code samples and live preview of elements.
Read more >
Bootstrap v4.0.0-alpha.6 navbar not styling - Stack Overflow
If you download Bootstrap v4 alfa 6 version, it should work - just in case try to match the version of your js...
Read more >
Bootstrap 4 Dropdowns - W3Schools
Well organized and easy to understand Web building tutorials with lots of examples of how to use HTML, CSS, JavaScript, SQL, Python, PHP,...
Read more >
Bootstrap 4 Cheat Sheet - UserManual.wiki
css /bootstrap.min.css">. <!-- Main CSS -->. <link rel="stylesheet" href="css/main.css"> ... <div class="collapse navbar-collapse" id="navbarNavDropdown">.
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found