suneditor 3.0.0-beta.9 → 3.0.0-rc.2
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/README.md +65 -57
- package/dist/suneditor-contents.min.css +1 -0
- package/dist/suneditor.min.css +1 -1
- package/dist/suneditor.min.js +1 -1
- package/package.json +110 -61
- package/src/assets/design/color.css +36 -17
- package/src/assets/design/size.css +2 -0
- package/src/assets/icons/defaultIcons.js +17 -2
- package/src/assets/suneditor-contents.css +51 -16
- package/src/assets/suneditor.css +116 -43
- package/src/core/config/contextProvider.js +288 -0
- package/src/core/config/eventManager.js +188 -0
- package/src/core/config/instanceCheck.js +59 -0
- package/src/core/config/optionProvider.js +452 -0
- package/src/core/editor.js +166 -1637
- package/src/core/event/actions/index.js +229 -0
- package/src/core/event/effects/common.registry.js +74 -0
- package/src/core/event/effects/keydown.registry.js +573 -0
- package/src/core/event/effects/ruleHelpers.js +148 -0
- package/src/core/event/eventOrchestrator.js +944 -0
- package/src/core/event/executor.js +27 -0
- package/src/core/{base/eventHandlers → event/handlers}/handler_toolbar.js +27 -28
- package/src/core/{base/eventHandlers → event/handlers}/handler_ww_clipboard.js +10 -8
- package/src/core/{base/eventHandlers → event/handlers}/handler_ww_dragDrop.js +22 -23
- package/src/core/event/handlers/handler_ww_input.js +75 -0
- package/src/core/event/handlers/handler_ww_key.js +228 -0
- package/src/core/event/handlers/handler_ww_mouse.js +166 -0
- package/src/core/event/ports.js +211 -0
- package/src/core/event/reducers/keydown.reducer.js +97 -0
- package/src/core/event/rules/keydown.rule.arrow.js +63 -0
- package/src/core/event/rules/keydown.rule.backspace.js +208 -0
- package/src/core/event/rules/keydown.rule.delete.js +132 -0
- package/src/core/event/rules/keydown.rule.enter.js +150 -0
- package/src/core/event/rules/keydown.rule.tab.js +35 -0
- package/src/core/event/support/defaultLineManager.js +136 -0
- package/src/core/event/support/selectionState.js +204 -0
- package/src/core/kernel/coreKernel.js +320 -0
- package/src/core/kernel/kernelInjector.js +19 -0
- package/src/core/kernel/store.js +173 -0
- package/src/core/{class → logic/dom}/char.js +42 -45
- package/src/core/logic/dom/format.js +1075 -0
- package/src/core/{class → logic/dom}/html.js +743 -624
- package/src/core/logic/dom/inline.js +1847 -0
- package/src/core/logic/dom/listFormat.js +601 -0
- package/src/core/{class → logic/dom}/nodeTransform.js +92 -72
- package/src/core/{class → logic/dom}/offset.js +254 -317
- package/src/core/logic/dom/selection.js +754 -0
- package/src/core/logic/panel/menu.js +389 -0
- package/src/core/logic/panel/toolbar.js +449 -0
- package/src/core/logic/panel/viewer.js +761 -0
- package/src/core/logic/shell/_commandExecutor.js +380 -0
- package/src/core/logic/shell/commandDispatcher.js +241 -0
- package/src/core/logic/shell/component.js +970 -0
- package/src/core/logic/shell/focusManager.js +110 -0
- package/src/core/{base → logic/shell}/history.js +110 -60
- package/src/core/logic/shell/pluginManager.js +363 -0
- package/src/core/logic/shell/shortcuts.js +130 -0
- package/src/core/logic/shell/ui.js +904 -0
- package/src/core/schema/context.js +66 -0
- package/src/core/schema/frameContext.js +160 -0
- package/src/core/schema/options.js +628 -0
- package/src/core/section/constructor.js +194 -500
- package/src/core/section/documentType.js +297 -222
- package/src/events.js +808 -543
- package/src/helper/clipboard.js +27 -16
- package/src/helper/converter.js +100 -78
- package/src/helper/dom/domCheck.js +56 -30
- package/src/helper/dom/domQuery.js +159 -89
- package/src/helper/dom/domUtils.js +114 -49
- package/src/helper/dom/index.js +5 -1
- package/src/helper/env.js +26 -26
- package/src/helper/index.js +1 -1
- package/src/helper/keyCodeMap.js +25 -28
- package/src/helper/numbers.js +4 -8
- package/src/helper/unicode.js +4 -8
- package/src/hooks/base.js +307 -0
- package/src/hooks/params.js +130 -0
- package/src/interfaces/contracts.js +227 -0
- package/src/interfaces/index.js +7 -0
- package/src/interfaces/plugins.js +239 -0
- package/src/langs/ckb.js +4 -4
- package/src/langs/cs.js +4 -4
- package/src/langs/da.js +4 -4
- package/src/langs/de.js +4 -4
- package/src/langs/en.js +4 -4
- package/src/langs/es.js +4 -4
- package/src/langs/fa.js +4 -4
- package/src/langs/fr.js +4 -4
- package/src/langs/he.js +4 -4
- package/src/langs/hu.js +4 -4
- package/src/langs/it.js +4 -4
- package/src/langs/ja.js +4 -4
- package/src/langs/km.js +4 -4
- package/src/langs/ko.js +4 -4
- package/src/langs/lv.js +4 -4
- package/src/langs/nl.js +4 -4
- package/src/langs/pl.js +4 -4
- package/src/langs/pt_br.js +13 -13
- package/src/langs/ro.js +4 -4
- package/src/langs/ru.js +4 -4
- package/src/langs/se.js +4 -4
- package/src/langs/tr.js +4 -4
- package/src/langs/uk.js +4 -4
- package/src/langs/ur.js +4 -4
- package/src/langs/zh_cn.js +4 -4
- package/src/modules/{Browser.js → contract/Browser.js} +119 -128
- package/src/modules/{ColorPicker.js → contract/ColorPicker.js} +132 -142
- package/src/modules/contract/Controller.js +589 -0
- package/src/modules/{Figure.js → contract/Figure.js} +591 -411
- package/src/modules/{HueSlider.js → contract/HueSlider.js} +125 -86
- package/src/modules/contract/Modal.js +357 -0
- package/src/modules/contract/index.js +9 -0
- package/src/modules/manager/ApiManager.js +197 -0
- package/src/modules/{FileManager.js → manager/FileManager.js} +128 -160
- package/src/modules/manager/index.js +5 -0
- package/src/modules/{ModalAnchorEditor.js → ui/ModalAnchorEditor.js} +108 -138
- package/src/modules/{SelectMenu.js → ui/SelectMenu.js} +119 -120
- package/src/modules/{_DragHandle.js → ui/_DragHandle.js} +1 -1
- package/src/modules/ui/index.js +6 -0
- package/src/plugins/browser/audioGallery.js +23 -26
- package/src/plugins/browser/fileBrowser.js +25 -28
- package/src/plugins/browser/fileGallery.js +20 -23
- package/src/plugins/browser/imageGallery.js +24 -23
- package/src/plugins/browser/videoGallery.js +27 -29
- package/src/plugins/command/blockquote.js +11 -17
- package/src/plugins/command/exportPDF.js +26 -26
- package/src/plugins/command/fileUpload.js +138 -133
- package/src/plugins/command/list_bulleted.js +48 -44
- package/src/plugins/command/list_numbered.js +48 -44
- package/src/plugins/dropdown/align.js +64 -50
- package/src/plugins/dropdown/backgroundColor.js +34 -35
- package/src/plugins/dropdown/{formatBlock.js → blockStyle.js} +43 -37
- package/src/plugins/dropdown/font.js +50 -36
- package/src/plugins/dropdown/fontColor.js +34 -35
- package/src/plugins/dropdown/hr.js +55 -50
- package/src/plugins/dropdown/layout.js +20 -15
- package/src/plugins/dropdown/lineHeight.js +46 -30
- package/src/plugins/dropdown/list.js +32 -33
- package/src/plugins/dropdown/paragraphStyle.js +40 -34
- package/src/plugins/dropdown/table/index.js +915 -0
- package/src/plugins/dropdown/table/render/table.html.js +308 -0
- package/src/plugins/dropdown/table/render/table.menu.js +121 -0
- package/src/plugins/dropdown/table/services/table.cell.js +465 -0
- package/src/plugins/dropdown/table/services/table.clipboard.js +414 -0
- package/src/plugins/dropdown/table/services/table.grid.js +504 -0
- package/src/plugins/dropdown/table/services/table.resize.js +463 -0
- package/src/plugins/dropdown/table/services/table.selection.js +466 -0
- package/src/plugins/dropdown/table/services/table.style.js +844 -0
- package/src/plugins/dropdown/table/shared/table.constants.js +109 -0
- package/src/plugins/dropdown/table/shared/table.utils.js +219 -0
- package/src/plugins/dropdown/template.js +20 -15
- package/src/plugins/dropdown/textStyle.js +28 -22
- package/src/plugins/field/mention.js +54 -49
- package/src/plugins/index.js +5 -5
- package/src/plugins/input/fontSize.js +100 -97
- package/src/plugins/input/pageNavigator.js +13 -10
- package/src/plugins/modal/audio.js +208 -219
- package/src/plugins/modal/drawing.js +99 -104
- package/src/plugins/modal/embed.js +323 -312
- package/src/plugins/modal/image/index.js +942 -0
- package/src/plugins/modal/image/render/image.html.js +150 -0
- package/src/plugins/modal/image/services/image.size.js +198 -0
- package/src/plugins/modal/image/services/image.upload.js +216 -0
- package/src/plugins/modal/image/shared/image.constants.js +20 -0
- package/src/plugins/modal/link.js +74 -54
- package/src/plugins/modal/math.js +126 -119
- package/src/plugins/modal/video/index.js +858 -0
- package/src/plugins/modal/video/render/video.html.js +131 -0
- package/src/plugins/modal/video/services/video.size.js +281 -0
- package/src/plugins/modal/video/services/video.upload.js +92 -0
- package/src/plugins/popup/anchor.js +57 -49
- package/src/suneditor.js +73 -61
- package/src/themes/cobalt.css +155 -0
- package/src/themes/dark.css +143 -120
- package/src/typedef.js +214 -63
- package/types/assets/icons/defaultIcons.d.ts +8 -0
- package/types/assets/suneditor-contents.css.d.ts +1 -0
- package/types/assets/suneditor.css.d.ts +1 -0
- package/types/core/config/contextProvider.d.ts +148 -0
- package/types/core/config/eventManager.d.ts +68 -0
- package/types/core/config/instanceCheck.d.ts +33 -0
- package/types/core/config/optionProvider.d.ts +147 -0
- package/types/core/editor.d.ts +27 -586
- package/types/core/event/actions/index.d.ts +50 -0
- package/types/core/event/effects/common.registry.d.ts +56 -0
- package/types/core/event/effects/keydown.registry.d.ts +80 -0
- package/types/core/event/effects/ruleHelpers.d.ts +36 -0
- package/types/core/event/eventOrchestrator.d.ts +191 -0
- package/types/core/event/executor.d.ts +13 -0
- package/types/core/event/handlers/handler_toolbar.d.ts +38 -0
- package/types/core/event/handlers/handler_ww_clipboard.d.ts +36 -0
- package/types/core/event/handlers/handler_ww_dragDrop.d.ts +26 -0
- package/types/core/event/handlers/handler_ww_input.d.ts +38 -0
- package/types/core/event/handlers/handler_ww_key.d.ts +40 -0
- package/types/core/event/handlers/handler_ww_mouse.d.ts +47 -0
- package/types/core/event/ports.d.ts +256 -0
- package/types/core/event/reducers/keydown.reducer.d.ts +84 -0
- package/types/core/event/rules/keydown.rule.arrow.d.ts +19 -0
- package/types/core/event/rules/keydown.rule.backspace.d.ts +18 -0
- package/types/core/event/rules/keydown.rule.delete.d.ts +18 -0
- package/types/core/event/rules/keydown.rule.enter.d.ts +18 -0
- package/types/core/event/rules/keydown.rule.tab.d.ts +18 -0
- package/types/core/event/support/defaultLineManager.d.ts +22 -0
- package/types/core/event/support/selectionState.d.ts +29 -0
- package/types/core/kernel/coreKernel.d.ts +219 -0
- package/types/core/kernel/kernelInjector.d.ts +16 -0
- package/types/core/kernel/store.d.ts +170 -0
- package/types/core/logic/dom/char.d.ts +46 -0
- package/types/core/logic/dom/format.d.ts +234 -0
- package/types/core/logic/dom/html.d.ts +290 -0
- package/types/core/logic/dom/inline.d.ts +93 -0
- package/types/core/logic/dom/listFormat.d.ts +101 -0
- package/types/core/logic/dom/nodeTransform.d.ts +110 -0
- package/types/core/logic/dom/offset.d.ts +335 -0
- package/types/core/logic/dom/selection.d.ts +165 -0
- package/types/core/logic/panel/menu.d.ts +93 -0
- package/types/core/logic/panel/toolbar.d.ts +128 -0
- package/types/core/logic/panel/viewer.d.ts +89 -0
- package/types/core/logic/shell/_commandExecutor.d.ts +18 -0
- package/types/core/logic/shell/commandDispatcher.d.ts +65 -0
- package/types/core/logic/shell/component.d.ts +182 -0
- package/types/core/logic/shell/focusManager.d.ts +31 -0
- package/types/core/{base → logic/shell}/history.d.ts +13 -12
- package/types/core/logic/shell/pluginManager.d.ts +115 -0
- package/types/core/logic/shell/shortcuts.d.ts +131 -0
- package/types/core/logic/shell/ui.d.ts +261 -0
- package/types/core/schema/context.d.ts +104 -0
- package/types/core/schema/frameContext.d.ts +320 -0
- package/types/core/schema/options.d.ts +1241 -0
- package/types/core/section/constructor.d.ts +117 -652
- package/types/core/section/documentType.d.ts +43 -61
- package/types/events.d.ts +796 -65
- package/types/helper/clipboard.d.ts +5 -4
- package/types/helper/converter.d.ts +55 -43
- package/types/helper/dom/domCheck.d.ts +27 -19
- package/types/helper/dom/domQuery.d.ts +76 -57
- package/types/helper/dom/domUtils.d.ts +62 -39
- package/types/helper/dom/index.d.ts +87 -1
- package/types/helper/env.d.ts +16 -13
- package/types/helper/index.d.ts +8 -2
- package/types/helper/keyCodeMap.d.ts +24 -23
- package/types/helper/numbers.d.ts +4 -6
- package/types/helper/unicode.d.ts +4 -3
- package/types/hooks/base.d.ts +239 -0
- package/types/hooks/params.d.ts +65 -0
- package/types/index.d.ts +20 -117
- package/types/interfaces/contracts.d.ts +183 -0
- package/types/interfaces/index.d.ts +3 -0
- package/types/interfaces/plugins.d.ts +168 -0
- package/types/langs/_Lang.d.ts +2 -2
- package/types/langs/index.d.ts +2 -2
- package/types/modules/contract/Browser.d.ts +262 -0
- package/types/modules/contract/ColorPicker.d.ts +99 -0
- package/types/modules/contract/Controller.d.ts +204 -0
- package/types/modules/contract/Figure.d.ts +529 -0
- package/types/modules/{HueSlider.d.ts → contract/HueSlider.d.ts} +39 -28
- package/types/modules/contract/Modal.d.ts +62 -0
- package/types/modules/contract/index.d.ts +7 -0
- package/types/modules/manager/ApiManager.d.ts +106 -0
- package/types/modules/manager/FileManager.d.ts +124 -0
- package/types/modules/manager/index.d.ts +3 -0
- package/types/modules/ui/ModalAnchorEditor.d.ts +152 -0
- package/types/modules/ui/SelectMenu.d.ts +107 -0
- package/types/modules/{_DragHandle.d.ts → ui/_DragHandle.d.ts} +1 -0
- package/types/modules/ui/index.d.ts +4 -0
- package/types/plugins/browser/audioGallery.d.ts +33 -41
- package/types/plugins/browser/fileBrowser.d.ts +42 -50
- package/types/plugins/browser/fileGallery.d.ts +33 -41
- package/types/plugins/browser/imageGallery.d.ts +30 -37
- package/types/plugins/browser/videoGallery.d.ts +33 -41
- package/types/plugins/command/blockquote.d.ts +4 -21
- package/types/plugins/command/exportPDF.d.ts +23 -33
- package/types/plugins/command/fileUpload.d.ts +80 -100
- package/types/plugins/command/list_bulleted.d.ts +9 -35
- package/types/plugins/command/list_numbered.d.ts +9 -35
- package/types/plugins/dropdown/align.d.ts +23 -46
- package/types/plugins/dropdown/backgroundColor.d.ts +35 -53
- package/types/plugins/dropdown/blockStyle.d.ts +45 -0
- package/types/plugins/dropdown/font.d.ts +18 -41
- package/types/plugins/dropdown/fontColor.d.ts +35 -53
- package/types/plugins/dropdown/hr.d.ts +26 -52
- package/types/plugins/dropdown/layout.d.ts +19 -25
- package/types/plugins/dropdown/lineHeight.d.ts +21 -39
- package/types/plugins/dropdown/list.d.ts +6 -34
- package/types/plugins/dropdown/paragraphStyle.d.ts +34 -45
- package/types/plugins/dropdown/table/index.d.ts +158 -0
- package/types/plugins/dropdown/table/render/table.html.d.ts +71 -0
- package/types/plugins/dropdown/table/render/table.menu.d.ts +59 -0
- package/types/plugins/dropdown/table/services/table.cell.d.ts +76 -0
- package/types/plugins/dropdown/table/services/table.clipboard.d.ts +26 -0
- package/types/plugins/dropdown/table/services/table.grid.d.ts +77 -0
- package/types/plugins/dropdown/table/services/table.resize.d.ts +72 -0
- package/types/plugins/dropdown/table/services/table.selection.d.ts +59 -0
- package/types/plugins/dropdown/table/services/table.style.d.ts +162 -0
- package/types/plugins/dropdown/table/shared/table.constants.d.ts +134 -0
- package/types/plugins/dropdown/table/shared/table.utils.d.ts +91 -0
- package/types/plugins/dropdown/template.d.ts +19 -25
- package/types/plugins/dropdown/textStyle.d.ts +23 -30
- package/types/plugins/field/mention.d.ts +66 -72
- package/types/plugins/index.d.ts +41 -40
- package/types/plugins/input/fontSize.d.ts +57 -96
- package/types/plugins/input/pageNavigator.d.ts +5 -8
- package/types/plugins/modal/audio.d.ts +60 -153
- package/types/plugins/modal/drawing.d.ts +16 -118
- package/types/plugins/modal/embed.d.ts +46 -166
- package/types/plugins/modal/image/index.d.ts +281 -0
- package/types/plugins/modal/image/render/image.html.d.ts +45 -0
- package/types/plugins/modal/image/services/image.size.d.ts +55 -0
- package/types/plugins/modal/image/services/image.upload.d.ts +24 -0
- package/types/plugins/modal/image/shared/image.constants.d.ts +17 -0
- package/types/plugins/modal/link.d.ts +46 -66
- package/types/plugins/modal/math.d.ts +17 -86
- package/types/plugins/modal/{video.d.ts → video/index.d.ts} +89 -221
- package/types/plugins/modal/video/render/video.html.d.ts +37 -0
- package/types/plugins/modal/video/services/video.size.d.ts +74 -0
- package/types/plugins/modal/video/services/video.upload.d.ts +19 -0
- package/types/plugins/popup/anchor.d.ts +8 -38
- package/types/suneditor.d.ts +55 -24
- package/types/typedef.d.ts +344 -228
- package/CONTRIBUTING.md +0 -186
- package/src/core/base/eventHandlers/handler_ww_key_input.js +0 -1200
- package/src/core/base/eventHandlers/handler_ww_mouse.js +0 -194
- package/src/core/base/eventManager.js +0 -1523
- package/src/core/class/component.js +0 -856
- package/src/core/class/format.js +0 -3433
- package/src/core/class/menu.js +0 -346
- package/src/core/class/selection.js +0 -610
- package/src/core/class/shortcuts.js +0 -98
- package/src/core/class/toolbar.js +0 -431
- package/src/core/class/ui.js +0 -424
- package/src/core/class/viewer.js +0 -750
- package/src/core/section/actives.js +0 -266
- package/src/core/section/context.js +0 -102
- package/src/editorInjector/_classes.js +0 -36
- package/src/editorInjector/_core.js +0 -87
- package/src/editorInjector/index.js +0 -73
- package/src/modules/ApiManager.js +0 -191
- package/src/modules/Controller.js +0 -474
- package/src/modules/Modal.js +0 -346
- package/src/modules/index.js +0 -14
- package/src/plugins/dropdown/table.js +0 -4034
- package/src/plugins/modal/image.js +0 -1376
- package/src/plugins/modal/video.js +0 -1226
- package/types/core/base/eventHandlers/handler_toolbar.d.ts +0 -41
- package/types/core/base/eventHandlers/handler_ww_clipboard.d.ts +0 -40
- package/types/core/base/eventHandlers/handler_ww_dragDrop.d.ts +0 -35
- package/types/core/base/eventHandlers/handler_ww_key_input.d.ts +0 -45
- package/types/core/base/eventHandlers/handler_ww_mouse.d.ts +0 -39
- package/types/core/base/eventManager.d.ts +0 -401
- package/types/core/class/char.d.ts +0 -61
- package/types/core/class/component.d.ts +0 -213
- package/types/core/class/format.d.ts +0 -623
- package/types/core/class/html.d.ts +0 -430
- package/types/core/class/menu.d.ts +0 -126
- package/types/core/class/nodeTransform.d.ts +0 -93
- package/types/core/class/offset.d.ts +0 -522
- package/types/core/class/selection.d.ts +0 -188
- package/types/core/class/shortcuts.d.ts +0 -142
- package/types/core/class/toolbar.d.ts +0 -189
- package/types/core/class/ui.d.ts +0 -164
- package/types/core/class/viewer.d.ts +0 -140
- package/types/core/section/actives.d.ts +0 -46
- package/types/core/section/context.d.ts +0 -45
- package/types/editorInjector/_classes.d.ts +0 -41
- package/types/editorInjector/_core.d.ts +0 -87
- package/types/editorInjector/index.d.ts +0 -69
- package/types/modules/ApiManager.d.ts +0 -125
- package/types/modules/Browser.d.ts +0 -326
- package/types/modules/ColorPicker.d.ts +0 -135
- package/types/modules/Controller.d.ts +0 -251
- package/types/modules/Figure.d.ts +0 -517
- package/types/modules/FileManager.d.ts +0 -202
- package/types/modules/Modal.d.ts +0 -111
- package/types/modules/ModalAnchorEditor.d.ts +0 -236
- package/types/modules/SelectMenu.d.ts +0 -194
- package/types/modules/index.d.ts +0 -26
- package/types/plugins/dropdown/formatBlock.d.ts +0 -55
- package/types/plugins/dropdown/table.d.ts +0 -627
- package/types/plugins/modal/image.d.ts +0 -451
- /package/{LICENSE → LICENSE.txt} +0 -0
package/src/assets/suneditor.css
CHANGED
|
@@ -206,8 +206,8 @@
|
|
|
206
206
|
padding: var(--se-edit-inner-padding-doc-type);
|
|
207
207
|
}
|
|
208
208
|
.sun-editor .se-wrapper.se-type-document.se-type-document-header .se-placeholder {
|
|
209
|
-
left: var(--se-doc-info-width);
|
|
210
|
-
right: var(--se-doc-info-width);
|
|
209
|
+
margin-left: max(var(--se-doc-info-min-width), var(--se-doc-info-width));
|
|
210
|
+
margin-right: max(var(--se-doc-info-min-width), var(--se-doc-info-width));
|
|
211
211
|
}
|
|
212
212
|
/** --- se-type-document end ---------------------------------------------------------- */
|
|
213
213
|
|
|
@@ -244,17 +244,16 @@
|
|
|
244
244
|
border-style: solid;
|
|
245
245
|
border-color: var(--se-input-btn-border-color);
|
|
246
246
|
border-radius: var(--se-border-radius);
|
|
247
|
-
transition:
|
|
247
|
+
transition:
|
|
248
|
+
border-color 0.3s ease,
|
|
249
|
+
background-color 0.3s ease,
|
|
250
|
+
color 0.3s ease;
|
|
248
251
|
}
|
|
249
252
|
|
|
250
253
|
.sun-editor .se-form-group button.se-btn {
|
|
251
254
|
border-width: 1px;
|
|
252
255
|
}
|
|
253
256
|
|
|
254
|
-
.sun-editor .se-btn.se-btn-info {
|
|
255
|
-
color: var(--se-active-color);
|
|
256
|
-
}
|
|
257
|
-
|
|
258
257
|
.sun-editor .se-btn:not(.on):not(.active):enabled:hover,
|
|
259
258
|
.sun-editor .se-btn:not(.on):not(.active):enabled:focus {
|
|
260
259
|
color: var(--se-hover-color);
|
|
@@ -279,7 +278,7 @@
|
|
|
279
278
|
.sun-editor .se-menu-list li:hover .se-btn-input input:enabled {
|
|
280
279
|
border-width: 1px;
|
|
281
280
|
border-style: solid;
|
|
282
|
-
border-color: var(--se-hover-
|
|
281
|
+
border-color: var(--se-hover-dark-color);
|
|
283
282
|
}
|
|
284
283
|
|
|
285
284
|
/* after, before button - on, active */
|
|
@@ -289,7 +288,7 @@
|
|
|
289
288
|
.sun-editor .se-menu-list li .se-side-btn-before.active:enabled,
|
|
290
289
|
.sun-editor .se-menu-list li .se-btn-input.on input:enabled,
|
|
291
290
|
.sun-editor .se-menu-list li .se-btn-input.active input:enabled {
|
|
292
|
-
border-color: var(--se-active-
|
|
291
|
+
border-color: var(--se-active-dark3-color);
|
|
293
292
|
}
|
|
294
293
|
|
|
295
294
|
/* after, before button : hover - on, active - border */
|
|
@@ -366,6 +365,7 @@
|
|
|
366
365
|
outline: 1px solid var(--se-active-dark5-color) !important;
|
|
367
366
|
box-shadow: 0 0 0 0.3rem var(--se-active-light5-color);
|
|
368
367
|
transition: box-shadow 0.1s ease-in-out;
|
|
368
|
+
z-index: 1;
|
|
369
369
|
}
|
|
370
370
|
|
|
371
371
|
/** --- primary button */
|
|
@@ -374,7 +374,10 @@
|
|
|
374
374
|
border: 1px solid var(--se-active-dark5-color);
|
|
375
375
|
border-radius: var(--se-border-radius);
|
|
376
376
|
outline: 0 none;
|
|
377
|
-
transition:
|
|
377
|
+
transition:
|
|
378
|
+
border-color 0.3s ease,
|
|
379
|
+
background-color 0.3s ease,
|
|
380
|
+
color 0.3s ease;
|
|
378
381
|
}
|
|
379
382
|
|
|
380
383
|
.sun-editor .se-btn-primary:hover,
|
|
@@ -564,6 +567,18 @@
|
|
|
564
567
|
border: 1px dashed var(--se-main-outline-color);
|
|
565
568
|
}
|
|
566
569
|
|
|
570
|
+
.sun-editor .se-sub-list:has(:not([style*='display: none'])) {
|
|
571
|
+
font-size: 0.75rem;
|
|
572
|
+
letter-spacing: 0.25px;
|
|
573
|
+
color: color-mix(in srgb, currentColor 45%, transparent);
|
|
574
|
+
padding: 14px 14px 3px 14px;
|
|
575
|
+
cursor: auto;
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
.sun-editor .se-sub-list:has(:not([style*='display: none'])) {
|
|
579
|
+
border-bottom: 1px dashed var(--se-main-outline-color);
|
|
580
|
+
}
|
|
581
|
+
|
|
567
582
|
/* page navigator */
|
|
568
583
|
.sun-editor .se-btn.se-btn-tool-pageNavigator > input {
|
|
569
584
|
width: var(--se-input-btn-size);
|
|
@@ -669,7 +684,7 @@
|
|
|
669
684
|
display: inline-block;
|
|
670
685
|
width: 18px;
|
|
671
686
|
height: 13px;
|
|
672
|
-
background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+
|
|
687
|
+
background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTE5LDEzSDVWMTFIMTlWMTNaIiBmaWxsPSJibGFjayIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIxIiAvPjwvc3ZnPg==');
|
|
673
688
|
background-size: cover;
|
|
674
689
|
opacity: 0.5;
|
|
675
690
|
}
|
|
@@ -723,15 +738,15 @@
|
|
|
723
738
|
display: block;
|
|
724
739
|
width: 0;
|
|
725
740
|
height: 0;
|
|
726
|
-
border:
|
|
741
|
+
border: 12px solid transparent;
|
|
727
742
|
margin-right: 0;
|
|
728
|
-
margin-left: -
|
|
743
|
+
margin-left: -12px;
|
|
729
744
|
}
|
|
730
745
|
|
|
731
746
|
.sun-editor .se-controller .se-arrow {
|
|
732
747
|
left: 20px;
|
|
733
748
|
right: auto;
|
|
734
|
-
margin-left: -
|
|
749
|
+
margin-left: -12px;
|
|
735
750
|
margin-right: 0;
|
|
736
751
|
}
|
|
737
752
|
|
|
@@ -760,7 +775,7 @@
|
|
|
760
775
|
top: -12px;
|
|
761
776
|
content: ' ';
|
|
762
777
|
border-bottom-width: 0;
|
|
763
|
-
border-top-color: var(--se-
|
|
778
|
+
border-top-color: var(--se-controller-background-color);
|
|
764
779
|
}
|
|
765
780
|
|
|
766
781
|
/** --- container */
|
|
@@ -814,8 +829,11 @@
|
|
|
814
829
|
opacity: 0.95;
|
|
815
830
|
border-radius: var(--se-border-radius);
|
|
816
831
|
cursor: pointer;
|
|
817
|
-
z-index:
|
|
818
|
-
transition:
|
|
832
|
+
z-index: 2147483647;
|
|
833
|
+
transition:
|
|
834
|
+
opacity 0.3s ease,
|
|
835
|
+
color 0.3s ease,
|
|
836
|
+
background-color 0.3s ease;
|
|
819
837
|
}
|
|
820
838
|
.sun-editor .se-line-breaker-component.se-on-selected {
|
|
821
839
|
color: var(--se-active-color);
|
|
@@ -986,7 +1004,7 @@
|
|
|
986
1004
|
border-color: transparent;
|
|
987
1005
|
}
|
|
988
1006
|
|
|
989
|
-
/* tool bar select button (font, fontSize,
|
|
1007
|
+
/* tool bar select button (font, fontSize, blockStyle) */
|
|
990
1008
|
.sun-editor .se-btn-select {
|
|
991
1009
|
width: auto;
|
|
992
1010
|
display: flex;
|
|
@@ -1274,8 +1292,14 @@
|
|
|
1274
1292
|
border-radius: var(--se-border-radius);
|
|
1275
1293
|
}
|
|
1276
1294
|
|
|
1295
|
+
.sun-editor-editable[contenteditable='true'],
|
|
1296
|
+
.sun-editor-editable[contenteditable='true'] * {
|
|
1297
|
+
scroll-margin: var(--se-edit-scroll-margin);
|
|
1298
|
+
}
|
|
1299
|
+
|
|
1277
1300
|
.sun-editor-editable[contenteditable='true'].se-copy-format-cursor {
|
|
1278
|
-
cursor:
|
|
1301
|
+
cursor:
|
|
1302
|
+
url('data:image/svg+xml;base64,PHN2ZwogIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICB3aWR0aD0iMjQiCiAgaGVpZ2h0PSIxNiIKICB2aWV3Qm94PSIwIDAgMjQgMTYiCj4KICA8ZGVmcz4KICAgIDxmaWx0ZXIgaWQ9IndoaXRlLW91dGxpbmUiIGNvbG9yLWludGVycG9sYXRpb24tZmlsdGVycz0ic1JHQiI+CiAgICAgIDxmZU1vcnBob2xvZ3kgaW49IlNvdXJjZUFscGhhIiByZXN1bHQ9ImRpbGF0ZWQiIG9wZXJhdG9yPSJkaWxhdGUiIHJhZGl1cz0iMSIvPgogICAgICA8ZmVGbG9vZCBmbG9vZC1jb2xvcj0id2hpdGUiIHJlc3VsdD0id2hpdGUiLz4KICAgICAgPGZlQ29tcG9zaXRlIGluPSJ3aGl0ZSIgaW4yPSJkaWxhdGVkIiBvcGVyYXRvcj0iaW4iIHJlc3VsdD0ib3V0bGluZSIvPgogICAgICA8ZmVNZXJnZT4KICAgICAgICA8ZmVNZXJnZU5vZGUgaW49Im91dGxpbmUiLz4KICAgICAgICA8ZmVNZXJnZU5vZGUgaW49IlNvdXJjZUdyYXBoaWMiLz4KICAgICAgPC9mZU1lcmdlPgogICAgPC9maWx0ZXI+CiAgPC9kZWZzPgogIDxnIGZpbHRlcj0idXJsKCN3aGl0ZS1vdXRsaW5lKSI+CiAgICA8cGF0aAogICAgICBkPSJNNC4zMzIgMTIuNjY4CiAgICAgICAgIEM0LjMzMiAxMy4wMzUgNC40ODQgMTMuMzMyIDQuNjY4IDEzLjMzMgogICAgICAgICBMNS4zMzIgMTMuMzMyCiAgICAgICAgIEw1LjMzMiAxNC42NjgKICAgICAgICAgTDQuNSAxNC42NjgKICAgICAgICAgQzQuMzE2IDE0LjY2OCA0IDE0LjM2NyA0IDE0CiAgICAgICAgIEM0IDE0LjM2NyAzLjY4NCAxNC42NjggMy41IDE0LjY2OAogICAgICAgICBMMi42NjggMTQuNjY4CiAgICAgICAgIEwyLjY2OCAxMy4zMzIKICAgICAgICAgTDMuMzMyIDEzLjMzMgogICAgICAgICBDMy41MTYgMTMuMzMyIDMuNjY4IDEzLjAzNSAzLjY2OCAxMi42NjgKICAgICAgICAgTDMuNjY4IDMuMzMyCiAgICAgICAgIEMzLjY2OCAyLjk2NSAzLjUxNiAyLjY2OCAzLjMzMiAyLjY2OAogICAgICAgICBMMi42NjggMi42NjgKICAgICAgICAgTDIuNjY4IDEuMzMyCiAgICAgICAgIEwzLjUgMS4zMzIKICAgICAgICAgQzMuNjg0IDEuMzMyIDQgMS42MzMgNCAyCiAgICAgICAgIEM0IDEuNjMzIDQuMzE2IDEuMzMyIDQuNSAxLjMzMgogICAgICAgICBMNS4zMzIgMS4zMzIKICAgICAgICAgTDUuMzMyIDIuNjY4CiAgICAgICAgIEw0LjY2OCAyLjY2OAogICAgICAgICBDNC40ODQgMi42NjggNC4zMzIgMi45NjUgNC4zMzIgMy4zMzIKICAgICAgICAgWiIKICAgICAgZmlsbD0iYmxhY2siCiAgICAvPgogICAgPHBhdGgKICAgICAgZD0iTTIwIDIuNjY4CiAgICAgICAgIEwyMCAyCiAgICAgICAgIEMyMCAxLjYzMyAxOS43MDMgMS4zMzIgMTkuMzMyIDEuMzMyCiAgICAgICAgIEwxMS4zMzIgMS4zMzIKICAgICAgICAgQzEwLjk2NSAxLjMzMiAxMC42NjggMS42MzMgMTAuNjY4IDIKICAgICAgICAgTDEwLjY2OCA0LjY2OAogICAgICAgICBDMTAuNjY4IDUuMDM1IDEwLjk2NSA1LjMzMiAxMS4zMzIgNS4zMzIKICAgICAgICAgTDE5LjMzMiA1LjMzMgogICAgICAgICBDMTkuNzAzIDUuMzMyIDIwIDUuMDM1IDIwIDQuNjY4CiAgICAgICAgIEwyMCA0CiAgICAgICAgIEwyMC42NjggNAogICAgICAgICBMMjAuNjY4IDYuNjY4CiAgICAgICAgIEwxNCA2LjY2OAogICAgICAgICBMMTQgMTQKICAgICAgICAgQzE0IDE0LjM2NyAxNC4yOTcgMTQuNjY4IDE0LjY2OCAxNC42NjgKICAgICAgICAgTDE2IDE0LjY2OAogICAgICAgICBDMTYuMzY3IDE0LjY2OCAxNi42NjggMTQuMzY3IDE2LjY2OCAxNAogICAgICAgICBMMTYuNjY4IDgKICAgICAgICAgTDIyIDgKICAgICAgICAgTDIyIDIuNjY4CiAgICAgICAgIFoiCiAgICAgIGZpbGw9ImJsYWNrIgogICAgLz4KICA8L2c+Cjwvc3ZnPgo=')
|
|
1279
1303
|
0 8,
|
|
1280
1304
|
text;
|
|
1281
1305
|
}
|
|
@@ -1309,9 +1333,9 @@
|
|
|
1309
1333
|
.sun-editor .se-table-resize-line {
|
|
1310
1334
|
position: absolute;
|
|
1311
1335
|
top: 0;
|
|
1312
|
-
width:
|
|
1336
|
+
width: 6px;
|
|
1313
1337
|
height: 100%;
|
|
1314
|
-
margin-left: -
|
|
1338
|
+
margin-left: -3px;
|
|
1315
1339
|
background-color: var(--se-active-dark-color);
|
|
1316
1340
|
opacity: 0.4;
|
|
1317
1341
|
pointer-events: none;
|
|
@@ -1323,7 +1347,7 @@
|
|
|
1323
1347
|
position: absolute;
|
|
1324
1348
|
left: 0;
|
|
1325
1349
|
width: 100%;
|
|
1326
|
-
height:
|
|
1350
|
+
height: 6px;
|
|
1327
1351
|
margin-top: -3px;
|
|
1328
1352
|
background-color: var(--se-active-dark-color);
|
|
1329
1353
|
opacity: 0.4;
|
|
@@ -1383,6 +1407,7 @@
|
|
|
1383
1407
|
padding: 0 5px;
|
|
1384
1408
|
}
|
|
1385
1409
|
|
|
1410
|
+
/* When modifying the values of this style, you must also adjust the values of "table/index:#OnMouseMoveTablePicke()" */
|
|
1386
1411
|
.sun-editor .se-selector-table .se-table-size-picker {
|
|
1387
1412
|
position: absolute !important;
|
|
1388
1413
|
z-index: 3;
|
|
@@ -1398,8 +1423,11 @@
|
|
|
1398
1423
|
font-size: 18px;
|
|
1399
1424
|
width: 1em;
|
|
1400
1425
|
height: 1em;
|
|
1401
|
-
background:
|
|
1402
|
-
|
|
1426
|
+
background-color: var(--se-table-picker-highlight-color);
|
|
1427
|
+
background-image: linear-gradient(to right, var(--se-table-picker-highlight-border-color) 1px, transparent 1px), linear-gradient(to bottom, var(--se-table-picker-highlight-border-color) 1px, transparent 1px);
|
|
1428
|
+
background-size: 1em 1em;
|
|
1429
|
+
border-right: 1px solid var(--se-table-picker-highlight-border-color);
|
|
1430
|
+
border-bottom: 1px solid var(--se-table-picker-highlight-border-color);
|
|
1403
1431
|
}
|
|
1404
1432
|
|
|
1405
1433
|
.sun-editor .se-selector-table .se-table-size-unhighlighted {
|
|
@@ -1408,8 +1436,11 @@
|
|
|
1408
1436
|
font-size: 18px;
|
|
1409
1437
|
width: 5em;
|
|
1410
1438
|
height: 5em;
|
|
1411
|
-
background:
|
|
1412
|
-
|
|
1439
|
+
background-color: var(--se-table-picker-color);
|
|
1440
|
+
background-image: linear-gradient(to right, var(--se-table-picker-border-color) 1px, transparent 1px), linear-gradient(to bottom, var(--se-table-picker-border-color) 1px, transparent 1px);
|
|
1441
|
+
background-size: 1em 1em;
|
|
1442
|
+
border-right: 1px solid var(--se-table-picker-border-color);
|
|
1443
|
+
border-bottom: 1px solid var(--se-table-picker-border-color);
|
|
1413
1444
|
}
|
|
1414
1445
|
|
|
1415
1446
|
.sun-editor .se-selector-table .se-table-size-display {
|
|
@@ -1454,7 +1485,9 @@
|
|
|
1454
1485
|
border-radius: 0;
|
|
1455
1486
|
border: 0;
|
|
1456
1487
|
text-indent: -9999px;
|
|
1457
|
-
transition:
|
|
1488
|
+
transition:
|
|
1489
|
+
transform 0.2s,
|
|
1490
|
+
box-shadow 0.2s;
|
|
1458
1491
|
}
|
|
1459
1492
|
|
|
1460
1493
|
.sun-editor .se-list-layer .se-selector-color .se-color-pallet button.active,
|
|
@@ -1629,11 +1662,17 @@
|
|
|
1629
1662
|
z-index: 1;
|
|
1630
1663
|
}
|
|
1631
1664
|
|
|
1665
|
+
/* [editable - no iframe], codeview */
|
|
1632
1666
|
.sun-editor .se-wrapper .se-wrapper-inner {
|
|
1633
|
-
width: 100%;
|
|
1634
|
-
max-width: 100%;
|
|
1635
1667
|
height: 100%;
|
|
1636
1668
|
min-height: var(--se-min-height);
|
|
1669
|
+
}
|
|
1670
|
+
|
|
1671
|
+
/* [editable - common], codeview */
|
|
1672
|
+
.sun-editor .se-wrapper .se-wrapper-inner,
|
|
1673
|
+
.sun-editor body.sun-editor-editable {
|
|
1674
|
+
width: 100%;
|
|
1675
|
+
max-width: 100%;
|
|
1637
1676
|
overflow-y: auto;
|
|
1638
1677
|
overflow-x: auto;
|
|
1639
1678
|
-webkit-overflow-scrolling: touch;
|
|
@@ -1645,13 +1684,17 @@
|
|
|
1645
1684
|
-ms-user-select: auto;
|
|
1646
1685
|
}
|
|
1647
1686
|
|
|
1648
|
-
.sun-editor .se-wrapper .se-wrapper-inner:focus
|
|
1687
|
+
.sun-editor .se-wrapper .se-wrapper-inner:focus,
|
|
1688
|
+
.sun-editor body.sun-editor-editable:focus {
|
|
1649
1689
|
outline: none;
|
|
1650
1690
|
}
|
|
1651
1691
|
|
|
1652
1692
|
.sun-editor .se-wrapper .se-code-wrapper {
|
|
1653
1693
|
width: 100%;
|
|
1654
1694
|
}
|
|
1695
|
+
.sun-editor .se-wrapper .se-code-wrapper > div {
|
|
1696
|
+
width: 100%;
|
|
1697
|
+
}
|
|
1655
1698
|
.sun-editor .se-wrapper .se-code-wrapper .se-code-view-line {
|
|
1656
1699
|
background-color: var(--se-code-view-color);
|
|
1657
1700
|
color: var(--se-code-view-background-color);
|
|
@@ -2014,6 +2057,11 @@
|
|
|
2014
2057
|
padding: 5px 15px 0px 15px;
|
|
2015
2058
|
}
|
|
2016
2059
|
|
|
2060
|
+
.sun-editor .se-modal-area .se-modal-inner .se-modal-hr {
|
|
2061
|
+
border-bottom: 1px dashed var(--se-modal-color);
|
|
2062
|
+
margin-bottom: 6px;
|
|
2063
|
+
}
|
|
2064
|
+
|
|
2017
2065
|
.sun-editor .se-modal-area .se-modal-inner .se-modal-form {
|
|
2018
2066
|
margin-bottom: 10px;
|
|
2019
2067
|
}
|
|
@@ -2440,7 +2488,9 @@
|
|
|
2440
2488
|
.sun-editor-editable[contenteditable='true'] figure.se-component-selected,
|
|
2441
2489
|
.sun-editor-editable[contenteditable='true'] .se-component.se-component-selected > figure {
|
|
2442
2490
|
outline: 2px solid var(--se-active-dark-color);
|
|
2443
|
-
transition:
|
|
2491
|
+
transition:
|
|
2492
|
+
outline-color 0.2s ease-in-out,
|
|
2493
|
+
outline-width 0.2s ease-in-out;
|
|
2444
2494
|
}
|
|
2445
2495
|
|
|
2446
2496
|
.sun-editor-editable[contenteditable='true'] .se-component figure.se-figure-selected:not(.se-figure-over-selected)::after {
|
|
@@ -2849,7 +2899,9 @@
|
|
|
2849
2899
|
border-color: var(--se-active-light4-color) !important;
|
|
2850
2900
|
outline: 1px solid var(--se-active-color) !important;
|
|
2851
2901
|
box-shadow: none;
|
|
2852
|
-
transition:
|
|
2902
|
+
transition:
|
|
2903
|
+
background-color 0.1s ease-in-out,
|
|
2904
|
+
box-shadow 0.1s ease-in-out;
|
|
2853
2905
|
}
|
|
2854
2906
|
|
|
2855
2907
|
.sun-editor .se-modal-form-files .se-select-menu {
|
|
@@ -3281,7 +3333,9 @@
|
|
|
3281
3333
|
opacity: 0;
|
|
3282
3334
|
visibility: hidden;
|
|
3283
3335
|
transform: scale(0.9);
|
|
3284
|
-
transition:
|
|
3336
|
+
transition:
|
|
3337
|
+
opacity 0.25s ease,
|
|
3338
|
+
transform 0.25s ease;
|
|
3285
3339
|
}
|
|
3286
3340
|
.sun-editor .se-alert-content.se-modal-show {
|
|
3287
3341
|
opacity: 1;
|
|
@@ -3339,13 +3393,17 @@
|
|
|
3339
3393
|
border: 1px solid rgba(0, 0, 0, 0.2);
|
|
3340
3394
|
opacity: 0;
|
|
3341
3395
|
transform: scale(0.9);
|
|
3342
|
-
transition:
|
|
3396
|
+
transition:
|
|
3397
|
+
opacity 0.25s ease,
|
|
3398
|
+
transform 0.25s ease;
|
|
3343
3399
|
opacity: 0;
|
|
3344
3400
|
transform: translateY(20px);
|
|
3345
3401
|
}
|
|
3346
3402
|
.sun-editor .se-toast .se-toast-container.se-toast-show {
|
|
3347
3403
|
opacity: 1;
|
|
3348
|
-
animation:
|
|
3404
|
+
animation:
|
|
3405
|
+
toast-in 0.3s ease-out forwards,
|
|
3406
|
+
toast-out 0.3s ease-in forwards 3s;
|
|
3349
3407
|
}
|
|
3350
3408
|
|
|
3351
3409
|
/** --- toast - success */
|
|
@@ -3367,7 +3425,9 @@
|
|
|
3367
3425
|
border-color: var(--se-active-dark-color);
|
|
3368
3426
|
outline: 0;
|
|
3369
3427
|
box-shadow: 0 0 0 0.2rem var(--se-active-light3-color);
|
|
3370
|
-
transition:
|
|
3428
|
+
transition:
|
|
3429
|
+
border-color 0.15s ease-in-out,
|
|
3430
|
+
box-shadow 0.15s ease-in-out;
|
|
3371
3431
|
}
|
|
3372
3432
|
|
|
3373
3433
|
/** --- tooltip */
|
|
@@ -3809,7 +3869,8 @@
|
|
|
3809
3869
|
}
|
|
3810
3870
|
|
|
3811
3871
|
.sun-editor-editable.se-rtl[contenteditable='true'].se-copy-format-cursor {
|
|
3812
|
-
cursor:
|
|
3872
|
+
cursor:
|
|
3873
|
+
url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDI0IDE2Ij4KICA8ZGVmcz4KICAgIDxmaWx0ZXIgaWQ9IndoaXRlLW91dGxpbmUiIGNvbG9yLWludGVycG9sYXRpb24tZmlsdGVycz0ic1JHQiI+CiAgICAgIDxmZU1vcnBob2xvZ3kgaW49IlNvdXJjZUFscGhhIiByZXN1bHQ9ImRpbGF0ZWQiIG9wZXJhdG9yPSJkaWxhdGUiIHJhZGl1cz0iMSIvPgogICAgICA8ZmVGbG9vZCBmbG9vZC1jb2xvcj0id2hpdGUiIHJlc3VsdD0id2hpdGUiLz4KICAgICAgPGZlQ29tcG9zaXRlIGluPSJ3aGl0ZSIgaW4yPSJkaWxhdGVkIiBvcGVyYXRvcj0iaW4iIHJlc3VsdD0ib3V0bGluZSIvPgogICAgICA8ZmVNZXJnZT4KICAgICAgICA8ZmVNZXJnZU5vZGUgaW49Im91dGxpbmUiLz4KICAgICAgICA8ZmVNZXJnZU5vZGUgaW49IlNvdXJjZUdyYXBoaWMiLz4KICAgICAgPC9mZU1lcmdlPgogICAgPC9maWx0ZXI+CiAgPC9kZWZzPgogIDxnIGZpbHRlcj0idXJsKCN3aGl0ZS1vdXRsaW5lKSIgdHJhbnNmb3JtPSJzY2FsZSgtMSwxKSB0cmFuc2xhdGUoLTI0LDApIj4KICAgIDxwYXRoCiAgICAgIGQ9Ik00LjMzMiAxMi42NjgKICAgICAgICAgQzQuMzMyIDEzLjAzNSA0LjQ4NCAxMy4zMzIgNC42NjggMTMuMzMyCiAgICAgICAgIEw1LjMzMiAxMy4zMzIKICAgICAgICAgTDUuMzMyIDE0LjY2OAogICAgICAgICBMNC41IDE0LjY2OAogICAgICAgICBDNC4zMTYgMTQuNjY4IDQgMTQuMzY3IDQgMTQKICAgICAgICAgQzQgMTQuMzY3IDMuNjg0IDE0LjY2OCAzLjUgMTQuNjY4CiAgICAgICAgIEwyLjY2OCAxNC42NjgKICAgICAgICAgTDIuNjY4IDEzLjMzMgogICAgICAgICBMMy4zMzIgMTMuMzMyCiAgICAgICAgIEMzLjUxNiAxMy4zMzIgMy42NjggMTMuMDM1IDMuNjY4IDEyLjY2OAogICAgICAgICBMMy42NjggMy4zMzIKICAgICAgICAgQzMuNjY4IDIuOTY1IDMuNTE2IDIuNjY4IDMuMzMyIDIuNjY4CiAgICAgICAgIEwyLjY2OCAyLjY2OAogICAgICAgICBMMi42NjggMS4zMzIKICAgICAgICAgTDMuNSAxLjMzMgogICAgICAgICBDMy42ODQgMS4zMzIgNCAxLjYzMyA0IDIKICAgICAgICAgQzQgMS42MzMgNC4zMTYgMS4zMzIgNC41IDEuMzMyCiAgICAgICAgIEw1LjMzMiAxLjMzMgogICAgICAgICBMNS4zMzIgMi42NjgKICAgICAgICAgTDQuNjY4IDIuNjY4CiAgICAgICAgIEM0LjQ4NCAyLjY2OCA0LjMzMiAyLjk2NSA0LjMzMiAzLjMzMgogICAgICAgICBaIgogICAgICBmaWxsPSJibGFjayIKICAgIC8+CiAgICA8cGF0aAogICAgICBkPSJNMjAgMi42NjgKICAgICAgICAgTDIwIDIKICAgICAgICAgQzIwIDEuNjMzIDE5LjcwMyAxLjMzMiAxOS4zMzIgMS4zMzIKICAgICAgICAgTDExLjMzMiAxLjMzMgogICAgICAgICBDMTAuOTY1IDEuMzMyIDEwLjY2OCAxLjYzMyAxMC42NjggMgogICAgICAgICBMMTAuNjY4IDQuNjY4CiAgICAgICAgIEMxMC42NjggNS4wMzUgMTAuOTY1IDUuMzMyIDExLjMzMiA1LjMzMgogICAgICAgICBMMTkuMzMyIDUuMzMyCiAgICAgICAgIEMxOS43MDMgNS4zMzIgMjAgNS4wMzUgMjAgNC42NjgKICAgICAgICAgTDIwIDQKICAgICAgICAgTDIwLjY2OCA0CiAgICAgICAgIEwyMC42NjggNi42NjgKICAgICAgICAgTDE0IDYuNjY4CiAgICAgICAgIEwxNCAxNAogICAgICAgICBDMTQgMTQuMzY3IDE0LjI5NyAxNC42NjggMTQuNjY4IDE0LjY2OAogICAgICAgICBMMTYgMTQuNjY4CiAgICAgICAgIEMxNi4zNjcgMTQuNjY4IDE2LjY2OCAxNC4zNjcgMTYuNjY4IDE0CiAgICAgICAgIEwxNi42NjggOAogICAgICAgICBMMjIgOAogICAgICAgICBMMjIgMi42NjgKICAgICAgICAgWiIKICAgICAgZmlsbD0iYmxhY2siCiAgICAvPgogIDwvZz4KPC9zdmc+Cg==')
|
|
3813
3874
|
24 0,
|
|
3814
3875
|
text;
|
|
3815
3876
|
}
|
|
@@ -3877,6 +3938,16 @@
|
|
|
3877
3938
|
right: unset;
|
|
3878
3939
|
}
|
|
3879
3940
|
|
|
3941
|
+
/* table picker */
|
|
3942
|
+
.sun-editor.se-rtl .se-selector-table .se-table-size-picker,
|
|
3943
|
+
.sun-editor.se-rtl .se-selector-table .se-table-size-unhighlighted {
|
|
3944
|
+
right: 0;
|
|
3945
|
+
}
|
|
3946
|
+
.sun-editor.se-rtl .se-selector-table .se-table-size-highlighted {
|
|
3947
|
+
/* .se-table-size : padding - 5px*/
|
|
3948
|
+
right: 5px;
|
|
3949
|
+
}
|
|
3950
|
+
|
|
3880
3951
|
/** --- RTL end -------------------------------------------------------------------------------------------------------------------------------------------------- */
|
|
3881
3952
|
|
|
3882
3953
|
/** button module float --------------------------------------------- */
|
|
@@ -3914,7 +3985,9 @@
|
|
|
3914
3985
|
border: 1px solid var(--se-error-color) !important;
|
|
3915
3986
|
outline: 0;
|
|
3916
3987
|
box-shadow: 0 0 0 0.2rem var(--se-error-light2-color);
|
|
3917
|
-
transition:
|
|
3988
|
+
transition:
|
|
3989
|
+
border-color 0.15s ease-in-out,
|
|
3990
|
+
box-shadow 0.15s ease-in-out;
|
|
3918
3991
|
}
|
|
3919
3992
|
|
|
3920
3993
|
/** ---------------------------------------------------------- menu items ---------------------------------------------------------- */
|
|
@@ -4017,7 +4090,7 @@
|
|
|
4017
4090
|
|
|
4018
4091
|
/** --- controller wrapper ---------------------------------------------------------- */
|
|
4019
4092
|
.sun-editor.sun-editor-carrier-wrapper {
|
|
4020
|
-
position:
|
|
4093
|
+
position: static !important;
|
|
4021
4094
|
display: block !important;
|
|
4022
4095
|
width: 0 !important;
|
|
4023
4096
|
height: 0 !important;
|
|
@@ -4033,7 +4106,7 @@
|
|
|
4033
4106
|
display: none;
|
|
4034
4107
|
pointer-events: none;
|
|
4035
4108
|
width: 2px;
|
|
4036
|
-
background-color: var(--se-
|
|
4109
|
+
background-color: var(--se-drag-caret-color);
|
|
4037
4110
|
z-index: 2147483646;
|
|
4038
4111
|
}
|
|
4039
4112
|
.sun-editor.sun-editor-carrier-wrapper .se-drag-cursor::before {
|
|
@@ -4047,7 +4120,7 @@
|
|
|
4047
4120
|
margin-right: 0;
|
|
4048
4121
|
margin-left: -4px;
|
|
4049
4122
|
border-width: 6px 5px 0 5px;
|
|
4050
|
-
border-color: var(--se-
|
|
4123
|
+
border-color: var(--se-drag-caret-color) transparent transparent transparent;
|
|
4051
4124
|
}
|
|
4052
4125
|
.sun-editor.sun-editor-carrier-wrapper .se-drag-cursor::after {
|
|
4053
4126
|
content: '';
|
|
@@ -4060,7 +4133,7 @@
|
|
|
4060
4133
|
margin-right: 0;
|
|
4061
4134
|
margin-left: -4px;
|
|
4062
4135
|
border-width: 0 5px 5px 5px;
|
|
4063
|
-
border-color: transparent transparent var(--se-
|
|
4136
|
+
border-color: transparent transparent var(--se-drag-caret-color) transparent;
|
|
4064
4137
|
}
|
|
4065
4138
|
|
|
4066
4139
|
/** page break */
|
|
@@ -4073,7 +4146,7 @@
|
|
|
4073
4146
|
clear: both;
|
|
4074
4147
|
width: 100%;
|
|
4075
4148
|
height: 24px;
|
|
4076
|
-
margin:
|
|
4149
|
+
margin: 0;
|
|
4077
4150
|
padding: 0;
|
|
4078
4151
|
z-index: 1;
|
|
4079
4152
|
}
|