EditorCssSettings
Interface
Represents the settings for applying custom CSS styles to the Editor in iframe mode (see example).
Definition
Package:@progress/kendo-angular-editor
Syntax:
TS
const cssSettings: EditorCssSettings = {
content: '.k-editor { color: red; }',
path: '/styles/editor.css',
keepBuiltInCss: false
};
Properties
content?
string
Sets the CSS rules to apply.
keepBuiltInCss?
boolean
Determines if custom styles override or extend built-in styles.
path?
string
Sets the path to an external style sheet.