jodit
Version:
Jodit is awesome and usefully wysiwyg editor with filebrowser
52 lines (50 loc) • 1.25 kB
text/less
/*!
* 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 ;
position: static ;
overflow: visible ;
html&,
body& {
height: 0 ;
width: 0 ;
overflow: initial ;
}
html& {
position: fixed ;
}
}
.jodit_fullsize {
position: absolute;
top: 0px;
left: 0px;
right: 0px;
bottom: 0px;
z-index: @z-index-fullsize;
max-width: none ;
.toolbar {
width: 100% ;
}
.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);
}
}
}