This CSS fix adds a scrollbar to the modal if content height is greater than resolution

这个提交包含在:
Andreas 2021-09-15 17:08:00 +02:00 提交者 Peter Goodhall
父节点 e4952101f9
当前提交 f1ade7d3ef

查看文件

@ -250,4 +250,8 @@ color: #ffffff;
.dxatlasdatepicker { .dxatlasdatepicker {
padding-right: 0; padding-right: 0;
padding-left: 0; padding-left: 0;
}
.modal-body {
max-height: calc(100vh - 200px);
overflow-y: auto;
} }