@opentiny/fluent-editor 4.0.0-alpha.0 → 4.0.0-alpha.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 +7 -24
- package/es/config/editor.config.es.js +0 -7
- package/es/config/editor.config.es.js.map +1 -1
- package/es/config/editor.utils.es.js +0 -2
- package/es/config/editor.utils.es.js.map +1 -1
- package/es/config/i18n/en-us.es.js +0 -13
- package/es/config/i18n/en-us.es.js.map +1 -1
- package/es/config/i18n/zh-cn.es.js +0 -13
- package/es/config/i18n/zh-cn.es.js.map +1 -1
- package/es/config/index.es.js +8 -13
- package/es/config/index.es.js.map +1 -1
- package/es/config/types/index.es.js +0 -20
- package/es/config/types/index.es.js.map +1 -1
- package/es/core/fluent-editor.es.js +7 -5
- package/es/core/fluent-editor.es.js.map +1 -1
- package/es/fluent-editor.es.js +36 -22
- package/es/fluent-editor.es.js.map +1 -1
- package/es/formats/emoji.es.js +14 -0
- package/es/formats/emoji.es.js.map +1 -0
- package/es/formats/index.es.js +11 -0
- package/es/formats/index.es.js.map +1 -0
- package/es/formats/soft-break.es.js +12 -5
- package/es/formats/soft-break.es.js.map +1 -1
- package/es/formats/strike.es.js +8 -5
- package/es/formats/strike.es.js.map +1 -1
- package/es/formats/video.es.js +14 -10
- package/es/formats/video.es.js.map +1 -1
- package/es/index.es.js +92 -32
- package/es/index.es.js.map +1 -1
- package/es/modules/counter.es.js +8 -3
- package/es/modules/counter.es.js.map +1 -1
- package/es/modules/custom-clipboard.es.js +23 -27
- package/es/modules/custom-clipboard.es.js.map +1 -1
- package/es/modules/custom-image/actions/action.es.js +19 -0
- package/es/modules/custom-image/actions/action.es.js.map +1 -0
- package/es/modules/custom-image/actions/{CustomResizeAction.es.js → custom-resize-action.es.js} +24 -11
- package/es/modules/custom-image/actions/{CustomResizeAction.es.js.map → custom-resize-action.es.js.map} +1 -1
- package/es/modules/custom-image/actions/{DeleteAction.es.js → delete-action.es.js} +8 -5
- package/es/modules/custom-image/actions/delete-action.es.js.map +1 -0
- package/es/modules/custom-image/actions/image-toolbar-buttons.es.js +137 -0
- package/es/modules/custom-image/actions/image-toolbar-buttons.es.js.map +1 -0
- package/es/modules/custom-image/actions/index.es.js +18 -0
- package/es/modules/custom-image/actions/index.es.js.map +1 -0
- package/es/modules/custom-image/actions/toolbar-action.es.js +33 -0
- package/es/modules/custom-image/actions/toolbar-action.es.js.map +1 -0
- package/es/modules/custom-image/actions/toolbar.es.js +110 -0
- package/es/modules/custom-image/actions/toolbar.es.js.map +1 -0
- package/es/modules/custom-image/{BlotFormatter.es.js → blot-formatter.es.js} +23 -50
- package/es/modules/custom-image/blot-formatter.es.js.map +1 -0
- package/es/modules/custom-image/image.es.js +34 -21
- package/es/modules/custom-image/image.es.js.map +1 -1
- package/es/modules/custom-image/index.es.js +9 -0
- package/es/modules/custom-image/index.es.js.map +1 -0
- package/es/modules/custom-image/options.es.js +85 -0
- package/es/modules/custom-image/options.es.js.map +1 -0
- package/es/modules/custom-image/specs/blot-spec.es.js +33 -0
- package/es/modules/custom-image/specs/blot-spec.es.js.map +1 -0
- package/es/modules/custom-image/specs/{CustomImageSpec.es.js → custom-image-spec.es.js} +13 -14
- package/es/modules/custom-image/specs/custom-image-spec.es.js.map +1 -0
- package/es/modules/custom-image/specs/image-spec.es.js +32 -0
- package/es/modules/custom-image/specs/image-spec.es.js.map +1 -0
- package/es/modules/custom-image/specs/index.es.js +9 -0
- package/es/modules/custom-image/specs/index.es.js.map +1 -0
- package/es/modules/custom-uploader.es.js +63 -194
- package/es/modules/custom-uploader.es.js.map +1 -1
- package/es/modules/divider.es.js +8 -7
- package/es/modules/divider.es.js.map +1 -1
- package/es/modules/emoji.es.js +175 -0
- package/es/modules/emoji.es.js.map +1 -0
- package/es/modules/file/formats/file.es.js +13 -13
- package/es/modules/file/formats/file.es.js.map +1 -1
- package/es/modules/file/index.es.js +6 -29
- package/es/modules/file/index.es.js.map +1 -1
- package/es/modules/file/modules/file-bar.es.js +11 -3
- package/es/modules/file/modules/file-bar.es.js.map +1 -1
- package/es/modules/file/modules/file-module.es.js +35 -0
- package/es/modules/file/modules/file-module.es.js.map +1 -0
- package/es/modules/i18n.es.js +33 -11
- package/es/modules/i18n.es.js.map +1 -1
- package/es/modules/index.es.js +26 -0
- package/es/modules/index.es.js.map +1 -0
- package/es/modules/link/formats/link.es.js +14 -10
- package/es/modules/link/formats/link.es.js.map +1 -1
- package/es/modules/link/index.es.js +4 -12
- package/es/modules/link/index.es.js.map +1 -1
- package/es/modules/link/modules/tooltip.es.js +31 -21
- package/es/modules/link/modules/tooltip.es.js.map +1 -1
- package/es/modules/mathlive/formats.es.js +10 -7
- package/es/modules/mathlive/formats.es.js.map +1 -1
- package/es/modules/mathlive/index.es.js +6 -30
- package/es/modules/mathlive/index.es.js.map +1 -1
- package/es/modules/mathlive/module.es.js +40 -0
- package/es/modules/mathlive/module.es.js.map +1 -0
- package/es/modules/mathlive/tooltip.es.js +9 -5
- package/es/modules/mathlive/tooltip.es.js.map +1 -1
- package/es/modules/mention/index.es.js +7 -0
- package/es/modules/{emoji/emoji-list → mention}/index.es.js.map +1 -1
- package/es/modules/mention/{MentionLink.es.js → mention-link.es.js} +14 -6
- package/es/modules/mention/mention-link.es.js.map +1 -0
- package/es/modules/mention/{Mention.es.js → mention.es.js} +28 -20
- package/es/modules/mention/mention.es.js.map +1 -0
- package/es/modules/shortcut-key/index.es.js +17 -1
- package/es/modules/shortcut-key/index.es.js.map +1 -1
- package/es/modules/syntax.es.js +4 -0
- package/es/modules/syntax.es.js.map +1 -1
- package/es/modules/table-up/index.es.js +9 -2
- package/es/modules/table-up/index.es.js.map +1 -1
- package/es/modules/toolbar/better-picker.es.js +5 -0
- package/es/modules/toolbar/better-picker.es.js.map +1 -1
- package/es/modules/toolbar/better-toolbar.es.js +138 -0
- package/es/modules/toolbar/better-toolbar.es.js.map +1 -0
- package/es/modules/toolbar/index.es.js +5 -135
- package/es/modules/toolbar/index.es.js.map +1 -1
- package/es/modules/toolbar/toolbar-tip.es.js +6 -1
- package/es/modules/toolbar/toolbar-tip.es.js.map +1 -1
- package/es/node_modules/.pnpm/@emoji-mart_data@1.2.1/node_modules/@emoji-mart/data/sets/15/native.json.es.js +40145 -0
- package/es/node_modules/.pnpm/@emoji-mart_data@1.2.1/node_modules/@emoji-mart/data/sets/15/native.json.es.js.map +1 -0
- package/es/node_modules/.pnpm/@floating-ui_core@1.7.2/node_modules/@floating-ui/core/dist/floating-ui.core.es.js +938 -0
- package/es/node_modules/.pnpm/@floating-ui_core@1.7.2/node_modules/@floating-ui/core/dist/floating-ui.core.es.js.map +1 -0
- package/es/node_modules/.pnpm/@floating-ui_dom@1.7.2/node_modules/@floating-ui/dom/dist/floating-ui.dom.es.js +624 -0
- package/es/node_modules/.pnpm/@floating-ui_dom@1.7.2/node_modules/@floating-ui/dom/dist/floating-ui.dom.es.js.map +1 -0
- package/es/node_modules/.pnpm/@floating-ui_utils@0.2.10/node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.es.js +174 -0
- package/es/node_modules/.pnpm/@floating-ui_utils@0.2.10/node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.es.js.map +1 -0
- package/es/node_modules/.pnpm/@floating-ui_utils@0.2.10/node_modules/@floating-ui/utils/dist/floating-ui.utils.es.js +159 -0
- package/es/node_modules/.pnpm/@floating-ui_utils@0.2.10/node_modules/@floating-ui/utils/dist/floating-ui.utils.es.js.map +1 -0
- package/es/node_modules/.pnpm/emoji-mart@5.6.0/node_modules/emoji-mart/dist/module.es.js +2849 -0
- package/es/node_modules/.pnpm/emoji-mart@5.6.0/node_modules/emoji-mart/dist/module.es.js.map +1 -0
- package/es/themes/snow.es.js +18 -15
- package/es/themes/snow.es.js.map +1 -1
- package/es/tools/fullscreen.es.js.map +1 -1
- package/es/ui/icons.config.es.js +8 -0
- package/es/ui/icons.config.es.js.map +1 -1
- package/es/ui/icons.es.js.map +1 -1
- package/es/utils/is.es.js +4 -0
- package/es/utils/is.es.js.map +1 -1
- package/lib/config/editor.config.cjs.js +0 -7
- package/lib/config/editor.config.cjs.js.map +1 -1
- package/lib/config/editor.utils.cjs.js +0 -2
- package/lib/config/editor.utils.cjs.js.map +1 -1
- package/lib/config/i18n/en-us.cjs.js +0 -13
- package/lib/config/i18n/en-us.cjs.js.map +1 -1
- package/lib/config/i18n/zh-cn.cjs.js +0 -13
- package/lib/config/i18n/zh-cn.cjs.js.map +1 -1
- package/lib/config/index.cjs.js +6 -11
- package/lib/config/index.cjs.js.map +1 -1
- package/lib/config/types/index.cjs.js +0 -20
- package/lib/config/types/index.cjs.js.map +1 -1
- package/lib/core/fluent-editor.cjs.js +6 -4
- package/lib/core/fluent-editor.cjs.js.map +1 -1
- package/lib/fluent-editor.cjs.js +44 -30
- package/lib/fluent-editor.cjs.js.map +1 -1
- package/lib/formats/emoji.cjs.js +14 -0
- package/lib/formats/emoji.cjs.js.map +1 -0
- package/lib/formats/index.cjs.js +11 -0
- package/lib/formats/index.cjs.js.map +1 -0
- package/lib/formats/soft-break.cjs.js +13 -6
- package/lib/formats/soft-break.cjs.js.map +1 -1
- package/lib/formats/strike.cjs.js +9 -6
- package/lib/formats/strike.cjs.js.map +1 -1
- package/lib/formats/video.cjs.js +15 -11
- package/lib/formats/video.cjs.js.map +1 -1
- package/lib/index.cjs.js +112 -34
- package/lib/index.cjs.js.map +1 -1
- package/lib/modules/counter.cjs.js +8 -3
- package/lib/modules/counter.cjs.js.map +1 -1
- package/lib/modules/custom-clipboard.cjs.js +23 -27
- package/lib/modules/custom-clipboard.cjs.js.map +1 -1
- package/lib/modules/custom-image/actions/action.cjs.js +19 -0
- package/lib/modules/custom-image/actions/action.cjs.js.map +1 -0
- package/lib/modules/custom-image/actions/{CustomResizeAction.cjs.js → custom-resize-action.cjs.js} +26 -13
- package/lib/modules/custom-image/actions/{CustomResizeAction.cjs.js.map → custom-resize-action.cjs.js.map} +1 -1
- package/lib/modules/custom-image/actions/{DeleteAction.cjs.js → delete-action.cjs.js} +10 -7
- package/lib/modules/custom-image/actions/delete-action.cjs.js.map +1 -0
- package/lib/modules/custom-image/actions/image-toolbar-buttons.cjs.js +137 -0
- package/lib/modules/custom-image/actions/image-toolbar-buttons.cjs.js.map +1 -0
- package/lib/modules/custom-image/actions/index.cjs.js +18 -0
- package/lib/modules/custom-image/actions/index.cjs.js.map +1 -0
- package/lib/modules/custom-image/actions/toolbar-action.cjs.js +33 -0
- package/lib/modules/custom-image/actions/toolbar-action.cjs.js.map +1 -0
- package/lib/modules/custom-image/actions/toolbar.cjs.js +110 -0
- package/lib/modules/custom-image/actions/toolbar.cjs.js.map +1 -0
- package/lib/modules/custom-image/{BlotFormatter.cjs.js → blot-formatter.cjs.js} +24 -51
- package/lib/modules/custom-image/blot-formatter.cjs.js.map +1 -0
- package/lib/modules/custom-image/image.cjs.js +35 -22
- package/lib/modules/custom-image/image.cjs.js.map +1 -1
- package/lib/modules/custom-image/index.cjs.js +9 -0
- package/lib/modules/custom-image/index.cjs.js.map +1 -0
- package/lib/modules/custom-image/options.cjs.js +85 -0
- package/lib/modules/custom-image/options.cjs.js.map +1 -0
- package/lib/modules/custom-image/specs/blot-spec.cjs.js +33 -0
- package/lib/modules/custom-image/specs/blot-spec.cjs.js.map +1 -0
- package/lib/modules/custom-image/specs/{CustomImageSpec.cjs.js → custom-image-spec.cjs.js} +14 -15
- package/lib/modules/custom-image/specs/custom-image-spec.cjs.js.map +1 -0
- package/lib/modules/custom-image/specs/image-spec.cjs.js +32 -0
- package/lib/modules/custom-image/specs/image-spec.cjs.js.map +1 -0
- package/lib/modules/custom-image/specs/index.cjs.js +9 -0
- package/lib/modules/custom-image/specs/index.cjs.js.map +1 -0
- package/lib/modules/custom-uploader.cjs.js +64 -195
- package/lib/modules/custom-uploader.cjs.js.map +1 -1
- package/lib/modules/divider.cjs.js +9 -8
- package/lib/modules/divider.cjs.js.map +1 -1
- package/lib/modules/emoji.cjs.js +175 -0
- package/lib/modules/emoji.cjs.js.map +1 -0
- package/lib/modules/file/formats/file.cjs.js +14 -14
- package/lib/modules/file/formats/file.cjs.js.map +1 -1
- package/lib/modules/file/index.cjs.js +5 -28
- package/lib/modules/file/index.cjs.js.map +1 -1
- package/lib/modules/file/modules/file-bar.cjs.js +12 -4
- package/lib/modules/file/modules/file-bar.cjs.js.map +1 -1
- package/lib/modules/file/modules/file-module.cjs.js +35 -0
- package/lib/modules/file/modules/file-module.cjs.js.map +1 -0
- package/lib/modules/i18n.cjs.js +32 -10
- package/lib/modules/i18n.cjs.js.map +1 -1
- package/lib/modules/index.cjs.js +26 -0
- package/lib/modules/index.cjs.js.map +1 -0
- package/lib/modules/link/formats/link.cjs.js +15 -11
- package/lib/modules/link/formats/link.cjs.js.map +1 -1
- package/lib/modules/link/index.cjs.js +4 -12
- package/lib/modules/link/index.cjs.js.map +1 -1
- package/lib/modules/link/modules/tooltip.cjs.js +30 -20
- package/lib/modules/link/modules/tooltip.cjs.js.map +1 -1
- package/lib/modules/mathlive/formats.cjs.js +11 -8
- package/lib/modules/mathlive/formats.cjs.js.map +1 -1
- package/lib/modules/mathlive/index.cjs.js +5 -29
- package/lib/modules/mathlive/index.cjs.js.map +1 -1
- package/lib/modules/mathlive/module.cjs.js +40 -0
- package/lib/modules/mathlive/module.cjs.js.map +1 -0
- package/lib/modules/mathlive/tooltip.cjs.js +10 -6
- package/lib/modules/mathlive/tooltip.cjs.js.map +1 -1
- package/lib/modules/mention/index.cjs.js +7 -0
- package/lib/modules/{emoji/emoji-list → mention}/index.cjs.js.map +1 -1
- package/lib/modules/mention/{MentionLink.cjs.js → mention-link.cjs.js} +15 -7
- package/lib/modules/mention/mention-link.cjs.js.map +1 -0
- package/lib/modules/mention/{Mention.cjs.js → mention.cjs.js} +30 -22
- package/lib/modules/mention/mention.cjs.js.map +1 -0
- package/lib/modules/shortcut-key/index.cjs.js +16 -0
- package/lib/modules/shortcut-key/index.cjs.js.map +1 -1
- package/lib/modules/syntax.cjs.js +4 -0
- package/lib/modules/syntax.cjs.js.map +1 -1
- package/lib/modules/table-up/index.cjs.js +9 -2
- package/lib/modules/table-up/index.cjs.js.map +1 -1
- package/lib/modules/toolbar/better-picker.cjs.js +5 -0
- package/lib/modules/toolbar/better-picker.cjs.js.map +1 -1
- package/lib/modules/toolbar/better-toolbar.cjs.js +138 -0
- package/lib/modules/toolbar/better-toolbar.cjs.js.map +1 -0
- package/lib/modules/toolbar/index.cjs.js +6 -136
- package/lib/modules/toolbar/index.cjs.js.map +1 -1
- package/lib/modules/toolbar/toolbar-tip.cjs.js +6 -1
- package/lib/modules/toolbar/toolbar-tip.cjs.js.map +1 -1
- package/lib/node_modules/.pnpm/@emoji-mart_data@1.2.1/node_modules/@emoji-mart/data/sets/15/native.json.cjs.js +40145 -0
- package/lib/node_modules/.pnpm/@emoji-mart_data@1.2.1/node_modules/@emoji-mart/data/sets/15/native.json.cjs.js.map +1 -0
- package/lib/node_modules/.pnpm/@floating-ui_core@1.7.2/node_modules/@floating-ui/core/dist/floating-ui.core.cjs.js +938 -0
- package/lib/node_modules/.pnpm/@floating-ui_core@1.7.2/node_modules/@floating-ui/core/dist/floating-ui.core.cjs.js.map +1 -0
- package/lib/node_modules/.pnpm/@floating-ui_dom@1.7.2/node_modules/@floating-ui/dom/dist/floating-ui.dom.cjs.js +624 -0
- package/lib/node_modules/.pnpm/@floating-ui_dom@1.7.2/node_modules/@floating-ui/dom/dist/floating-ui.dom.cjs.js.map +1 -0
- package/lib/node_modules/.pnpm/@floating-ui_utils@0.2.10/node_modules/@floating-ui/utils/dist/floating-ui.utils.cjs.js +159 -0
- package/lib/node_modules/.pnpm/@floating-ui_utils@0.2.10/node_modules/@floating-ui/utils/dist/floating-ui.utils.cjs.js.map +1 -0
- package/lib/node_modules/.pnpm/@floating-ui_utils@0.2.10/node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.cjs.js +174 -0
- package/lib/node_modules/.pnpm/@floating-ui_utils@0.2.10/node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.cjs.js.map +1 -0
- package/lib/node_modules/.pnpm/emoji-mart@5.6.0/node_modules/emoji-mart/dist/module.cjs.js +2847 -0
- package/lib/node_modules/.pnpm/emoji-mart@5.6.0/node_modules/emoji-mart/dist/module.cjs.js.map +1 -0
- package/lib/themes/snow.cjs.js +19 -16
- package/lib/themes/snow.cjs.js.map +1 -1
- package/lib/tools/fullscreen.cjs.js.map +1 -1
- package/lib/ui/icons.cjs.js.map +1 -1
- package/lib/ui/icons.config.cjs.js +8 -0
- package/lib/ui/icons.config.cjs.js.map +1 -1
- package/lib/utils/is.cjs.js +4 -0
- package/lib/utils/is.cjs.js.map +1 -1
- package/package.json +8 -7
- package/style.css +8 -952
- package/types/config/editor.config.d.ts +0 -274
- package/types/config/editor.utils.d.ts +0 -1
- package/types/config/i18n/en-us.d.ts +0 -13
- package/types/config/i18n/zh-cn.d.ts +0 -13
- package/types/config/index.d.ts +2 -1
- package/types/config/types/editor-config.interface.d.ts +0 -26
- package/types/config/types/editor-modules.interface.d.ts +22 -11
- package/types/config/types/index.d.ts +0 -20
- package/types/config/types/type.d.ts +0 -4
- package/types/core/fluent-editor.d.ts +3 -2
- package/types/formats/emoji.d.ts +9 -0
- package/types/formats/index.d.ts +4 -0
- package/types/formats/soft-break.d.ts +6 -7
- package/types/formats/strike.d.ts +6 -4
- package/types/formats/video.d.ts +4 -6
- package/types/index.d.ts +5 -3
- package/types/modules/counter.d.ts +9 -2
- package/types/modules/custom-clipboard.d.ts +4 -7
- package/types/modules/custom-image/Options.d.ts +34 -23
- package/types/modules/custom-image/actions/Action.d.ts +5 -3
- package/types/modules/custom-image/actions/custom-resize-action.d.ts +24 -0
- package/types/modules/custom-image/actions/delete-action.d.ts +7 -0
- package/types/modules/custom-image/actions/image-toolbar-buttons.d.ts +17 -0
- package/types/modules/custom-image/actions/index.d.ts +6 -0
- package/types/modules/custom-image/actions/toolbar-action.d.ts +12 -0
- package/types/modules/custom-image/actions/toolbar.d.ts +20 -0
- package/types/modules/custom-image/blot-formatter.d.ts +24 -0
- package/types/modules/custom-image/image-bar.d.ts +9 -7
- package/types/modules/custom-image/image.d.ts +22 -23
- package/types/modules/custom-image/index.d.ts +4 -0
- package/types/modules/custom-image/specs/blot-spec.d.ts +13 -0
- package/types/modules/custom-image/specs/custom-image-spec.d.ts +18 -0
- package/types/modules/custom-image/specs/image-spec.d.ts +9 -0
- package/types/modules/custom-image/specs/index.d.ts +3 -0
- package/types/modules/custom-uploader.d.ts +38 -28
- package/types/modules/divider.d.ts +6 -4
- package/types/modules/emoji/formats/emoji-blot.d.ts +9 -7
- package/types/modules/emoji/index.d.ts +3 -10
- package/types/modules/emoji/modules/emoji.d.ts +6 -6
- package/types/modules/emoji/modules/toolbar-emoji.d.ts +7 -6
- package/types/modules/emoji.d.ts +35 -0
- package/types/modules/file/formats/file.d.ts +14 -10
- package/types/modules/file/index.d.ts +3 -11
- package/types/modules/file/modules/file-bar.d.ts +1 -1
- package/types/modules/file/modules/file-module.d.ts +10 -0
- package/types/modules/i18n.d.ts +4 -5
- package/types/modules/index.d.ts +15 -0
- package/types/modules/link/formats/link.d.ts +5 -5
- package/types/modules/link/index.d.ts +2 -6
- package/types/modules/link/modules/tooltip.d.ts +5 -10
- package/types/modules/mathlive/formats.d.ts +2 -2
- package/types/modules/mathlive/index.d.ts +3 -9
- package/types/modules/mathlive/module.d.ts +10 -0
- package/types/modules/mathlive/tooltip.d.ts +1 -1
- package/types/modules/mention/Mention.d.ts +3 -4
- package/types/modules/mention/index.d.ts +2 -0
- package/types/modules/mention/mention-link.d.ts +17 -0
- package/types/modules/shortcut-key/index.d.ts +16 -41
- package/types/modules/table-up/index.d.ts +27 -27
- package/types/modules/toolbar/better-toolbar.d.ts +8 -0
- package/types/modules/toolbar/index.d.ts +2 -8
- package/types/tools/fullscreen.d.ts +5 -1
- package/types/ui/icons.config.d.ts +1 -0
- package/types/utils/is.d.ts +3 -1
- package/es/config/types/additional-toolbar-item.interface.es.js +0 -2
- package/es/config/types/additional-toolbar-item.interface.es.js.map +0 -1
- package/es/config/types/content-change.interface.es.js +0 -2
- package/es/config/types/content-change.interface.es.js.map +0 -1
- package/es/config/types/content-save.interface.es.js +0 -2
- package/es/config/types/content-save.interface.es.js.map +0 -1
- package/es/config/types/counter-option.interface.es.js +0 -2
- package/es/config/types/counter-option.interface.es.js.map +0 -1
- package/es/config/types/editor-toolbar.interface.es.js +0 -2
- package/es/config/types/editor-toolbar.interface.es.js.map +0 -1
- package/es/config/types/file-operation.interface.es.js +0 -2
- package/es/config/types/file-operation.interface.es.js.map +0 -1
- package/es/config/types/focus-change.interface.es.js +0 -2
- package/es/config/types/focus-change.interface.es.js.map +0 -1
- package/es/config/types/fullscreen-module.interface.es.js +0 -2
- package/es/config/types/fullscreen-module.interface.es.js.map +0 -1
- package/es/config/types/help-panel-item.interface.es.js +0 -2
- package/es/config/types/help-panel-item.interface.es.js.map +0 -1
- package/es/config/types/help-panel-option.interface.es.js +0 -2
- package/es/config/types/help-panel-option.interface.es.js.map +0 -1
- package/es/config/types/image-module.interface.es.js +0 -2
- package/es/config/types/image-module.interface.es.js.map +0 -1
- package/es/config/types/image-upload.interface.es.js +0 -2
- package/es/config/types/image-upload.interface.es.js.map +0 -1
- package/es/config/types/load-on-demand-module.interface.es.js +0 -2
- package/es/config/types/load-on-demand-module.interface.es.js.map +0 -1
- package/es/config/types/mention-module.interface.es.js +0 -2
- package/es/config/types/mention-module.interface.es.js.map +0 -1
- package/es/config/types/paste-change.interface.es.js +0 -2
- package/es/config/types/paste-change.interface.es.js.map +0 -1
- package/es/config/types/quick-menu-module.interface.es.js +0 -2
- package/es/config/types/quick-menu-module.interface.es.js.map +0 -1
- package/es/config/types/range.interface.es.js +0 -2
- package/es/config/types/range.interface.es.js.map +0 -1
- package/es/config/types/registry-options.interface.es.js +0 -2
- package/es/config/types/registry-options.interface.es.js.map +0 -1
- package/es/config/types/selection-change.interface.es.js +0 -2
- package/es/config/types/selection-change.interface.es.js.map +0 -1
- package/es/config/types/toolbar-item.interface.es.js +0 -2
- package/es/config/types/toolbar-item.interface.es.js.map +0 -1
- package/es/config/types/validate-error.interface.es.js +0 -2
- package/es/config/types/validate-error.interface.es.js.map +0 -1
- package/es/modules/custom-image/BlotFormatter.es.js.map +0 -1
- package/es/modules/custom-image/Options.es.js +0 -95
- package/es/modules/custom-image/Options.es.js.map +0 -1
- package/es/modules/custom-image/actions/Action.es.js +0 -15
- package/es/modules/custom-image/actions/Action.es.js.map +0 -1
- package/es/modules/custom-image/actions/DeleteAction.es.js.map +0 -1
- package/es/modules/custom-image/image-bar.es.js +0 -127
- package/es/modules/custom-image/image-bar.es.js.map +0 -1
- package/es/modules/custom-image/specs/BlotSpec.es.js +0 -27
- package/es/modules/custom-image/specs/BlotSpec.es.js.map +0 -1
- package/es/modules/custom-image/specs/CustomImageSpec.es.js.map +0 -1
- package/es/modules/custom-image/specs/ImageSpec.es.js +0 -29
- package/es/modules/custom-image/specs/ImageSpec.es.js.map +0 -1
- package/es/modules/emoji/emoji-list/index.es.js +0 -5
- package/es/modules/emoji/emoji-list/people.es.js +0 -114
- package/es/modules/emoji/emoji-list/people.es.js.map +0 -1
- package/es/modules/emoji/emoji-list.es.js +0 -9
- package/es/modules/emoji/emoji-list.es.js.map +0 -1
- package/es/modules/emoji/emoji-map.es.js +0 -9
- package/es/modules/emoji/emoji-map.es.js.map +0 -1
- package/es/modules/emoji/emoji-sprite.es.js +0 -5
- package/es/modules/emoji/emoji-sprite.es.js.map +0 -1
- package/es/modules/emoji/formats/emoji-blot.es.js +0 -41
- package/es/modules/emoji/formats/emoji-blot.es.js.map +0 -1
- package/es/modules/emoji/index.es.js +0 -8
- package/es/modules/emoji/index.es.js.map +0 -1
- package/es/modules/emoji/modules/emoji.es.js +0 -248
- package/es/modules/emoji/modules/emoji.es.js.map +0 -1
- package/es/modules/emoji/modules/toolbar-emoji.es.js +0 -153
- package/es/modules/emoji/modules/toolbar-emoji.es.js.map +0 -1
- package/es/modules/emoji/utils.es.js +0 -19
- package/es/modules/emoji/utils.es.js.map +0 -1
- package/es/modules/mention/Mention.es.js.map +0 -1
- package/es/modules/mention/MentionLink.es.js.map +0 -1
- package/lib/config/types/additional-toolbar-item.interface.cjs.js +0 -2
- package/lib/config/types/additional-toolbar-item.interface.cjs.js.map +0 -1
- package/lib/config/types/content-change.interface.cjs.js +0 -2
- package/lib/config/types/content-change.interface.cjs.js.map +0 -1
- package/lib/config/types/content-save.interface.cjs.js +0 -2
- package/lib/config/types/content-save.interface.cjs.js.map +0 -1
- package/lib/config/types/counter-option.interface.cjs.js +0 -2
- package/lib/config/types/counter-option.interface.cjs.js.map +0 -1
- package/lib/config/types/editor-toolbar.interface.cjs.js +0 -2
- package/lib/config/types/editor-toolbar.interface.cjs.js.map +0 -1
- package/lib/config/types/file-operation.interface.cjs.js +0 -2
- package/lib/config/types/file-operation.interface.cjs.js.map +0 -1
- package/lib/config/types/focus-change.interface.cjs.js +0 -2
- package/lib/config/types/focus-change.interface.cjs.js.map +0 -1
- package/lib/config/types/fullscreen-module.interface.cjs.js +0 -2
- package/lib/config/types/fullscreen-module.interface.cjs.js.map +0 -1
- package/lib/config/types/help-panel-item.interface.cjs.js +0 -2
- package/lib/config/types/help-panel-item.interface.cjs.js.map +0 -1
- package/lib/config/types/help-panel-option.interface.cjs.js +0 -2
- package/lib/config/types/help-panel-option.interface.cjs.js.map +0 -1
- package/lib/config/types/image-module.interface.cjs.js +0 -2
- package/lib/config/types/image-module.interface.cjs.js.map +0 -1
- package/lib/config/types/image-upload.interface.cjs.js +0 -2
- package/lib/config/types/image-upload.interface.cjs.js.map +0 -1
- package/lib/config/types/load-on-demand-module.interface.cjs.js +0 -2
- package/lib/config/types/load-on-demand-module.interface.cjs.js.map +0 -1
- package/lib/config/types/mention-module.interface.cjs.js +0 -2
- package/lib/config/types/mention-module.interface.cjs.js.map +0 -1
- package/lib/config/types/paste-change.interface.cjs.js +0 -2
- package/lib/config/types/paste-change.interface.cjs.js.map +0 -1
- package/lib/config/types/quick-menu-module.interface.cjs.js +0 -2
- package/lib/config/types/quick-menu-module.interface.cjs.js.map +0 -1
- package/lib/config/types/range.interface.cjs.js +0 -2
- package/lib/config/types/range.interface.cjs.js.map +0 -1
- package/lib/config/types/registry-options.interface.cjs.js +0 -2
- package/lib/config/types/registry-options.interface.cjs.js.map +0 -1
- package/lib/config/types/selection-change.interface.cjs.js +0 -2
- package/lib/config/types/selection-change.interface.cjs.js.map +0 -1
- package/lib/config/types/toolbar-item.interface.cjs.js +0 -2
- package/lib/config/types/toolbar-item.interface.cjs.js.map +0 -1
- package/lib/config/types/validate-error.interface.cjs.js +0 -2
- package/lib/config/types/validate-error.interface.cjs.js.map +0 -1
- package/lib/modules/custom-image/BlotFormatter.cjs.js.map +0 -1
- package/lib/modules/custom-image/Options.cjs.js +0 -95
- package/lib/modules/custom-image/Options.cjs.js.map +0 -1
- package/lib/modules/custom-image/actions/Action.cjs.js +0 -15
- package/lib/modules/custom-image/actions/Action.cjs.js.map +0 -1
- package/lib/modules/custom-image/actions/DeleteAction.cjs.js.map +0 -1
- package/lib/modules/custom-image/image-bar.cjs.js +0 -127
- package/lib/modules/custom-image/image-bar.cjs.js.map +0 -1
- package/lib/modules/custom-image/specs/BlotSpec.cjs.js +0 -27
- package/lib/modules/custom-image/specs/BlotSpec.cjs.js.map +0 -1
- package/lib/modules/custom-image/specs/CustomImageSpec.cjs.js.map +0 -1
- package/lib/modules/custom-image/specs/ImageSpec.cjs.js +0 -29
- package/lib/modules/custom-image/specs/ImageSpec.cjs.js.map +0 -1
- package/lib/modules/emoji/emoji-list/index.cjs.js +0 -5
- package/lib/modules/emoji/emoji-list/people.cjs.js +0 -114
- package/lib/modules/emoji/emoji-list/people.cjs.js.map +0 -1
- package/lib/modules/emoji/emoji-list.cjs.js +0 -9
- package/lib/modules/emoji/emoji-list.cjs.js.map +0 -1
- package/lib/modules/emoji/emoji-map.cjs.js +0 -9
- package/lib/modules/emoji/emoji-map.cjs.js.map +0 -1
- package/lib/modules/emoji/emoji-sprite.cjs.js +0 -5
- package/lib/modules/emoji/emoji-sprite.cjs.js.map +0 -1
- package/lib/modules/emoji/formats/emoji-blot.cjs.js +0 -41
- package/lib/modules/emoji/formats/emoji-blot.cjs.js.map +0 -1
- package/lib/modules/emoji/index.cjs.js +0 -8
- package/lib/modules/emoji/index.cjs.js.map +0 -1
- package/lib/modules/emoji/modules/emoji.cjs.js +0 -248
- package/lib/modules/emoji/modules/emoji.cjs.js.map +0 -1
- package/lib/modules/emoji/modules/toolbar-emoji.cjs.js +0 -153
- package/lib/modules/emoji/modules/toolbar-emoji.cjs.js.map +0 -1
- package/lib/modules/emoji/utils.cjs.js +0 -19
- package/lib/modules/emoji/utils.cjs.js.map +0 -1
- package/lib/modules/mention/Mention.cjs.js.map +0 -1
- package/lib/modules/mention/MentionLink.cjs.js.map +0 -1
package/style.css
CHANGED
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
.qsf-placeholder.is-hidden{display:none}
|
|
23
23
|
.qsf-placeholder::before{content:attr(data-placeholder);padding:0 4px;white-space:nowrap;font-size:14px;color:#d8dad9}
|
|
24
24
|
.qsf-placeholder.is-right{transform:translateX(-100%)}
|
|
25
|
+
.ql-editor.ql-blank::before{content:none}
|
|
25
26
|
.jsf-color-picker{--jsf-color-picker-bg-color:#ffffff;box-sizing:border-box;display:inline-flex;flex-direction:column;width:16.75rem;padding:.5rem;border-radius:.375rem;background:var(--jsf-color-picker-bg-color);box-shadow:0 0 .375rem #b2b5b8}
|
|
26
27
|
.jsf-color-picker__content{box-sizing:border-box;width:100%;height:11.75rem;padding-top:.5rem}
|
|
27
28
|
.jsf-color-picker__selector{width:14.375rem;height:9.375rem;position:absolute}
|
|
@@ -61,6 +62,11 @@
|
|
|
61
62
|
.ql-toolbar .ql-color-picker .used{width:100%}
|
|
62
63
|
.ql-toolbar .ql-color-picker .used-list{display:flex;flex-wrap:wrap;min-height:1.25rem}
|
|
63
64
|
.ql-toolbar .ql-color-picker .used::before{content:'Recently used';font-size:.75rem;color:#d1d5db}
|
|
65
|
+
.ql-video {
|
|
66
|
+
width: 100%;
|
|
67
|
+
max-height: 400px;
|
|
68
|
+
margin: 0 auto;
|
|
69
|
+
}
|
|
64
70
|
@font-face {
|
|
65
71
|
font-family: "iconfont"; /* Project id 3231649 */
|
|
66
72
|
src: url("data:font/woff2;base64,d09GMgABAAAAAAPEAAsAAAAAB/gAAAN2AAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHFQGYACDHAqDIIJ2ATYCJAMQCwoABCAFhGcHSxsBB8gehXEzfcQqKjPbRwsC1KUnyf7/2EHgrYTsFJCm8kQEY8JTYfXRWpt/xGxCOouop7eEncye2R5WCUk0kSmNBCF+oxKiaAKzwvv0p3JGCZ8FQDrGpjlobfxg8QIFqHtarSAbqFdPBbkKsDNYi/wvQQAG2cySr2/cLkH71FE8gGFqMfgC4kIxdZKpQiNvR6spFLgQONCVGmI7OsgN8iWwzf+86CBXuECiK4x9eo5fMeCpmc4GZdkWqJ+4PATkaAnogALSF+YUE+v9o6kJU+nUYJT9ppZCABcuJDTTvKqzwbZJ5ab0LvMvDwQSBcKBke8OQD6VVtCMzUFA8yoOEjobsijgqYx3AU5gLXCCkoT3kEhUXOzYYK0h7hLPja/vC9F01jQ3nQbrlumx6U66/u5LY/6+TQH9FG+VA5TjK64t/7G7/XdvDNwbOH5vU9AMK3i/4b7xggA0A8L3OYVmXTO9Np0Vqu/o64CA6pcB+56AOaB/M8ZF/49935Y+7vtAZ07XjucSD9zz3soVceepcQ+eMR7VHjGeI8JKof9h9WH76dnH4lLP42pn3Ycd2L2rxsPXs9q2eNREgQPhG7rypU6nz8Xm0P8XfQJp6lawCzj50PeTb6t/SM+zf7a7LTng0y+3p82/y/+wf79ti9c7haYiB1mLene8qxHHEtv+tP1IXK/3ulfyqil5D+sVUWTfrjZW/DPwTndjjsVIYCbEWeqWqgXs1T3lDdjUcVX9DcVhX3Vjywiv8n8uUwPgd7dLP/2gTaOb4hsoYPkXMwwFiZoaBk0rU9vKf4Gx4ZITEjBMF3yiHPjyOoTRD84HgQu/GBInYVC4iKU0SSp0THLhwEUFDNJYWW/iR0QNQnMDEjkjIPDmERJPrkHhzQulSarQCeQNDrz5hUF/4bGbSaIYU5eQyslAbRHaY8KAWSbuCy2QmXlqUhSvUJLaZBRlQcpm1yigpI856XxT4XMZstmhj6vseeR5IUazQ4d0LlhzeTQpiqzsKoI+w4clEggVDmGAaJyA2OiEBDCXzNPfV4AwyfBQSUCqkkpIsUnhiIyABFBr+gDquJB9Ug4xUeBwGAgjITI+yCrvJTwlFYJE5cMcCB2OgNUhETGJaJIYqhemN/q3twswMPbThBRKaELHsXCSeqrajePHBWE8MNvmTHQH6VaWkpupNgAAAA==") format("woff2"), url("data:font/woff;base64,d09GRgABAAAAAAVkAAsAAAAAB/gAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAARAAAAGA8FU8VY21hcAAAAYgAAABiAAABnLoJLoBnbHlmAAAB7AAAAXMAAAGgslPDomhlYWQAAANgAAAALwAAADYfuq+3aGhlYQAAA5AAAAAcAAAAJAfeA4VobXR4AAADrAAAAA4AAAAQEAAAAGxvY2EAAAO8AAAACgAAAAoBNAC0bWF4cAAAA8gAAAAfAAAAIAERAFFuYW1lAAAD6AAAAUAAAAJnEKM8sHBvc3QAAAUoAAAAOQAAAEtIA5ekeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGFhYJzAwMrAwNTJdIaBgaEfQjO+ZjBi5ACKMrAyM2AFAWmuKQwHnjG8cWVu+N/AwMB8hwFIMjCiKGICAGrGDKt4nO2QsQ2AMAwEzySgCDEKJWKDLELFHtk1VXYItkPBELx1lv2yXDwwA0HZlQhyI5gudcX9wOp+5NQ9aU1QqaXl3r+TS/wi+TTZZ1n4tXk/3i1YagPLuJaB5drygPAAe+gUYgAAeJxNUD1PAkEQ3dkVDhfuhNs7iHzvXe6IMUHD1xkI5CT+ApVCG/gBVjYm2khnSQE1dlY29kT8A9YW/gISEwsLCu9wDxpninlvMjN5bxBGIsiMdJGBThCyuFGGNtQaLagkc6Alq7zS+McVMKFRKUBi09ETTsCSmgRhKWyU7BLYNYe0vaHZNJnsysxOwypjraFoeTOaoRNVcWV1QrPbB5T6SxzbScdj2F9Sio2WOVVUVelnLCvTD9DUbBn4mtIxHMuMyf7rmNKyOCL2QpIUwhARRFgQPlbf5I3EURbVhA9NCpvcsOtroQ43wnpiY6aekKxkATrgdCAHVadk6qbQHiRBUVn199VCTju88j/0Itfwl5Ye+TcAUBieKXV7sbBDttzrutn8s870PQ12WWqUZt47y+c06N1FcGjr8jaOMUx/Ph8wjjePTs+DFwt9c/JIXIEkFEWIcZ2nOOFBHRD3d14k6MJ7eQK0EiOu67nkfoD+AD2sTjIAeJxjYGRgYADi5Q5u3PH8Nl8ZuFkYQOCe79Y7CPr/ARYGZicgl4OBCSQKAB7jCnMAeJxjYGRgYG7438AQw8IAAkCSkQEVsAAARwoCbXicY2FgYGBBwgAAsAARAAAAAAAAAGQAtADQAAB4nGNgZGBgYGFwZWBmAAEmIOYCQgaG/2A+AwAPuAFjAHichZE9bsJAEIWfwZAElChKpDRpVikoEsn8lEipUKCnoAez5ke211ovSNQ5TY6QE+QI6Whzikh52EMDRbza2W/evpkdyQDusIeH8rvnLtnDJbOSK7jAo3CV+pOwT34WrqGJnnCd+qtwAy94E26yY8YOnn/FrIV3YQ+3+BCu4AafwlXqX8I++Vu4hgf8CNep/wo3MPGuhZtoeeHA6qnTczXbqVVo0sik7niO9WITT+2pPNE2X5lUdYPOURrpVNtjm3y76DkXqciaRA15q+PYqMyatQ5dsHQu67fbkehBaBIMYKExhWOcQ2GGHeMKIQxSREV0Z/mY7gU2iFlp/3VP6LbIqR9yhS4CdM5cI7rSwnk6TY4tX+tRdXQrbsuahDSUWs1JYrLiDzzcramE1AMsi6oMfbS5ohN/UMyQ/AHYk29XeJxjYGKAAC4G7ICFkYmRmZGFkZWBrSIzsSoxkyMtNQ/IykvnLc5IzEvOKC1OzS5NzGRgAADF1QuAAAAA") format("woff"), url("data:font/ttf;base64,AAEAAAALAIAAAwAwR1NVQiCLJXoAAAE4AAAAVE9TLzI8FU8VAAABjAAAAGBjbWFwugkugAAAAfwAAAGcZ2x5ZrJTw6IAAAOkAAABoGhlYWQfuq+3AAAA4AAAADZoaGVhB94DhQAAALwAAAAkaG10eBAAAAAAAAHsAAAAEGxvY2EBNAC0AAADmAAAAAptYXhwAREAUQAAARgAAAAgbmFtZRCjPLAAAAVEAAACZ3Bvc3RIA5ekAAAHrAAAAEsAAQAAA4D/gABcBAAAAAAABAAAAQAAAAAAAAAAAAAAAAAAAAQAAQAAAAEAAKdARgtfDzz1AAsEAAAAAADeTbXcAAAAAN5NtdwAAP/ABAADQgAAAAgAAgAAAAAAAAABAAAABABFAAMAAAAAAAIAAAAKAAoAAAD/AAAAAAAAAAEAAAAKADAAPgACREZMVAAObGF0bgAaAAQAAAAAAAAAAQAAAAQAAAAAAAAAAQAAAAFsaWdhAAgAAAABAAAAAQAEAAQAAAABAAgAAQAGAAAAAQAAAAQEAAGQAAUAAAKJAswAAACPAokCzAAAAesAMgEIAAACAAUDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFBmRWQAwOYA7EUDgP+AAAAD3ACAAAAAAQAAAAAAAAAAAAAAAAACBAAAAAQAAAAEAAAABAAAAAAAAAUAAAADAAAALAAAAAQAAAFoAAEAAAAAAGIAAwABAAAALAADAAoAAAFoAAQANgAAAAgACAACAADmAOaD7EX//wAA5gDmg+xF//8AAAAAAAAAAQAIAAgACAAAAAEAAgADAAABBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAA0AAAAAAAAAAMAAOYAAADmAAAAAAEAAOaDAADmgwAAAAIAAOxFAADsRQAAAAMAAAAAAGQAtADQAAAAAgAAAAADvQNCACIARAAAJSEiLgE9ATQ2OwEyFh0BFBYzITI2PQE0NjsBMhYdARQOASMBNjIfARE0NjsBMhYVETc2Mh8BFhQHAQYHBiInJicBJjQ3Az39gSM6IxMNQA0TJhoB/xslEw1ADRMjOiP9vQobCpUSDkANEpUKHAkvCgr++AIMDxoQDAL++AoKAiI7I58OEhIOXxslJRtfDhISDp8jOyICcgoKlAFBDRMTDf6/lAoKLgobCv74AgUHBwUCAQgKGwoAAAACAAD/8APBAxAAHAA0AAAlFAcGIyEiJjURNDY7ATchIgYVERQWMyEyNjURByUWHwE+ATc+AR0BMzcnIxUjBgcGBwYHBgMACw0S/isSHx0UMGz+2BUgIRQC7RQakP53AQEBH4FTDjUm6uomBSYNVUJAHB6tFRMVKRQBGRMXkBoT/c4THh0UAVV7CAIFBFp6EAICAZ/03IgCAhA6OFJUAAAAAwAA/8ADoANAAAMABwALAAATIRUhFyEDIRMhFSFgA0D8wCADAFn9sqcBAP8AAwBAQP1AA4BgAAAAABIA3gABAAAAAAAAABMAAAABAAAAAAABAAgAEwABAAAAAAACAAcAGwABAAAAAAADAAgAIgABAAAAAAAEAAgAKgABAAAAAAAFAAsAMgABAAAAAAAGAAgAPQABAAAAAAAKACsARQABAAAAAAALABMAcAADAAEECQAAACYAgwADAAEECQABABAAqQADAAEECQACAA4AuQADAAEECQADABAAxwADAAEECQAEABAA1wADAAEECQAFABYA5wADAAEECQAGABAA/QADAAEECQAKAFYBDQADAAEECQALACYBY0NyZWF0ZWQgYnkgaWNvbmZvbnRpY29uZm9udFJlZ3VsYXJpY29uZm9udGljb25mb250VmVyc2lvbiAxLjBpY29uZm9udEdlbmVyYXRlZCBieSBzdmcydHRmIGZyb20gRm9udGVsbG8gcHJvamVjdC5odHRwOi8vZm9udGVsbG8uY29tAEMAcgBlAGEAdABlAGQAIABiAHkAIABpAGMAbwBuAGYAbwBuAHQAaQBjAG8AbgBmAG8AbgB0AFIAZQBnAHUAbABhAHIAaQBjAG8AbgBmAG8AbgB0AGkAYwBvAG4AZgBvAG4AdABWAGUAcgBzAGkAbwBuACAAMQAuADAAaQBjAG8AbgBmAG8AbgB0AEcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAAcwB2AGcAMgB0AHQAZgAgAGYAcgBvAG0AIABGAG8AbgB0AGUAbABsAG8AIABwAHIAbwBqAGUAYwB0AC4AaAB0AHQAcAA6AC8ALwBmAG8AbgB0AGUAbABsAG8ALgBjAG8AbQAAAgAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAQIBAwEEAQUABnhpYXphaQhmZW54aWFuZw1zaGFuY2h1c2VrdWFpAAAA") format("truetype");
|
|
@@ -995,558 +1001,6 @@ html.dark .toolbar-tip__tooltip {
|
|
|
995
1001
|
--fe-text-color: #141414;
|
|
996
1002
|
--fe-bg-color: #f5f5f5;
|
|
997
1003
|
}
|
|
998
|
-
.ql-container .mention {
|
|
999
|
-
color: #5e7ce0;
|
|
1000
|
-
}
|
|
1001
|
-
.ql-container .completions {
|
|
1002
|
-
list-style: none;
|
|
1003
|
-
margin: 0;
|
|
1004
|
-
padding: 0;
|
|
1005
|
-
background: #ffffff;
|
|
1006
|
-
border-radius: 2px;
|
|
1007
|
-
box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
|
|
1008
|
-
}
|
|
1009
|
-
.ql-container .completions > li {
|
|
1010
|
-
margin: 0;
|
|
1011
|
-
padding: 0;
|
|
1012
|
-
}
|
|
1013
|
-
.ql-container .completions > li > button {
|
|
1014
|
-
box-sizing: border-box;
|
|
1015
|
-
height: 2em;
|
|
1016
|
-
padding: 0.25em 0.5em;
|
|
1017
|
-
margin: 0;
|
|
1018
|
-
display: block;
|
|
1019
|
-
width: 100%;
|
|
1020
|
-
text-align: left;
|
|
1021
|
-
border: none;
|
|
1022
|
-
background: none;
|
|
1023
|
-
}
|
|
1024
|
-
.ql-container .completions > li > button:hover {
|
|
1025
|
-
background: #adb0b8;
|
|
1026
|
-
}
|
|
1027
|
-
.ql-container .completions > li > button:focus {
|
|
1028
|
-
background: #adb0b8;
|
|
1029
|
-
outline: none;
|
|
1030
|
-
}
|
|
1031
|
-
.ql-container .completions > li > button > .matched {
|
|
1032
|
-
font-weight: bold;
|
|
1033
|
-
color: #252b3a;
|
|
1034
|
-
}
|
|
1035
|
-
.ql-container .completions > li > button > * {
|
|
1036
|
-
vertical-align: middle;
|
|
1037
|
-
}
|
|
1038
|
-
.ql-container .emoji_completions {
|
|
1039
|
-
list-style: none;
|
|
1040
|
-
margin: 0;
|
|
1041
|
-
border: 1px solid #252b3a;
|
|
1042
|
-
padding: 6px;
|
|
1043
|
-
background: #ffffff;
|
|
1044
|
-
border-radius: 3px;
|
|
1045
|
-
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
|
1046
|
-
}
|
|
1047
|
-
.ql-container .emoji_completions li {
|
|
1048
|
-
margin: 2px 0;
|
|
1049
|
-
padding: 0;
|
|
1050
|
-
display: inline-block;
|
|
1051
|
-
}
|
|
1052
|
-
.ql-container .emoji_completions li:not(:last-of-type) {
|
|
1053
|
-
margin-right: 3px;
|
|
1054
|
-
}
|
|
1055
|
-
.ql-container .emoji_completions > li > button {
|
|
1056
|
-
box-sizing: border-box;
|
|
1057
|
-
padding: 3px 2px 6px;
|
|
1058
|
-
margin: 0;
|
|
1059
|
-
display: block;
|
|
1060
|
-
width: 100%;
|
|
1061
|
-
text-align: left;
|
|
1062
|
-
border: none;
|
|
1063
|
-
background: #f8f8f8;
|
|
1064
|
-
border-radius: 3px;
|
|
1065
|
-
}
|
|
1066
|
-
.ql-container .emoji_completions > li > button:hover {
|
|
1067
|
-
background: #5e7ce0;
|
|
1068
|
-
color: #ffffff;
|
|
1069
|
-
}
|
|
1070
|
-
.ql-container .emoji_completions > li > button:focus {
|
|
1071
|
-
background: #5e7ce0;
|
|
1072
|
-
outline: none;
|
|
1073
|
-
color: #ffffff;
|
|
1074
|
-
}
|
|
1075
|
-
.ql-container .emoji_completions > li > button.emoji-active {
|
|
1076
|
-
background: #5e7ce0;
|
|
1077
|
-
outline: none;
|
|
1078
|
-
color: #ffffff;
|
|
1079
|
-
}
|
|
1080
|
-
.ql-container .emoji_completions > li > button > .matched {
|
|
1081
|
-
font-weight: bold;
|
|
1082
|
-
}
|
|
1083
|
-
.ql-container .emoji_completions > li > button > * {
|
|
1084
|
-
vertical-align: middle;
|
|
1085
|
-
}
|
|
1086
|
-
.ql-container .ico {
|
|
1087
|
-
margin-right: 5px;
|
|
1088
|
-
font-size: 18px;
|
|
1089
|
-
line-height: 0;
|
|
1090
|
-
vertical-align: middle;
|
|
1091
|
-
}
|
|
1092
|
-
.ql-container #emoji-palette {
|
|
1093
|
-
position: fixed;
|
|
1094
|
-
max-width: 231px;
|
|
1095
|
-
z-index: 999;
|
|
1096
|
-
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
|
1097
|
-
border-radius: 1px;
|
|
1098
|
-
border: 1px solid #adb0b8;
|
|
1099
|
-
}
|
|
1100
|
-
.ql-container .bem {
|
|
1101
|
-
font-size: 24px;
|
|
1102
|
-
width: 20px;
|
|
1103
|
-
display: inline-block;
|
|
1104
|
-
text-align: center;
|
|
1105
|
-
cursor: pointer;
|
|
1106
|
-
margin: 2px;
|
|
1107
|
-
}
|
|
1108
|
-
.ql-container #tab-filters {
|
|
1109
|
-
width: 210px;
|
|
1110
|
-
margin: 0 auto;
|
|
1111
|
-
margin-top: 20px;
|
|
1112
|
-
}
|
|
1113
|
-
.ql-container .emoji-tab {
|
|
1114
|
-
display: inline-table;
|
|
1115
|
-
text-align: center;
|
|
1116
|
-
width: 30px;
|
|
1117
|
-
height: 100%;
|
|
1118
|
-
min-height: 30px;
|
|
1119
|
-
cursor: pointer;
|
|
1120
|
-
}
|
|
1121
|
-
.ql-container #tab-toolbar {
|
|
1122
|
-
display: none;
|
|
1123
|
-
background-color: #f8f8f8;
|
|
1124
|
-
padding: 4px 4px 0;
|
|
1125
|
-
border-bottom: 1px solid #252b3a;
|
|
1126
|
-
}
|
|
1127
|
-
.ql-container #tab-toolbar ul {
|
|
1128
|
-
margin: 0;
|
|
1129
|
-
padding: 0;
|
|
1130
|
-
}
|
|
1131
|
-
.ql-container #tab-toolbar .active {
|
|
1132
|
-
border-bottom: 2px solid #5e7ce0;
|
|
1133
|
-
}
|
|
1134
|
-
.ql-container #tab-panel {
|
|
1135
|
-
display: flex;
|
|
1136
|
-
flex-wrap: wrap;
|
|
1137
|
-
justify-content: left;
|
|
1138
|
-
max-height: 220px;
|
|
1139
|
-
overflow-y: scroll;
|
|
1140
|
-
padding: 5px 10px;
|
|
1141
|
-
background: #ffffff;
|
|
1142
|
-
cursor: auto;
|
|
1143
|
-
}
|
|
1144
|
-
.ql-container #quill-editor table {
|
|
1145
|
-
width: 100%;
|
|
1146
|
-
border-collapse: collapse;
|
|
1147
|
-
}
|
|
1148
|
-
.ql-container #quill-editor table td {
|
|
1149
|
-
border: 1px solid #252b3a;
|
|
1150
|
-
padding: 5px;
|
|
1151
|
-
height: 25px;
|
|
1152
|
-
}
|
|
1153
|
-
.ql-container button.ql-table::after {
|
|
1154
|
-
content: "TABLE";
|
|
1155
|
-
}
|
|
1156
|
-
.ql-container .ql-picker.ql-table .ql-picker-label::before {
|
|
1157
|
-
content: "TABLE";
|
|
1158
|
-
}
|
|
1159
|
-
.ql-container button.ql-contain::after {
|
|
1160
|
-
content: "WRAP";
|
|
1161
|
-
}
|
|
1162
|
-
.ql-container button.ql-table[value=append-row]::after {
|
|
1163
|
-
content: "ROWS+";
|
|
1164
|
-
}
|
|
1165
|
-
.ql-container button.ql-table[value=append-col]::after {
|
|
1166
|
-
content: "COLS+";
|
|
1167
|
-
}
|
|
1168
|
-
.ql-container .ql-table,
|
|
1169
|
-
.ql-container .ql-contain {
|
|
1170
|
-
width: auto;
|
|
1171
|
-
margin-right: -15px;
|
|
1172
|
-
}
|
|
1173
|
-
.ql-container .textarea-emoji-control {
|
|
1174
|
-
width: 25px;
|
|
1175
|
-
height: 25px;
|
|
1176
|
-
right: 4px;
|
|
1177
|
-
top: 10px;
|
|
1178
|
-
}
|
|
1179
|
-
.ql-container #textarea-emoji {
|
|
1180
|
-
position: absolute;
|
|
1181
|
-
right: 0;
|
|
1182
|
-
max-width: 250px;
|
|
1183
|
-
z-index: 999;
|
|
1184
|
-
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
|
1185
|
-
border-radius: 3px;
|
|
1186
|
-
border: 1px solid #252b3a;
|
|
1187
|
-
}
|
|
1188
|
-
.ql-container .ql-editor {
|
|
1189
|
-
padding-right: 26px;
|
|
1190
|
-
}
|
|
1191
|
-
.ql-container .button-emoji {
|
|
1192
|
-
margin-bottom: -5px;
|
|
1193
|
-
}
|
|
1194
|
-
.ql-container .ql-emojiblot {
|
|
1195
|
-
display: inline-block;
|
|
1196
|
-
vertical-align: text-top;
|
|
1197
|
-
}
|
|
1198
|
-
#emoji-close-div {
|
|
1199
|
-
width: 100vw;
|
|
1200
|
-
height: 100vh;
|
|
1201
|
-
position: fixed;
|
|
1202
|
-
top: 0;
|
|
1203
|
-
left: 0;
|
|
1204
|
-
right: 0;
|
|
1205
|
-
bottom: 0;
|
|
1206
|
-
}
|
|
1207
|
-
.emoji .ap {
|
|
1208
|
-
display: inline-flex;
|
|
1209
|
-
height: 20px;
|
|
1210
|
-
width: 20px;
|
|
1211
|
-
background-size: 140px;
|
|
1212
|
-
background-repeat: no-repeat;
|
|
1213
|
-
text-indent: -999px;
|
|
1214
|
-
box-sizing: border-box;
|
|
1215
|
-
font-size: 20px;
|
|
1216
|
-
line-height: 1;
|
|
1217
|
-
overflow: hidden;
|
|
1218
|
-
margin: -3px 5px 5px;
|
|
1219
|
-
}
|
|
1220
|
-
.emoji .ap-kissing_closed_eyes {
|
|
1221
|
-
background-position: 0 0;
|
|
1222
|
-
}
|
|
1223
|
-
.emoji .ap-stuck_out_tongue {
|
|
1224
|
-
background-position: 0 -20px;
|
|
1225
|
-
}
|
|
1226
|
-
.emoji .ap-stuck_out_tongue_winking_eye {
|
|
1227
|
-
background-position: 0 -40px;
|
|
1228
|
-
}
|
|
1229
|
-
.emoji .ap-stuck_out_tongue_closed_eyes {
|
|
1230
|
-
background-position: 0 -60px;
|
|
1231
|
-
}
|
|
1232
|
-
.emoji .ap-disappointed {
|
|
1233
|
-
background-position: 0 -80px;
|
|
1234
|
-
}
|
|
1235
|
-
.emoji .ap-worried {
|
|
1236
|
-
background-position: 0 -100px;
|
|
1237
|
-
}
|
|
1238
|
-
.emoji .ap-angry {
|
|
1239
|
-
background-position: 0 -120px;
|
|
1240
|
-
}
|
|
1241
|
-
.emoji .ap-rage {
|
|
1242
|
-
background-position: 0 -140px;
|
|
1243
|
-
}
|
|
1244
|
-
.emoji .ap-cry {
|
|
1245
|
-
background-position: 0 -160px;
|
|
1246
|
-
}
|
|
1247
|
-
.emoji .ap-persevere {
|
|
1248
|
-
background-position: 0 -180px;
|
|
1249
|
-
}
|
|
1250
|
-
.emoji .ap-triumph {
|
|
1251
|
-
background-position: 0 -200px;
|
|
1252
|
-
}
|
|
1253
|
-
.emoji .ap-disappointed_relieved {
|
|
1254
|
-
background-position: 0 -220px;
|
|
1255
|
-
}
|
|
1256
|
-
.emoji .ap-frowning {
|
|
1257
|
-
background-position: 0 -240px;
|
|
1258
|
-
}
|
|
1259
|
-
.emoji .ap-anguished {
|
|
1260
|
-
background-position: 0 -260px;
|
|
1261
|
-
}
|
|
1262
|
-
.emoji .ap-fearful {
|
|
1263
|
-
background-position: 0 -280px;
|
|
1264
|
-
}
|
|
1265
|
-
.emoji .ap-weary {
|
|
1266
|
-
background-position: 0 -300px;
|
|
1267
|
-
}
|
|
1268
|
-
.emoji .ap-sleepy {
|
|
1269
|
-
background-position: -20px 0;
|
|
1270
|
-
}
|
|
1271
|
-
.emoji .ap-tired_face {
|
|
1272
|
-
background-position: -20px -20px;
|
|
1273
|
-
}
|
|
1274
|
-
.emoji .ap-grimacing {
|
|
1275
|
-
background-position: -20px -40px;
|
|
1276
|
-
}
|
|
1277
|
-
.emoji .ap-sob {
|
|
1278
|
-
background-position: -20px -60px;
|
|
1279
|
-
}
|
|
1280
|
-
.emoji .ap-open_mouth {
|
|
1281
|
-
background-position: -20px -80px;
|
|
1282
|
-
}
|
|
1283
|
-
.emoji .ap-hushed {
|
|
1284
|
-
background-position: -20px -100px;
|
|
1285
|
-
}
|
|
1286
|
-
.emoji .ap-cold_sweat {
|
|
1287
|
-
background-position: -20px -120px;
|
|
1288
|
-
}
|
|
1289
|
-
.emoji .ap-scream {
|
|
1290
|
-
background-position: -20px -140px;
|
|
1291
|
-
}
|
|
1292
|
-
.emoji .ap-astonished {
|
|
1293
|
-
background-position: -20px -160px;
|
|
1294
|
-
}
|
|
1295
|
-
.emoji .ap-flushed {
|
|
1296
|
-
background-position: -20px -180px;
|
|
1297
|
-
}
|
|
1298
|
-
.emoji .ap-sleeping {
|
|
1299
|
-
background-position: -20px -200px;
|
|
1300
|
-
}
|
|
1301
|
-
.emoji .ap-dizzy_face {
|
|
1302
|
-
background-position: -20px -220px;
|
|
1303
|
-
}
|
|
1304
|
-
.emoji .ap-no_mouth {
|
|
1305
|
-
background-position: -20px -240px;
|
|
1306
|
-
}
|
|
1307
|
-
.emoji .ap-mask {
|
|
1308
|
-
background-position: -20px -260px;
|
|
1309
|
-
}
|
|
1310
|
-
.emoji .ap-grinning {
|
|
1311
|
-
background-position: -20px -280px;
|
|
1312
|
-
}
|
|
1313
|
-
.emoji .ap-grin {
|
|
1314
|
-
background-position: -20px -300px;
|
|
1315
|
-
}
|
|
1316
|
-
.emoji .ap-joy {
|
|
1317
|
-
background-position: -40px 0;
|
|
1318
|
-
}
|
|
1319
|
-
.emoji .ap-smiley {
|
|
1320
|
-
background-position: -40px -20px;
|
|
1321
|
-
}
|
|
1322
|
-
.emoji .ap-smile {
|
|
1323
|
-
background-position: -40px -40px;
|
|
1324
|
-
}
|
|
1325
|
-
.emoji .ap-sweat_smile {
|
|
1326
|
-
background-position: -40px -60px;
|
|
1327
|
-
}
|
|
1328
|
-
.emoji .ap-laughing {
|
|
1329
|
-
background-position: -40px -80px;
|
|
1330
|
-
}
|
|
1331
|
-
.emoji .ap-innocent {
|
|
1332
|
-
background-position: -40px -100px;
|
|
1333
|
-
}
|
|
1334
|
-
.emoji .ap-smiling_imp {
|
|
1335
|
-
background-position: -40px -120px;
|
|
1336
|
-
}
|
|
1337
|
-
.emoji .ap-wink {
|
|
1338
|
-
background-position: -40px -140px;
|
|
1339
|
-
}
|
|
1340
|
-
.emoji .ap-blush {
|
|
1341
|
-
background-position: -40px -160px;
|
|
1342
|
-
}
|
|
1343
|
-
.emoji .ap-yum {
|
|
1344
|
-
background-position: -40px -180px;
|
|
1345
|
-
}
|
|
1346
|
-
.emoji .ap-relieved {
|
|
1347
|
-
background-position: -40px -200px;
|
|
1348
|
-
}
|
|
1349
|
-
.emoji .ap-heart_eyes {
|
|
1350
|
-
background-position: -40px -220px;
|
|
1351
|
-
}
|
|
1352
|
-
.emoji .ap-sunglasses {
|
|
1353
|
-
background-position: -40px -240px;
|
|
1354
|
-
}
|
|
1355
|
-
.emoji .ap-smirk {
|
|
1356
|
-
background-position: -40px -260px;
|
|
1357
|
-
}
|
|
1358
|
-
.emoji .ap-neutral_face {
|
|
1359
|
-
background-position: -40px -280px;
|
|
1360
|
-
}
|
|
1361
|
-
.emoji .ap-expressionless {
|
|
1362
|
-
background-position: -40px -300px;
|
|
1363
|
-
}
|
|
1364
|
-
.emoji .ap-unamused {
|
|
1365
|
-
background-position: -60px 0;
|
|
1366
|
-
}
|
|
1367
|
-
.emoji .ap-sweat {
|
|
1368
|
-
background-position: -60px -20px;
|
|
1369
|
-
}
|
|
1370
|
-
.emoji .ap-pensive {
|
|
1371
|
-
background-position: -60px -40px;
|
|
1372
|
-
}
|
|
1373
|
-
.emoji .ap-confused {
|
|
1374
|
-
background-position: -60px -60px;
|
|
1375
|
-
}
|
|
1376
|
-
.emoji .ap-confounded {
|
|
1377
|
-
background-position: -60px -80px;
|
|
1378
|
-
}
|
|
1379
|
-
.emoji .ap-kissing {
|
|
1380
|
-
background-position: -60px -100px;
|
|
1381
|
-
}
|
|
1382
|
-
.emoji .ap-kissing_heart {
|
|
1383
|
-
background-position: -60px -120px;
|
|
1384
|
-
}
|
|
1385
|
-
.emoji .ap-kissing_smiling_eyes {
|
|
1386
|
-
background-position: -60px -140px;
|
|
1387
|
-
}
|
|
1388
|
-
.emoji .ap-slightly_smiling_face {
|
|
1389
|
-
background-position: -60px -160px;
|
|
1390
|
-
}
|
|
1391
|
-
.emoji .ap-slightly_frowning_face {
|
|
1392
|
-
background-position: -60px -180px;
|
|
1393
|
-
}
|
|
1394
|
-
.emoji .ap-hugging_face {
|
|
1395
|
-
background-position: -60px -200px;
|
|
1396
|
-
}
|
|
1397
|
-
.emoji .ap-face_with_head_bandage {
|
|
1398
|
-
background-position: -60px -220px;
|
|
1399
|
-
}
|
|
1400
|
-
.emoji .ap-thinking_face {
|
|
1401
|
-
background-position: -60px -240px;
|
|
1402
|
-
}
|
|
1403
|
-
.emoji .ap-nerd_face {
|
|
1404
|
-
background-position: -60px -260px;
|
|
1405
|
-
}
|
|
1406
|
-
.emoji .ap-face_with_thermometer {
|
|
1407
|
-
background-position: -60px -280px;
|
|
1408
|
-
}
|
|
1409
|
-
.emoji .ap-money_mouth_face {
|
|
1410
|
-
background-position: -60px -300px;
|
|
1411
|
-
}
|
|
1412
|
-
.emoji .ap-zipper_mouth_face {
|
|
1413
|
-
background-position: -80px 0;
|
|
1414
|
-
}
|
|
1415
|
-
.emoji .ap-relaxed {
|
|
1416
|
-
background-position: -80px -20px;
|
|
1417
|
-
}
|
|
1418
|
-
.emoji .ap-white_frowning_face {
|
|
1419
|
-
background-position: -80px -40px;
|
|
1420
|
-
}
|
|
1421
|
-
.emoji .ap-scream_cat {
|
|
1422
|
-
background-position: -80px -60px;
|
|
1423
|
-
}
|
|
1424
|
-
.emoji .ap-crying_cat_face {
|
|
1425
|
-
background-position: -80px -80px;
|
|
1426
|
-
}
|
|
1427
|
-
.emoji .ap-pouting_cat {
|
|
1428
|
-
background-position: -80px -100px;
|
|
1429
|
-
}
|
|
1430
|
-
.emoji .ap-kissing_cat {
|
|
1431
|
-
background-position: -80px -120px;
|
|
1432
|
-
}
|
|
1433
|
-
.emoji .ap-smirk_cat {
|
|
1434
|
-
background-position: -80px -140px;
|
|
1435
|
-
}
|
|
1436
|
-
.emoji .ap-heart_eyes_cat {
|
|
1437
|
-
background-position: -80px -160px;
|
|
1438
|
-
}
|
|
1439
|
-
.emoji .ap-smiley_cat {
|
|
1440
|
-
background-position: -80px -180px;
|
|
1441
|
-
}
|
|
1442
|
-
.emoji .ap-joy_cat {
|
|
1443
|
-
background-position: -80px -200px;
|
|
1444
|
-
}
|
|
1445
|
-
.emoji .ap-smile_cat {
|
|
1446
|
-
background-position: -80px -220px;
|
|
1447
|
-
}
|
|
1448
|
-
.emoji .ap-robot_face {
|
|
1449
|
-
background-position: -80px -240px;
|
|
1450
|
-
}
|
|
1451
|
-
.emoji .ap-imp {
|
|
1452
|
-
background-position: -80px -260px;
|
|
1453
|
-
}
|
|
1454
|
-
.emoji .ap-skull {
|
|
1455
|
-
background-position: -80px -280px;
|
|
1456
|
-
}
|
|
1457
|
-
.emoji .ap-ghost {
|
|
1458
|
-
background-position: -80px -300px;
|
|
1459
|
-
}
|
|
1460
|
-
.emoji .ap-hankey {
|
|
1461
|
-
background-position: -100px 0;
|
|
1462
|
-
}
|
|
1463
|
-
.emoji .ap-fire {
|
|
1464
|
-
background-position: -100px -20px;
|
|
1465
|
-
}
|
|
1466
|
-
.emoji .ap-space_invader {
|
|
1467
|
-
background-position: -100px -40px;
|
|
1468
|
-
}
|
|
1469
|
-
.emoji .ap-alien {
|
|
1470
|
-
background-position: -100px -60px;
|
|
1471
|
-
}
|
|
1472
|
-
.emoji .ap-eyes {
|
|
1473
|
-
background-position: -100px -80px;
|
|
1474
|
-
}
|
|
1475
|
-
.emoji .ap-eye {
|
|
1476
|
-
background-position: -100px -100px;
|
|
1477
|
-
}
|
|
1478
|
-
.emoji .ap-nose {
|
|
1479
|
-
background-position: -100px -120px;
|
|
1480
|
-
}
|
|
1481
|
-
.emoji .ap-ear {
|
|
1482
|
-
background-position: -100px -140px;
|
|
1483
|
-
}
|
|
1484
|
-
.emoji .ap-lips {
|
|
1485
|
-
background-position: -100px -160px;
|
|
1486
|
-
}
|
|
1487
|
-
.emoji .ap-muscle {
|
|
1488
|
-
background-position: -100px -180px;
|
|
1489
|
-
}
|
|
1490
|
-
.emoji .ap-wave {
|
|
1491
|
-
background-position: -100px -200px;
|
|
1492
|
-
}
|
|
1493
|
-
.emoji .ap-clap {
|
|
1494
|
-
background-position: -100px -220px;
|
|
1495
|
-
}
|
|
1496
|
-
.emoji .ap-writing_hand {
|
|
1497
|
-
background-position: -100px -240px;
|
|
1498
|
-
}
|
|
1499
|
-
.emoji .ap-pray {
|
|
1500
|
-
background-position: -100px -260px;
|
|
1501
|
-
}
|
|
1502
|
-
.emoji .ap-fist {
|
|
1503
|
-
background-position: -100px -280px;
|
|
1504
|
-
}
|
|
1505
|
-
.emoji .ap-thumbsup {
|
|
1506
|
-
background-position: -100px -300px;
|
|
1507
|
-
}
|
|
1508
|
-
.emoji .ap-point_down {
|
|
1509
|
-
background-position: -120px 0;
|
|
1510
|
-
}
|
|
1511
|
-
.emoji .ap-point_up_2 {
|
|
1512
|
-
background-position: -120px -20px;
|
|
1513
|
-
}
|
|
1514
|
-
.emoji .ap-middle_finger {
|
|
1515
|
-
background-position: -121px -40px;
|
|
1516
|
-
}
|
|
1517
|
-
.emoji .ap-point_right {
|
|
1518
|
-
background-position: -120px -60px;
|
|
1519
|
-
}
|
|
1520
|
-
.emoji .ap-point_left {
|
|
1521
|
-
background-position: -120px -80px;
|
|
1522
|
-
}
|
|
1523
|
-
.emoji .ap-open_hands {
|
|
1524
|
-
background-position: -120px -100px;
|
|
1525
|
-
}
|
|
1526
|
-
.emoji .ap-ok_hand {
|
|
1527
|
-
background-position: -120px -120px;
|
|
1528
|
-
}
|
|
1529
|
-
.emoji .ap-raised_hand_with_fingers_splayed {
|
|
1530
|
-
background-position: -120px -140px;
|
|
1531
|
-
}
|
|
1532
|
-
.emoji .ap-spock-hand {
|
|
1533
|
-
background-position: -120px -160px;
|
|
1534
|
-
}
|
|
1535
|
-
.emoji .ap-v {
|
|
1536
|
-
background-position: -120px -180px;
|
|
1537
|
-
}
|
|
1538
|
-
.emoji .ap-hand {
|
|
1539
|
-
background-position: -120px -200px;
|
|
1540
|
-
}
|
|
1541
|
-
.emoji .ap-point_up {
|
|
1542
|
-
background-position: -120px -220px;
|
|
1543
|
-
}
|
|
1544
|
-
.emoji .ap-thumbsdown {
|
|
1545
|
-
background-position: -120px -240px;
|
|
1546
|
-
}
|
|
1547
|
-
.emoji .ap-facepunch {
|
|
1548
|
-
background-position: -120px -260px;
|
|
1549
|
-
}
|
|
1550
1004
|
.ql-container.ql-snow {
|
|
1551
1005
|
background-color: var(--fe-editor-bg-color);
|
|
1552
1006
|
}
|
|
@@ -1573,6 +1027,7 @@ html.dark .toolbar-tip__tooltip {
|
|
|
1573
1027
|
.ql-editor ol,
|
|
1574
1028
|
.ql-editor ul {
|
|
1575
1029
|
margin: 0 0 10px;
|
|
1030
|
+
list-style: none;
|
|
1576
1031
|
}
|
|
1577
1032
|
.ql-editor li {
|
|
1578
1033
|
margin: 0 0 5px;
|
|
@@ -1751,19 +1206,6 @@ html.dark .toolbar-tip__tooltip {
|
|
|
1751
1206
|
.ql-editor li.unchecked > .ql-ui {
|
|
1752
1207
|
bottom: initial;
|
|
1753
1208
|
}
|
|
1754
|
-
.ql-editor .ql-image-container {
|
|
1755
|
-
margin-bottom: 10px;
|
|
1756
|
-
}
|
|
1757
|
-
.ql-editor .ql-image-container img {
|
|
1758
|
-
margin-bottom: 0;
|
|
1759
|
-
}
|
|
1760
|
-
.ql-editor .ql-image-container::after {
|
|
1761
|
-
content: "";
|
|
1762
|
-
display: block;
|
|
1763
|
-
height: 0;
|
|
1764
|
-
clear: both;
|
|
1765
|
-
visibility: hidden;
|
|
1766
|
-
}
|
|
1767
1209
|
.ql-editor img {
|
|
1768
1210
|
max-width: 100%;
|
|
1769
1211
|
}
|
|
@@ -1860,349 +1302,6 @@ html.dark .toolbar-tip__tooltip {
|
|
|
1860
1302
|
.ql-container .ql-editor li.unchecked {
|
|
1861
1303
|
color: #252b3a;
|
|
1862
1304
|
}
|
|
1863
|
-
.ap {
|
|
1864
|
-
display: inline-flex;
|
|
1865
|
-
height: 20px;
|
|
1866
|
-
width: 20px;
|
|
1867
|
-
background-size: 140px;
|
|
1868
|
-
background-repeat: no-repeat;
|
|
1869
|
-
text-indent: -999px;
|
|
1870
|
-
box-sizing: border-box;
|
|
1871
|
-
font-size: 20px;
|
|
1872
|
-
line-height: 1;
|
|
1873
|
-
overflow: hidden;
|
|
1874
|
-
margin: -3px 5px 5px;
|
|
1875
|
-
}
|
|
1876
|
-
.ap-kissing_closed_eyes {
|
|
1877
|
-
background-position: 0 0;
|
|
1878
|
-
}
|
|
1879
|
-
.ap-stuck_out_tongue {
|
|
1880
|
-
background-position: 0 -20px;
|
|
1881
|
-
}
|
|
1882
|
-
.ap-stuck_out_tongue_winking_eye {
|
|
1883
|
-
background-position: 0 -40px;
|
|
1884
|
-
}
|
|
1885
|
-
.ap-stuck_out_tongue_closed_eyes {
|
|
1886
|
-
background-position: 0 -60px;
|
|
1887
|
-
}
|
|
1888
|
-
.ap-disappointed {
|
|
1889
|
-
background-position: 0 -80px;
|
|
1890
|
-
}
|
|
1891
|
-
.ap-worried {
|
|
1892
|
-
background-position: 0 -100px;
|
|
1893
|
-
}
|
|
1894
|
-
.ap-angry {
|
|
1895
|
-
background-position: 0 -120px;
|
|
1896
|
-
}
|
|
1897
|
-
.ap-rage {
|
|
1898
|
-
background-position: 0 -140px;
|
|
1899
|
-
}
|
|
1900
|
-
.ap-cry {
|
|
1901
|
-
background-position: 0 -160px;
|
|
1902
|
-
}
|
|
1903
|
-
.ap-persevere {
|
|
1904
|
-
background-position: 0 -180px;
|
|
1905
|
-
}
|
|
1906
|
-
.ap-triumph {
|
|
1907
|
-
background-position: 0 -200px;
|
|
1908
|
-
}
|
|
1909
|
-
.ap-disappointed_relieved {
|
|
1910
|
-
background-position: 0 -220px;
|
|
1911
|
-
}
|
|
1912
|
-
.ap-frowning {
|
|
1913
|
-
background-position: 0 -240px;
|
|
1914
|
-
}
|
|
1915
|
-
.ap-anguished {
|
|
1916
|
-
background-position: 0 -260px;
|
|
1917
|
-
}
|
|
1918
|
-
.ap-fearful {
|
|
1919
|
-
background-position: 0 -280px;
|
|
1920
|
-
}
|
|
1921
|
-
.ap-weary {
|
|
1922
|
-
background-position: 0 -300px;
|
|
1923
|
-
}
|
|
1924
|
-
.ap-sleepy {
|
|
1925
|
-
background-position: -20px 0;
|
|
1926
|
-
}
|
|
1927
|
-
.ap-tired_face {
|
|
1928
|
-
background-position: -20px -20px;
|
|
1929
|
-
}
|
|
1930
|
-
.ap-grimacing {
|
|
1931
|
-
background-position: -20px -40px;
|
|
1932
|
-
}
|
|
1933
|
-
.ap-sob {
|
|
1934
|
-
background-position: -20px -60px;
|
|
1935
|
-
}
|
|
1936
|
-
.ap-open_mouth {
|
|
1937
|
-
background-position: -20px -80px;
|
|
1938
|
-
}
|
|
1939
|
-
.ap-hushed {
|
|
1940
|
-
background-position: -20px -100px;
|
|
1941
|
-
}
|
|
1942
|
-
.ap-cold_sweat {
|
|
1943
|
-
background-position: -20px -120px;
|
|
1944
|
-
}
|
|
1945
|
-
.ap-scream {
|
|
1946
|
-
background-position: -20px -140px;
|
|
1947
|
-
}
|
|
1948
|
-
.ap-astonished {
|
|
1949
|
-
background-position: -20px -160px;
|
|
1950
|
-
}
|
|
1951
|
-
.ap-flushed {
|
|
1952
|
-
background-position: -20px -180px;
|
|
1953
|
-
}
|
|
1954
|
-
.ap-sleeping {
|
|
1955
|
-
background-position: -20px -200px;
|
|
1956
|
-
}
|
|
1957
|
-
.ap-dizzy_face {
|
|
1958
|
-
background-position: -20px -220px;
|
|
1959
|
-
}
|
|
1960
|
-
.ap-no_mouth {
|
|
1961
|
-
background-position: -20px -240px;
|
|
1962
|
-
}
|
|
1963
|
-
.ap-mask {
|
|
1964
|
-
background-position: -20px -260px;
|
|
1965
|
-
}
|
|
1966
|
-
.ap-grinning {
|
|
1967
|
-
background-position: -20px -280px;
|
|
1968
|
-
}
|
|
1969
|
-
.ap-grin {
|
|
1970
|
-
background-position: -20px -300px;
|
|
1971
|
-
}
|
|
1972
|
-
.ap-joy {
|
|
1973
|
-
background-position: -40px 0;
|
|
1974
|
-
}
|
|
1975
|
-
.ap-smiley {
|
|
1976
|
-
background-position: -40px -20px;
|
|
1977
|
-
}
|
|
1978
|
-
.ap-smile {
|
|
1979
|
-
background-position: -40px -40px;
|
|
1980
|
-
}
|
|
1981
|
-
.ap-sweat_smile {
|
|
1982
|
-
background-position: -40px -60px;
|
|
1983
|
-
}
|
|
1984
|
-
.ap-laughing {
|
|
1985
|
-
background-position: -40px -80px;
|
|
1986
|
-
}
|
|
1987
|
-
.ap-innocent {
|
|
1988
|
-
background-position: -40px -100px;
|
|
1989
|
-
}
|
|
1990
|
-
.ap-smiling_imp {
|
|
1991
|
-
background-position: -40px -120px;
|
|
1992
|
-
}
|
|
1993
|
-
.ap-wink {
|
|
1994
|
-
background-position: -40px -140px;
|
|
1995
|
-
}
|
|
1996
|
-
.ap-blush {
|
|
1997
|
-
background-position: -40px -160px;
|
|
1998
|
-
}
|
|
1999
|
-
.ap-yum {
|
|
2000
|
-
background-position: -40px -180px;
|
|
2001
|
-
}
|
|
2002
|
-
.ap-relieved {
|
|
2003
|
-
background-position: -40px -200px;
|
|
2004
|
-
}
|
|
2005
|
-
.ap-heart_eyes {
|
|
2006
|
-
background-position: -40px -220px;
|
|
2007
|
-
}
|
|
2008
|
-
.ap-sunglasses {
|
|
2009
|
-
background-position: -40px -240px;
|
|
2010
|
-
}
|
|
2011
|
-
.ap-smirk {
|
|
2012
|
-
background-position: -40px -260px;
|
|
2013
|
-
}
|
|
2014
|
-
.ap-neutral_face {
|
|
2015
|
-
background-position: -40px -280px;
|
|
2016
|
-
}
|
|
2017
|
-
.ap-expressionless {
|
|
2018
|
-
background-position: -40px -300px;
|
|
2019
|
-
}
|
|
2020
|
-
.ap-unamused {
|
|
2021
|
-
background-position: -60px 0;
|
|
2022
|
-
}
|
|
2023
|
-
.ap-sweat {
|
|
2024
|
-
background-position: -60px -20px;
|
|
2025
|
-
}
|
|
2026
|
-
.ap-pensive {
|
|
2027
|
-
background-position: -60px -40px;
|
|
2028
|
-
}
|
|
2029
|
-
.ap-confused {
|
|
2030
|
-
background-position: -60px -60px;
|
|
2031
|
-
}
|
|
2032
|
-
.ap-confounded {
|
|
2033
|
-
background-position: -60px -80px;
|
|
2034
|
-
}
|
|
2035
|
-
.ap-kissing {
|
|
2036
|
-
background-position: -60px -100px;
|
|
2037
|
-
}
|
|
2038
|
-
.ap-kissing_heart {
|
|
2039
|
-
background-position: -60px -120px;
|
|
2040
|
-
}
|
|
2041
|
-
.ap-kissing_smiling_eyes {
|
|
2042
|
-
background-position: -60px -140px;
|
|
2043
|
-
}
|
|
2044
|
-
.ap-slightly_smiling_face {
|
|
2045
|
-
background-position: -60px -160px;
|
|
2046
|
-
}
|
|
2047
|
-
.ap-slightly_frowning_face {
|
|
2048
|
-
background-position: -60px -180px;
|
|
2049
|
-
}
|
|
2050
|
-
.ap-hugging_face {
|
|
2051
|
-
background-position: -60px -200px;
|
|
2052
|
-
}
|
|
2053
|
-
.ap-face_with_head_bandage {
|
|
2054
|
-
background-position: -60px -220px;
|
|
2055
|
-
}
|
|
2056
|
-
.ap-thinking_face {
|
|
2057
|
-
background-position: -60px -240px;
|
|
2058
|
-
}
|
|
2059
|
-
.ap-nerd_face {
|
|
2060
|
-
background-position: -60px -260px;
|
|
2061
|
-
}
|
|
2062
|
-
.ap-face_with_thermometer {
|
|
2063
|
-
background-position: -60px -280px;
|
|
2064
|
-
}
|
|
2065
|
-
.ap-money_mouth_face {
|
|
2066
|
-
background-position: -60px -300px;
|
|
2067
|
-
}
|
|
2068
|
-
.ap-zipper_mouth_face {
|
|
2069
|
-
background-position: -80px 0;
|
|
2070
|
-
}
|
|
2071
|
-
.ap-relaxed {
|
|
2072
|
-
background-position: -80px -20px;
|
|
2073
|
-
}
|
|
2074
|
-
.ap-white_frowning_face {
|
|
2075
|
-
background-position: -80px -40px;
|
|
2076
|
-
}
|
|
2077
|
-
.ap-scream_cat {
|
|
2078
|
-
background-position: -80px -60px;
|
|
2079
|
-
}
|
|
2080
|
-
.ap-crying_cat_face {
|
|
2081
|
-
background-position: -80px -80px;
|
|
2082
|
-
}
|
|
2083
|
-
.ap-pouting_cat {
|
|
2084
|
-
background-position: -80px -100px;
|
|
2085
|
-
}
|
|
2086
|
-
.ap-kissing_cat {
|
|
2087
|
-
background-position: -80px -120px;
|
|
2088
|
-
}
|
|
2089
|
-
.ap-smirk_cat {
|
|
2090
|
-
background-position: -80px -140px;
|
|
2091
|
-
}
|
|
2092
|
-
.ap-heart_eyes_cat {
|
|
2093
|
-
background-position: -80px -160px;
|
|
2094
|
-
}
|
|
2095
|
-
.ap-smiley_cat {
|
|
2096
|
-
background-position: -80px -180px;
|
|
2097
|
-
}
|
|
2098
|
-
.ap-joy_cat {
|
|
2099
|
-
background-position: -80px -200px;
|
|
2100
|
-
}
|
|
2101
|
-
.ap-smile_cat {
|
|
2102
|
-
background-position: -80px -220px;
|
|
2103
|
-
}
|
|
2104
|
-
.ap-robot_face {
|
|
2105
|
-
background-position: -80px -240px;
|
|
2106
|
-
}
|
|
2107
|
-
.ap-imp {
|
|
2108
|
-
background-position: -80px -260px;
|
|
2109
|
-
}
|
|
2110
|
-
.ap-skull {
|
|
2111
|
-
background-position: -80px -280px;
|
|
2112
|
-
}
|
|
2113
|
-
.ap-ghost {
|
|
2114
|
-
background-position: -80px -300px;
|
|
2115
|
-
}
|
|
2116
|
-
.ap-hankey {
|
|
2117
|
-
background-position: -100px 0;
|
|
2118
|
-
}
|
|
2119
|
-
.ap-fire {
|
|
2120
|
-
background-position: -100px -20px;
|
|
2121
|
-
}
|
|
2122
|
-
.ap-space_invader {
|
|
2123
|
-
background-position: -100px -40px;
|
|
2124
|
-
}
|
|
2125
|
-
.ap-alien {
|
|
2126
|
-
background-position: -100px -60px;
|
|
2127
|
-
}
|
|
2128
|
-
.ap-eyes {
|
|
2129
|
-
background-position: -100px -80px;
|
|
2130
|
-
}
|
|
2131
|
-
.ap-eye {
|
|
2132
|
-
background-position: -100px -100px;
|
|
2133
|
-
}
|
|
2134
|
-
.ap-nose {
|
|
2135
|
-
background-position: -100px -120px;
|
|
2136
|
-
}
|
|
2137
|
-
.ap-ear {
|
|
2138
|
-
background-position: -100px -140px;
|
|
2139
|
-
}
|
|
2140
|
-
.ap-lips {
|
|
2141
|
-
background-position: -100px -160px;
|
|
2142
|
-
}
|
|
2143
|
-
.ap-muscle {
|
|
2144
|
-
background-position: -100px -180px;
|
|
2145
|
-
}
|
|
2146
|
-
.ap-wave {
|
|
2147
|
-
background-position: -100px -200px;
|
|
2148
|
-
}
|
|
2149
|
-
.ap-clap {
|
|
2150
|
-
background-position: -100px -220px;
|
|
2151
|
-
}
|
|
2152
|
-
.ap-writing_hand {
|
|
2153
|
-
background-position: -100px -240px;
|
|
2154
|
-
}
|
|
2155
|
-
.ap-pray {
|
|
2156
|
-
background-position: -100px -260px;
|
|
2157
|
-
}
|
|
2158
|
-
.ap-fist {
|
|
2159
|
-
background-position: -100px -280px;
|
|
2160
|
-
}
|
|
2161
|
-
.ap-thumbsup {
|
|
2162
|
-
background-position: -100px -300px;
|
|
2163
|
-
}
|
|
2164
|
-
.ap-point_down {
|
|
2165
|
-
background-position: -120px 0;
|
|
2166
|
-
}
|
|
2167
|
-
.ap-point_up_2 {
|
|
2168
|
-
background-position: -120px -20px;
|
|
2169
|
-
}
|
|
2170
|
-
.ap-middle_finger {
|
|
2171
|
-
background-position: -121px -40px;
|
|
2172
|
-
}
|
|
2173
|
-
.ap-point_right {
|
|
2174
|
-
background-position: -120px -60px;
|
|
2175
|
-
}
|
|
2176
|
-
.ap-point_left {
|
|
2177
|
-
background-position: -120px -80px;
|
|
2178
|
-
}
|
|
2179
|
-
.ap-open_hands {
|
|
2180
|
-
background-position: -120px -100px;
|
|
2181
|
-
}
|
|
2182
|
-
.ap-ok_hand {
|
|
2183
|
-
background-position: -120px -120px;
|
|
2184
|
-
}
|
|
2185
|
-
.ap-raised_hand_with_fingers_splayed {
|
|
2186
|
-
background-position: -120px -140px;
|
|
2187
|
-
}
|
|
2188
|
-
.ap-spock-hand {
|
|
2189
|
-
background-position: -120px -160px;
|
|
2190
|
-
}
|
|
2191
|
-
.ap-v {
|
|
2192
|
-
background-position: -120px -180px;
|
|
2193
|
-
}
|
|
2194
|
-
.ap-hand {
|
|
2195
|
-
background-position: -120px -200px;
|
|
2196
|
-
}
|
|
2197
|
-
.ap-point_up {
|
|
2198
|
-
background-position: -120px -220px;
|
|
2199
|
-
}
|
|
2200
|
-
.ap-thumbsdown {
|
|
2201
|
-
background-position: -120px -240px;
|
|
2202
|
-
}
|
|
2203
|
-
.ap-facepunch {
|
|
2204
|
-
background-position: -120px -260px;
|
|
2205
|
-
}
|
|
2206
1305
|
li.checked::before,
|
|
2207
1306
|
li.unchecked::before {
|
|
2208
1307
|
display: inline-block;
|
|
@@ -2255,13 +1354,10 @@ li.unchecked > .ql-ui {
|
|
|
2255
1354
|
transform: translateY(10px);
|
|
2256
1355
|
align-items: center;
|
|
2257
1356
|
background-color: #fff;
|
|
2258
|
-
background-color: var(--devui-base-bg, #fff);
|
|
2259
1357
|
border: 1px solid #adb0b8;
|
|
2260
|
-
border: 1px solid var(--devui-line, #adb0b8);
|
|
2261
1358
|
box-shadow: 0 0 5px rgba(37, 43, 58, 0.2);
|
|
2262
|
-
box-shadow: 0 0 5px var(--devui-light-shadow, rgba(37, 43, 58, 0.2));
|
|
2263
1359
|
color: #252b3a;
|
|
2264
|
-
color:
|
|
1360
|
+
color: #252b3a;
|
|
2265
1361
|
display: flex;
|
|
2266
1362
|
padding: 4px;
|
|
2267
1363
|
white-space: nowrap;
|
|
@@ -2284,7 +1380,6 @@ li.unchecked > .ql-ui {
|
|
|
2284
1380
|
margin: 4px 8px;
|
|
2285
1381
|
vertical-align: bottom;
|
|
2286
1382
|
border-left: 1px solid #adb0b8;
|
|
2287
|
-
border-left: 1px solid var(--devui-line, #adb0b8);
|
|
2288
1383
|
}
|
|
2289
1384
|
.ql-file-bar .ql-file-download {
|
|
2290
1385
|
line-height: 28px;
|
|
@@ -2294,7 +1389,6 @@ li.unchecked > .ql-ui {
|
|
|
2294
1389
|
display: inline-block;
|
|
2295
1390
|
text-align: center;
|
|
2296
1391
|
color: #babbc0;
|
|
2297
|
-
color: var(--devui-placeholder, #babbc0);
|
|
2298
1392
|
border-radius: 2px 2px;
|
|
2299
1393
|
text-decoration: none;
|
|
2300
1394
|
-webkit-transition: background-color 0.3s ease-in-out;
|
|
@@ -2306,12 +1400,10 @@ li.unchecked > .ql-ui {
|
|
|
2306
1400
|
display: block;
|
|
2307
1401
|
font-size: 16px;
|
|
2308
1402
|
color: #252b3a;
|
|
2309
|
-
color: var(--devui-text, #252b3a);
|
|
2310
1403
|
line-height: 28px;
|
|
2311
1404
|
}
|
|
2312
1405
|
.ql-file-bar .ql-file-download:hover {
|
|
2313
1406
|
background-color: #aaaaaf;
|
|
2314
|
-
background-color: var(--devui-list-item-active-bg, #aaaaaf);
|
|
2315
1407
|
}
|
|
2316
1408
|
.ql-file-bar .ql-file-download .icon-download {
|
|
2317
1409
|
font-family: "iconfont" !important;
|
|
@@ -2331,7 +1423,6 @@ li.unchecked > .ql-ui {
|
|
|
2331
1423
|
display: inline-block;
|
|
2332
1424
|
text-align: center;
|
|
2333
1425
|
color: #babbc0;
|
|
2334
|
-
color: var(--devui-placeholder, #babbc0);
|
|
2335
1426
|
border-radius: 2px 2px;
|
|
2336
1427
|
text-decoration: none;
|
|
2337
1428
|
-webkit-transition: background-color 0.3s ease-in-out;
|
|
@@ -2343,12 +1434,10 @@ li.unchecked > .ql-ui {
|
|
|
2343
1434
|
display: block;
|
|
2344
1435
|
font-size: 16px;
|
|
2345
1436
|
color: #252b3a;
|
|
2346
|
-
color: var(--devui-text, #252b3a);
|
|
2347
1437
|
line-height: 28px;
|
|
2348
1438
|
}
|
|
2349
1439
|
.ql-file-bar .ql-file-delete:hover {
|
|
2350
1440
|
background-color: #aaaaaf;
|
|
2351
|
-
background-color: var(--devui-list-item-active-bg, #aaaaaf);
|
|
2352
1441
|
}
|
|
2353
1442
|
.ql-file-bar .ql-file-delete .icon-delete {
|
|
2354
1443
|
font-family: "iconfont" !important;
|
|
@@ -2366,13 +1455,9 @@ li.unchecked > .ql-ui {
|
|
|
2366
1455
|
transition: width 0.5s ease-in-out; /* 动画持续0.5秒,平滑过渡宽度变化 */
|
|
2367
1456
|
align-items: center;
|
|
2368
1457
|
background-color: #fff;
|
|
2369
|
-
background-color: var(--devui-base-bg, #fff);
|
|
2370
1458
|
border: 1px solid #adb0b8;
|
|
2371
|
-
border: 1px solid var(--devui-line, #adb0b8);
|
|
2372
1459
|
box-shadow: 0 0 5px rgba(37, 43, 58, 0.2);
|
|
2373
|
-
box-shadow: 0 0 5px var(--devui-light-shadow, rgba(37, 43, 58, 0.2));
|
|
2374
1460
|
color: #252b3a;
|
|
2375
|
-
color: var(--devui-text, #252b3a);
|
|
2376
1461
|
display: flex;
|
|
2377
1462
|
padding: 4px;
|
|
2378
1463
|
white-space: nowrap;
|
|
@@ -2384,7 +1469,6 @@ li.unchecked > .ql-ui {
|
|
|
2384
1469
|
margin: 4px 8px;
|
|
2385
1470
|
vertical-align: bottom;
|
|
2386
1471
|
border-left: 1px solid #adb0b8;
|
|
2387
|
-
border-left: 1px solid var(--devui-line, #adb0b8);
|
|
2388
1472
|
}
|
|
2389
1473
|
.ql-image-bar .ql-image-preview {
|
|
2390
1474
|
line-height: 28px;
|
|
@@ -2394,7 +1478,6 @@ li.unchecked > .ql-ui {
|
|
|
2394
1478
|
display: inline-block;
|
|
2395
1479
|
text-align: center;
|
|
2396
1480
|
color: #babbc0;
|
|
2397
|
-
color: var(--devui-placeholder, #babbc0);
|
|
2398
1481
|
border-radius: 2px 2px;
|
|
2399
1482
|
text-decoration: none;
|
|
2400
1483
|
-webkit-transition: background-color 0.3s ease-in-out;
|
|
@@ -2406,7 +1489,6 @@ li.unchecked > .ql-ui {
|
|
|
2406
1489
|
display: block;
|
|
2407
1490
|
font-size: 16px;
|
|
2408
1491
|
color: #252b3a;
|
|
2409
|
-
color: var(--devui-text, #252b3a);
|
|
2410
1492
|
line-height: 28px;
|
|
2411
1493
|
}
|
|
2412
1494
|
.ql-image-bar .ql-image-preview svg {
|
|
@@ -2417,7 +1499,6 @@ li.unchecked > .ql-ui {
|
|
|
2417
1499
|
}
|
|
2418
1500
|
.ql-image-bar .ql-image-preview:hover {
|
|
2419
1501
|
background-color: #aaaaaf;
|
|
2420
|
-
background-color: var(--devui-list-item-active-bg, #aaaaaf);
|
|
2421
1502
|
}
|
|
2422
1503
|
.ql-image-bar .ql-image-preview .icon-preview {
|
|
2423
1504
|
font-family: "iconfont" !important;
|
|
@@ -2437,7 +1518,6 @@ li.unchecked > .ql-ui {
|
|
|
2437
1518
|
display: inline-block;
|
|
2438
1519
|
text-align: center;
|
|
2439
1520
|
color: #babbc0;
|
|
2440
|
-
color: var(--devui-placeholder, #babbc0);
|
|
2441
1521
|
border-radius: 2px 2px;
|
|
2442
1522
|
text-decoration: none;
|
|
2443
1523
|
-webkit-transition: background-color 0.3s ease-in-out;
|
|
@@ -2449,7 +1529,6 @@ li.unchecked > .ql-ui {
|
|
|
2449
1529
|
display: block;
|
|
2450
1530
|
font-size: 16px;
|
|
2451
1531
|
color: #252b3a;
|
|
2452
|
-
color: var(--devui-text, #252b3a);
|
|
2453
1532
|
line-height: 28px;
|
|
2454
1533
|
}
|
|
2455
1534
|
.ql-image-bar .ql-image-download svg {
|
|
@@ -2460,7 +1539,6 @@ li.unchecked > .ql-ui {
|
|
|
2460
1539
|
}
|
|
2461
1540
|
.ql-image-bar .ql-image-download:hover {
|
|
2462
1541
|
background-color: #aaaaaf;
|
|
2463
|
-
background-color: var(--devui-list-item-active-bg, #aaaaaf);
|
|
2464
1542
|
}
|
|
2465
1543
|
.ql-image-bar .ql-image-download .icon-download {
|
|
2466
1544
|
font-family: "iconfont" !important;
|
|
@@ -2480,7 +1558,6 @@ li.unchecked > .ql-ui {
|
|
|
2480
1558
|
display: inline-block;
|
|
2481
1559
|
text-align: center;
|
|
2482
1560
|
color: #babbc0;
|
|
2483
|
-
color: var(--devui-placeholder, #babbc0);
|
|
2484
1561
|
border-radius: 2px 2px;
|
|
2485
1562
|
text-decoration: none;
|
|
2486
1563
|
-webkit-transition: background-color 0.3s ease-in-out;
|
|
@@ -2492,7 +1569,6 @@ li.unchecked > .ql-ui {
|
|
|
2492
1569
|
display: block;
|
|
2493
1570
|
font-size: 16px;
|
|
2494
1571
|
color: #252b3a;
|
|
2495
|
-
color: var(--devui-text, #252b3a);
|
|
2496
1572
|
line-height: 28px;
|
|
2497
1573
|
}
|
|
2498
1574
|
.ql-image-bar .ql-image-copy svg {
|
|
@@ -2503,7 +1579,6 @@ li.unchecked > .ql-ui {
|
|
|
2503
1579
|
}
|
|
2504
1580
|
.ql-image-bar .ql-image-copy:hover {
|
|
2505
1581
|
background-color: #aaaaaf;
|
|
2506
|
-
background-color: var(--devui-list-item-active-bg, #aaaaaf);
|
|
2507
1582
|
}
|
|
2508
1583
|
.ql-image-bar .ql-image-delete {
|
|
2509
1584
|
line-height: 28px;
|
|
@@ -2513,7 +1588,6 @@ li.unchecked > .ql-ui {
|
|
|
2513
1588
|
display: inline-block;
|
|
2514
1589
|
text-align: center;
|
|
2515
1590
|
color: #babbc0;
|
|
2516
|
-
color: var(--devui-placeholder, #babbc0);
|
|
2517
1591
|
border-radius: 2px 2px;
|
|
2518
1592
|
text-decoration: none;
|
|
2519
1593
|
-webkit-transition: background-color 0.3s ease-in-out;
|
|
@@ -2525,7 +1599,6 @@ li.unchecked > .ql-ui {
|
|
|
2525
1599
|
display: block;
|
|
2526
1600
|
font-size: 16px;
|
|
2527
1601
|
color: #252b3a;
|
|
2528
|
-
color: var(--devui-text, #252b3a);
|
|
2529
1602
|
line-height: 28px;
|
|
2530
1603
|
}
|
|
2531
1604
|
.ql-image-bar .ql-image-delete svg {
|
|
@@ -2536,7 +1609,6 @@ li.unchecked > .ql-ui {
|
|
|
2536
1609
|
}
|
|
2537
1610
|
.ql-image-bar .ql-image-delete:hover {
|
|
2538
1611
|
background-color: #aaaaaf;
|
|
2539
|
-
background-color: var(--devui-list-item-active-bg, #aaaaaf);
|
|
2540
1612
|
}
|
|
2541
1613
|
.ql-image-bar .ql-image-delete .icon-delete {
|
|
2542
1614
|
font-family: "iconfont" !important;
|
|
@@ -2552,13 +1624,9 @@ li.unchecked > .ql-ui {
|
|
|
2552
1624
|
position: absolute;
|
|
2553
1625
|
transform: translateY(10px);
|
|
2554
1626
|
background-color: #fff;
|
|
2555
|
-
background-color: var(--devui-connected-overlay-bg, #fff);
|
|
2556
1627
|
border: 1px solid #adb0b8;
|
|
2557
|
-
border: 1px solid var(--devui-line, #adb0b8);
|
|
2558
1628
|
box-shadow: 0 2px 8px 0 rgba(37, 43, 58, 0.2);
|
|
2559
|
-
box-shadow: var(--devui-shadow-connected-overlay, 0 2px 8px 0) var(--devui-light-shadow, rgba(37, 43, 58, 0.2));
|
|
2560
1629
|
color: #252b3a;
|
|
2561
|
-
color: var(--devui-text, #252b3a);
|
|
2562
1630
|
padding: 5px 3px;
|
|
2563
1631
|
white-space: nowrap;
|
|
2564
1632
|
}
|
|
@@ -2589,7 +1657,6 @@ li.unchecked > .ql-ui {
|
|
|
2589
1657
|
padding: 0 6px;
|
|
2590
1658
|
width: 200px;
|
|
2591
1659
|
background-color: #fff;
|
|
2592
|
-
background-color: var(--devui-base-bg, #fff);
|
|
2593
1660
|
}
|
|
2594
1661
|
#editor .ql-tooltip .ql-split {
|
|
2595
1662
|
width: 1px;
|
|
@@ -2597,7 +1664,6 @@ li.unchecked > .ql-ui {
|
|
|
2597
1664
|
line-height: 16px;
|
|
2598
1665
|
margin: 6px 4px;
|
|
2599
1666
|
border-left: 1px solid #adb0b8;
|
|
2600
|
-
border-left: 1px solid var(--devui-line, #adb0b8);
|
|
2601
1667
|
display: inline-block;
|
|
2602
1668
|
vertical-align: bottom;
|
|
2603
1669
|
}
|
|
@@ -2605,7 +1671,6 @@ li.unchecked > .ql-ui {
|
|
|
2605
1671
|
display: block;
|
|
2606
1672
|
font-size: 16px;
|
|
2607
1673
|
color: #252b3a;
|
|
2608
|
-
color: var(--devui-text, #252b3a);
|
|
2609
1674
|
line-height: 28px;
|
|
2610
1675
|
font-family: "iconfont" !important;
|
|
2611
1676
|
font-size: 16px;
|
|
@@ -2620,7 +1685,6 @@ li.unchecked > .ql-ui {
|
|
|
2620
1685
|
display: block;
|
|
2621
1686
|
font-size: 16px;
|
|
2622
1687
|
color: #252b3a;
|
|
2623
|
-
color: var(--devui-text, #252b3a);
|
|
2624
1688
|
line-height: 28px;
|
|
2625
1689
|
font-family: "iconfont" !important;
|
|
2626
1690
|
font-size: 16px;
|
|
@@ -2639,7 +1703,6 @@ li.unchecked > .ql-ui {
|
|
|
2639
1703
|
display: inline-block;
|
|
2640
1704
|
text-align: center;
|
|
2641
1705
|
color: #babbc0;
|
|
2642
|
-
color: var(--devui-placeholder, #babbc0);
|
|
2643
1706
|
border-radius: 2px 2px;
|
|
2644
1707
|
text-decoration: none;
|
|
2645
1708
|
-webkit-transition: background-color 0.3s ease-in-out;
|
|
@@ -2651,7 +1714,6 @@ li.unchecked > .ql-ui {
|
|
|
2651
1714
|
display: block;
|
|
2652
1715
|
font-size: 16px;
|
|
2653
1716
|
color: #babbc0;
|
|
2654
|
-
color: var(--devui-aide-text, #babbc0);
|
|
2655
1717
|
line-height: 28px;
|
|
2656
1718
|
}
|
|
2657
1719
|
#editor .ql-tooltip a:hover {
|
|
@@ -2798,9 +1860,6 @@ li.unchecked > .ql-ui {
|
|
|
2798
1860
|
.ql-tooltip.math-field-tooltip .ql-math-field::part(container) {
|
|
2799
1861
|
font-size: 24px;
|
|
2800
1862
|
}
|
|
2801
|
-
.table-up-creator__checkbox input:checked ~ .table-up-creator__mark:after {
|
|
2802
|
-
border-width: 0;
|
|
2803
|
-
}
|
|
2804
1863
|
.ql-counter {
|
|
2805
1864
|
width: 100%;
|
|
2806
1865
|
bottom: 0;
|
|
@@ -3121,9 +2180,6 @@ li.unchecked > .ql-ui {
|
|
|
3121
2180
|
.ql-toolbar .ql-picker.ql-header .ql-picker-options {
|
|
3122
2181
|
color: #8a8e99;
|
|
3123
2182
|
}
|
|
3124
|
-
.ql-toolbar input.ql-file[type=file] {
|
|
3125
|
-
display: none;
|
|
3126
|
-
}
|
|
3127
2183
|
.ql-formats.ql-color-container, .ql-formats.ql-bg-color-container, .ql-formats.ql-font-family-container {
|
|
3128
2184
|
margin-right: 0;
|
|
3129
2185
|
}
|