
Fixed text overflow from form by removing limiting max-height media in scss. Change-Id: I4960a01ab2a78bb80f0877a8b5b4a3a06590b392 Closes-Bug: #1743685
29 lines
595 B
SCSS
29 lines
595 B
SCSS
.modal-body {
|
|
// Subtract the help-button width and add the modal inner padding
|
|
// because the element is in the place which is applied the modal inner padding.
|
|
.step-description {
|
|
width: calc(100% - (#{$padding-xs-horizontal} * 2 + #{$font-size-h3}) + #{$modal-inner-padding});
|
|
}
|
|
|
|
textarea {
|
|
resize: vertical;
|
|
}
|
|
|
|
& > .nav-pills {
|
|
padding-bottom: $padding-base-horizontal;
|
|
}
|
|
}
|
|
|
|
// Custom Horizon Modal Sizes
|
|
@media (min-width: $screen-sm-min) {
|
|
.modal-xs {
|
|
width: $modal-xs;
|
|
}
|
|
}
|
|
|
|
@media (min-width: $screen-md-min) {
|
|
.modal-xl {
|
|
width: $modal-xl;
|
|
}
|
|
}
|