﻿/* There's a bug in Umbraco that causes some RTE elements to not show the toolbar until you enter 
    the content box and press enter. Overriding this causes the toolbar to always be visible.
*/
.tox-editor-dock-fadeout {
    opacity: 1 !important;
    visibility: visible !important;
}

/* The RTE element in Umbraco has a known issue where the toolbar isn't sticky, so when you scroll inside
    an RTE with long content, the toolbar disappears. The simplest solution is to limit the height of 
    the RTE to ensure the toolbar remains visible when scrolling down inside the RTE
*/
.tox-tinymce {
    max-height: 72vh;
}
