davidstutz / bootstrap-multiselect

JQuery multiselect plugin based on Twitter Bootstrap.
https://davidstutz.github.io/bootstrap-multiselect/
Other
3.66k stars 1.99k forks source link

Scroll blocking on mobile devices #1248

Open livingroot opened 1 year ago

livingroot commented 1 year ago

https://github.com/davidstutz/bootstrap-multiselect/blob/aade5e6f6a55add71c2ba42348cfe72ea51b563b/dist/js/bootstrap-multiselect.js#L728

This line is blocking scroll on touch device.

xDeSwa commented 1 year ago

In Bootstrap 4 > add rules in your css

button.multiselect-option.dropdown-item { width: auto !important; } span.multiselect-group.dropdown-item-text { display: inline-flex !important; cursor: default; }

or use SASS || Mobile Sizes

@include media-breakpoint-down(sm)

how you want.

cecilmilleriouxGit commented 1 year ago

Is it necessary for 4.6?