Skip to content
Snippets Groups Projects

Modal popups in views is not showing properly when toolbar tray is upon modal fixed

Open Gaurav requested to merge issue/drupal-2822778:2822778-modal-popups-in into 11.x
1 unresolved thread
1 file
+ 4
1
Compare changes
  • Side-by-side
  • Inline
@@ -128,7 +128,10 @@
const uiDialog = $element
.dialog('option', { resizable: false, draggable: false })
.dialog('widget');
uiDialog[0].style.position = 'fixed';
uiDialog.css({
position: 'fixed',
zIndex: '1260',
});
    • Comment on lines +130 to +133

      Adding it directly to a style attribute in the tag makes it harder for themers to customize. This is probably better in a stylesheet

Please register or sign in to reply
$(window)
.on('resize.dialogResize scroll.dialogResize', eventData, autoResize)
.trigger('resize.dialogResize');
Loading