Problem/Motivation

Z-index is getting a value of unset which breaks integration with toolbar.

    Drupal.behaviors.ief_popup = {
        attach: function (context, settings) {

            /* make sure the Drupal toolbar is placed behind the IEF Complex Widget Dialog */
            if ($(".ief-popup-wrapper", context).length > 0) {
                $(".toolbar").css("position", "relative");
                $(".toolbar").css("z-index",  1);
            }
            else {
                $(".toolbar").css("z-index",  "unset");
            }
          $(".toolbar").css("z-index",  "unset");
.
.
.

Steps to reproduce

* Install the module
* Confirm toolbar haz z-index issues, specially on gin with the shortcuts menu.

Proposed resolution

Fix JS

Issue fork ief_popup-3384706

Command icon 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

alemadlei created an issue. See original summary.

  • dataweb committed bc0d22e6 on 8.x-2.x authored by alemadlei
    Issue #3384706: Fixing z-index that removes the value from toolbar.
    

  • dataweb committed bc0d22e6 on 2.x authored by alemadlei
    Issue #3384706: Fixing z-index that removes the value from toolbar.
    
dataweb’s picture

Version: 2.1.0 » 2.1.1
Status: Active » Fixed
Issue tags: -JavaScript +JavaScript

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.