Twitter Bootstrap modal on mobile devices Twitter Bootstrap modal on mobile devices ios ios

Twitter Bootstrap modal on mobile devices


EDIT: An unofficial Bootstrap Modal modification has been built to address responsive/mobile issues. This is perhaps the simplest and easiest way to remedy the problem.

There has since been a fix found in one of the issues you discussed earlier

in bootstrap-responsive.css

.modal {     position: fixed;     top: 3%;     right: 3%;     left: 3%;     width: auto;     margin: 0; }.modal-body {     height: 60%; }

and in bootstrap.css

.modal-body {     max-height: 350px;     padding: 15px;     overflow-y: auto;     -webkit-overflow-scrolling: touch;  }


Gil's answer holds promise (the library he linked to) --- but for the time being, it still doesn't work when scrolled down on the mobile device.

I solved the issue for myself using just a snippet of CSS at the end of my CSS files:

@media (max-width: 767px) {  #content .modal.fade.in {    top: 5%;  }}

The #content selector is simply an id that wraps my html so I can override Bootstrap's specificity (set to your own id wrapping your modal html).

The downside: It's not centered vertically on the mobile devices.

The upside: It's visible, and on smaller devices, a reasonably sized modal will take up much of the screen, so the "non-centering" won't be as apparent.

Why it works:

When you're at low screen sizes with Bootstrap's responsive CSS, for devices with smaller screens, it sets .modal.fade.in's 'top' to 'auto'. For some reason the mobile webkit browsers seem to have a hard time with figuring out the vertical placement with the "auto" assignment. So just switch it back to a fixed value and it works great.

Since the modal is already set to postition: absolute, the value is relative to the viewport's height, not the document height, so it works no matter how long the page is or where you're scrolled to.


The solution by niftylettuce in issue 2130 seems to fix modals in all mobile platforms...

9/1/12 UPDATE: The fix has been updated here: twitter bootstrap jquery plugins

(the code below is older but still works)

// # Twitter Bootstrap modal responsive fix by @niftylettuce//  * resolves #407, #1017, #1339, #2130, #3361, #3362, #4283//   <https://github.com/twitter/bootstrap/issues/2130>//  * built-in support for fullscreen Bootstrap Image Gallery//    <https://github.com/blueimp/Bootstrap-Image-Gallery>// **NOTE:** If you are using .modal-fullscreen, you will need//  to add the following CSS to `bootstrap-image-gallery.css`:////  @media (max-width: 480px) {//    .modal-fullscreen {//      left: 0 !important;//      right: 0 !important;//      margin-top: 0 !important;//      margin-left: 0 !important;//    }//  }//var adjustModal = function($modal) {  var top;  if ($(window).width() <= 480) {    if ($modal.hasClass('modal-fullscreen')) {      if ($modal.height() >= $(window).height()) {        top = $(window).scrollTop();      } else {        top = $(window).scrollTop() + ($(window).height() - $modal.height()) / 2;      }    } else if ($modal.height() >= $(window).height() - 10) {      top = $(window).scrollTop() + 10;    } else {      top = $(window).scrollTop() + ($(window).height() - $modal.height()) / 2;    }  } else {    top = '50%';    if ($modal.hasClass('modal-fullscreen')) {      $modal.stop().animate({          marginTop  : -($modal.outerHeight() / 2)        , marginLeft : -($modal.outerWidth() / 2)        , top        : top      }, "fast");      return;    }  }  $modal.stop().animate({ 'top': top }, "fast");};var show = function() {  var $modal = $(this);  adjustModal($modal);};var checkShow = function() {  $('.modal').each(function() {    var $modal = $(this);    if ($modal.css('display') !== 'block') return;    adjustModal($modal);  });};var modalWindowResize = function() {  $('.modal').not('.modal-gallery').on('show', show);  $('.modal-gallery').on('displayed', show);  checkShow();};$(modalWindowResize);$(window).resize(modalWindowResize);$(window).scroll(checkShow);