I need a responsive mode that fits the height of the browser.
If the whole modal does not reach the height, the scroll will not be shown, but if it exceeds the size / height, the scroll will be shown in the modal body. Header and Footer continue to be shown.
╔════════════════════════════X
║ **HEADER** ║ ---> height do modal (header + budy +
╠════════════════════════════╣ footer) tem que ser no máximo
║ - aaaaaaaaa ║ ║ to tamanho da janela/browser.
║ - eeeeeeeee ║ ║
║ - ddddddddd ║ ║
║ - aaaaaaaaa ║ ║
║ - ccccccccc ║ ║
║ - bbbbbbbbb ║v║ ---> Scroll (Somente no Body)
╠════════════════════════════╣
║ **FOOTER** ║
╚════════════════════════════╝
<div id="idModal" class="modal fade">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title">Modal title</h4>
</div>
<div class="modal-body" >
- aaaaaaaaa
- eeeeeeeee
- ddddddddd
- aaaaaaaaa
- ccccccccc
- bbbbbbbbb
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Fechar</button>
</div>
</div>
</div>