diff --git a/UI/WebServerResources/js/Common/sgCkeditor.component.js b/UI/WebServerResources/js/Common/sgCkeditor.component.js index 920fd9294..acc372ffa 100644 --- a/UI/WebServerResources/js/Common/sgCkeditor.component.js +++ b/UI/WebServerResources/js/Common/sgCkeditor.component.js @@ -257,6 +257,27 @@ } ] }; + config.fontFamily = { + supportAllValues: true, + style: { + element: 'span', + attributes: { + style: 'font-family' + } + } + }; + + config.fontSize = { + options: ['10px', '12px', '14px', '16px', '18px', '20px', '24px'], + supportAllValues: true, + style: { + element: 'span', + attributes: { + style: 'font-size' + } + } + }; + config.htmlEmbed = { showPreviews: true };