-
Notifications
You must be signed in to change notification settings - Fork 5.3k
Closed
Description
Having this CSS:
*
{
box-sizing: border-box;
}
If you try to resize a dialog, then the inner content (ui-dialog-content) is resized wrongly
A workaround is suggested in https://bugs.jqueryui.com/ticket/9137
Using this CSS:
.ui-resizable, .ui-resizable * {
box-sizing: content-box;
}
but that affects the size of several elements I have inside the dialog