webfashionist / RichText

WYSIWYG editor developed as jQuery plugin
GNU Affero General Public License v3.0
112 stars 62 forks source link

Problem Font dropdown #99

Closed vsc55 closed 1 year ago

vsc55 commented 1 year ago

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. imagen

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;
}

imagen

webfashionist commented 1 year ago

Fixed with the referenced pull request