0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-12-01 13:24:25 +01:00

Enable flex on the .modal-content, ensure .modal-body stretches the height (if needed)

This commit is contained in:
Mark Otto 2016-12-24 17:25:27 -08:00 committed by Mark Otto
parent c214aa32d0
commit 31b9d93ffd

View File

@ -48,6 +48,8 @@
// Actual modal
.modal-content {
position: relative;
display: flex;
flex-direction: column;
background-color: $modal-content-bg;
background-clip: padding-box;
border: $modal-content-border-width solid $modal-content-border-color;
@ -94,6 +96,9 @@
// Where all modal content resides (sibling of .modal-header and .modal-footer)
.modal-body {
position: relative;
// Enable `flex-grow: 1` so that the body take up as much space as possible
// when should there be a fixed height on `.modal-dialog`.
flex: 1 1 auto;
padding: $modal-inner-padding;
}