I use Display Builder to build the "full" view mode display of an entity. For one field, I select "Token" as the source, and then click Browse available tokens. Two issues here:
- The modal window is invisible in fullscreen mode (probably a z-index issue).
- I cannot figure out a way to close this modal window.
Issue fork display_builder-3575406
Show commands
Start within a Git clone of the project using the version control instructions.
Or, if you do not have SSH keys set up on git.drupalcode.org:
Comments
Comment #2
fmb commentedComment #3
fmb commentedComment #6
nickolajThe token browse dialog is invisible in fullscreen mode because Drupal's jQuery UI dialog (`.ui-dialog`) has a lower z-index than the fullscreen display builder (1251). This patch adds z-index overrides for `.ui-dialog` and `.ui-widget-overlay` when fullscreen is active, and also fixes the Bootstrap modal backdrop z-index.
Comment #9
mogtofu33 commentedComment #11
pdureau commented