Fix (ui): Dropdown panels from the editor's main toolbar should always float above the contextual balloons from the editor's content. Closes #7874.
@@ -65,3 +65,11 @@
}
+
+/*
+ * Toolbar dropdown panels should be always above the UI (eg. other dropdown panels) from the editor's content.
+ * See https://github.com/ckeditor/ckeditor5/issues/7874
+ */
+.ck.ck-toolbar .ck-dropdown__panel {
+ z-index: calc( var(--ck-z-modal) + 1 );
+}