N°5298 - Improve CKEditor fullscreen style in the backoffice

This commit is contained in:
Molkobain
2024-05-22 21:55:16 +02:00
parent e7728ee7dd
commit 4ccec53e8d

View File

@@ -54,17 +54,19 @@ $ibo-vendors-ckeditor--ck-text-huge-font-size: $ibo-font-size-350;
position: fixed;
left: 0px;
top:0px;
right: 0px;
bottom: 0px;
width: 100%;
height: 100%;
z-index: 999;
display: flex;
flex-direction: column;
.ck.ck-editor__main{
flex-grow: 1;
overflow: auto;
}
.ck-editor__editable_inline:not(.ck-comment__input *){
height: 100%;
height: 100% !important; /* !important to overload inline style from configuration.height */
width: 100% !important; /* !important to overload inline style from configuration.width */
}
}