@ckeditor/ckeditor5-html-embed 48.2.0-alpha.7 → 48.3.0-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,24 +1,24 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
- */
5
- import type { HtmlEmbed, HtmlEmbedCommand, HtmlEmbedConfig, HtmlEmbedEditing, HtmlEmbedUI } from './index.js';
6
- declare module '@ckeditor/ckeditor5-core' {
7
- interface EditorConfig {
8
- /**
9
- * The configuration of the HTML embed feature. Introduced by the {@link module:html-embed/htmlembedediting~HtmlEmbedEditing}
10
- * feature.
11
- *
12
- * Read more in {@link module:core/editor/editorconfig~EditorConfig all editor options}.
13
- */
14
- htmlEmbed?: HtmlEmbedConfig;
15
- }
16
- interface PluginsMap {
17
- [HtmlEmbed.pluginName]: HtmlEmbed;
18
- [HtmlEmbedEditing.pluginName]: HtmlEmbedEditing;
19
- [HtmlEmbedUI.pluginName]: HtmlEmbedUI;
20
- }
21
- interface CommandsMap {
22
- htmlEmbed: HtmlEmbedCommand;
23
- }
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
+ */
5
+ import type { HtmlEmbed, HtmlEmbedCommand, HtmlEmbedConfig, HtmlEmbedEditing, HtmlEmbedUI } from "./index.js";
6
+ declare module "@ckeditor/ckeditor5-core" {
7
+ interface EditorConfig {
8
+ /**
9
+ * The configuration of the HTML embed feature. Introduced by the {@link module:html-embed/htmlembedediting~HtmlEmbedEditing}
10
+ * feature.
11
+ *
12
+ * Read more in {@link module:core/editor/editorconfig~EditorConfig all editor options}.
13
+ */
14
+ htmlEmbed?: HtmlEmbedConfig;
15
+ }
16
+ interface PluginsMap {
17
+ [HtmlEmbed.pluginName]: HtmlEmbed;
18
+ [HtmlEmbedEditing.pluginName]: HtmlEmbedEditing;
19
+ [HtmlEmbedUI.pluginName]: HtmlEmbedUI;
20
+ }
21
+ interface CommandsMap {
22
+ htmlEmbed: HtmlEmbedCommand;
23
+ }
24
24
  }
@@ -1,32 +1,32 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
- */
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
+ */
5
5
  /**
6
- * @module html-embed/htmlembed
7
- */
8
- import { Plugin } from '@ckeditor/ckeditor5-core';
9
- import { Widget } from '@ckeditor/ckeditor5-widget';
10
- import { HtmlEmbedEditing } from './htmlembedediting.js';
11
- import { HtmlEmbedUI } from './htmlembedui.js';
6
+ * @module html-embed/htmlembed
7
+ */
8
+ import { Plugin, type PluginDependenciesOf } from "@ckeditor/ckeditor5-core";
9
+ import { Widget } from "@ckeditor/ckeditor5-widget";
10
+ import { HtmlEmbedEditing } from "./htmlembedediting.js";
11
+ import { HtmlEmbedUI } from "./htmlembedui.js";
12
12
  /**
13
- * The HTML embed feature.
14
- *
15
- * It allows inserting HTML snippets directly into the editor.
16
- *
17
- * For a detailed overview, check the {@glink features/html/html-embed HTML embed feature} documentation.
18
- */
13
+ * The HTML embed feature.
14
+ *
15
+ * It allows inserting HTML snippets directly into the editor.
16
+ *
17
+ * For a detailed overview, check the {@glink features/html/html-embed HTML embed feature} documentation.
18
+ */
19
19
  export declare class HtmlEmbed extends Plugin {
20
- /**
21
- * @inheritDoc
22
- */
23
- static get requires(): readonly [typeof HtmlEmbedEditing, typeof HtmlEmbedUI, typeof Widget];
24
- /**
25
- * @inheritDoc
26
- */
27
- static get pluginName(): "HtmlEmbed";
28
- /**
29
- * @inheritDoc
30
- */
31
- static get isOfficialPlugin(): true;
20
+ /**
21
+ * @inheritDoc
22
+ */
23
+ static get requires(): PluginDependenciesOf<[HtmlEmbedEditing, HtmlEmbedUI, Widget]>;
24
+ /**
25
+ * @inheritDoc
26
+ */
27
+ static get pluginName(): "HtmlEmbed";
28
+ /**
29
+ * @inheritDoc
30
+ */
31
+ static override get isOfficialPlugin(): true;
32
32
  }
@@ -1,44 +1,44 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
- */
5
- import { Command } from '@ckeditor/ckeditor5-core';
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
+ */
5
+ import { Command } from "@ckeditor/ckeditor5-core";
6
6
  /**
7
- * The insert HTML embed element command.
8
- *
9
- * The command is registered by {@link module:html-embed/htmlembedediting~HtmlEmbedEditing} as `'htmlEmbed'`.
10
- *
11
- * To insert an empty HTML embed element at the current selection, execute the command:
12
- *
13
- * ```ts
14
- * editor.execute( 'htmlEmbed' );
15
- * ```
16
- *
17
- * You can specify the initial content of a new HTML embed in the argument:
18
- *
19
- * ```ts
20
- * editor.execute( 'htmlEmbed', '<b>Initial content.</b>' );
21
- * ```
22
- *
23
- * To update the content of the HTML embed, select it in the model and pass the content in the argument:
24
- *
25
- * ```ts
26
- * editor.execute( 'htmlEmbed', '<b>New content of an existing embed.</b>' );
27
- * ```
28
- */
7
+ * The insert HTML embed element command.
8
+ *
9
+ * The command is registered by {@link module:html-embed/htmlembedediting~HtmlEmbedEditing} as `'htmlEmbed'`.
10
+ *
11
+ * To insert an empty HTML embed element at the current selection, execute the command:
12
+ *
13
+ * ```ts
14
+ * editor.execute( 'htmlEmbed' );
15
+ * ```
16
+ *
17
+ * You can specify the initial content of a new HTML embed in the argument:
18
+ *
19
+ * ```ts
20
+ * editor.execute( 'htmlEmbed', '<b>Initial content.</b>' );
21
+ * ```
22
+ *
23
+ * To update the content of the HTML embed, select it in the model and pass the content in the argument:
24
+ *
25
+ * ```ts
26
+ * editor.execute( 'htmlEmbed', '<b>New content of an existing embed.</b>' );
27
+ * ```
28
+ */
29
29
  export declare class HtmlEmbedCommand extends Command {
30
- /**
31
- * @inheritDoc
32
- */
33
- refresh(): void;
34
- /**
35
- * Executes the command, which either:
36
- *
37
- * * creates and inserts a new HTML embed element if none was selected,
38
- * * updates the content of the HTML embed if one was selected.
39
- *
40
- * @fires execute
41
- * @param value When passed, the value (content) will be set on a new embed or a selected one.
42
- */
43
- execute(value?: string): void;
30
+ /**
31
+ * @inheritDoc
32
+ */
33
+ override refresh(): void;
34
+ /**
35
+ * Executes the command, which either:
36
+ *
37
+ * * creates and inserts a new HTML embed element if none was selected,
38
+ * * updates the content of the HTML embed if one was selected.
39
+ *
40
+ * @fires execute
41
+ * @param value When passed, the value (content) will be set on a new embed or a selected one.
42
+ */
43
+ override execute(value?: string): void;
44
44
  }
@@ -1,86 +1,86 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
- */
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
+ */
5
5
  /**
6
- * @module html-embed/htmlembedconfig
7
- */
6
+ * @module html-embed/htmlembedconfig
7
+ */
8
8
  /**
9
- * The configuration of the HTML embed feature.
10
- *
11
- * ```ts
12
- * ClassicEditor
13
- * .create( {
14
- * htmlEmbed: ... // HTML embed feature options.
15
- * } )
16
- * .then( ... )
17
- * .catch( ... );
18
- * ```
19
- *
20
- * See {@link module:core/editor/editorconfig~EditorConfig all editor options}.
21
- */
9
+ * The configuration of the HTML embed feature.
10
+ *
11
+ * ```ts
12
+ * ClassicEditor
13
+ * .create( {
14
+ * htmlEmbed: ... // HTML embed feature options.
15
+ * } )
16
+ * .then( ... )
17
+ * .catch( ... );
18
+ * ```
19
+ *
20
+ * See {@link module:core/editor/editorconfig~EditorConfig all editor options}.
21
+ */
22
22
  export interface HtmlEmbedConfig {
23
- /**
24
- * Whether the feature should render previews of the embedded HTML.
25
- *
26
- * When set to `true`, the feature will produce a preview of the inserted HTML based on a sanitized
27
- * version of the HTML provided by the user.
28
- *
29
- * The function responsible for sanitizing the HTML needs to be specified in
30
- * {@link module:html-embed/htmlembedconfig~HtmlEmbedConfig#sanitizeHtml `config.htmlEmbed.sanitizeHtml()`}.
31
- *
32
- * Read more about the security aspect of this feature in the {@glink features/html/html-embed#security "Security"} section of
33
- * the {@glink features/html/html-embed HTML embed} feature guide.
34
- */
35
- showPreviews?: boolean;
36
- /**
37
- * Callback used to sanitize the HTML provided by the user in HTML embed widget when it is previewed inside the editor.
38
- *
39
- * We strongly recommend overwriting the default function to avoid XSS vulnerabilities.
40
- *
41
- * Read more about the security aspect of this feature in the {@glink features/html/html-embed#security "Security"} section of
42
- * the {@glink features/html/html-embed HTML embed} feature guide.
43
- *
44
- * The function receives the input HTML (as a string), and should return an object
45
- * that matches the {@link module:html-embed/htmlembedconfig~HtmlEmbedSanitizeOutput} interface.
46
- *
47
- * ```ts
48
- * ClassicEditor
49
- * .create( {
50
- * htmlEmbed: {
51
- * showPreviews: true,
52
- * sanitizeHtml( inputHtml ) {
53
- * // Strip unsafe elements and attributes, e.g.:
54
- * // the `<script>` elements and `on*` attributes.
55
- * const outputHtml = sanitize( inputHtml );
56
- *
57
- * return {
58
- * html: outputHtml,
59
- * // true or false depending on whether the sanitizer stripped anything.
60
- * hasChanged: ...
61
- * };
62
- * },
63
- * }
64
- * } )
65
- * .then( ... )
66
- * .catch( ... );
67
- * ```
68
- *
69
- * **Note:** The function is used only when the feature
70
- * {@link module:html-embed/htmlembedconfig~HtmlEmbedConfig#showPreviews is configured to render previews}.
71
- */
72
- sanitizeHtml?: (html: string) => HtmlEmbedSanitizeOutput;
23
+ /**
24
+ * Whether the feature should render previews of the embedded HTML.
25
+ *
26
+ * When set to `true`, the feature will produce a preview of the inserted HTML based on a sanitized
27
+ * version of the HTML provided by the user.
28
+ *
29
+ * The function responsible for sanitizing the HTML needs to be specified in
30
+ * {@link module:html-embed/htmlembedconfig~HtmlEmbedConfig#sanitizeHtml `config.htmlEmbed.sanitizeHtml()`}.
31
+ *
32
+ * Read more about the security aspect of this feature in the {@glink features/html/html-embed#security "Security"} section of
33
+ * the {@glink features/html/html-embed HTML embed} feature guide.
34
+ */
35
+ showPreviews?: boolean;
36
+ /**
37
+ * Callback used to sanitize the HTML provided by the user in HTML embed widget when it is previewed inside the editor.
38
+ *
39
+ * We strongly recommend overwriting the default function to avoid XSS vulnerabilities.
40
+ *
41
+ * Read more about the security aspect of this feature in the {@glink features/html/html-embed#security "Security"} section of
42
+ * the {@glink features/html/html-embed HTML embed} feature guide.
43
+ *
44
+ * The function receives the input HTML (as a string), and should return an object
45
+ * that matches the {@link module:html-embed/htmlembedconfig~HtmlEmbedSanitizeOutput} interface.
46
+ *
47
+ * ```ts
48
+ * ClassicEditor
49
+ * .create( {
50
+ * htmlEmbed: {
51
+ * showPreviews: true,
52
+ * sanitizeHtml( inputHtml ) {
53
+ * // Strip unsafe elements and attributes, e.g.:
54
+ * // the `<script>` elements and `on*` attributes.
55
+ * const outputHtml = sanitize( inputHtml );
56
+ *
57
+ * return {
58
+ * html: outputHtml,
59
+ * // true or false depending on whether the sanitizer stripped anything.
60
+ * hasChanged: ...
61
+ * };
62
+ * },
63
+ * }
64
+ * } )
65
+ * .then( ... )
66
+ * .catch( ... );
67
+ * ```
68
+ *
69
+ * **Note:** The function is used only when the feature
70
+ * {@link module:html-embed/htmlembedconfig~HtmlEmbedConfig#showPreviews is configured to render previews}.
71
+ */
72
+ sanitizeHtml?: (html: string) => HtmlEmbedSanitizeOutput;
73
73
  }
74
74
  /**
75
- * An object returned by the {@link module:html-embed/htmlembedconfig~HtmlEmbedConfig#sanitizeHtml} function.
76
- */
75
+ * An object returned by the {@link module:html-embed/htmlembedconfig~HtmlEmbedConfig#sanitizeHtml} function.
76
+ */
77
77
  export interface HtmlEmbedSanitizeOutput {
78
- /**
79
- * An output (safe) HTML that will be inserted into the {@glink framework/architecture/editing-engine editing view}.
80
- */
81
- html: string;
82
- /**
83
- * A flag that indicates whether the output HTML is different than the input value.
84
- */
85
- hasChanged: boolean;
78
+ /**
79
+ * An output (safe) HTML that will be inserted into the {@glink framework/architecture/editing-engine editing view}.
80
+ */
81
+ html: string;
82
+ /**
83
+ * A flag that indicates whether the output HTML is different than the input value.
84
+ */
85
+ hasChanged: boolean;
86
86
  }
@@ -1,58 +1,58 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
- */
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
+ */
5
5
  /**
6
- * @module html-embed/htmlembedediting
7
- */
8
- import { Plugin, type Editor } from '@ckeditor/ckeditor5-core';
9
- import '../theme/htmlembed.css';
6
+ * @module html-embed/htmlembedediting
7
+ */
8
+ import { Plugin, type Editor } from "@ckeditor/ckeditor5-core";
9
+ import "../theme/htmlembed.css";
10
10
  /**
11
- * The HTML embed editing feature.
12
- */
11
+ * The HTML embed editing feature.
12
+ */
13
13
  export declare class HtmlEmbedEditing extends Plugin {
14
- /**
15
- * Keeps references to {@link module:ui/button/buttonview~ButtonView edit, save, and cancel} button instances created for
16
- * each widget so they can be destroyed if they are no longer in DOM after the editing view was re-rendered.
17
- */
18
- private _widgetButtonViewReferences;
19
- /**
20
- * @inheritDoc
21
- */
22
- static get pluginName(): "HtmlEmbedEditing";
23
- /**
24
- * @inheritDoc
25
- * @internal
26
- */
27
- static get licenseFeatureCode(): string;
28
- /**
29
- * @inheritDoc
30
- */
31
- static get isOfficialPlugin(): true;
32
- /**
33
- * @inheritDoc
34
- */
35
- static get isPremiumPlugin(): true;
36
- /**
37
- * @inheritDoc
38
- */
39
- constructor(editor: Editor);
40
- /**
41
- * @inheritDoc
42
- */
43
- init(): void;
44
- /**
45
- * Prepares converters for the feature.
46
- */
47
- private _setupConversion;
14
+ /**
15
+ * Keeps references to {@link module:ui/button/buttonview~ButtonView edit, save, and cancel} button instances created for
16
+ * each widget so they can be destroyed if they are no longer in DOM after the editing view was re-rendered.
17
+ */
18
+ private _widgetButtonViewReferences;
19
+ /**
20
+ * @inheritDoc
21
+ */
22
+ static get pluginName(): "HtmlEmbedEditing";
23
+ /**
24
+ * @inheritDoc
25
+ * @internal
26
+ */
27
+ static get licenseFeatureCode(): string;
28
+ /**
29
+ * @inheritDoc
30
+ */
31
+ static override get isOfficialPlugin(): true;
32
+ /**
33
+ * @inheritDoc
34
+ */
35
+ static override get isPremiumPlugin(): true;
36
+ /**
37
+ * @inheritDoc
38
+ */
39
+ constructor(editor: Editor);
40
+ /**
41
+ * @inheritDoc
42
+ */
43
+ init(): void;
44
+ /**
45
+ * Prepares converters for the feature.
46
+ */
47
+ private _setupConversion;
48
48
  }
49
49
  /**
50
- * The API exposed on each raw HTML embed widget so other features can control a particular widget.
51
- *
52
- * @internal
53
- */
50
+ * The API exposed on each raw HTML embed widget so other features can control a particular widget.
51
+ *
52
+ * @internal
53
+ */
54
54
  export interface RawHtmlApi {
55
- makeEditable(): void;
56
- save(newValue: string): void;
57
- cancel(): void;
55
+ makeEditable(): void;
56
+ save(newValue: string): void;
57
+ cancel(): void;
58
58
  }
@@ -1,29 +1,29 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
- */
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
+ */
5
5
  /**
6
- * @module html-embed/htmlembedui
7
- */
8
- import { Plugin } from '@ckeditor/ckeditor5-core';
6
+ * @module html-embed/htmlembedui
7
+ */
8
+ import { Plugin } from "@ckeditor/ckeditor5-core";
9
9
  /**
10
- * The HTML embed UI plugin.
11
- */
10
+ * The HTML embed UI plugin.
11
+ */
12
12
  export declare class HtmlEmbedUI extends Plugin {
13
- /**
14
- * @inheritDoc
15
- */
16
- static get pluginName(): "HtmlEmbedUI";
17
- /**
18
- * @inheritDoc
19
- */
20
- static get isOfficialPlugin(): true;
21
- /**
22
- * @inheritDoc
23
- */
24
- init(): void;
25
- /**
26
- * Creates a button for html embed command to use either in toolbar or in menu bar.
27
- */
28
- private _createButton;
13
+ /**
14
+ * @inheritDoc
15
+ */
16
+ static get pluginName(): "HtmlEmbedUI";
17
+ /**
18
+ * @inheritDoc
19
+ */
20
+ static override get isOfficialPlugin(): true;
21
+ /**
22
+ * @inheritDoc
23
+ */
24
+ init(): void;
25
+ /**
26
+ * Creates a button for html embed command to use either in toolbar or in menu bar.
27
+ */
28
+ private _createButton;
29
29
  }
@@ -1 +1 @@
1
- {"version":3,"sources":["../theme/htmlembed.css","index.css"],"names":[],"mappings":"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","file":"index.css.map","sourcesContent":["/*\n * Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.\n * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options\n */\n\n:root {\n\t--ck-html-embed-content-width: calc(100% - 1.5 * var(--ck-icon-size));\n\t--ck-html-embed-source-height: 10em;\n\t--ck-html-embed-unfocused-outline-width: 1px;\n\t--ck-html-embed-content-min-height: calc(var(--ck-icon-size) + var(--ck-spacing-standard));\n\n\t--ck-html-embed-source-disabled-background: var(--ck-color-base-foreground);\n\t--ck-html-embed-source-disabled-color: hsl(0deg 0% 45%);\n}\n\n/* The feature container. */\n\n.ck-widget.raw-html-embed {\n\tfont-size: var(--ck-font-size-base);\n\tbackground-color: var(--ck-color-base-foreground);\n\t/* Give the embed some air. */\n\t/* The first value should be equal to --ck-spacing-large variable if used in the editor context\n\tto avoid the content jumping (See https://github.com/ckeditor/ckeditor5/issues/9825). */\n\tmargin: 0.9em auto;\n\tposition: relative;\n\tdisplay: flow-root;\n\n\t/* Give the html embed some minimal width in the content to prevent them\n\tfrom being \"squashed\" in tight spaces, e.g. in table cells (https://github.com/ckeditor/ckeditor5/issues/8331) */\n\tmin-width: 15em;\n\n\t&:not(.ck-widget_selected):not(:hover) {\n\t\toutline: var(--ck-html-embed-unfocused-outline-width) dashed var(--ck-color-widget-blurred-border);\n\t}\n\n\t/* HTML embed widget itself should respect UI language direction */\n\t&[dir=\"ltr\"] {\n\t\ttext-align: left;\n\t}\n\n\t&[dir=\"rtl\"] {\n\t\ttext-align: right;\n\t}\n\n\t/* ----- Embed label in the upper left corner ----------------------------------------------- */\n\n\t&::before {\n\t\tcontent: attr(data-html-embed-label);\n\t\ttop: calc(-1 * var(--ck-html-embed-unfocused-outline-width));\n\t\tleft: var(--ck-spacing-standard);\n\t\tbackground: hsl(0deg 0% 60%);\n\t\ttransition: background var(--ck-widget-handler-animation-duration) var(--ck-widget-handler-animation-curve);\n\t\tpadding: calc(var(--ck-spacing-tiny) + var(--ck-html-embed-unfocused-outline-width)) var(--ck-spacing-small) var(--ck-spacing-tiny);\n\t\tborder-radius: 0 0 var(--ck-border-radius) var(--ck-border-radius);\n\t\tcolor: var(--ck-color-base-background);\n\t\tfont-size: var(--ck-font-size-tiny);\n\t\tfont-family: var(--ck-font-face);\n\t\tposition: absolute;\n\n\t\t/* Make sure the content does not cover the label. */\n\t\tz-index: 1;\n\t}\n\n\t&[dir=\"rtl\"]::before {\n\t\tleft: auto;\n\t\tright: var(--ck-spacing-standard);\n\t}\n\n\t/* Make space for label but it only collides in LTR languages */\n\t&[dir=\"ltr\"] .ck-widget__type-around .ck-widget__type-around__button.ck-widget__type-around__button_before {\n\t\tmargin-left: 50px;\n\t}\n\n\t.ck.ck-editor__editable.ck-blurred &.ck-widget_selected::before {\n\t\ttop: 0px;\n\t\tpadding: var(--ck-spacing-tiny) var(--ck-spacing-small);\n\t}\n\n\t.ck.ck-editor__editable:not(.ck-blurred) &.ck-widget_selected::before {\n\t\ttop: 0;\n\t\tpadding: var(--ck-spacing-tiny) var(--ck-spacing-small);\n\t\tbackground: var(--ck-color-focus-border);\n\t}\n\n\t.ck.ck-editor__editable &:not(.ck-widget_selected):hover::before {\n\t\ttop: 0px;\n\t\tpadding: var(--ck-spacing-tiny) var(--ck-spacing-small);\n\t}\n\n\t/* ----- Emebed internals --------------------------------------------------------------------- */\n\n\t& .raw-html-embed__content-wrapper {\n\t\tpadding: var(--ck-spacing-standard);\n\t}\n\n\t/* The switch mode button wrapper. */\n\t& .raw-html-embed__buttons-wrapper {\n\t\ttop: var(--ck-spacing-standard);\n\t\tright: var(--ck-spacing-standard);\n\t\tposition: absolute;\n\t\tdisplay: flex;\n\n\t\t& .ck-button.raw-html-embed__save-button {\n\t\t\tcolor: var(--ck-color-button-save);\n\t\t}\n\n\t\t& .ck-button.raw-html-embed__cancel-button {\n\t\t\tcolor: var(--ck-color-button-cancel);\n\t\t}\n\n\t\t& .ck-button:not(:first-child) {\n\t\t\tmargin-top: var(--ck-spacing-small);\n\t\t}\n\t\tflex-direction: column\n\t}\n\n\t&[dir=\"rtl\"] .raw-html-embed__buttons-wrapper {\n\t\tleft: var(--ck-spacing-standard);\n\t\tright: auto;\n\t}\n\n\t/* The edit source element. */\n\t& .raw-html-embed__source {\n\t\tbox-sizing: border-box;\n\t\theight: var(--ck-html-embed-source-height);\n\t\twidth: var(--ck-html-embed-content-width);\n\t\tresize: none;\n\t\tmin-width: 0;\n\t\tpadding: var(--ck-spacing-standard);\n\n\t\tfont-family: monospace;\n\t\ttab-size: 4;\n\t\twhite-space: pre-wrap;\n\t\tfont-size: var(--ck-font-size-base); /* Safari needs this. */\n\n\t\t/* HTML code is direction–agnostic. */\n\t\ttext-align: left;\n\t\tdirection: ltr;\n\n\t\t&[disabled] {\n\t\t\tbackground: var(--ck-html-embed-source-disabled-background);\n\t\t\tcolor: var(--ck-html-embed-source-disabled-color);\n\n\t\t\t/* Safari needs this for the proper text color in disabled input (https://github.com/ckeditor/ckeditor5/issues/8320). */\n\t\t\t-webkit-text-fill-color: var(--ck-html-embed-source-disabled-color);\n\t\t\topacity: 1;\n\t\t}\n\t}\n\n\t/* The preview data container. */\n\t& .raw-html-embed__preview {\n\t\tmin-height: var(--ck-html-embed-content-min-height);\n\t\twidth: var(--ck-html-embed-content-width);\n\t\tposition: relative;\n\t\toverflow: hidden;\n\n\t\t/* Disable all mouse interaction as long as the editor is not read–only. */\n\t\t.ck-editor__editable:not(.ck-read-only) & {\n\t\t\tpointer-events: none;\n\t\t}\n\t\tdisplay: flex\n\t}\n\n\t& .raw-html-embed__preview-content {\n\t\tbox-sizing: border-box;\n\t\tbackground-color: var(--ck-color-base-foreground);\n\t\twidth: 100%;\n\t\tposition: relative;\n\t\tmargin: auto;\n\n\t\t/* Gives spacing to the small renderable elements, so they always cover the placeholder. */\n\t\tdisplay: table;\n\t\tborder-collapse: separate;\n\n\t\t& > * {\n\t\t\tmargin-left: auto;\n\t\t\tmargin-right: auto;\n\t\t}\n\t\tborder-spacing: 7px\n\t}\n\n\t& .raw-html-embed__preview-placeholder {\n\t\tcolor: var(--ck-html-embed-source-disabled-color);\n\t\tposition: absolute;\n\t\tleft: 0;\n\t\ttop: 0;\n\t\tright: 0;\n\t\tbottom: 0;\n\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\tjustify-content: center\n\t}\n\n\t/* Don't inherit the style, e.g. when in a block quote. */\n\tfont-style: normal\n\n\t/* ----- Emebed label in the upper left corner ----------------------------------------------- */\n\n\t/* ----- Emebed internals --------------------------------------------------------------------- */\n\n\t/* The switch mode button wrapper. */\n}\n",":root {\n --ck-html-embed-content-width: calc(100% - 1.5 * var(--ck-icon-size));\n --ck-html-embed-source-height: 10em;\n --ck-html-embed-unfocused-outline-width: 1px;\n --ck-html-embed-content-min-height: calc(var(--ck-icon-size) + var(--ck-spacing-standard));\n --ck-html-embed-source-disabled-background: var(--ck-color-base-foreground);\n --ck-html-embed-source-disabled-color: #737373;\n}\n\n.ck-widget.raw-html-embed {\n font-size: var(--ck-font-size-base);\n background-color: var(--ck-color-base-foreground);\n min-width: 15em;\n margin: .9em auto;\n display: flow-root;\n position: relative;\n}\n\n.ck-widget.raw-html-embed:not(.ck-widget_selected):not(:hover) {\n outline: var(--ck-html-embed-unfocused-outline-width) dashed var(--ck-color-widget-blurred-border);\n}\n\n.ck-widget.raw-html-embed[dir=\"ltr\"] {\n text-align: left;\n}\n\n.ck-widget.raw-html-embed[dir=\"rtl\"] {\n text-align: right;\n}\n\n.ck-widget.raw-html-embed:before {\n content: attr(data-html-embed-label);\n top: calc(-1 * var(--ck-html-embed-unfocused-outline-width));\n left: var(--ck-spacing-standard);\n transition: background var(--ck-widget-handler-animation-duration) var(--ck-widget-handler-animation-curve);\n padding: calc(var(--ck-spacing-tiny) + var(--ck-html-embed-unfocused-outline-width)) var(--ck-spacing-small) var(--ck-spacing-tiny);\n border-radius: 0 0 var(--ck-border-radius) var(--ck-border-radius);\n color: var(--ck-color-base-background);\n font-size: var(--ck-font-size-tiny);\n font-family: var(--ck-font-face);\n z-index: 1;\n background: #999;\n position: absolute;\n}\n\n.ck-widget.raw-html-embed[dir=\"rtl\"]:before {\n left: auto;\n right: var(--ck-spacing-standard);\n}\n\n.ck-widget.raw-html-embed[dir=\"ltr\"] .ck-widget__type-around .ck-widget__type-around__button.ck-widget__type-around__button_before {\n margin-left: 50px;\n}\n\n.ck.ck-editor__editable.ck-blurred .ck-widget.raw-html-embed.ck-widget_selected:before {\n padding: var(--ck-spacing-tiny) var(--ck-spacing-small);\n top: 0;\n}\n\n.ck.ck-editor__editable:not(.ck-blurred) .ck-widget.raw-html-embed.ck-widget_selected:before {\n padding: var(--ck-spacing-tiny) var(--ck-spacing-small);\n background: var(--ck-color-focus-border);\n top: 0;\n}\n\n.ck.ck-editor__editable .ck-widget.raw-html-embed:not(.ck-widget_selected):hover:before {\n padding: var(--ck-spacing-tiny) var(--ck-spacing-small);\n top: 0;\n}\n\n.ck-widget.raw-html-embed .raw-html-embed__content-wrapper {\n padding: var(--ck-spacing-standard);\n}\n\n.ck-widget.raw-html-embed .raw-html-embed__buttons-wrapper {\n top: var(--ck-spacing-standard);\n right: var(--ck-spacing-standard);\n display: flex;\n position: absolute;\n}\n\n.ck-widget.raw-html-embed .raw-html-embed__buttons-wrapper .ck-button.raw-html-embed__save-button {\n color: var(--ck-color-button-save);\n}\n\n.ck-widget.raw-html-embed .raw-html-embed__buttons-wrapper .ck-button.raw-html-embed__cancel-button {\n color: var(--ck-color-button-cancel);\n}\n\n.ck-widget.raw-html-embed .raw-html-embed__buttons-wrapper .ck-button:not(:first-child) {\n margin-top: var(--ck-spacing-small);\n}\n\n.ck-widget.raw-html-embed .raw-html-embed__buttons-wrapper {\n flex-direction: column;\n}\n\n.ck-widget.raw-html-embed[dir=\"rtl\"] .raw-html-embed__buttons-wrapper {\n left: var(--ck-spacing-standard);\n right: auto;\n}\n\n.ck-widget.raw-html-embed .raw-html-embed__source {\n box-sizing: border-box;\n height: var(--ck-html-embed-source-height);\n width: var(--ck-html-embed-content-width);\n resize: none;\n min-width: 0;\n padding: var(--ck-spacing-standard);\n tab-size: 4;\n white-space: pre-wrap;\n font-family: monospace;\n font-size: var(--ck-font-size-base);\n text-align: left;\n direction: ltr;\n}\n\n.ck-widget.raw-html-embed .raw-html-embed__source[disabled] {\n background: var(--ck-html-embed-source-disabled-background);\n color: var(--ck-html-embed-source-disabled-color);\n -webkit-text-fill-color: var(--ck-html-embed-source-disabled-color);\n opacity: 1;\n}\n\n.ck-widget.raw-html-embed .raw-html-embed__preview {\n min-height: var(--ck-html-embed-content-min-height);\n width: var(--ck-html-embed-content-width);\n position: relative;\n overflow: hidden;\n}\n\n.ck-editor__editable:not(.ck-read-only) :is(.ck-widget.raw-html-embed .raw-html-embed__preview) {\n pointer-events: none;\n}\n\n.ck-widget.raw-html-embed .raw-html-embed__preview {\n display: flex;\n}\n\n.ck-widget.raw-html-embed .raw-html-embed__preview-content {\n box-sizing: border-box;\n background-color: var(--ck-color-base-foreground);\n border-collapse: separate;\n width: 100%;\n margin: auto;\n display: table;\n position: relative;\n}\n\n.ck-widget.raw-html-embed .raw-html-embed__preview-content > * {\n margin-left: auto;\n margin-right: auto;\n}\n\n.ck-widget.raw-html-embed .raw-html-embed__preview-content {\n border-spacing: 7px;\n}\n\n.ck-widget.raw-html-embed .raw-html-embed__preview-placeholder {\n color: var(--ck-html-embed-source-disabled-color);\n justify-content: center;\n align-items: center;\n display: flex;\n position: absolute;\n inset: 0;\n}\n\n.ck-widget.raw-html-embed {\n font-style: normal;\n}\n\n/*# sourceMappingURL=index.css.map */"]}
1
+ {"version":3,"sources":["../theme/htmlembed.css","index.css"],"names":[],"mappings":"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","file":"index.css.map","sourcesContent":["/*\n * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.\n * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options\n */\n\n:root {\n\t--ck-html-embed-content-width: calc(100% - 1.5 * var(--ck-icon-size));\n\t--ck-html-embed-source-height: 10em;\n\t--ck-html-embed-unfocused-outline-width: 1px;\n\t--ck-html-embed-content-min-height: calc(var(--ck-icon-size) + var(--ck-spacing-standard));\n\n\t--ck-html-embed-source-disabled-background: var(--ck-color-base-foreground);\n\t--ck-html-embed-source-disabled-color: hsl(0deg 0% 45%);\n}\n\n/* The feature container. */\n\n.ck-widget.raw-html-embed {\n\tfont-size: var(--ck-font-size-base);\n\tbackground-color: var(--ck-color-base-foreground);\n\t/* Give the embed some air. */\n\t/* The first value should be equal to --ck-spacing-large variable if used in the editor context\n\tto avoid the content jumping (See https://github.com/ckeditor/ckeditor5/issues/9825). */\n\tmargin: 0.9em auto;\n\tposition: relative;\n\tdisplay: flow-root;\n\n\t/* Give the html embed some minimal width in the content to prevent them\n\tfrom being \"squashed\" in tight spaces, e.g. in table cells (https://github.com/ckeditor/ckeditor5/issues/8331) */\n\tmin-width: 15em;\n\n\t&:not(.ck-widget_selected):not(:hover) {\n\t\toutline: var(--ck-html-embed-unfocused-outline-width) dashed var(--ck-color-widget-blurred-border);\n\t}\n\n\t/* HTML embed widget itself should respect UI language direction */\n\t&[dir=\"ltr\"] {\n\t\ttext-align: left;\n\t}\n\n\t&[dir=\"rtl\"] {\n\t\ttext-align: right;\n\t}\n\n\t/* ----- Embed label in the upper left corner ----------------------------------------------- */\n\n\t&::before {\n\t\tcontent: attr(data-html-embed-label);\n\t\ttop: calc(-1 * var(--ck-html-embed-unfocused-outline-width));\n\t\tleft: var(--ck-spacing-standard);\n\t\tbackground: hsl(0deg 0% 60%);\n\t\ttransition: background var(--ck-widget-handler-animation-duration) var(--ck-widget-handler-animation-curve);\n\t\tpadding: calc(var(--ck-spacing-tiny) + var(--ck-html-embed-unfocused-outline-width)) var(--ck-spacing-small) var(--ck-spacing-tiny);\n\t\tborder-radius: 0 0 var(--ck-border-radius) var(--ck-border-radius);\n\t\tcolor: var(--ck-color-base-background);\n\t\tfont-size: var(--ck-font-size-tiny);\n\t\tfont-family: var(--ck-font-face);\n\t\tposition: absolute;\n\n\t\t/* Make sure the content does not cover the label. */\n\t\tz-index: 1;\n\t}\n\n\t&[dir=\"rtl\"]::before {\n\t\tleft: auto;\n\t\tright: var(--ck-spacing-standard);\n\t}\n\n\t/* Make space for label but it only collides in LTR languages */\n\t&[dir=\"ltr\"] .ck-widget__type-around .ck-widget__type-around__button.ck-widget__type-around__button_before {\n\t\tmargin-left: 50px;\n\t}\n\n\t.ck.ck-editor__editable.ck-blurred &.ck-widget_selected::before {\n\t\ttop: 0px;\n\t\tpadding: var(--ck-spacing-tiny) var(--ck-spacing-small);\n\t}\n\n\t.ck.ck-editor__editable:not(.ck-blurred) &.ck-widget_selected::before {\n\t\ttop: 0;\n\t\tpadding: var(--ck-spacing-tiny) var(--ck-spacing-small);\n\t\tbackground: var(--ck-color-focus-border);\n\t}\n\n\t.ck.ck-editor__editable &:not(.ck-widget_selected):hover::before {\n\t\ttop: 0px;\n\t\tpadding: var(--ck-spacing-tiny) var(--ck-spacing-small);\n\t}\n\n\t/* ----- Emebed internals --------------------------------------------------------------------- */\n\n\t& .raw-html-embed__content-wrapper {\n\t\tpadding: var(--ck-spacing-standard);\n\t}\n\n\t/* The switch mode button wrapper. */\n\t& .raw-html-embed__buttons-wrapper {\n\t\ttop: var(--ck-spacing-standard);\n\t\tright: var(--ck-spacing-standard);\n\t\tposition: absolute;\n\t\tdisplay: flex;\n\n\t\t& .ck-button.raw-html-embed__save-button {\n\t\t\tcolor: var(--ck-color-button-save);\n\t\t}\n\n\t\t& .ck-button.raw-html-embed__cancel-button {\n\t\t\tcolor: var(--ck-color-button-cancel);\n\t\t}\n\n\t\t& .ck-button:not(:first-child) {\n\t\t\tmargin-top: var(--ck-spacing-small);\n\t\t}\n\t\tflex-direction: column\n\t}\n\n\t&[dir=\"rtl\"] .raw-html-embed__buttons-wrapper {\n\t\tleft: var(--ck-spacing-standard);\n\t\tright: auto;\n\t}\n\n\t/* The edit source element. */\n\t& .raw-html-embed__source {\n\t\tbox-sizing: border-box;\n\t\theight: var(--ck-html-embed-source-height);\n\t\twidth: var(--ck-html-embed-content-width);\n\t\tresize: none;\n\t\tmin-width: 0;\n\t\tpadding: var(--ck-spacing-standard);\n\n\t\tfont-family: monospace;\n\t\ttab-size: 4;\n\t\twhite-space: pre-wrap;\n\t\tfont-size: var(--ck-font-size-base); /* Safari needs this. */\n\n\t\t/* HTML code is direction–agnostic. */\n\t\ttext-align: left;\n\t\tdirection: ltr;\n\n\t\t&[disabled] {\n\t\t\tbackground: var(--ck-html-embed-source-disabled-background);\n\t\t\tcolor: var(--ck-html-embed-source-disabled-color);\n\n\t\t\t/* Safari needs this for the proper text color in disabled input (https://github.com/ckeditor/ckeditor5/issues/8320). */\n\t\t\t-webkit-text-fill-color: var(--ck-html-embed-source-disabled-color);\n\t\t\topacity: 1;\n\t\t}\n\t}\n\n\t/* The preview data container. */\n\t& .raw-html-embed__preview {\n\t\tmin-height: var(--ck-html-embed-content-min-height);\n\t\twidth: var(--ck-html-embed-content-width);\n\t\tposition: relative;\n\t\toverflow: hidden;\n\n\t\t/* Disable all mouse interaction as long as the editor is not read–only. */\n\t\t.ck-editor__editable:not(.ck-read-only) & {\n\t\t\tpointer-events: none;\n\t\t}\n\t\tdisplay: flex\n\t}\n\n\t& .raw-html-embed__preview-content {\n\t\tbox-sizing: border-box;\n\t\tbackground-color: var(--ck-color-base-foreground);\n\t\twidth: 100%;\n\t\tposition: relative;\n\t\tmargin: auto;\n\n\t\t/* Gives spacing to the small renderable elements, so they always cover the placeholder. */\n\t\tdisplay: table;\n\t\tborder-collapse: separate;\n\n\t\t& > * {\n\t\t\tmargin-left: auto;\n\t\t\tmargin-right: auto;\n\t\t}\n\t\tborder-spacing: 7px\n\t}\n\n\t& .raw-html-embed__preview-placeholder {\n\t\tcolor: var(--ck-html-embed-source-disabled-color);\n\t\tposition: absolute;\n\t\tleft: 0;\n\t\ttop: 0;\n\t\tright: 0;\n\t\tbottom: 0;\n\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\tjustify-content: center\n\t}\n\n\t/* Don't inherit the style, e.g. when in a block quote. */\n\tfont-style: normal\n\n\t/* ----- Emebed label in the upper left corner ----------------------------------------------- */\n\n\t/* ----- Emebed internals --------------------------------------------------------------------- */\n\n\t/* The switch mode button wrapper. */\n}\n",":root {\n --ck-html-embed-content-width: calc(100% - 1.5 * var(--ck-icon-size));\n --ck-html-embed-source-height: 10em;\n --ck-html-embed-unfocused-outline-width: 1px;\n --ck-html-embed-content-min-height: calc(var(--ck-icon-size) + var(--ck-spacing-standard));\n --ck-html-embed-source-disabled-background: var(--ck-color-base-foreground);\n --ck-html-embed-source-disabled-color: #737373;\n}\n\n.ck-widget.raw-html-embed {\n font-size: var(--ck-font-size-base);\n background-color: var(--ck-color-base-foreground);\n min-width: 15em;\n margin: .9em auto;\n display: flow-root;\n position: relative;\n}\n\n.ck-widget.raw-html-embed:not(.ck-widget_selected):not(:hover) {\n outline: var(--ck-html-embed-unfocused-outline-width) dashed var(--ck-color-widget-blurred-border);\n}\n\n.ck-widget.raw-html-embed[dir=\"ltr\"] {\n text-align: left;\n}\n\n.ck-widget.raw-html-embed[dir=\"rtl\"] {\n text-align: right;\n}\n\n.ck-widget.raw-html-embed:before {\n content: attr(data-html-embed-label);\n top: calc(-1 * var(--ck-html-embed-unfocused-outline-width));\n left: var(--ck-spacing-standard);\n transition: background var(--ck-widget-handler-animation-duration) var(--ck-widget-handler-animation-curve);\n padding: calc(var(--ck-spacing-tiny) + var(--ck-html-embed-unfocused-outline-width)) var(--ck-spacing-small) var(--ck-spacing-tiny);\n border-radius: 0 0 var(--ck-border-radius) var(--ck-border-radius);\n color: var(--ck-color-base-background);\n font-size: var(--ck-font-size-tiny);\n font-family: var(--ck-font-face);\n z-index: 1;\n background: #999;\n position: absolute;\n}\n\n.ck-widget.raw-html-embed[dir=\"rtl\"]:before {\n left: auto;\n right: var(--ck-spacing-standard);\n}\n\n.ck-widget.raw-html-embed[dir=\"ltr\"] .ck-widget__type-around .ck-widget__type-around__button.ck-widget__type-around__button_before {\n margin-left: 50px;\n}\n\n.ck.ck-editor__editable.ck-blurred .ck-widget.raw-html-embed.ck-widget_selected:before {\n padding: var(--ck-spacing-tiny) var(--ck-spacing-small);\n top: 0;\n}\n\n.ck.ck-editor__editable:not(.ck-blurred) .ck-widget.raw-html-embed.ck-widget_selected:before {\n padding: var(--ck-spacing-tiny) var(--ck-spacing-small);\n background: var(--ck-color-focus-border);\n top: 0;\n}\n\n.ck.ck-editor__editable .ck-widget.raw-html-embed:not(.ck-widget_selected):hover:before {\n padding: var(--ck-spacing-tiny) var(--ck-spacing-small);\n top: 0;\n}\n\n.ck-widget.raw-html-embed .raw-html-embed__content-wrapper {\n padding: var(--ck-spacing-standard);\n}\n\n.ck-widget.raw-html-embed .raw-html-embed__buttons-wrapper {\n top: var(--ck-spacing-standard);\n right: var(--ck-spacing-standard);\n display: flex;\n position: absolute;\n}\n\n.ck-widget.raw-html-embed .raw-html-embed__buttons-wrapper .ck-button.raw-html-embed__save-button {\n color: var(--ck-color-button-save);\n}\n\n.ck-widget.raw-html-embed .raw-html-embed__buttons-wrapper .ck-button.raw-html-embed__cancel-button {\n color: var(--ck-color-button-cancel);\n}\n\n.ck-widget.raw-html-embed .raw-html-embed__buttons-wrapper .ck-button:not(:first-child) {\n margin-top: var(--ck-spacing-small);\n}\n\n.ck-widget.raw-html-embed .raw-html-embed__buttons-wrapper {\n flex-direction: column;\n}\n\n.ck-widget.raw-html-embed[dir=\"rtl\"] .raw-html-embed__buttons-wrapper {\n left: var(--ck-spacing-standard);\n right: auto;\n}\n\n.ck-widget.raw-html-embed .raw-html-embed__source {\n box-sizing: border-box;\n height: var(--ck-html-embed-source-height);\n width: var(--ck-html-embed-content-width);\n resize: none;\n min-width: 0;\n padding: var(--ck-spacing-standard);\n tab-size: 4;\n white-space: pre-wrap;\n font-family: monospace;\n font-size: var(--ck-font-size-base);\n text-align: left;\n direction: ltr;\n}\n\n.ck-widget.raw-html-embed .raw-html-embed__source[disabled] {\n background: var(--ck-html-embed-source-disabled-background);\n color: var(--ck-html-embed-source-disabled-color);\n -webkit-text-fill-color: var(--ck-html-embed-source-disabled-color);\n opacity: 1;\n}\n\n.ck-widget.raw-html-embed .raw-html-embed__preview {\n min-height: var(--ck-html-embed-content-min-height);\n width: var(--ck-html-embed-content-width);\n position: relative;\n overflow: hidden;\n}\n\n.ck-editor__editable:not(.ck-read-only) :is(.ck-widget.raw-html-embed .raw-html-embed__preview) {\n pointer-events: none;\n}\n\n.ck-widget.raw-html-embed .raw-html-embed__preview {\n display: flex;\n}\n\n.ck-widget.raw-html-embed .raw-html-embed__preview-content {\n box-sizing: border-box;\n background-color: var(--ck-color-base-foreground);\n border-collapse: separate;\n width: 100%;\n margin: auto;\n display: table;\n position: relative;\n}\n\n.ck-widget.raw-html-embed .raw-html-embed__preview-content > * {\n margin-left: auto;\n margin-right: auto;\n}\n\n.ck-widget.raw-html-embed .raw-html-embed__preview-content {\n border-spacing: 7px;\n}\n\n.ck-widget.raw-html-embed .raw-html-embed__preview-placeholder {\n color: var(--ck-html-embed-source-disabled-color);\n justify-content: center;\n align-items: center;\n display: flex;\n position: absolute;\n inset: 0;\n}\n\n.ck-widget.raw-html-embed {\n font-style: normal;\n}\n\n/*# sourceMappingURL=index.css.map */"]}