Converse.js: Modal backdop not removed

Created on 9 Oct 2018  路  6Comments  路  Source: conversejs/converse.js

When I log in into chat in https://conversejs.org/docs/html/quickstart.html and I go to edit my status, I can't click anywhere inside the page.

When I inspect the page, there is a div that is on top of all elements
<div class="modal-backdrop fade show"></div>
When I delete that div, the page works fine
I have the same behavior on my test page using the cdn converse 4.0.2
git hub - converse

bug

Most helpful comment

i get the same thing with Bootstrap4 as well

All 6 comments

I'm quite sure this is because of a clash between Bootstrap3 in the docs page and Bootstrap4 being used by Converse.

i get the same thing with Bootstrap4 as well

To keep the backdrop the z-index of the element with the ID #converse-modals has to be over 1040 instead of 1031. If I turn the z-index over 1040 the modal from converse.js is editable.

Temporary I get it to work with:

    .modal-backdrop{
      z-index: 1030 !important;
    }

To keep the backdrop the z-index of the element with the ID #converse-modals has to be over 1040 instead of 1031. If I turn the z-index over 1040 the modal from converse.js is editable.

Temporary I get it to work with:

    .modal-backdrop{
      z-index: 1030 !important;
    }

It works!! thanks

How Fabio fixed in Tiki Wiki CMS Groupware:
https://sourceforge.net/p/tikiwiki/code/68592

.modal-backdrop{
z-index: 1030 !important;
}

It doesnt work to to me. The backdrop is solved but dropdown menu items stops to work.

Was this page helpful?
0 / 5 - 0 ratings