Fix modal z-index in new full page ConverseJS.

This commit is contained in:
John Livingston 2024-03-26 12:34:44 +01:00
parent 7b0ab15128
commit 1fd985ce3e
No known key found for this signature in database
GPG Key ID: B17B5640CE66CDBC
1 changed files with 12 additions and 0 deletions

View File

@ -17,6 +17,18 @@ body.converse-embedded {
--livechat-transparent: rgba(0 0 0 / 0%);
}
body.converse-embedded {
.conversejs .modal {
// modal z-index = use same z-index as Peertube (see Peertube _variables.scss)
z-index: 19000;
}
.modal-backdrop {
// must be just under .modal.
z-index: 18999;
}
}
/* Chat embedded in a full client page. */
.livechat-embed-fullpage {
converse-root {