Merge pull request #1174 from AndreasK79/modal_css_height_fix

This CSS fix adds a scrollbar to the modal if content height is great…
这个提交包含在:
Andreas Kristiansen 2021-09-15 17:08:23 +02:00 提交者 GitHub
当前提交 58dfb89b71
找不到此签名对应的密钥
GPG 密钥 ID: 4AEE18F83AFDEB23

查看文件

@ -242,4 +242,9 @@ color: #ffffff;
.was-map-dialog .modal-dialog {
max-width: 73% !important;
}
}
}
.modal-body {
max-height: calc(100vh - 200px);
overflow-y: auto;
}