Merge PR #2132 into 14.0

Signed-off-by ivantodorovich
This commit is contained in:
OCA-git-bot
2022-01-25 20:46:37 +00:00
2 changed files with 14 additions and 1 deletions

View File

@@ -195,7 +195,10 @@ odoo.define("web_widget_ckeditor.field_ckeditor", function (require) {
*/
_getCKEditorConfig: async function () {
const res = {
toolbar: {items: await this._getCKEditorToolbarItems()},
toolbar: {
items: await this._getCKEditorToolbarItems(),
shouldNotGroupWhenFull: true,
},
language: CKEditorLanguageCode,
image: {
toolbar: [

View File

@@ -9,5 +9,15 @@
.ck-editor__editable {
min-height: 330px;
}
.ck-toolbar {
.ck-button {
font-size: 0.9rem;
.ck-icon {
will-change: auto;
}
}
}
}
}