/*!
 * 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
 */

@resizer-size: 7px;
.jodit_container {
	min-height: 100px;
	.jodit_workplace {
		display: flex;
		height: auto;
		min-height: 50px;
		overflow: hidden;
	}
}
.jodit_editor_resize {
	position: relative;
	a {
		position: absolute;
		bottom: 0;
		right: 0;
		user-select: none;
		width: 0;
		height: 0;
		overflow: hidden;
		border-width: @resizer-size @resizer-size 0 0;
		border-color: rgba(0, 0, 0, 0) @color-border rgba(0, 0, 0, 0)
			rgba(0, 0, 0, 0);
		border-style: dashed solid dashed dashed;
		cursor: se-resize;
	}
}
