/*!
 * Jodit Editor (https://xdsoft.net/jodit/)
 * Licensed under GNU General Public License version 2 or later or a commercial license or MIT;
 * For GPL see LICENSE-GPL.txt in the project root for license information.
 * For MIT see LICENSE-MIT.txt in the project root for license information.
 * For commercial licenses see https://xdsoft.net/jodit/commercial/
 * Copyright (c) 2013-2019 Valeriy Chupurnov. All rights reserved. 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);
		}
	}
}
