hernansartorio / jquery-nice-select

A lightweight jQuery plugin that replaces native select elements with customizable dropdowns.
http://jqueryniceselect.hernansartorio.com
957 stars 286 forks source link

NiceSelect Inside Bootstrap Modal #90

Closed veryard closed 2 years ago

veryard commented 5 years ago

I was having some trouble with there being a huge scrollbar in a small modal that was using niceSelect.

To fix I added the following: .nice-select .list { height: 0; }

.nice-select.open .list { height: auto; }

Posting if someone wants to create a PR or has the problem themselves.