• [Bug Mc-10864] – The time selector for rich text is blocked by the rich text editor.

.w-e-menu { width: 28px! important; // Change the width of each option in the top menu} // Add the following style to the CSS: Set the editor's z-index to a lower value. W-e-text-container {z-index:1! important; } .w-e-toolbar { z-index:1! important; }Copy the code

The results are as follows

  • Alternatively, you can configure z-index directly in the editor

The editor Z-index defaults to 10000 and can be adjusted. Note: the z-index value must be >=0

const editor = new E('#div1')

editor.config.zIndex = 500

editor.create()
Copy the code