/*!
 * Jodit Editor (https://xdsoft.net/jodit/)
 * License GNU General Public License version 2 or later;
 * Copyright 2013-2019 Valeriy Chupurnov https://xdsoft.net
 */

.jodit_fullsize_box {
    z-index: @z-index-fullsize !important;
    position: static !important;
    overflow: visible !important;
    html&,
    body& {
        height: 0 !important;
        width: 0 !important;
        overflow: initial !important;
    }
    html& {
        position: fixed !important;
    }
}
.jodit_fullsize {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: @z-index-fullsize;
    max-width: none !important;
    .toolbar {
        width: 100% !important;
    }
    .jodit_editor,
    .jodit_area {
        height: 100%;
    }
    .jodit_workflow {
        height: calc(~'100%' - @toolbar_middle_size * 1.5);
        overflow: auto;
    }
    &.jodit_toolbar_size {
        &-small .jodit_workflow {
            height: calc(~'100%' - @toolbar_small_size * 1.5);
        }
        &-large .jodit_workflow {
            height: calc(~'100%' - @toolbar_large_size * 1.5);
        }
    }
}
