Add scroll property in less file #1088

This commit is contained in:
DianaXWiki 2023-08-31 16:01:54 +03:00
parent 6c986e22bd
commit 97a531ac84
2 changed files with 2 additions and 3 deletions

View File

@ -144,6 +144,7 @@
display: flex;
> * {
overflow:auto;
width: 100%;
min-width: 260px;
max-width: 500px;

View File

@ -514,7 +514,7 @@ define([
});
return dialog.nav(navs);
};
dialog.customModal = function (msg, opt) {
var force = false;
if (typeof(opt) === 'object') {
@ -540,8 +540,6 @@ define([
message,
dialog.getButtons(opt.buttons, opt.onClose)
]);
frame.style.minHeight='400px';
frame.style.overflowY='auto';
if (opt.forefront) { $(frame).addClass('forefront'); }
return frame;
};