29
0
mirror of https://github.com/joomla/joomla-cms.git synced 2024-06-30 17:13:41 +00:00

[4.0] modals invisible tinymce fullscreen (#35903)

* [4.0] modals invisible tinymce fullscreen

Tinymce can be made fullscreen by either the hotkey ctrl-shif-f or by clicking on the icon in the toolbar.

This sets the z-index of the editor to 1250. As a result the modals generated by the cms content buttons (editor-xtd pluguins) are invisible as they have a z-index of 1050.

This PR changes the tinymce zindex to 1049

* use variable
This commit is contained in:
Brian Teeman 2021-11-07 12:11:09 +00:00 committed by GitHub
parent 95b96a590d
commit f8e7d83edf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,6 +16,9 @@
}
}
.tox-fullscreen {
z-index: $zindex-modal-backdrop - 1 !important;
}
.container-main {
.mce-panel {