css - Bootstrap modal stop scrolling on Chrome 41 with mouse scroll/touchpad (but works with up/down keys) -


my objective scrollable bootstrap modal taller screen.

problem: on chrome 41 (but not 40) running on yosemite os, bootstrap modal stop scrolling after pops if content height taller screen.

what have tried is: - straight bootstrap(v.3.3.1) automatically adds '.modal-open' body tag property of 'overflow: hidden;'. causes modal scrollable. - adjusted widow size , moving pixel, modal scrollable again. - have tried applying overflow: visible; , etc. both body tag , modal no luck.

does know problem is? bug chrome 41 introduced on yosemite? using bootstrap 3.3.1 currently.

updated scrolling up/down arrow keys work fine not mouse/touchpad scrolling.

i experiencing same issue. after quick search found reported on their github , there actual fix proposed 6 days ago, hasn't been accepted yet, means it's not in stable version right now.

you can apply proposed fix in css easily:

.modal.in {     -webkit-transform: translatez(0);             transform: translatez(0); } 

Popular posts from this blog