@syncfusion/ej2-richtexteditor 29.2.4-738301 → 29.2.4-760237
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.
- package/.eslintrc.json +262 -260
- package/aceconfig.js +17 -0
- package/blazorGlobalSrc/common/config.d.ts +63 -0
- package/blazorGlobalSrc/common/config.js +123 -0
- package/blazorGlobalSrc/common/constant.d.ts +117 -0
- package/blazorGlobalSrc/common/constant.js +23 -0
- package/blazorGlobalSrc/common/editor-styles.d.ts +1 -0
- package/blazorGlobalSrc/common/editor-styles.js +5 -0
- package/blazorGlobalSrc/common/index.d.ts +7 -0
- package/blazorGlobalSrc/common/index.js +9 -0
- package/blazorGlobalSrc/common/interface.d.ts +119 -0
- package/blazorGlobalSrc/common/interface.js +4 -0
- package/blazorGlobalSrc/common/types.d.ts +25 -0
- package/blazorGlobalSrc/common/types.js +4 -0
- package/blazorGlobalSrc/common/user-agent.d.ts +41 -0
- package/blazorGlobalSrc/common/user-agent.js +71 -0
- package/blazorGlobalSrc/common/util.d.ts +70 -0
- package/blazorGlobalSrc/common/util.js +222 -0
- package/blazorGlobalSrc/components.d.ts +8 -0
- package/blazorGlobalSrc/components.js +12 -0
- package/blazorGlobalSrc/editor-manager/base/classes.d.ts +31 -0
- package/blazorGlobalSrc/editor-manager/base/classes.js +28 -0
- package/blazorGlobalSrc/editor-manager/base/constant.d.ts +97 -0
- package/blazorGlobalSrc/editor-manager/base/constant.js +41 -0
- package/blazorGlobalSrc/editor-manager/base/editor-manager.d.ts +95 -0
- package/blazorGlobalSrc/editor-manager/base/editor-manager.js +339 -0
- package/blazorGlobalSrc/editor-manager/base/enum.d.ts +17 -0
- package/blazorGlobalSrc/editor-manager/base/enum.js +4 -0
- package/blazorGlobalSrc/editor-manager/base/interface.d.ts +263 -0
- package/blazorGlobalSrc/editor-manager/base/interface.js +4 -0
- package/blazorGlobalSrc/editor-manager/base/types.d.ts +7 -0
- package/blazorGlobalSrc/editor-manager/base/types.js +4 -0
- package/blazorGlobalSrc/editor-manager/base.d.ts +8 -0
- package/blazorGlobalSrc/editor-manager/base.js +10 -0
- package/blazorGlobalSrc/editor-manager/index.d.ts +5 -0
- package/blazorGlobalSrc/editor-manager/index.js +9 -0
- package/blazorGlobalSrc/editor-manager/plugin/alignments.d.ts +26 -0
- package/blazorGlobalSrc/editor-manager/plugin/alignments.js +105 -0
- package/blazorGlobalSrc/editor-manager/plugin/audio.d.ts +34 -0
- package/blazorGlobalSrc/editor-manager/plugin/audio.js +145 -0
- package/blazorGlobalSrc/editor-manager/plugin/clearformat-exec.d.ts +24 -0
- package/blazorGlobalSrc/editor-manager/plugin/clearformat-exec.js +47 -0
- package/blazorGlobalSrc/editor-manager/plugin/clearformat.d.ts +29 -0
- package/blazorGlobalSrc/editor-manager/plugin/clearformat.js +249 -0
- package/blazorGlobalSrc/editor-manager/plugin/dom-node.d.ts +351 -0
- package/blazorGlobalSrc/editor-manager/plugin/dom-node.js +737 -0
- package/blazorGlobalSrc/editor-manager/plugin/dom-tree.d.ts +84 -0
- package/blazorGlobalSrc/editor-manager/plugin/dom-tree.js +164 -0
- package/blazorGlobalSrc/editor-manager/plugin/emoji-picker-action.d.ts +10 -0
- package/blazorGlobalSrc/editor-manager/plugin/emoji-picker-action.js +86 -0
- package/blazorGlobalSrc/editor-manager/plugin/format-painter-actions.d.ts +47 -0
- package/blazorGlobalSrc/editor-manager/plugin/format-painter-actions.js +622 -0
- package/blazorGlobalSrc/editor-manager/plugin/formats.d.ts +43 -0
- package/blazorGlobalSrc/editor-manager/plugin/formats.js +597 -0
- package/blazorGlobalSrc/editor-manager/plugin/image.d.ts +48 -0
- package/blazorGlobalSrc/editor-manager/plugin/image.js +399 -0
- package/blazorGlobalSrc/editor-manager/plugin/indents.d.ts +24 -0
- package/blazorGlobalSrc/editor-manager/plugin/indents.js +106 -0
- package/blazorGlobalSrc/editor-manager/plugin/insert-methods.d.ts +48 -0
- package/blazorGlobalSrc/editor-manager/plugin/insert-methods.js +37 -0
- package/blazorGlobalSrc/editor-manager/plugin/insert-text.d.ts +22 -0
- package/blazorGlobalSrc/editor-manager/plugin/insert-text.js +36 -0
- package/blazorGlobalSrc/editor-manager/plugin/inserthtml-exec.d.ts +22 -0
- package/blazorGlobalSrc/editor-manager/plugin/inserthtml-exec.js +49 -0
- package/blazorGlobalSrc/editor-manager/plugin/inserthtml.d.ts +51 -0
- package/blazorGlobalSrc/editor-manager/plugin/inserthtml.js +985 -0
- package/blazorGlobalSrc/editor-manager/plugin/isformatted.d.ts +89 -0
- package/blazorGlobalSrc/editor-manager/plugin/isformatted.js +199 -0
- package/blazorGlobalSrc/editor-manager/plugin/link.d.ts +41 -0
- package/blazorGlobalSrc/editor-manager/plugin/link.js +550 -0
- package/blazorGlobalSrc/editor-manager/plugin/lists.d.ts +74 -0
- package/blazorGlobalSrc/editor-manager/plugin/lists.js +1503 -0
- package/blazorGlobalSrc/editor-manager/plugin/ms-word-clean-up.d.ts +61 -0
- package/blazorGlobalSrc/editor-manager/plugin/ms-word-clean-up.js +1136 -0
- package/blazorGlobalSrc/editor-manager/plugin/nodecutter.d.ts +64 -0
- package/blazorGlobalSrc/editor-manager/plugin/nodecutter.js +167 -0
- package/blazorGlobalSrc/editor-manager/plugin/selection-commands.d.ts +41 -0
- package/blazorGlobalSrc/editor-manager/plugin/selection-commands.js +1069 -0
- package/blazorGlobalSrc/editor-manager/plugin/selection-exec.d.ts +24 -0
- package/blazorGlobalSrc/editor-manager/plugin/selection-exec.js +49 -0
- package/blazorGlobalSrc/editor-manager/plugin/table-selection.d.ts +26 -0
- package/blazorGlobalSrc/editor-manager/plugin/table-selection.js +210 -0
- package/blazorGlobalSrc/editor-manager/plugin/table.d.ts +56 -0
- package/blazorGlobalSrc/editor-manager/plugin/table.js +1100 -0
- package/blazorGlobalSrc/editor-manager/plugin/toolbar-status.d.ts +39 -0
- package/blazorGlobalSrc/editor-manager/plugin/toolbar-status.js +384 -0
- package/blazorGlobalSrc/editor-manager/plugin/undo.d.ts +85 -0
- package/blazorGlobalSrc/editor-manager/plugin/undo.js +216 -0
- package/blazorGlobalSrc/editor-manager/plugin/video.d.ts +38 -0
- package/blazorGlobalSrc/editor-manager/plugin/video.js +311 -0
- package/blazorGlobalSrc/editor-manager/plugin.d.ts +27 -0
- package/blazorGlobalSrc/editor-manager/plugin.js +31 -0
- package/blazorGlobalSrc/global.d.ts +1 -0
- package/blazorGlobalSrc/global.js +3 -0
- package/blazorGlobalSrc/index.d.ts +8 -0
- package/blazorGlobalSrc/index.js +12 -0
- package/blazorGlobalSrc/markdown-parser/base/constant.d.ts +39 -0
- package/blazorGlobalSrc/markdown-parser/base/constant.js +10 -0
- package/blazorGlobalSrc/markdown-parser/base/interface.d.ts +169 -0
- package/blazorGlobalSrc/markdown-parser/base/interface.js +4 -0
- package/blazorGlobalSrc/markdown-parser/base/markdown-parser.d.ts +69 -0
- package/blazorGlobalSrc/markdown-parser/base/markdown-parser.js +87 -0
- package/blazorGlobalSrc/markdown-parser/base/types.d.ts +7 -0
- package/blazorGlobalSrc/markdown-parser/base/types.js +4 -0
- package/blazorGlobalSrc/markdown-parser/base.d.ts +7 -0
- package/blazorGlobalSrc/markdown-parser/base.js +9 -0
- package/blazorGlobalSrc/markdown-parser/index.d.ts +5 -0
- package/blazorGlobalSrc/markdown-parser/index.js +9 -0
- package/blazorGlobalSrc/markdown-parser/plugin/clearformat.d.ts +28 -0
- package/blazorGlobalSrc/markdown-parser/plugin/clearformat.js +110 -0
- package/blazorGlobalSrc/markdown-parser/plugin/formats.d.ts +32 -0
- package/blazorGlobalSrc/markdown-parser/plugin/formats.js +225 -0
- package/blazorGlobalSrc/markdown-parser/plugin/insert-text.d.ts +24 -0
- package/blazorGlobalSrc/markdown-parser/plugin/insert-text.js +49 -0
- package/blazorGlobalSrc/markdown-parser/plugin/link.d.ts +24 -0
- package/blazorGlobalSrc/markdown-parser/plugin/link.js +50 -0
- package/blazorGlobalSrc/markdown-parser/plugin/lists.d.ts +39 -0
- package/blazorGlobalSrc/markdown-parser/plugin/lists.js +462 -0
- package/blazorGlobalSrc/markdown-parser/plugin/markdown-selection.d.ts +140 -0
- package/blazorGlobalSrc/markdown-parser/plugin/markdown-selection.js +104 -0
- package/blazorGlobalSrc/markdown-parser/plugin/md-selection-formats.d.ts +31 -0
- package/blazorGlobalSrc/markdown-parser/plugin/md-selection-formats.js +335 -0
- package/blazorGlobalSrc/markdown-parser/plugin/table.d.ts +52 -0
- package/blazorGlobalSrc/markdown-parser/plugin/table.js +216 -0
- package/blazorGlobalSrc/markdown-parser/plugin/undo.d.ts +83 -0
- package/blazorGlobalSrc/markdown-parser/plugin/undo.js +147 -0
- package/blazorGlobalSrc/markdown-parser/plugin.d.ts +11 -0
- package/blazorGlobalSrc/markdown-parser/plugin.js +15 -0
- package/blazorGlobalSrc/rich-text-editor/actions/base-quick-toolbar.d.ts +114 -0
- package/blazorGlobalSrc/rich-text-editor/actions/base-quick-toolbar.js +465 -0
- package/blazorGlobalSrc/rich-text-editor/actions/base-toolbar.d.ts +58 -0
- package/blazorGlobalSrc/rich-text-editor/actions/base-toolbar.js +216 -0
- package/blazorGlobalSrc/rich-text-editor/actions/color-picker.d.ts +52 -0
- package/blazorGlobalSrc/rich-text-editor/actions/color-picker.js +241 -0
- package/blazorGlobalSrc/rich-text-editor/actions/count.d.ts +55 -0
- package/blazorGlobalSrc/rich-text-editor/actions/count.js +117 -0
- package/blazorGlobalSrc/rich-text-editor/actions/dropdown-buttons.d.ts +72 -0
- package/blazorGlobalSrc/rich-text-editor/actions/dropdown-buttons.js +552 -0
- package/blazorGlobalSrc/rich-text-editor/actions/emoji-picker.d.ts +51 -0
- package/blazorGlobalSrc/rich-text-editor/actions/emoji-picker.js +853 -0
- package/blazorGlobalSrc/rich-text-editor/actions/enter-key.d.ts +28 -0
- package/blazorGlobalSrc/rich-text-editor/actions/enter-key.js +821 -0
- package/blazorGlobalSrc/rich-text-editor/actions/execute-command-callback.d.ts +11 -0
- package/blazorGlobalSrc/rich-text-editor/actions/execute-command-callback.js +28 -0
- package/blazorGlobalSrc/rich-text-editor/actions/file-manager.d.ts +45 -0
- package/blazorGlobalSrc/rich-text-editor/actions/file-manager.js +249 -0
- package/blazorGlobalSrc/rich-text-editor/actions/format-painter.d.ts +25 -0
- package/blazorGlobalSrc/rich-text-editor/actions/format-painter.js +156 -0
- package/blazorGlobalSrc/rich-text-editor/actions/full-screen.d.ts +40 -0
- package/blazorGlobalSrc/rich-text-editor/actions/full-screen.js +148 -0
- package/blazorGlobalSrc/rich-text-editor/actions/html-attributes.d.ts +15 -0
- package/blazorGlobalSrc/rich-text-editor/actions/html-attributes.js +50 -0
- package/blazorGlobalSrc/rich-text-editor/actions/html-editor.d.ts +120 -0
- package/blazorGlobalSrc/rich-text-editor/actions/html-editor.js +1244 -0
- package/blazorGlobalSrc/rich-text-editor/actions/html-toolbar-status.d.ts +14 -0
- package/blazorGlobalSrc/rich-text-editor/actions/html-toolbar-status.js +47 -0
- package/blazorGlobalSrc/rich-text-editor/actions/import-export.d.ts +21 -0
- package/blazorGlobalSrc/rich-text-editor/actions/import-export.js +117 -0
- package/blazorGlobalSrc/rich-text-editor/actions/keyboard-model.d.ts +30 -0
- package/blazorGlobalSrc/rich-text-editor/actions/keyboard.d.ts +110 -0
- package/blazorGlobalSrc/rich-text-editor/actions/keyboard.js +163 -0
- package/blazorGlobalSrc/rich-text-editor/actions/markdown-editor.d.ts +66 -0
- package/blazorGlobalSrc/rich-text-editor/actions/markdown-editor.js +142 -0
- package/blazorGlobalSrc/rich-text-editor/actions/markdown-toolbar-status.d.ts +23 -0
- package/blazorGlobalSrc/rich-text-editor/actions/markdown-toolbar-status.js +124 -0
- package/blazorGlobalSrc/rich-text-editor/actions/paste-clean-up.d.ts +86 -0
- package/blazorGlobalSrc/rich-text-editor/actions/paste-clean-up.js +1071 -0
- package/blazorGlobalSrc/rich-text-editor/actions/quick-toolbar.d.ts +151 -0
- package/blazorGlobalSrc/rich-text-editor/actions/quick-toolbar.js +548 -0
- package/blazorGlobalSrc/rich-text-editor/actions/resize.d.ts +37 -0
- package/blazorGlobalSrc/rich-text-editor/actions/resize.js +188 -0
- package/blazorGlobalSrc/rich-text-editor/actions/sanitize-helper.d.ts +11 -0
- package/blazorGlobalSrc/rich-text-editor/actions/sanitize-helper.js +168 -0
- package/blazorGlobalSrc/rich-text-editor/actions/toolbar-action.d.ts +18 -0
- package/blazorGlobalSrc/rich-text-editor/actions/toolbar-action.js +76 -0
- package/blazorGlobalSrc/rich-text-editor/actions/toolbar.d.ts +185 -0
- package/blazorGlobalSrc/rich-text-editor/actions/toolbar.js +512 -0
- package/blazorGlobalSrc/rich-text-editor/actions/xhtml-validation.d.ts +25 -0
- package/blazorGlobalSrc/rich-text-editor/actions/xhtml-validation.js +166 -0
- package/blazorGlobalSrc/rich-text-editor/actions.d.ts +26 -0
- package/blazorGlobalSrc/rich-text-editor/actions.js +30 -0
- package/blazorGlobalSrc/rich-text-editor/audio.d.ts +4 -0
- package/blazorGlobalSrc/rich-text-editor/audio.js +8 -0
- package/blazorGlobalSrc/rich-text-editor/base/classes.d.ts +628 -0
- package/blazorGlobalSrc/rich-text-editor/base/classes.js +129 -0
- package/blazorGlobalSrc/rich-text-editor/base/constant.d.ts +808 -0
- package/blazorGlobalSrc/rich-text-editor/base/constant.js +334 -0
- package/blazorGlobalSrc/rich-text-editor/base/enum.d.ts +81 -0
- package/blazorGlobalSrc/rich-text-editor/base/enum.js +37 -0
- package/blazorGlobalSrc/rich-text-editor/base/interface.d.ts +1577 -0
- package/blazorGlobalSrc/rich-text-editor/base/interface.js +194 -0
- package/blazorGlobalSrc/rich-text-editor/base/rich-text-editor-model.d.ts +1032 -0
- package/blazorGlobalSrc/rich-text-editor/base/rich-text-editor.d.ts +1699 -0
- package/blazorGlobalSrc/rich-text-editor/base/rich-text-editor.js +2645 -0
- package/blazorGlobalSrc/rich-text-editor/base/util.d.ts +212 -0
- package/blazorGlobalSrc/rich-text-editor/base/util.js +610 -0
- package/blazorGlobalSrc/rich-text-editor/base.d.ts +10 -0
- package/blazorGlobalSrc/rich-text-editor/base.js +13 -0
- package/blazorGlobalSrc/rich-text-editor/formatter/formatter.d.ts +87 -0
- package/blazorGlobalSrc/rich-text-editor/formatter/formatter.js +223 -0
- package/blazorGlobalSrc/rich-text-editor/formatter/html-formatter.d.ts +34 -0
- package/blazorGlobalSrc/rich-text-editor/formatter/html-formatter.js +44 -0
- package/blazorGlobalSrc/rich-text-editor/formatter/markdown-formatter.d.ts +39 -0
- package/blazorGlobalSrc/rich-text-editor/formatter/markdown-formatter.js +48 -0
- package/blazorGlobalSrc/rich-text-editor/formatter.d.ts +6 -0
- package/blazorGlobalSrc/rich-text-editor/formatter.js +10 -0
- package/blazorGlobalSrc/rich-text-editor/html-editor.d.ts +4 -0
- package/blazorGlobalSrc/rich-text-editor/html-editor.js +8 -0
- package/blazorGlobalSrc/rich-text-editor/image.d.ts +4 -0
- package/blazorGlobalSrc/rich-text-editor/image.js +8 -0
- package/blazorGlobalSrc/rich-text-editor/index.d.ts +9 -0
- package/blazorGlobalSrc/rich-text-editor/index.js +12 -0
- package/blazorGlobalSrc/rich-text-editor/link.d.ts +4 -0
- package/blazorGlobalSrc/rich-text-editor/link.js +8 -0
- package/blazorGlobalSrc/rich-text-editor/markdown-editor.d.ts +4 -0
- package/blazorGlobalSrc/rich-text-editor/markdown-editor.js +8 -0
- package/blazorGlobalSrc/rich-text-editor/models/default-locale.d.ts +25 -0
- package/blazorGlobalSrc/rich-text-editor/models/default-locale.js +391 -0
- package/blazorGlobalSrc/rich-text-editor/models/iframe-settings-model.d.ts +68 -0
- package/blazorGlobalSrc/rich-text-editor/models/iframe-settings.d.ts +61 -0
- package/blazorGlobalSrc/rich-text-editor/models/iframe-settings.js +60 -0
- package/blazorGlobalSrc/rich-text-editor/models/inline-mode-model.d.ts +24 -0
- package/blazorGlobalSrc/rich-text-editor/models/inline-mode.d.ts +20 -0
- package/blazorGlobalSrc/rich-text-editor/models/inline-mode.js +37 -0
- package/blazorGlobalSrc/rich-text-editor/models/items.d.ts +36 -0
- package/blazorGlobalSrc/rich-text-editor/models/items.js +1011 -0
- package/blazorGlobalSrc/rich-text-editor/models/models.d.ts +7 -0
- package/blazorGlobalSrc/rich-text-editor/models/models.js +4 -0
- package/blazorGlobalSrc/rich-text-editor/models/slash-menu-settings-model.d.ts +40 -0
- package/blazorGlobalSrc/rich-text-editor/models/slash-menu-settings.d.ts +50 -0
- package/blazorGlobalSrc/rich-text-editor/models/slash-menu-settings.js +143 -0
- package/blazorGlobalSrc/rich-text-editor/models/toolbar-settings-model.d.ts +1130 -0
- package/blazorGlobalSrc/rich-text-editor/models/toolbar-settings.d.ts +992 -0
- package/blazorGlobalSrc/rich-text-editor/models/toolbar-settings.js +510 -0
- package/blazorGlobalSrc/rich-text-editor/models.d.ts +4 -0
- package/blazorGlobalSrc/rich-text-editor/models.js +4 -0
- package/blazorGlobalSrc/rich-text-editor/quick-toolbar.d.ts +4 -0
- package/blazorGlobalSrc/rich-text-editor/quick-toolbar.js +8 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/audio-module.d.ts +82 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/audio-module.js +886 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/content-renderer.d.ts +65 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/content-renderer.js +49 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/dialog-renderer.d.ts +39 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/dialog-renderer.js +111 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/iframe-content-renderer.d.ts +33 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/iframe-content-renderer.js +101 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/image-module.d.ts +199 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/image-module.js +2494 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/link-module.d.ts +63 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/link-module.js +596 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/markdown-renderer.d.ts +65 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/markdown-renderer.js +38 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/popup-renderer.d.ts +54 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/popup-renderer.js +35 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/render.d.ts +46 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/render.js +70 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/slash-menu.d.ts +20 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/slash-menu.js +224 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/table-module.d.ts +155 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/table-module.js +2206 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/toolbar-renderer.d.ts +131 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/toolbar-renderer.js +747 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/video-module.d.ts +120 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/video-module.js +1507 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/view-source.d.ts +74 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/view-source.js +225 -0
- package/blazorGlobalSrc/rich-text-editor/renderer.d.ts +17 -0
- package/blazorGlobalSrc/rich-text-editor/renderer.js +21 -0
- package/blazorGlobalSrc/rich-text-editor/services/renderer-factory.d.ts +33 -0
- package/blazorGlobalSrc/rich-text-editor/services/renderer-factory.js +29 -0
- package/blazorGlobalSrc/rich-text-editor/services/service-locator.d.ts +29 -0
- package/blazorGlobalSrc/rich-text-editor/services/service-locator.js +25 -0
- package/blazorGlobalSrc/rich-text-editor/services.d.ts +5 -0
- package/blazorGlobalSrc/rich-text-editor/services.js +9 -0
- package/blazorGlobalSrc/rich-text-editor/toolbar.d.ts +4 -0
- package/blazorGlobalSrc/rich-text-editor/toolbar.js +8 -0
- package/blazorGlobalSrc/rich-text-editor/video.d.ts +4 -0
- package/blazorGlobalSrc/rich-text-editor/video.js +8 -0
- package/blazorGlobalSrc/rich-text-editor.d.ts +4 -0
- package/blazorGlobalSrc/rich-text-editor.js +8 -0
- package/blazorGlobalSrc/selection/index.d.ts +4 -0
- package/blazorGlobalSrc/selection/index.js +8 -0
- package/blazorGlobalSrc/selection/selection.d.ts +244 -0
- package/blazorGlobalSrc/selection/selection.js +309 -0
- package/dist/ej2-richtexteditor.umd.min.js +1 -1
- package/dist/ej2-richtexteditor.umd.min.js.map +1 -1
- package/dist/es6/ej2-richtexteditor.es2015.js +6 -4
- package/dist/es6/ej2-richtexteditor.es2015.js.map +1 -1
- package/dist/es6/ej2-richtexteditor.es5.js +6 -4
- package/dist/es6/ej2-richtexteditor.es5.js.map +1 -1
- package/helpers/e2e/index.d.ts +1 -0
- package/helpers/e2e/index.js +8 -0
- package/helpers/e2e/rte-helper.d.ts +79 -0
- package/helpers/e2e/rte-helper.js +81 -0
- package/package.json +1 -1
- package/src/editor-manager/plugin/dom-tree.js +6 -4
- package/src/global.d.ts +1 -0
- package/styles/bds-lite.css +7 -17
- package/styles/bds.css +11 -22
- package/styles/bootstrap-dark-lite.css +3 -13
- package/styles/bootstrap-dark.css +3 -14
- package/styles/bootstrap-lite.css +3 -13
- package/styles/bootstrap.css +3 -14
- package/styles/bootstrap4-lite.css +3 -13
- package/styles/bootstrap4.css +3 -14
- package/styles/bootstrap5-dark-lite.css +3 -13
- package/styles/bootstrap5-dark.css +3 -14
- package/styles/bootstrap5-lite.css +3 -13
- package/styles/bootstrap5.3-lite.css +3 -13
- package/styles/bootstrap5.3.css +3 -14
- package/styles/bootstrap5.css +3 -14
- package/styles/fabric-dark-lite.css +3 -13
- package/styles/fabric-dark.css +3 -14
- package/styles/fabric-lite.css +3 -13
- package/styles/fabric.css +3 -14
- package/styles/fluent-dark-lite.css +3 -13
- package/styles/fluent-dark.css +3 -14
- package/styles/fluent-lite.css +3 -13
- package/styles/fluent.css +3 -14
- package/styles/fluent2-lite.css +3 -13
- package/styles/fluent2.css +3 -14
- package/styles/highcontrast-light-lite.css +3 -13
- package/styles/highcontrast-light.css +3 -14
- package/styles/highcontrast-lite.css +3 -13
- package/styles/highcontrast.css +3 -14
- package/styles/material-dark-lite.css +3 -13
- package/styles/material-dark.css +3 -14
- package/styles/material-lite.css +3 -13
- package/styles/material.css +3 -14
- package/styles/material3-dark-lite.css +3 -13
- package/styles/material3-dark.css +3 -14
- package/styles/material3-lite.css +3 -13
- package/styles/material3.css +3 -14
- package/styles/rich-text-editor/_bds-definition.scss +2 -2
- package/styles/rich-text-editor/_bigger.scss +0 -1
- package/styles/rich-text-editor/_layout.scss +0 -9
- package/styles/rich-text-editor/_theme.scss +3 -0
- package/styles/rich-text-editor/bds.css +11 -22
- package/styles/rich-text-editor/bootstrap-dark.css +3 -14
- package/styles/rich-text-editor/bootstrap.css +3 -14
- package/styles/rich-text-editor/bootstrap4.css +3 -14
- package/styles/rich-text-editor/bootstrap5-dark.css +3 -14
- package/styles/rich-text-editor/bootstrap5.3.css +3 -14
- package/styles/rich-text-editor/bootstrap5.css +3 -14
- package/styles/rich-text-editor/fabric-dark.css +3 -14
- package/styles/rich-text-editor/fabric.css +3 -14
- package/styles/rich-text-editor/fluent-dark.css +3 -14
- package/styles/rich-text-editor/fluent.css +3 -14
- package/styles/rich-text-editor/fluent2.css +3 -14
- package/styles/rich-text-editor/highcontrast-light.css +3 -14
- package/styles/rich-text-editor/highcontrast.css +3 -14
- package/styles/rich-text-editor/material-dark.css +3 -14
- package/styles/rich-text-editor/material.css +3 -14
- package/styles/rich-text-editor/material3-dark.css +3 -14
- package/styles/rich-text-editor/material3.css +3 -14
- package/styles/rich-text-editor/tailwind-dark.css +3 -14
- package/styles/rich-text-editor/tailwind.css +3 -14
- package/styles/rich-text-editor/tailwind3.css +3 -14
- package/styles/tailwind-dark-lite.css +3 -13
- package/styles/tailwind-dark.css +3 -14
- package/styles/tailwind-lite.css +3 -13
- package/styles/tailwind.css +3 -14
- package/styles/tailwind3-lite.css +3 -13
- package/styles/tailwind3.css +3 -14
- package/tslint.json +111 -0
|
@@ -951,15 +951,12 @@
|
|
|
951
951
|
text-decoration: underline;
|
|
952
952
|
}
|
|
953
953
|
.e-richtexteditor .e-rte-content .e-content p:last-child,
|
|
954
|
-
.e-richtexteditor .e-rte-content .e-content p:last-of-type,
|
|
955
954
|
.e-richtexteditor .e-rte-content .e-content pre:last-child,
|
|
956
955
|
.e-richtexteditor .e-rte-content .e-content blockquote:last-child,
|
|
957
956
|
.e-richtexteditor .e-source-content .e-content p:last-child,
|
|
958
|
-
.e-richtexteditor .e-source-content .e-content p:last-of-type,
|
|
959
957
|
.e-richtexteditor .e-source-content .e-content pre:last-child,
|
|
960
958
|
.e-richtexteditor .e-source-content .e-content blockquote:last-child,
|
|
961
959
|
.e-richtexteditor .e-rte-iframe-content .e-content p:last-child,
|
|
962
|
-
.e-richtexteditor .e-rte-iframe-content .e-content p:last-of-type,
|
|
963
960
|
.e-richtexteditor .e-rte-iframe-content .e-content pre:last-child,
|
|
964
961
|
.e-richtexteditor .e-rte-iframe-content .e-content blockquote:last-child {
|
|
965
962
|
margin-bottom: 0;
|
|
@@ -1589,14 +1586,6 @@
|
|
|
1589
1586
|
.e-rte-elements .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
1590
1587
|
margin-top: 0;
|
|
1591
1588
|
}
|
|
1592
|
-
.e-richtexteditor .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1593
|
-
.e-richtexteditor .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1594
|
-
.e-richtexteditor .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1595
|
-
.e-rte-elements .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1596
|
-
.e-rte-elements .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1597
|
-
.e-rte-elements .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
1598
|
-
margin-right: 30px;
|
|
1599
|
-
}
|
|
1600
1589
|
.e-richtexteditor .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list,
|
|
1601
1590
|
.e-richtexteditor .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list,
|
|
1602
1591
|
.e-richtexteditor .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list,
|
|
@@ -1613,7 +1602,6 @@
|
|
|
1613
1602
|
.e-rte-elements .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list .e-file-container,
|
|
1614
1603
|
.e-rte-elements .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list .e-file-container {
|
|
1615
1604
|
margin-left: 0;
|
|
1616
|
-
margin-right: 0;
|
|
1617
1605
|
}
|
|
1618
1606
|
.e-richtexteditor .e-img-uploadwrap.e-droparea .e-upload .e-upload-files,
|
|
1619
1607
|
.e-richtexteditor .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files,
|
|
@@ -1642,7 +1630,6 @@
|
|
|
1642
1630
|
}
|
|
1643
1631
|
.e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1644
1632
|
.e-rte-elements .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
1645
|
-
margin-right: 45px;
|
|
1646
1633
|
margin-top: 0;
|
|
1647
1634
|
}
|
|
1648
1635
|
.e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-browsebtn,
|
|
@@ -2513,6 +2500,9 @@
|
|
|
2513
2500
|
width: max-content;
|
|
2514
2501
|
padding: 0 9.51px;
|
|
2515
2502
|
}
|
|
2503
|
+
.e-rte-toolbar.e-toolbar .e-toolbar-pop:not(.e-toolbar-extended) {
|
|
2504
|
+
max-width: 75%;
|
|
2505
|
+
}
|
|
2516
2506
|
|
|
2517
2507
|
.e-rte-container .e-toolbar-wrapper.e-rte-tb-bottom {
|
|
2518
2508
|
border-top: 1px solid #e0e0e0;
|
|
@@ -3126,7 +3116,6 @@ span.e-table-box.e-rbox-select {
|
|
|
3126
3116
|
}
|
|
3127
3117
|
.e-bigger .e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
3128
3118
|
.e-richtexteditor.e-bigger .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
3129
|
-
margin-right: 66px;
|
|
3130
3119
|
margin-top: -4px;
|
|
3131
3120
|
padding: 18px;
|
|
3132
3121
|
}
|
|
@@ -924,15 +924,12 @@
|
|
|
924
924
|
text-decoration: underline;
|
|
925
925
|
}
|
|
926
926
|
.e-richtexteditor .e-rte-content .e-content p:last-child,
|
|
927
|
-
.e-richtexteditor .e-rte-content .e-content p:last-of-type,
|
|
928
927
|
.e-richtexteditor .e-rte-content .e-content pre:last-child,
|
|
929
928
|
.e-richtexteditor .e-rte-content .e-content blockquote:last-child,
|
|
930
929
|
.e-richtexteditor .e-source-content .e-content p:last-child,
|
|
931
|
-
.e-richtexteditor .e-source-content .e-content p:last-of-type,
|
|
932
930
|
.e-richtexteditor .e-source-content .e-content pre:last-child,
|
|
933
931
|
.e-richtexteditor .e-source-content .e-content blockquote:last-child,
|
|
934
932
|
.e-richtexteditor .e-rte-iframe-content .e-content p:last-child,
|
|
935
|
-
.e-richtexteditor .e-rte-iframe-content .e-content p:last-of-type,
|
|
936
933
|
.e-richtexteditor .e-rte-iframe-content .e-content pre:last-child,
|
|
937
934
|
.e-richtexteditor .e-rte-iframe-content .e-content blockquote:last-child {
|
|
938
935
|
margin-bottom: 0;
|
|
@@ -1562,14 +1559,6 @@
|
|
|
1562
1559
|
.e-rte-elements .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
1563
1560
|
margin-top: 0;
|
|
1564
1561
|
}
|
|
1565
|
-
.e-richtexteditor .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1566
|
-
.e-richtexteditor .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1567
|
-
.e-richtexteditor .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1568
|
-
.e-rte-elements .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1569
|
-
.e-rte-elements .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1570
|
-
.e-rte-elements .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
1571
|
-
margin-right: 30px;
|
|
1572
|
-
}
|
|
1573
1562
|
.e-richtexteditor .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list,
|
|
1574
1563
|
.e-richtexteditor .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list,
|
|
1575
1564
|
.e-richtexteditor .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list,
|
|
@@ -1586,7 +1575,6 @@
|
|
|
1586
1575
|
.e-rte-elements .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list .e-file-container,
|
|
1587
1576
|
.e-rte-elements .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list .e-file-container {
|
|
1588
1577
|
margin-left: 0;
|
|
1589
|
-
margin-right: 0;
|
|
1590
1578
|
}
|
|
1591
1579
|
.e-richtexteditor .e-img-uploadwrap.e-droparea .e-upload .e-upload-files,
|
|
1592
1580
|
.e-richtexteditor .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files,
|
|
@@ -1615,7 +1603,6 @@
|
|
|
1615
1603
|
}
|
|
1616
1604
|
.e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1617
1605
|
.e-rte-elements .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
1618
|
-
margin-right: 40px;
|
|
1619
1606
|
margin-top: -2px;
|
|
1620
1607
|
}
|
|
1621
1608
|
.e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-browsebtn,
|
|
@@ -2460,6 +2447,9 @@
|
|
|
2460
2447
|
width: max-content;
|
|
2461
2448
|
padding: 0 3px;
|
|
2462
2449
|
}
|
|
2450
|
+
.e-rte-toolbar.e-toolbar .e-toolbar-pop:not(.e-toolbar-extended) {
|
|
2451
|
+
max-width: 75%;
|
|
2452
|
+
}
|
|
2463
2453
|
|
|
2464
2454
|
.e-rte-container .e-toolbar-wrapper.e-rte-tb-bottom {
|
|
2465
2455
|
border-top: 1px solid #000;
|
|
@@ -3054,7 +3044,6 @@ span.e-table-box.e-rbox-select {
|
|
|
3054
3044
|
}
|
|
3055
3045
|
.e-bigger .e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
3056
3046
|
.e-richtexteditor.e-bigger .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
3057
|
-
margin-right: 66px;
|
|
3058
3047
|
margin-top: -4px;
|
|
3059
3048
|
padding: 18px;
|
|
3060
3049
|
}
|
|
@@ -951,15 +951,12 @@
|
|
|
951
951
|
text-decoration: underline;
|
|
952
952
|
}
|
|
953
953
|
.e-richtexteditor .e-rte-content .e-content p:last-child,
|
|
954
|
-
.e-richtexteditor .e-rte-content .e-content p:last-of-type,
|
|
955
954
|
.e-richtexteditor .e-rte-content .e-content pre:last-child,
|
|
956
955
|
.e-richtexteditor .e-rte-content .e-content blockquote:last-child,
|
|
957
956
|
.e-richtexteditor .e-source-content .e-content p:last-child,
|
|
958
|
-
.e-richtexteditor .e-source-content .e-content p:last-of-type,
|
|
959
957
|
.e-richtexteditor .e-source-content .e-content pre:last-child,
|
|
960
958
|
.e-richtexteditor .e-source-content .e-content blockquote:last-child,
|
|
961
959
|
.e-richtexteditor .e-rte-iframe-content .e-content p:last-child,
|
|
962
|
-
.e-richtexteditor .e-rte-iframe-content .e-content p:last-of-type,
|
|
963
960
|
.e-richtexteditor .e-rte-iframe-content .e-content pre:last-child,
|
|
964
961
|
.e-richtexteditor .e-rte-iframe-content .e-content blockquote:last-child {
|
|
965
962
|
margin-bottom: 0;
|
|
@@ -1589,14 +1586,6 @@
|
|
|
1589
1586
|
.e-rte-elements .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
1590
1587
|
margin-top: 0;
|
|
1591
1588
|
}
|
|
1592
|
-
.e-richtexteditor .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1593
|
-
.e-richtexteditor .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1594
|
-
.e-richtexteditor .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1595
|
-
.e-rte-elements .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1596
|
-
.e-rte-elements .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1597
|
-
.e-rte-elements .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
1598
|
-
margin-right: 30px;
|
|
1599
|
-
}
|
|
1600
1589
|
.e-richtexteditor .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list,
|
|
1601
1590
|
.e-richtexteditor .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list,
|
|
1602
1591
|
.e-richtexteditor .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list,
|
|
@@ -1613,7 +1602,6 @@
|
|
|
1613
1602
|
.e-rte-elements .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list .e-file-container,
|
|
1614
1603
|
.e-rte-elements .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list .e-file-container {
|
|
1615
1604
|
margin-left: 0;
|
|
1616
|
-
margin-right: 0;
|
|
1617
1605
|
}
|
|
1618
1606
|
.e-richtexteditor .e-img-uploadwrap.e-droparea .e-upload .e-upload-files,
|
|
1619
1607
|
.e-richtexteditor .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files,
|
|
@@ -1642,7 +1630,6 @@
|
|
|
1642
1630
|
}
|
|
1643
1631
|
.e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1644
1632
|
.e-rte-elements .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
1645
|
-
margin-right: 40px;
|
|
1646
1633
|
margin-top: -2px;
|
|
1647
1634
|
}
|
|
1648
1635
|
.e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-browsebtn,
|
|
@@ -2487,6 +2474,9 @@
|
|
|
2487
2474
|
width: max-content;
|
|
2488
2475
|
padding: 0 3px;
|
|
2489
2476
|
}
|
|
2477
|
+
.e-rte-toolbar.e-toolbar .e-toolbar-pop:not(.e-toolbar-extended) {
|
|
2478
|
+
max-width: 75%;
|
|
2479
|
+
}
|
|
2490
2480
|
|
|
2491
2481
|
.e-rte-container .e-toolbar-wrapper.e-rte-tb-bottom {
|
|
2492
2482
|
border-top: 1px solid #fff;
|
|
@@ -3084,7 +3074,6 @@ span.e-table-box.e-rbox-select {
|
|
|
3084
3074
|
}
|
|
3085
3075
|
.e-bigger .e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
3086
3076
|
.e-richtexteditor.e-bigger .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
3087
|
-
margin-right: 60px;
|
|
3088
3077
|
margin-top: 2px;
|
|
3089
3078
|
padding: 18px;
|
|
3090
3079
|
}
|
|
@@ -949,15 +949,12 @@
|
|
|
949
949
|
text-decoration: underline;
|
|
950
950
|
}
|
|
951
951
|
.e-richtexteditor .e-rte-content .e-content p:last-child,
|
|
952
|
-
.e-richtexteditor .e-rte-content .e-content p:last-of-type,
|
|
953
952
|
.e-richtexteditor .e-rte-content .e-content pre:last-child,
|
|
954
953
|
.e-richtexteditor .e-rte-content .e-content blockquote:last-child,
|
|
955
954
|
.e-richtexteditor .e-source-content .e-content p:last-child,
|
|
956
|
-
.e-richtexteditor .e-source-content .e-content p:last-of-type,
|
|
957
955
|
.e-richtexteditor .e-source-content .e-content pre:last-child,
|
|
958
956
|
.e-richtexteditor .e-source-content .e-content blockquote:last-child,
|
|
959
957
|
.e-richtexteditor .e-rte-iframe-content .e-content p:last-child,
|
|
960
|
-
.e-richtexteditor .e-rte-iframe-content .e-content p:last-of-type,
|
|
961
958
|
.e-richtexteditor .e-rte-iframe-content .e-content pre:last-child,
|
|
962
959
|
.e-richtexteditor .e-rte-iframe-content .e-content blockquote:last-child {
|
|
963
960
|
margin-bottom: 0;
|
|
@@ -1587,14 +1584,6 @@
|
|
|
1587
1584
|
.e-rte-elements .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
1588
1585
|
margin-top: 0;
|
|
1589
1586
|
}
|
|
1590
|
-
.e-richtexteditor .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1591
|
-
.e-richtexteditor .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1592
|
-
.e-richtexteditor .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1593
|
-
.e-rte-elements .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1594
|
-
.e-rte-elements .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1595
|
-
.e-rte-elements .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
1596
|
-
margin-right: 30px;
|
|
1597
|
-
}
|
|
1598
1587
|
.e-richtexteditor .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list,
|
|
1599
1588
|
.e-richtexteditor .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list,
|
|
1600
1589
|
.e-richtexteditor .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list,
|
|
@@ -1611,7 +1600,6 @@
|
|
|
1611
1600
|
.e-rte-elements .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list .e-file-container,
|
|
1612
1601
|
.e-rte-elements .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list .e-file-container {
|
|
1613
1602
|
margin-left: 0;
|
|
1614
|
-
margin-right: 0;
|
|
1615
1603
|
}
|
|
1616
1604
|
.e-richtexteditor .e-img-uploadwrap.e-droparea .e-upload .e-upload-files,
|
|
1617
1605
|
.e-richtexteditor .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files,
|
|
@@ -1640,7 +1628,6 @@
|
|
|
1640
1628
|
}
|
|
1641
1629
|
.e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1642
1630
|
.e-rte-elements .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
1643
|
-
margin-right: 40px;
|
|
1644
1631
|
margin-top: 0;
|
|
1645
1632
|
}
|
|
1646
1633
|
.e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-browsebtn,
|
|
@@ -2494,6 +2481,9 @@
|
|
|
2494
2481
|
width: max-content;
|
|
2495
2482
|
padding: 0 2px;
|
|
2496
2483
|
}
|
|
2484
|
+
.e-rte-toolbar.e-toolbar .e-toolbar-pop:not(.e-toolbar-extended) {
|
|
2485
|
+
max-width: 75%;
|
|
2486
|
+
}
|
|
2497
2487
|
|
|
2498
2488
|
.e-rte-container .e-toolbar-wrapper.e-rte-tb-bottom {
|
|
2499
2489
|
border-top: 1px solid #616161;
|
|
@@ -3093,7 +3083,6 @@ span.e-table-box.e-rbox-select {
|
|
|
3093
3083
|
}
|
|
3094
3084
|
.e-bigger .e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
3095
3085
|
.e-richtexteditor.e-bigger .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
3096
|
-
margin-right: 48px;
|
|
3097
3086
|
margin-top: -2px;
|
|
3098
3087
|
padding: 18px;
|
|
3099
3088
|
}
|
|
@@ -942,15 +942,12 @@
|
|
|
942
942
|
text-decoration: underline;
|
|
943
943
|
}
|
|
944
944
|
.e-richtexteditor .e-rte-content .e-content p:last-child,
|
|
945
|
-
.e-richtexteditor .e-rte-content .e-content p:last-of-type,
|
|
946
945
|
.e-richtexteditor .e-rte-content .e-content pre:last-child,
|
|
947
946
|
.e-richtexteditor .e-rte-content .e-content blockquote:last-child,
|
|
948
947
|
.e-richtexteditor .e-source-content .e-content p:last-child,
|
|
949
|
-
.e-richtexteditor .e-source-content .e-content p:last-of-type,
|
|
950
948
|
.e-richtexteditor .e-source-content .e-content pre:last-child,
|
|
951
949
|
.e-richtexteditor .e-source-content .e-content blockquote:last-child,
|
|
952
950
|
.e-richtexteditor .e-rte-iframe-content .e-content p:last-child,
|
|
953
|
-
.e-richtexteditor .e-rte-iframe-content .e-content p:last-of-type,
|
|
954
951
|
.e-richtexteditor .e-rte-iframe-content .e-content pre:last-child,
|
|
955
952
|
.e-richtexteditor .e-rte-iframe-content .e-content blockquote:last-child {
|
|
956
953
|
margin-bottom: 0;
|
|
@@ -1580,14 +1577,6 @@
|
|
|
1580
1577
|
.e-rte-elements .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
1581
1578
|
margin-top: 0;
|
|
1582
1579
|
}
|
|
1583
|
-
.e-richtexteditor .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1584
|
-
.e-richtexteditor .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1585
|
-
.e-richtexteditor .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1586
|
-
.e-rte-elements .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1587
|
-
.e-rte-elements .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1588
|
-
.e-rte-elements .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
1589
|
-
margin-right: 30px;
|
|
1590
|
-
}
|
|
1591
1580
|
.e-richtexteditor .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list,
|
|
1592
1581
|
.e-richtexteditor .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list,
|
|
1593
1582
|
.e-richtexteditor .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list,
|
|
@@ -1604,7 +1593,6 @@
|
|
|
1604
1593
|
.e-rte-elements .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list .e-file-container,
|
|
1605
1594
|
.e-rte-elements .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list .e-file-container {
|
|
1606
1595
|
margin-left: 0;
|
|
1607
|
-
margin-right: 0;
|
|
1608
1596
|
}
|
|
1609
1597
|
.e-richtexteditor .e-img-uploadwrap.e-droparea .e-upload .e-upload-files,
|
|
1610
1598
|
.e-richtexteditor .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files,
|
|
@@ -1633,7 +1621,6 @@
|
|
|
1633
1621
|
}
|
|
1634
1622
|
.e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1635
1623
|
.e-rte-elements .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
1636
|
-
margin-right: 40px;
|
|
1637
1624
|
margin-top: 0;
|
|
1638
1625
|
}
|
|
1639
1626
|
.e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-browsebtn,
|
|
@@ -2487,6 +2474,9 @@
|
|
|
2487
2474
|
width: max-content;
|
|
2488
2475
|
padding: 0 2px;
|
|
2489
2476
|
}
|
|
2477
|
+
.e-rte-toolbar.e-toolbar .e-toolbar-pop:not(.e-toolbar-extended) {
|
|
2478
|
+
max-width: 75%;
|
|
2479
|
+
}
|
|
2490
2480
|
|
|
2491
2481
|
.e-rte-container .e-toolbar-wrapper.e-rte-tb-bottom {
|
|
2492
2482
|
border-top: 1px solid rgba(0, 0, 0, 0.12);
|
|
@@ -3085,7 +3075,6 @@ span.e-table-box.e-rbox-select {
|
|
|
3085
3075
|
}
|
|
3086
3076
|
.e-bigger .e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
3087
3077
|
.e-richtexteditor.e-bigger .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
3088
|
-
margin-right: 48px;
|
|
3089
3078
|
margin-top: -2px;
|
|
3090
3079
|
padding: 18px;
|
|
3091
3080
|
}
|
|
@@ -949,15 +949,12 @@
|
|
|
949
949
|
text-decoration: underline;
|
|
950
950
|
}
|
|
951
951
|
.e-richtexteditor .e-rte-content .e-content p:last-child,
|
|
952
|
-
.e-richtexteditor .e-rte-content .e-content p:last-of-type,
|
|
953
952
|
.e-richtexteditor .e-rte-content .e-content pre:last-child,
|
|
954
953
|
.e-richtexteditor .e-rte-content .e-content blockquote:last-child,
|
|
955
954
|
.e-richtexteditor .e-source-content .e-content p:last-child,
|
|
956
|
-
.e-richtexteditor .e-source-content .e-content p:last-of-type,
|
|
957
955
|
.e-richtexteditor .e-source-content .e-content pre:last-child,
|
|
958
956
|
.e-richtexteditor .e-source-content .e-content blockquote:last-child,
|
|
959
957
|
.e-richtexteditor .e-rte-iframe-content .e-content p:last-child,
|
|
960
|
-
.e-richtexteditor .e-rte-iframe-content .e-content p:last-of-type,
|
|
961
958
|
.e-richtexteditor .e-rte-iframe-content .e-content pre:last-child,
|
|
962
959
|
.e-richtexteditor .e-rte-iframe-content .e-content blockquote:last-child {
|
|
963
960
|
margin-bottom: 0;
|
|
@@ -1587,14 +1584,6 @@
|
|
|
1587
1584
|
.e-rte-elements .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
1588
1585
|
margin-top: 0;
|
|
1589
1586
|
}
|
|
1590
|
-
.e-richtexteditor .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1591
|
-
.e-richtexteditor .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1592
|
-
.e-richtexteditor .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1593
|
-
.e-rte-elements .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1594
|
-
.e-rte-elements .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1595
|
-
.e-rte-elements .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
1596
|
-
margin-right: 30px;
|
|
1597
|
-
}
|
|
1598
1587
|
.e-richtexteditor .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list,
|
|
1599
1588
|
.e-richtexteditor .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list,
|
|
1600
1589
|
.e-richtexteditor .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list,
|
|
@@ -1611,7 +1600,6 @@
|
|
|
1611
1600
|
.e-rte-elements .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list .e-file-container,
|
|
1612
1601
|
.e-rte-elements .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list .e-file-container {
|
|
1613
1602
|
margin-left: 0;
|
|
1614
|
-
margin-right: 0;
|
|
1615
1603
|
}
|
|
1616
1604
|
.e-richtexteditor .e-img-uploadwrap.e-droparea .e-upload .e-upload-files,
|
|
1617
1605
|
.e-richtexteditor .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files,
|
|
@@ -1640,7 +1628,6 @@
|
|
|
1640
1628
|
}
|
|
1641
1629
|
.e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1642
1630
|
.e-rte-elements .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
1643
|
-
margin-right: 38px;
|
|
1644
1631
|
margin-top: 0;
|
|
1645
1632
|
}
|
|
1646
1633
|
.e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-browsebtn,
|
|
@@ -2500,6 +2487,9 @@
|
|
|
2500
2487
|
width: max-content;
|
|
2501
2488
|
padding: 0 4px;
|
|
2502
2489
|
}
|
|
2490
|
+
.e-rte-toolbar.e-toolbar .e-toolbar-pop:not(.e-toolbar-extended) {
|
|
2491
|
+
max-width: 75%;
|
|
2492
|
+
}
|
|
2503
2493
|
|
|
2504
2494
|
.e-rte-container .e-toolbar-wrapper.e-rte-tb-bottom {
|
|
2505
2495
|
border-top: 1px solid rgba(var(--color-sf-outline-variant));
|
|
@@ -3136,7 +3126,6 @@ span.e-table-box.e-rbox-select {
|
|
|
3136
3126
|
}
|
|
3137
3127
|
.e-bigger .e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
3138
3128
|
.e-richtexteditor.e-bigger .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
3139
|
-
margin-right: 46px;
|
|
3140
3129
|
margin-top: -3px;
|
|
3141
3130
|
padding: 18px;
|
|
3142
3131
|
}
|
|
@@ -946,15 +946,12 @@
|
|
|
946
946
|
text-decoration: underline;
|
|
947
947
|
}
|
|
948
948
|
.e-richtexteditor .e-rte-content .e-content p:last-child,
|
|
949
|
-
.e-richtexteditor .e-rte-content .e-content p:last-of-type,
|
|
950
949
|
.e-richtexteditor .e-rte-content .e-content pre:last-child,
|
|
951
950
|
.e-richtexteditor .e-rte-content .e-content blockquote:last-child,
|
|
952
951
|
.e-richtexteditor .e-source-content .e-content p:last-child,
|
|
953
|
-
.e-richtexteditor .e-source-content .e-content p:last-of-type,
|
|
954
952
|
.e-richtexteditor .e-source-content .e-content pre:last-child,
|
|
955
953
|
.e-richtexteditor .e-source-content .e-content blockquote:last-child,
|
|
956
954
|
.e-richtexteditor .e-rte-iframe-content .e-content p:last-child,
|
|
957
|
-
.e-richtexteditor .e-rte-iframe-content .e-content p:last-of-type,
|
|
958
955
|
.e-richtexteditor .e-rte-iframe-content .e-content pre:last-child,
|
|
959
956
|
.e-richtexteditor .e-rte-iframe-content .e-content blockquote:last-child {
|
|
960
957
|
margin-bottom: 0;
|
|
@@ -1584,14 +1581,6 @@
|
|
|
1584
1581
|
.e-rte-elements .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
1585
1582
|
margin-top: 0;
|
|
1586
1583
|
}
|
|
1587
|
-
.e-richtexteditor .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1588
|
-
.e-richtexteditor .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1589
|
-
.e-richtexteditor .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1590
|
-
.e-rte-elements .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1591
|
-
.e-rte-elements .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1592
|
-
.e-rte-elements .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
1593
|
-
margin-right: 30px;
|
|
1594
|
-
}
|
|
1595
1584
|
.e-richtexteditor .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list,
|
|
1596
1585
|
.e-richtexteditor .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list,
|
|
1597
1586
|
.e-richtexteditor .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list,
|
|
@@ -1608,7 +1597,6 @@
|
|
|
1608
1597
|
.e-rte-elements .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list .e-file-container,
|
|
1609
1598
|
.e-rte-elements .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list .e-file-container {
|
|
1610
1599
|
margin-left: 0;
|
|
1611
|
-
margin-right: 0;
|
|
1612
1600
|
}
|
|
1613
1601
|
.e-richtexteditor .e-img-uploadwrap.e-droparea .e-upload .e-upload-files,
|
|
1614
1602
|
.e-richtexteditor .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files,
|
|
@@ -1637,7 +1625,6 @@
|
|
|
1637
1625
|
}
|
|
1638
1626
|
.e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1639
1627
|
.e-rte-elements .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
1640
|
-
margin-right: 38px;
|
|
1641
1628
|
margin-top: 0;
|
|
1642
1629
|
}
|
|
1643
1630
|
.e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-browsebtn,
|
|
@@ -2497,6 +2484,9 @@
|
|
|
2497
2484
|
width: max-content;
|
|
2498
2485
|
padding: 0 4px;
|
|
2499
2486
|
}
|
|
2487
|
+
.e-rte-toolbar.e-toolbar .e-toolbar-pop:not(.e-toolbar-extended) {
|
|
2488
|
+
max-width: 75%;
|
|
2489
|
+
}
|
|
2500
2490
|
|
|
2501
2491
|
.e-rte-container .e-toolbar-wrapper.e-rte-tb-bottom {
|
|
2502
2492
|
border-top: 1px solid rgba(var(--color-sf-outline-variant));
|
|
@@ -3137,7 +3127,6 @@ span.e-table-box.e-rbox-select {
|
|
|
3137
3127
|
}
|
|
3138
3128
|
.e-bigger .e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
3139
3129
|
.e-richtexteditor.e-bigger .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
3140
|
-
margin-right: 46px;
|
|
3141
3130
|
margin-top: -3px;
|
|
3142
3131
|
padding: 18px;
|
|
3143
3132
|
}
|
|
@@ -951,15 +951,12 @@
|
|
|
951
951
|
text-decoration: underline;
|
|
952
952
|
}
|
|
953
953
|
.e-richtexteditor .e-rte-content .e-content p:last-child,
|
|
954
|
-
.e-richtexteditor .e-rte-content .e-content p:last-of-type,
|
|
955
954
|
.e-richtexteditor .e-rte-content .e-content pre:last-child,
|
|
956
955
|
.e-richtexteditor .e-rte-content .e-content blockquote:last-child,
|
|
957
956
|
.e-richtexteditor .e-source-content .e-content p:last-child,
|
|
958
|
-
.e-richtexteditor .e-source-content .e-content p:last-of-type,
|
|
959
957
|
.e-richtexteditor .e-source-content .e-content pre:last-child,
|
|
960
958
|
.e-richtexteditor .e-source-content .e-content blockquote:last-child,
|
|
961
959
|
.e-richtexteditor .e-rte-iframe-content .e-content p:last-child,
|
|
962
|
-
.e-richtexteditor .e-rte-iframe-content .e-content p:last-of-type,
|
|
963
960
|
.e-richtexteditor .e-rte-iframe-content .e-content pre:last-child,
|
|
964
961
|
.e-richtexteditor .e-rte-iframe-content .e-content blockquote:last-child {
|
|
965
962
|
margin-bottom: 0;
|
|
@@ -1589,14 +1586,6 @@
|
|
|
1589
1586
|
.e-rte-elements .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
1590
1587
|
margin-top: 0;
|
|
1591
1588
|
}
|
|
1592
|
-
.e-richtexteditor .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1593
|
-
.e-richtexteditor .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1594
|
-
.e-richtexteditor .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1595
|
-
.e-rte-elements .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1596
|
-
.e-rte-elements .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1597
|
-
.e-rte-elements .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
1598
|
-
margin-right: 30px;
|
|
1599
|
-
}
|
|
1600
1589
|
.e-richtexteditor .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list,
|
|
1601
1590
|
.e-richtexteditor .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list,
|
|
1602
1591
|
.e-richtexteditor .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list,
|
|
@@ -1613,7 +1602,6 @@
|
|
|
1613
1602
|
.e-rte-elements .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list .e-file-container,
|
|
1614
1603
|
.e-rte-elements .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list .e-file-container {
|
|
1615
1604
|
margin-left: 0;
|
|
1616
|
-
margin-right: 0;
|
|
1617
1605
|
}
|
|
1618
1606
|
.e-richtexteditor .e-img-uploadwrap.e-droparea .e-upload .e-upload-files,
|
|
1619
1607
|
.e-richtexteditor .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files,
|
|
@@ -1642,7 +1630,6 @@
|
|
|
1642
1630
|
}
|
|
1643
1631
|
.e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1644
1632
|
.e-rte-elements .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
1645
|
-
margin-right: 52px;
|
|
1646
1633
|
margin-top: 5px;
|
|
1647
1634
|
}
|
|
1648
1635
|
.e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-browsebtn,
|
|
@@ -2496,6 +2483,9 @@
|
|
|
2496
2483
|
width: max-content;
|
|
2497
2484
|
padding: 0 8px;
|
|
2498
2485
|
}
|
|
2486
|
+
.e-rte-toolbar.e-toolbar .e-toolbar-pop:not(.e-toolbar-extended) {
|
|
2487
|
+
max-width: 75%;
|
|
2488
|
+
}
|
|
2499
2489
|
|
|
2500
2490
|
.e-rte-container .e-toolbar-wrapper.e-rte-tb-bottom {
|
|
2501
2491
|
border-top: 1px solid #4b5563;
|
|
@@ -3104,7 +3094,6 @@ span.e-table-box.e-rbox-select {
|
|
|
3104
3094
|
}
|
|
3105
3095
|
.e-bigger .e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
3106
3096
|
.e-richtexteditor.e-bigger .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
3107
|
-
margin-right: 66px;
|
|
3108
3097
|
margin-top: -2px;
|
|
3109
3098
|
padding: 18px;
|
|
3110
3099
|
}
|
|
@@ -942,15 +942,12 @@
|
|
|
942
942
|
text-decoration: underline;
|
|
943
943
|
}
|
|
944
944
|
.e-richtexteditor .e-rte-content .e-content p:last-child,
|
|
945
|
-
.e-richtexteditor .e-rte-content .e-content p:last-of-type,
|
|
946
945
|
.e-richtexteditor .e-rte-content .e-content pre:last-child,
|
|
947
946
|
.e-richtexteditor .e-rte-content .e-content blockquote:last-child,
|
|
948
947
|
.e-richtexteditor .e-source-content .e-content p:last-child,
|
|
949
|
-
.e-richtexteditor .e-source-content .e-content p:last-of-type,
|
|
950
948
|
.e-richtexteditor .e-source-content .e-content pre:last-child,
|
|
951
949
|
.e-richtexteditor .e-source-content .e-content blockquote:last-child,
|
|
952
950
|
.e-richtexteditor .e-rte-iframe-content .e-content p:last-child,
|
|
953
|
-
.e-richtexteditor .e-rte-iframe-content .e-content p:last-of-type,
|
|
954
951
|
.e-richtexteditor .e-rte-iframe-content .e-content pre:last-child,
|
|
955
952
|
.e-richtexteditor .e-rte-iframe-content .e-content blockquote:last-child {
|
|
956
953
|
margin-bottom: 0;
|
|
@@ -1580,14 +1577,6 @@
|
|
|
1580
1577
|
.e-rte-elements .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
1581
1578
|
margin-top: 0;
|
|
1582
1579
|
}
|
|
1583
|
-
.e-richtexteditor .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1584
|
-
.e-richtexteditor .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1585
|
-
.e-richtexteditor .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1586
|
-
.e-rte-elements .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1587
|
-
.e-rte-elements .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1588
|
-
.e-rte-elements .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
1589
|
-
margin-right: 30px;
|
|
1590
|
-
}
|
|
1591
1580
|
.e-richtexteditor .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list,
|
|
1592
1581
|
.e-richtexteditor .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list,
|
|
1593
1582
|
.e-richtexteditor .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list,
|
|
@@ -1604,7 +1593,6 @@
|
|
|
1604
1593
|
.e-rte-elements .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list .e-file-container,
|
|
1605
1594
|
.e-rte-elements .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list .e-file-container {
|
|
1606
1595
|
margin-left: 0;
|
|
1607
|
-
margin-right: 0;
|
|
1608
1596
|
}
|
|
1609
1597
|
.e-richtexteditor .e-img-uploadwrap.e-droparea .e-upload .e-upload-files,
|
|
1610
1598
|
.e-richtexteditor .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files,
|
|
@@ -1633,7 +1621,6 @@
|
|
|
1633
1621
|
}
|
|
1634
1622
|
.e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1635
1623
|
.e-rte-elements .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
1636
|
-
margin-right: 52px;
|
|
1637
1624
|
margin-top: 5px;
|
|
1638
1625
|
}
|
|
1639
1626
|
.e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-browsebtn,
|
|
@@ -2487,6 +2474,9 @@
|
|
|
2487
2474
|
width: max-content;
|
|
2488
2475
|
padding: 0 8px;
|
|
2489
2476
|
}
|
|
2477
|
+
.e-rte-toolbar.e-toolbar .e-toolbar-pop:not(.e-toolbar-extended) {
|
|
2478
|
+
max-width: 75%;
|
|
2479
|
+
}
|
|
2490
2480
|
|
|
2491
2481
|
.e-rte-container .e-toolbar-wrapper.e-rte-tb-bottom {
|
|
2492
2482
|
border-top: 1px solid #e5e7eb;
|
|
@@ -3095,7 +3085,6 @@ span.e-table-box.e-rbox-select {
|
|
|
3095
3085
|
}
|
|
3096
3086
|
.e-bigger .e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
3097
3087
|
.e-richtexteditor.e-bigger .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
3098
|
-
margin-right: 66px;
|
|
3099
3088
|
margin-top: -2px;
|
|
3100
3089
|
padding: 18px;
|
|
3101
3090
|
}
|
|
@@ -947,15 +947,12 @@
|
|
|
947
947
|
text-decoration: underline;
|
|
948
948
|
}
|
|
949
949
|
.e-richtexteditor .e-rte-content .e-content p:last-child,
|
|
950
|
-
.e-richtexteditor .e-rte-content .e-content p:last-of-type,
|
|
951
950
|
.e-richtexteditor .e-rte-content .e-content pre:last-child,
|
|
952
951
|
.e-richtexteditor .e-rte-content .e-content blockquote:last-child,
|
|
953
952
|
.e-richtexteditor .e-source-content .e-content p:last-child,
|
|
954
|
-
.e-richtexteditor .e-source-content .e-content p:last-of-type,
|
|
955
953
|
.e-richtexteditor .e-source-content .e-content pre:last-child,
|
|
956
954
|
.e-richtexteditor .e-source-content .e-content blockquote:last-child,
|
|
957
955
|
.e-richtexteditor .e-rte-iframe-content .e-content p:last-child,
|
|
958
|
-
.e-richtexteditor .e-rte-iframe-content .e-content p:last-of-type,
|
|
959
956
|
.e-richtexteditor .e-rte-iframe-content .e-content pre:last-child,
|
|
960
957
|
.e-richtexteditor .e-rte-iframe-content .e-content blockquote:last-child {
|
|
961
958
|
margin-bottom: 0;
|
|
@@ -1592,14 +1589,6 @@
|
|
|
1592
1589
|
.e-rte-elements .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
1593
1590
|
margin-top: 0;
|
|
1594
1591
|
}
|
|
1595
|
-
.e-richtexteditor .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1596
|
-
.e-richtexteditor .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1597
|
-
.e-richtexteditor .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1598
|
-
.e-rte-elements .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1599
|
-
.e-rte-elements .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1600
|
-
.e-rte-elements .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
1601
|
-
margin-right: 30px;
|
|
1602
|
-
}
|
|
1603
1592
|
.e-richtexteditor .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list,
|
|
1604
1593
|
.e-richtexteditor .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list,
|
|
1605
1594
|
.e-richtexteditor .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list,
|
|
@@ -1616,7 +1605,6 @@
|
|
|
1616
1605
|
.e-rte-elements .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list .e-file-container,
|
|
1617
1606
|
.e-rte-elements .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list .e-file-container {
|
|
1618
1607
|
margin-left: 0;
|
|
1619
|
-
margin-right: 0;
|
|
1620
1608
|
}
|
|
1621
1609
|
.e-richtexteditor .e-img-uploadwrap.e-droparea .e-upload .e-upload-files,
|
|
1622
1610
|
.e-richtexteditor .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files,
|
|
@@ -1645,7 +1633,6 @@
|
|
|
1645
1633
|
}
|
|
1646
1634
|
.e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
1647
1635
|
.e-rte-elements .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
1648
|
-
margin-right: 50px;
|
|
1649
1636
|
margin-top: 7px;
|
|
1650
1637
|
}
|
|
1651
1638
|
.e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-browsebtn,
|
|
@@ -2490,6 +2477,9 @@
|
|
|
2490
2477
|
width: max-content;
|
|
2491
2478
|
padding: 0 8px;
|
|
2492
2479
|
}
|
|
2480
|
+
.e-rte-toolbar.e-toolbar .e-toolbar-pop:not(.e-toolbar-extended) {
|
|
2481
|
+
max-width: 75%;
|
|
2482
|
+
}
|
|
2493
2483
|
|
|
2494
2484
|
.e-rte-container .e-toolbar-wrapper.e-rte-tb-bottom {
|
|
2495
2485
|
border-top: 1px solid var(--color-sf-border-light);
|
|
@@ -3090,7 +3080,6 @@ span.e-table-box.e-rbox-select {
|
|
|
3090
3080
|
}
|
|
3091
3081
|
.e-bigger .e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
|
|
3092
3082
|
.e-richtexteditor.e-bigger .e-dialog .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
3093
|
-
margin-right: 63px;
|
|
3094
3083
|
margin-top: 6px;
|
|
3095
3084
|
padding: 18px;
|
|
3096
3085
|
}
|