Font dropdown is not proper, screen-shot attached : Font give dropdown where the bottom section of the dropdown is hidden behind html characters count panel.
A possible solution to the problem:
.richText {
// Solves the problem that the menu stays below the other elements of the web, in this case the save changes button".
z-index: 1;
}
.richText .richText-toolbar:last-child {
// Fixes the problem that the bottom panel of the character counter appears above the menu.
z-index: -1;
}
Font dropdown is not proper, screen-shot attached : Font give dropdown where the bottom section of the dropdown is hidden behind html characters count panel.
A possible solution to the problem: