@syncfusion/ej2-richtexteditor 24.1.41-569421 → 24.1.41-581025
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/CHANGELOG.md +0 -176
- package/dist/ej2-richtexteditor.umd.min.js +1 -1
- package/dist/ej2-richtexteditor.umd.min.js.map +1 -1
- package/dist/es6/ej2-richtexteditor.es2015.js +7822 -9502
- package/dist/es6/ej2-richtexteditor.es2015.js.map +1 -1
- package/dist/es6/ej2-richtexteditor.es5.js +5674 -7355
- package/dist/es6/ej2-richtexteditor.es5.js.map +1 -1
- package/package.json +12 -12
- package/src/common/config.d.ts +0 -7
- package/src/common/config.js +0 -11
- package/src/common/constant.d.ts +0 -6
- package/src/common/constant.js +0 -6
- package/src/common/interface.d.ts +0 -12
- package/src/common/types.d.ts +0 -6
- package/src/common/util.d.ts +0 -6
- package/src/common/util.js +20 -61
- package/src/editor-manager/base/constant.d.ts +0 -6
- package/src/editor-manager/base/constant.js +0 -6
- package/src/editor-manager/base/editor-manager.d.ts +0 -5
- package/src/editor-manager/base/editor-manager.js +0 -59
- package/src/editor-manager/base/interface.d.ts +0 -8
- package/src/editor-manager/plugin/dom-node.d.ts +1 -5
- package/src/editor-manager/plugin/dom-node.js +15 -169
- package/src/editor-manager/plugin/format-painter-actions.d.ts +0 -1
- package/src/editor-manager/plugin/format-painter-actions.js +1 -19
- package/src/editor-manager/plugin/formats.d.ts +0 -1
- package/src/editor-manager/plugin/formats.js +3 -38
- package/src/editor-manager/plugin/image.js +16 -12
- package/src/editor-manager/plugin/indents.js +1 -1
- package/src/editor-manager/plugin/inserthtml.d.ts +0 -1
- package/src/editor-manager/plugin/inserthtml.js +18 -78
- package/src/editor-manager/plugin/link.js +3 -8
- package/src/editor-manager/plugin/lists.js +70 -159
- package/src/editor-manager/plugin/ms-word-clean-up.d.ts +0 -3
- package/src/editor-manager/plugin/ms-word-clean-up.js +85 -212
- package/src/editor-manager/plugin/nodecutter.js +2 -5
- package/src/editor-manager/plugin/selection-commands.d.ts +0 -2
- package/src/editor-manager/plugin/selection-commands.js +4 -209
- package/src/editor-manager/plugin/table.d.ts +1 -4
- package/src/editor-manager/plugin/table.js +49 -95
- package/src/editor-manager/plugin/toolbar-status.d.ts +2 -2
- package/src/editor-manager/plugin/toolbar-status.js +10 -20
- package/src/editor-manager/plugin/undo.d.ts +0 -1
- package/src/editor-manager/plugin/undo.js +1 -21
- package/src/rich-text-editor/actions/base-quick-toolbar.d.ts +3 -4
- package/src/rich-text-editor/actions/base-quick-toolbar.js +10 -43
- package/src/rich-text-editor/actions/base-toolbar.js +34 -33
- package/src/rich-text-editor/actions/color-picker.d.ts +0 -1
- package/src/rich-text-editor/actions/color-picker.js +0 -10
- package/src/rich-text-editor/actions/count.js +1 -1
- package/src/rich-text-editor/actions/dropdown-buttons.d.ts +0 -1
- package/src/rich-text-editor/actions/dropdown-buttons.js +4 -8
- package/src/rich-text-editor/actions/emoji-picker.js +4 -4
- package/src/rich-text-editor/actions/enter-key.js +4 -8
- package/src/rich-text-editor/actions/format-painter.js +1 -4
- package/src/rich-text-editor/actions/full-screen.js +2 -3
- package/src/rich-text-editor/actions/html-editor.d.ts +2 -2
- package/src/rich-text-editor/actions/html-editor.js +42 -123
- package/src/rich-text-editor/actions/keyboard.js +1 -3
- package/src/rich-text-editor/actions/markdown-editor.js +1 -3
- package/src/rich-text-editor/actions/paste-clean-up.d.ts +0 -3
- package/src/rich-text-editor/actions/paste-clean-up.js +14 -85
- package/src/rich-text-editor/actions/quick-toolbar.d.ts +0 -8
- package/src/rich-text-editor/actions/quick-toolbar.js +9 -37
- package/src/rich-text-editor/actions/resize.js +1 -2
- package/src/rich-text-editor/actions/toolbar-action.js +1 -1
- package/src/rich-text-editor/actions/toolbar.d.ts +3 -2
- package/src/rich-text-editor/actions/toolbar.js +87 -18
- package/src/rich-text-editor/base/classes.d.ts +5 -0
- package/src/rich-text-editor/base/classes.js +5 -0
- package/src/rich-text-editor/base/constant.d.ts +0 -40
- package/src/rich-text-editor/base/constant.js +0 -209
- package/src/rich-text-editor/base/interface.d.ts +3 -37
- package/src/rich-text-editor/base/rich-text-editor-model.d.ts +3 -3
- package/src/rich-text-editor/base/rich-text-editor.d.ts +4 -7
- package/src/rich-text-editor/base/rich-text-editor.js +132 -156
- package/src/rich-text-editor/base/util.js +2 -11
- package/src/rich-text-editor/formatter/formatter.js +4 -16
- package/src/rich-text-editor/models/default-locale.js +26 -30
- package/src/rich-text-editor/models/items.js +2 -2
- package/src/rich-text-editor/models/toolbar-settings-model.d.ts +1 -1
- package/src/rich-text-editor/models/toolbar-settings.d.ts +1 -1
- package/src/rich-text-editor/models/toolbar-settings.js +1 -1
- package/src/rich-text-editor/renderer/audio-module.d.ts +0 -1
- package/src/rich-text-editor/renderer/audio-module.js +4 -22
- package/src/rich-text-editor/renderer/dialog-renderer.d.ts +0 -2
- package/src/rich-text-editor/renderer/dialog-renderer.js +1 -12
- package/src/rich-text-editor/renderer/iframe-content-renderer.js +1 -2
- package/src/rich-text-editor/renderer/image-module.d.ts +1 -9
- package/src/rich-text-editor/renderer/image-module.js +168 -203
- package/src/rich-text-editor/renderer/link-module.js +1 -10
- package/src/rich-text-editor/renderer/table-module.d.ts +1 -8
- package/src/rich-text-editor/renderer/table-module.js +139 -301
- package/src/rich-text-editor/renderer/toolbar-renderer.d.ts +0 -3
- package/src/rich-text-editor/renderer/toolbar-renderer.js +9 -94
- package/src/rich-text-editor/renderer/video-module.d.ts +0 -3
- package/src/rich-text-editor/renderer/video-module.js +41 -82
- package/src/rich-text-editor/renderer/view-source.d.ts +0 -1
- package/src/rich-text-editor/renderer/view-source.js +4 -12
- package/src/selection/selection.js +0 -3
- package/styles/bootstrap-dark.css +53 -161
- package/styles/bootstrap.css +61 -162
- package/styles/bootstrap4.css +46 -146
- package/styles/bootstrap5-dark.css +46 -151
- package/styles/bootstrap5.css +46 -151
- package/styles/fabric-dark.css +40 -140
- package/styles/fabric.css +41 -141
- package/styles/fluent-dark.css +47 -165
- package/styles/fluent.css +47 -165
- package/styles/highcontrast-light.css +40 -140
- package/styles/highcontrast.css +41 -144
- package/styles/material-dark.css +41 -145
- package/styles/material.css +41 -145
- package/styles/material3-dark.css +50 -156
- package/styles/material3.css +50 -156
- package/styles/rich-text-editor/_bootstrap-dark-definition.scss +13 -17
- package/styles/rich-text-editor/_bootstrap-definition.scss +19 -22
- package/styles/rich-text-editor/_bootstrap4-definition.scss +7 -11
- package/styles/rich-text-editor/_bootstrap5-definition.scss +3 -7
- package/styles/rich-text-editor/_fabric-dark-definition.scss +2 -6
- package/styles/rich-text-editor/_fabric-definition.scss +3 -7
- package/styles/rich-text-editor/_fluent-definition.scss +9 -13
- package/styles/rich-text-editor/_fusionnew-definition.scss +3 -7
- package/styles/rich-text-editor/_highcontrast-definition.scss +3 -7
- package/styles/rich-text-editor/_highcontrast-light-definition.scss +2 -6
- package/styles/rich-text-editor/_layout.scss +31 -133
- package/styles/rich-text-editor/_material-dark-definition.scss +2 -6
- package/styles/rich-text-editor/_material-definition.scss +2 -6
- package/styles/rich-text-editor/_material3-definition.scss +12 -16
- package/styles/rich-text-editor/_tailwind-definition.scss +19 -23
- package/styles/rich-text-editor/_theme.scss +23 -112
- package/styles/rich-text-editor/bootstrap-dark.css +53 -161
- package/styles/rich-text-editor/bootstrap.css +61 -162
- package/styles/rich-text-editor/bootstrap4.css +46 -146
- package/styles/rich-text-editor/bootstrap5-dark.css +46 -151
- package/styles/rich-text-editor/bootstrap5.css +46 -151
- package/styles/rich-text-editor/fabric-dark.css +40 -140
- package/styles/rich-text-editor/fabric.css +41 -141
- package/styles/rich-text-editor/fluent-dark.css +47 -165
- package/styles/rich-text-editor/fluent.css +47 -165
- package/styles/rich-text-editor/highcontrast-light.css +40 -140
- package/styles/rich-text-editor/highcontrast.css +41 -144
- package/styles/rich-text-editor/icons/_bootstrap-dark.scss +2 -2
- package/styles/rich-text-editor/icons/_bootstrap.scss +2 -2
- package/styles/rich-text-editor/icons/_bootstrap4.scss +2 -2
- package/styles/rich-text-editor/icons/_bootstrap5.scss +2 -2
- package/styles/rich-text-editor/icons/_fabric-dark.scss +2 -2
- package/styles/rich-text-editor/icons/_fabric.scss +2 -2
- package/styles/rich-text-editor/icons/_fluent.scss +2 -2
- package/styles/rich-text-editor/icons/_highcontrast-light.scss +2 -2
- package/styles/rich-text-editor/icons/_highcontrast.scss +2 -2
- package/styles/rich-text-editor/icons/_material-dark.scss +2 -2
- package/styles/rich-text-editor/icons/_material.scss +2 -2
- package/styles/rich-text-editor/icons/_material3.scss +2 -2
- package/styles/rich-text-editor/icons/_tailwind.scss +2 -2
- package/styles/rich-text-editor/material-dark.css +41 -145
- package/styles/rich-text-editor/material.css +41 -145
- package/styles/rich-text-editor/material3-dark.css +50 -156
- package/styles/rich-text-editor/material3.css +50 -156
- package/styles/rich-text-editor/tailwind-dark.css +63 -191
- package/styles/rich-text-editor/tailwind.css +63 -191
- package/styles/tailwind-dark.css +63 -191
- package/styles/tailwind.css +63 -191
- package/.eslintrc.json +0 -260
- package/src/global.d.ts +0 -1
- package/styles/rich-text-editor/_bds-definition.scss +0 -279
- package/styles/rich-text-editor/icons/_bds.scss +0 -348
package/.eslintrc.json
DELETED
|
@@ -1,260 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"env": {
|
|
3
|
-
"browser": true,
|
|
4
|
-
"es2021": true
|
|
5
|
-
},
|
|
6
|
-
"extends": [
|
|
7
|
-
"eslint:recommended",
|
|
8
|
-
"plugin:@typescript-eslint/recommended",
|
|
9
|
-
"plugin:jsdoc/recommended",
|
|
10
|
-
"plugin:security/recommended"
|
|
11
|
-
],
|
|
12
|
-
"parser": "@typescript-eslint/parser",
|
|
13
|
-
"parserOptions": {
|
|
14
|
-
"ecmaFeatures": { "js": true },
|
|
15
|
-
"ecmaVersion": 2018,
|
|
16
|
-
"project": "./tsconfig.json",
|
|
17
|
-
"sourceType": "module"
|
|
18
|
-
},
|
|
19
|
-
"plugins": [
|
|
20
|
-
"@typescript-eslint",
|
|
21
|
-
"@typescript-eslint/tslint",
|
|
22
|
-
"eslint-plugin-security",
|
|
23
|
-
"jsdoc"
|
|
24
|
-
],
|
|
25
|
-
"rules": {
|
|
26
|
-
"use-isnan": "error",
|
|
27
|
-
"security/detect-unsafe-regex":"error",
|
|
28
|
-
"security/detect-buffer-noassert":"error",
|
|
29
|
-
"security/detect-child-process":"error",
|
|
30
|
-
"security/detect-disable-mustache-escape":"error",
|
|
31
|
-
"security/detect-eval-with-expression":"error",
|
|
32
|
-
"security/detect-no-csrf-before-method-override":"error",
|
|
33
|
-
"security/detect-non-literal-fs-filename":"error",
|
|
34
|
-
"security/detect-non-literal-regexp":"error",
|
|
35
|
-
"security/detect-non-literal-require":"error",
|
|
36
|
-
"security/detect-object-injection":"error",
|
|
37
|
-
"security/detect-possible-timing-attacks":"error",
|
|
38
|
-
"security/detect-pseudoRandomBytes":"error",
|
|
39
|
-
"security/detect-new-buffer":"error",
|
|
40
|
-
"security/detect-bidi-characters":"error",
|
|
41
|
-
"@typescript-eslint/no-inferrable-types": "off",
|
|
42
|
-
"@typescript-eslint/ban-types": ["warn", {
|
|
43
|
-
"types": {
|
|
44
|
-
"Object": false,
|
|
45
|
-
"object": false,
|
|
46
|
-
"{}": false,
|
|
47
|
-
"Function": false
|
|
48
|
-
}
|
|
49
|
-
}],
|
|
50
|
-
"jsdoc/check-tag-names": 0,
|
|
51
|
-
"@typescript-eslint/tslint/config": [
|
|
52
|
-
"error",
|
|
53
|
-
{
|
|
54
|
-
"rules": {
|
|
55
|
-
"ban": true,
|
|
56
|
-
"chai-vague-errors": true,
|
|
57
|
-
"max-func-body-length": [
|
|
58
|
-
true,
|
|
59
|
-
120,
|
|
60
|
-
{
|
|
61
|
-
"ignore-parameters-to-function-regex": "describe"
|
|
62
|
-
}
|
|
63
|
-
],
|
|
64
|
-
"missing-jsdoc": true,
|
|
65
|
-
"no-backbone-get-set-outside-model": false,
|
|
66
|
-
"no-cookies": false,
|
|
67
|
-
"no-delete-expression": false,
|
|
68
|
-
"no-disable-auto-sanitization": true,
|
|
69
|
-
"no-duplicate-case": true,
|
|
70
|
-
"no-duplicate-parameter-names": true,
|
|
71
|
-
"no-empty-interfaces": false,
|
|
72
|
-
"no-exec-script": true,
|
|
73
|
-
"no-function-expression": false,
|
|
74
|
-
"no-multiple-var-decl": false,
|
|
75
|
-
"no-string-based-set-immediate": false,
|
|
76
|
-
"no-string-based-set-interval": false,
|
|
77
|
-
"no-unnecessary-bind": false,
|
|
78
|
-
"no-unused-imports": true,
|
|
79
|
-
"no-with-statement": false,
|
|
80
|
-
"prefer-array-literal": false,
|
|
81
|
-
"typedef": [
|
|
82
|
-
true,
|
|
83
|
-
"call-signature",
|
|
84
|
-
"parameter",
|
|
85
|
-
"property-declaration",
|
|
86
|
-
"variable-declaration",
|
|
87
|
-
"arrow-parameter",
|
|
88
|
-
"member-variable-declaration"
|
|
89
|
-
],
|
|
90
|
-
"use-named-parameter": false,
|
|
91
|
-
"valid-typeof": true,
|
|
92
|
-
"whitespace": [
|
|
93
|
-
true,
|
|
94
|
-
"check-branch",
|
|
95
|
-
"check-decl",
|
|
96
|
-
"check-operator",
|
|
97
|
-
"check-separator",
|
|
98
|
-
"check-type"
|
|
99
|
-
]
|
|
100
|
-
}
|
|
101
|
-
}
|
|
102
|
-
],
|
|
103
|
-
"no-control-regex": "error",
|
|
104
|
-
"no-constant-condition": "error",
|
|
105
|
-
"no-invalid-regexp": "error",
|
|
106
|
-
"curly": "error",
|
|
107
|
-
"eol-last": [
|
|
108
|
-
"error",
|
|
109
|
-
"always"
|
|
110
|
-
],
|
|
111
|
-
"guard-for-in": "error",
|
|
112
|
-
"no-labels": "error",
|
|
113
|
-
"max-len": [
|
|
114
|
-
"error",
|
|
115
|
-
{
|
|
116
|
-
"code": 140,
|
|
117
|
-
"tabWidth": 4,
|
|
118
|
-
"ignoreComments": true,
|
|
119
|
-
"ignoreStrings": true,
|
|
120
|
-
"ignoreTemplateLiterals": true,
|
|
121
|
-
"ignoreRegExpLiterals": true
|
|
122
|
-
}
|
|
123
|
-
],
|
|
124
|
-
"no-console": [
|
|
125
|
-
"error",
|
|
126
|
-
{
|
|
127
|
-
"allow": [
|
|
128
|
-
"warn",
|
|
129
|
-
"dir",
|
|
130
|
-
"timeLog",
|
|
131
|
-
"assert",
|
|
132
|
-
"clear",
|
|
133
|
-
"count",
|
|
134
|
-
"countReset",
|
|
135
|
-
"group",
|
|
136
|
-
"groupEnd",
|
|
137
|
-
"table",
|
|
138
|
-
"dirxml",
|
|
139
|
-
"error",
|
|
140
|
-
"groupCollapsed",
|
|
141
|
-
"Console",
|
|
142
|
-
"profile",
|
|
143
|
-
"profileEnd",
|
|
144
|
-
"timeStamp",
|
|
145
|
-
"context"
|
|
146
|
-
]
|
|
147
|
-
}
|
|
148
|
-
],
|
|
149
|
-
"no-redeclare": [
|
|
150
|
-
"error",
|
|
151
|
-
{
|
|
152
|
-
"builtinGlobals": true
|
|
153
|
-
}
|
|
154
|
-
],
|
|
155
|
-
"@typescript-eslint/no-parameter-properties": "error",
|
|
156
|
-
"@typescript-eslint/indent": [
|
|
157
|
-
"error",
|
|
158
|
-
4,
|
|
159
|
-
{
|
|
160
|
-
"CallExpression": {
|
|
161
|
-
"arguments": "first"
|
|
162
|
-
},
|
|
163
|
-
"FunctionDeclaration": {
|
|
164
|
-
"parameters": "first"
|
|
165
|
-
},
|
|
166
|
-
"FunctionExpression": {
|
|
167
|
-
"parameters": "first"
|
|
168
|
-
}
|
|
169
|
-
}
|
|
170
|
-
],
|
|
171
|
-
"no-debugger": "error",
|
|
172
|
-
"no-eval": "error",
|
|
173
|
-
"no-extra-semi": "error",
|
|
174
|
-
"no-throw-literal": "error",
|
|
175
|
-
"no-fallthrough": "error",
|
|
176
|
-
"comma-dangle": [
|
|
177
|
-
"error",
|
|
178
|
-
"never"
|
|
179
|
-
],
|
|
180
|
-
"no-trailing-spaces": "error",
|
|
181
|
-
"@typescript-eslint/no-unused-expressions": "error",
|
|
182
|
-
"@typescript-eslint/no-var-requires": "error",
|
|
183
|
-
"one-var": [
|
|
184
|
-
"error",
|
|
185
|
-
"never"
|
|
186
|
-
],
|
|
187
|
-
"@typescript-eslint/no-explicit-any": "error",
|
|
188
|
-
"no-cond-assign": [
|
|
189
|
-
"error",
|
|
190
|
-
"always"
|
|
191
|
-
],
|
|
192
|
-
"@typescript-eslint/consistent-type-assertions": "off",
|
|
193
|
-
"jsdoc/check-alignment": "error",
|
|
194
|
-
"no-empty": "error",
|
|
195
|
-
"quotes": [
|
|
196
|
-
"error",
|
|
197
|
-
"single"
|
|
198
|
-
],
|
|
199
|
-
"semi": [
|
|
200
|
-
"error",
|
|
201
|
-
"always"
|
|
202
|
-
],
|
|
203
|
-
"eqeqeq": [
|
|
204
|
-
"error",
|
|
205
|
-
"smart"
|
|
206
|
-
],
|
|
207
|
-
"valid-typeof": [
|
|
208
|
-
"error",
|
|
209
|
-
{
|
|
210
|
-
"requireStringLiterals": true
|
|
211
|
-
}
|
|
212
|
-
],
|
|
213
|
-
"camelcase": [
|
|
214
|
-
"error",
|
|
215
|
-
{
|
|
216
|
-
"properties": "always",
|
|
217
|
-
"ignoreDestructuring": true,
|
|
218
|
-
"ignoreImports": true
|
|
219
|
-
}
|
|
220
|
-
],
|
|
221
|
-
"no-irregular-whitespace": [
|
|
222
|
-
"error",
|
|
223
|
-
{
|
|
224
|
-
"skipStrings": true,
|
|
225
|
-
"skipComments": true,
|
|
226
|
-
"skipRegExps": true,
|
|
227
|
-
"skipTemplates": true
|
|
228
|
-
}
|
|
229
|
-
],
|
|
230
|
-
"valid-jsdoc": [
|
|
231
|
-
"error",
|
|
232
|
-
{
|
|
233
|
-
"prefer": {
|
|
234
|
-
"arg": "param",
|
|
235
|
-
"argument": "param",
|
|
236
|
-
"class": "constructor",
|
|
237
|
-
"return": "returns",
|
|
238
|
-
"virtual": "abstract"
|
|
239
|
-
}
|
|
240
|
-
}
|
|
241
|
-
],
|
|
242
|
-
"no-var": "error",
|
|
243
|
-
"radix": "error"
|
|
244
|
-
},
|
|
245
|
-
"reportUnusedDisableDirectives": true,
|
|
246
|
-
"overrides": [
|
|
247
|
-
{
|
|
248
|
-
"files": [
|
|
249
|
-
"node_modules",
|
|
250
|
-
"dist",
|
|
251
|
-
"public",
|
|
252
|
-
"coverage",
|
|
253
|
-
"test-report"
|
|
254
|
-
],
|
|
255
|
-
"rules": {
|
|
256
|
-
"no-unused-expressions": "off"
|
|
257
|
-
}
|
|
258
|
-
}
|
|
259
|
-
]
|
|
260
|
-
}
|
package/src/global.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './index';
|
|
@@ -1,279 +0,0 @@
|
|
|
1
|
-
//Layout Variables Start
|
|
2
|
-
$skin-name: 'tailwind';
|
|
3
|
-
$rte-border-size: 1px !default;
|
|
4
|
-
$rte-2px-border-size: 2px !default;
|
|
5
|
-
$rte-border-type: solid !default;
|
|
6
|
-
$rte-list-btn-flex: column !default;
|
|
7
|
-
$rte-list-btn-line-height: 30px !default;
|
|
8
|
-
$rte-big-list-btn-line-height: 36px !default;
|
|
9
|
-
$rte-split-btn-line-height: 30px !default;
|
|
10
|
-
$rte-big-split-btn-line-height: 38px !default;
|
|
11
|
-
$rte-big-quick-item-btn-width: 38px !default;
|
|
12
|
-
$rte-quick-item-btn-width: 26px !default;
|
|
13
|
-
$rte-big-quick-item-btn-height: 38px !default;
|
|
14
|
-
$rte-quick-item-btn-height: 30px !default;
|
|
15
|
-
$rte-big-quick-item-padding: 12px !default;
|
|
16
|
-
$rte-quick-item-padding: 3px !default;
|
|
17
|
-
$rte-quick-item-icon-min-width: 24px !default;
|
|
18
|
-
$rte-big-quick-item-line-height: $leading-normal !default;
|
|
19
|
-
$rte-content-padding: 12px !default;
|
|
20
|
-
$rte-toolbar-icon-size: $text-xl !default;
|
|
21
|
-
$rte-toolbar-big-icon-size: $text-xl !default;
|
|
22
|
-
$rte-big-quick-drop-btn-line-height: 33px !default;
|
|
23
|
-
$rte-quick-drop-btn-line-height: 24px !default;
|
|
24
|
-
$rte-big-quick-drop-btn-margin: 4px 0 !default;
|
|
25
|
-
$rte-quick-drop-btn-margin: 4px 0 !default;
|
|
26
|
-
$rte-big-quick-drop-btn-padding: 0 !default;
|
|
27
|
-
$rte-quick-drop-btn-padding: 1px 0 !default;
|
|
28
|
-
$rte-big-quick-drop-btn-icon-size: 16px !default;
|
|
29
|
-
$rte-quick-drop-btn-icon-size: 14px !default;
|
|
30
|
-
$rte-big-quick-drop-btn-caret-icon-size: 10px !default;
|
|
31
|
-
$rte-quick-drop-btn-caret-icon-size: 12px !default;
|
|
32
|
-
$rte-big-quick-drop-btn-caret-font-size: $text-xs !default;
|
|
33
|
-
$rte-quick-drop-btn-caret-font-size: $text-xxs !default;
|
|
34
|
-
$rte-big-tb-items-margin-left: 3px !default;
|
|
35
|
-
$rte-tb-items-margin-left: 7px !default;
|
|
36
|
-
$rte-big-tb-items-padding-left: 3px !default;
|
|
37
|
-
$rte-tb-items-padding-left: 7px !default;
|
|
38
|
-
$rte-active-tb-item-btn-padding: 0 !default;
|
|
39
|
-
$rte-split-btn-bar-size: 0 !default;
|
|
40
|
-
$rte-split-btn-active-color-icon-line-height: 30px !default;
|
|
41
|
-
$rte-big-split-btn-active-color-icon-line-height: 35px !default;
|
|
42
|
-
$rte-format-btn-min-width: 0 !default;
|
|
43
|
-
$rte-font-name-btn-min-width: 0 !default;
|
|
44
|
-
$rte-font-size-btn-min-width: 0 !default;
|
|
45
|
-
$rte-drop-btn-padding-left: 7px !default;
|
|
46
|
-
$dropdown-btn-font-size: $text-sm;
|
|
47
|
-
$dropdown-btn-big-font-size: $text-base;
|
|
48
|
-
$rte-drop-btn-padding-right: 3px !default;
|
|
49
|
-
$rte-drop-btn-action-padding-left: 7px !default;
|
|
50
|
-
$rte-drop-btn-action-padding-right: 3px !default;
|
|
51
|
-
$rte-big-drop-btn-padding-left: 10px !default;
|
|
52
|
-
$rte-big-drop-btn-padding-right: 6px !default;
|
|
53
|
-
$rte-big-drop-btn-action-padding-left: 10px !default;
|
|
54
|
-
$rte-big-drop-btn-action-padding-right: 6px !default;
|
|
55
|
-
$rte-colorpicker-parent-padding: 0 !default;
|
|
56
|
-
$rte-colorpicker-parent-padding-hover: 0 !default;
|
|
57
|
-
$rte-colorpicker-parent-padding-active-hover: 0 !default;
|
|
58
|
-
$rte-dropdown-btn-color-content-height: 30px !default;
|
|
59
|
-
$rte-big-dropdown-btn-color-content-height: 36px !default;
|
|
60
|
-
$rte-font-icon-width: 30px !default;
|
|
61
|
-
$rte-font-arrow-width: 18px !default;
|
|
62
|
-
$rte-font-arrow-touch-width: 20px !default;
|
|
63
|
-
$rte-font-icon-line-height: $leading-none !default;
|
|
64
|
-
$rte-placeholder-line-height: $leading-normal !default;
|
|
65
|
-
$rte-big-active-tb-item-btn-padding: 0 6px !default;
|
|
66
|
-
$rte-table-popup-padding: 18px 18px 8px 22px !default;
|
|
67
|
-
$rte-table-popup-border: 1px solid $border-light !default;
|
|
68
|
-
$rte-insert-dialog-label-padding-top: 12px !default;
|
|
69
|
-
$rte-insert-dialog-label-padding-bottom: 3px !default;
|
|
70
|
-
$rte-big-quick-tbar-item-min-height: 38px !default;
|
|
71
|
-
$rte-big-quick-tbar-item-min-width: 38px !default;
|
|
72
|
-
$rte-big-content-font-size: 16px !default;
|
|
73
|
-
$rte-content-font-size: $text-sm !default;
|
|
74
|
-
$rte-dropdown-caret-icon-size: $text-xs !default;
|
|
75
|
-
$rte-big-dropdown-caret-icon-size: $text-sm !default;
|
|
76
|
-
$rte-inline-dropdown-line-height: 30px !default;
|
|
77
|
-
$rte-big-inline-dropdown-line-height: 36px !default;
|
|
78
|
-
$font-weight: $font-weight-normal !default;
|
|
79
|
-
$rte-table-popup-bdr-radius: 6px !default;
|
|
80
|
-
$rte-resize-handler-width: 15px;
|
|
81
|
-
$rte-resize-handler-height: 15px;
|
|
82
|
-
$rte-resize-handler-position: 0;
|
|
83
|
-
$rte-big-inline-tmp-min-width: 48px;
|
|
84
|
-
$rte-inline-tmp-min-width: 55px;
|
|
85
|
-
$rte-big-inline-tmp-size-min-width: 59px;
|
|
86
|
-
$rte-inline-tmp-size-min-width: 66px;
|
|
87
|
-
$rte-big-inline-tmp-color-min-width: 50px;
|
|
88
|
-
$rte-inline-tmp-color-min-width: 55px;
|
|
89
|
-
$rte-big-color-list-span-common-padding-left-right: 0;
|
|
90
|
-
$rte-placeholder-padding: 12px !default;
|
|
91
|
-
$rte-default-character-count-opacity: 1;
|
|
92
|
-
$rte-droparea-line-height: 10;
|
|
93
|
-
$rte-droparea-browsebtn-height: 36px;
|
|
94
|
-
$rte-droparea-browsebtn-padding: 0 18px;
|
|
95
|
-
$rte-droparea-browsebtn-top: -50px;
|
|
96
|
-
$rte-big-droparea-browsebtn-top: -120px;
|
|
97
|
-
$rte-insert-dialog-font-size: 15px;
|
|
98
|
-
$rte-big-insert-dialog-font-size: 15px;
|
|
99
|
-
$rte-table-popup-tablecell-height: 14px;
|
|
100
|
-
$rte-table-popup-tablecell-width: 14px;
|
|
101
|
-
$rte-table-popup-tablecell-margin: 1px;
|
|
102
|
-
$rte-table-popup-row-height : 16px;
|
|
103
|
-
$rte-big-table-row-height : 18px;
|
|
104
|
-
$rte-big-tablecell-height : 16px;
|
|
105
|
-
$rte-big-tablecell-width : 16px;
|
|
106
|
-
$rte-toolbar-item-frist-last-child-margin: 0;
|
|
107
|
-
$rte-big-toolbar-item-frist-last-child-margin: 0 6px;
|
|
108
|
-
$rte-toolbar-expaned-padding: 0 5px;
|
|
109
|
-
$rte-big-toolbar-expaned-padding: 0 5px;
|
|
110
|
-
$rte-toolbar-expaned-padding-hover: 0 5px;
|
|
111
|
-
$rte-formatlists-dropdown-line-height: 20px;
|
|
112
|
-
$rte-big-formatlists-dropdown-line-height: 30px;
|
|
113
|
-
|
|
114
|
-
//Layout Variables End
|
|
115
|
-
|
|
116
|
-
//Theme Variables Start
|
|
117
|
-
$rte-border-color: $border-light !default;
|
|
118
|
-
$rte-content-bg: $content-bg-color !default;
|
|
119
|
-
$rte-full-screen-bg: $content-bg-color !default;
|
|
120
|
-
$rte-content-font-color: $content-text-color !default;
|
|
121
|
-
$rte-item-color: $content-text-color !default;
|
|
122
|
-
$rte-icons-color: $icon-color !default;
|
|
123
|
-
$rte-tlbar-expand-active: $icon-color !default;
|
|
124
|
-
$rte-hover-icons-color: $icon-color !default;
|
|
125
|
-
$rte-img-popup-border: 1px solid $border-light !default;
|
|
126
|
-
$rte-img-popup-box-shadow: $shadow !default;
|
|
127
|
-
$rte-img-popup-color: $border-light !default;
|
|
128
|
-
$rte-quick-item-active-bg: $secondary-bg-color-pressed !default;
|
|
129
|
-
$rte-quick-item-active-font-color: $icon-color !default;
|
|
130
|
-
$rte-quick-item-border: 0 !default;
|
|
131
|
-
$rte-quick-item-hover-border-color: $secondary-border-color-hover !default;
|
|
132
|
-
$rte-quick-item-active-border-color: $secondary-border-color-pressed !default;
|
|
133
|
-
$rte-quick-drop-btn-border-color: $content-bg-color-alt2 !default;
|
|
134
|
-
$rte-quick-drop-btn-hover-border-color: $content-bg-color-alt2 !default;
|
|
135
|
-
$rte-extended-toolbar-background: $content-bg-color-alt2 !default;
|
|
136
|
-
$rte-quick-pop-border: none !default;
|
|
137
|
-
$rte-quick-tb-border: 1px solid $border-light !default;
|
|
138
|
-
$rte-quick-pop-bg: $content-bg-color-alt2 !default;
|
|
139
|
-
$rte-quick-vr-line-color: $border-light !default;
|
|
140
|
-
$rte-quick-pop-shadow: $shadow-md !default;
|
|
141
|
-
$rte-quick-pop-item-focus-bg: $secondary-bg-color-pressed !default;
|
|
142
|
-
$rte-quick-tb-btn-hover: $secondary-bg-color-pressed !default;
|
|
143
|
-
$rte-tb-item-active-bg: $secondary-bg-color-pressed !default;
|
|
144
|
-
$rte-tb-active-font-color: $icon-color !default;
|
|
145
|
-
$rte-tb-item-active-border: 1px solid $secondary-border-color-pressed !default;
|
|
146
|
-
$rte-expand-tb-border-bottom: $rte-border-size $rte-border-type $border-light !default;
|
|
147
|
-
$rte-color-picker-active-bg: inherit !default;
|
|
148
|
-
$rte-drop-btn-active-bg: $secondary-bg-color-pressed !default;
|
|
149
|
-
$rte-drop-btn-active-color: $icon-color !default;
|
|
150
|
-
$rte-drop-btn-active-border-color: $secondary-border-color-pressed !default;
|
|
151
|
-
$rte-split-btn-active-hover-font-color: $icon-color !default;
|
|
152
|
-
$rte-split-btn-color: $secondary-bg-color-pressed !default;
|
|
153
|
-
$rte-tb-hover-font-color: $icon-color !default;
|
|
154
|
-
$rte-split-btn-active-color: $icon-color !default;
|
|
155
|
-
$rte-split-btn-hover-bg: $content-bg-color-alt1 !default;
|
|
156
|
-
$rte-split-btn-active-bg: $secondary-bg-color-pressed !default;
|
|
157
|
-
$rte-split-btn-span-hover-bg: $content-bg-color-alt3 !default;
|
|
158
|
-
$rte-split-btn-span-focus-bg: $secondary-bg-color-hover !default;
|
|
159
|
-
$rte-split-btn-span-active-bg: $secondary-bg-color-pressed !default;
|
|
160
|
-
$rte-split-btn-bar-bg: $content-bg-color-alt1 !default;
|
|
161
|
-
$rte-split-btn-active-bar-bg: $content-bg-color !default;
|
|
162
|
-
$rte-split-btn-bar-size: 0 !default;
|
|
163
|
-
$rte-split-btn-active-border: 1px solid $secondary-border-color-hover !default;
|
|
164
|
-
$rte-split-btn-active-color-icon-line-height: 30px !default;
|
|
165
|
-
$rte-big-split-btn-active-color-icon-line-height: 38px !default;
|
|
166
|
-
|
|
167
|
-
$rte-link-valid-color: $danger !default;
|
|
168
|
-
$rte-upload-drag-border-clr: $border !default;
|
|
169
|
-
$rte-img-header-clr: $content-text-color-alt1 !default;
|
|
170
|
-
$rte-drop-text-clr: $content-text-color-alt2 !default;
|
|
171
|
-
$rte-default-character-count-color: $placeholder-text-color !default;
|
|
172
|
-
$rte-warning-character-count-color: $warning !default;
|
|
173
|
-
$rte-error-character-count-color: $danger !default;
|
|
174
|
-
$rte-img-border: solid 2px $border-dark !default;
|
|
175
|
-
$rte-font-family: $font-family !default;
|
|
176
|
-
$rte-content-color: $content-text-color !default;
|
|
177
|
-
$rte-content-blockquote-border-left-color: solid 2px $content-text-color !default;
|
|
178
|
-
$rte-dropdown-selection-bgcolor: $secondary-bg-color-pressed !default;
|
|
179
|
-
$rte-ext-tbar-overlay-icons-color: $icon-color-disabled !default;
|
|
180
|
-
$rte-overlay-color: $overlay-bg-color !default;
|
|
181
|
-
$rte-dropdown-selection-color: $content-text-color-selected !default;
|
|
182
|
-
$rte-anchor-color: $info !default;
|
|
183
|
-
$rte-ext-tbar-overlay-dropdown-color: $content-text-color-disabled !default;
|
|
184
|
-
$rte-img-resize-back-color: $primary !default;
|
|
185
|
-
$rte-img-resize-color: $primary-text-color !default;
|
|
186
|
-
$rte-table-header-color: $content-text-color !default;
|
|
187
|
-
$rte-table-span-bg-color: $content-bg-color !default;
|
|
188
|
-
$rte-table-span-border: 1px solid $border !default;
|
|
189
|
-
$rte-table-span-active-bg-color: $primary-lighter !default;
|
|
190
|
-
$rte-table-span-active-border-color: $primary !default;
|
|
191
|
-
$rte-table-select-border-color: $primary !default;
|
|
192
|
-
$rte-table-popup-bg: $content-bg-color !default;
|
|
193
|
-
$rte-table-resize-back-color: $content-bg-color !default;
|
|
194
|
-
$rte-table-popup-color: $border-light !default;
|
|
195
|
-
$rte-table-popup-box: $shadow-md !default;
|
|
196
|
-
$rte-table-border-color: $border-light !default;
|
|
197
|
-
$rte-table-alternate-color: $content-bg-color-alt3 !default;
|
|
198
|
-
$rte-table-header-bg: $content-bg-color-alt2 !default;
|
|
199
|
-
$rte-toolbar-hor-nav-border-width: 0 0 0 1px !default;
|
|
200
|
-
$rte-border-top-left-radius: 0;
|
|
201
|
-
$rte-border-top-right-radius: 0;
|
|
202
|
-
$rte-border-bottom-right-radius: 0;
|
|
203
|
-
$rte-border-bottom-left-radius: 0;
|
|
204
|
-
$rte-big-border-radius: 0;
|
|
205
|
-
$rte-extended-toolbar-items-padding: 0;
|
|
206
|
-
$rte-expand-tbar-hover-bg: $content-bg-color-alt3 !default;
|
|
207
|
-
|
|
208
|
-
//Theme Variables End
|
|
209
|
-
|
|
210
|
-
$rte-tb-hover-bg-color: $content-bg-color-alt1 !default;
|
|
211
|
-
|
|
212
|
-
$rte-img-dlg-max-height: 363px !default;
|
|
213
|
-
$rte-img-alt-dlg-max-height: 363px !default;
|
|
214
|
-
$rte-img-link-dlg-max-height: 173px !default;
|
|
215
|
-
$rte-img-size-dlg-max-height: 236px !default;
|
|
216
|
-
$rte-link-dlg-max-height: 331px !default;
|
|
217
|
-
$rte-file-browser-dlg-max-height: 557px !default;
|
|
218
|
-
$rte-table-dlg-max-height: 232px !default;
|
|
219
|
-
$rte-edit-table-dlg-max-height: 340px !default;
|
|
220
|
-
$rte-quick-toolbar-item-margin: 0 6px !default;
|
|
221
|
-
$rte-big-quick-toolbar-item-margin: 0 6px !default;
|
|
222
|
-
$rte-big-quick-toolbar-items-margin : 0 6px !default;
|
|
223
|
-
$rte-big-quick-toolbar-item-btn-padding: 0 !default;
|
|
224
|
-
$rte-big-img-dlg-max-height: 397px !default;
|
|
225
|
-
$rte-big-img-alt-dlg-max-height: 397px !default;
|
|
226
|
-
$rte-big-img-link-dlg-max-height: 211px !default;
|
|
227
|
-
$rte-big-img-size-dlg-max-height: 293px !default;
|
|
228
|
-
$rte-big-link-dlg-max-height: 378px !default;
|
|
229
|
-
$rte-big-file-browser-dlg-max-height: 557px !default;
|
|
230
|
-
$rte-big-table-dlg-max-height: 283px !default;
|
|
231
|
-
$rte-big-edit-table-dlg-max-height: 388px !default;
|
|
232
|
-
$rte-drop-text-width: 300px !default;
|
|
233
|
-
$rte-drop-text-height: 185px !default;
|
|
234
|
-
$rte-big-drop-text-height: 140px !default;
|
|
235
|
-
$rte-drop-text-mobile-width: 250px !default;
|
|
236
|
-
$rte-tbar-default-bg: $content-bg-color-alt2;
|
|
237
|
-
$rte-big-insert-dialog-label-padding-top: 12px;
|
|
238
|
-
$rte-tbar-icon-size: 20px;
|
|
239
|
-
$rte-dropdown-btn-color-content-padding: 1px !default;
|
|
240
|
-
$rte-big-dropdown-btn-color-content-padding: 1px !default;
|
|
241
|
-
$rte-tb-expended-min-height: 48px !default;
|
|
242
|
-
$rte-big-tb-expended-min-height: 56px !default;
|
|
243
|
-
$rte-tb-expended-padding-left: 1px !default;
|
|
244
|
-
$rte-tb-expended-hover-padding-left: 1px !default;
|
|
245
|
-
$rte-toolbar-expaned-minwidth: 18px !default;
|
|
246
|
-
|
|
247
|
-
$rte-emoji-pop-background: $flyout-bg-color;
|
|
248
|
-
$rte-emoji-pop-box-shadow: $shadow-md;
|
|
249
|
-
$rte-emoji-pop-border-radius: 4px;
|
|
250
|
-
$rte-emoji-pop-border:1px solid $border-light;
|
|
251
|
-
$rte-emoji-tbar-btn-bg: transparent;
|
|
252
|
-
$rte-emoji-tbar-btn-select-bg : $secondary-border-color-hover;
|
|
253
|
-
$rte-emoji-tbar-btn-hover: $secondary-border-color-hover;
|
|
254
|
-
$rte-emoji-btn-height: 249px;
|
|
255
|
-
$rte-emoji-grp-btn-line-height: 1px;
|
|
256
|
-
$rte-emoji-headname-font-weight: 400;
|
|
257
|
-
$rte-emoji-headname-color:$content-text-color-alt2;
|
|
258
|
-
$rte-big-emoji-btn-height: 254px;
|
|
259
|
-
$rte-background-color-icon-fontsize: 20px;
|
|
260
|
-
$rte-big-background-color-icon-fontsize: 20px;
|
|
261
|
-
|
|
262
|
-
$rte-format-painter-cursor: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAzMiAyMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUgMi41QzQuNDQ3NzIgMi41IDQgMi45NDc3MiA0IDMuNUM0IDQuMDUyMjggNC40NDc3MiA0LjUgNSA0LjVINi42OTcyMkw3LjUgNS4wMzUxOFYxNi45NjQ4TDYuNjk3MjIgMTcuNUg1QzQuNDQ3NzIgMTcuNSA0IDE3Ljk0NzcgNCAxOC41QzQgMTkuMDUyMyA0LjQ0NzcyIDE5LjUgNSAxOS41SDYuNjk3MjJDNy4wOTIwNyAxOS41IDcuNDc4MDkgMTkuMzgzMSA3LjgwNjYyIDE5LjE2NDFMOC41IDE4LjcwMTlMOS4xOTMzOCAxOS4xNjQxQzkuNTIxOTEgMTkuMzgzMSA5LjkwNzkzIDE5LjUgMTAuMzAyOCAxOS41SDEyQzEyLjU1MjMgMTkuNSAxMyAxOS4wNTIzIDEzIDE4LjVDMTMgMTcuOTQ3NyAxMi41NTIzIDE3LjUgMTIgMTcuNUwxMC4zMDI4IDE3LjVMOS41IDE2Ljk2NDhWNS4wMzUxOEwxMC4zMDI4IDQuNUgxMkMxMi41NTIzIDQuNSAxMyA0LjA1MjI4IDEzIDMuNUMxMyAyLjk0NzcyIDEyLjU1MjMgMi41IDEyIDIuNUgxMC4zMDI4QzkuOTA3OTMgMi41IDkuNTIxOTEgMi42MTY4OCA5LjE5MzM4IDIuODM1OUw4LjUgMy4yOTgxNUw3LjgwNjYyIDIuODM1OUM3LjQ3ODA5IDIuNjE2ODggNy4wOTIwNyAyLjUgNi42OTcyMiAyLjVINVoiIGZpbGw9ImJsYWNrIiBzdHJva2U9IndoaXRlIiBzdHJva2UtbGluZWNhcD0icm91bmQiLz4KPHBhdGggZD0iTTIzLjUgNFY4LjVIMjVDMjUuODI4NCA4LjUgMjYuNSA5LjE3MTU3IDI2LjUgMTBWMTEuNVYxNy41SDIzLjVIMjAuNUgxNi41QzE3LjUgMTUgMTcuNSAxMS41IDE3LjUgMTEuNVYxMEMxNy41IDkuMTcxNTcgMTguMTcxNiA4LjUgMTkgOC41SDIwLjVWNEMyMC41IDMuMTcxNTcgMjEuMTcxNiAyLjUgMjIgMi41QzIyLjgyODQgMi41IDIzLjUgMy4xNzE1NyAyMy41IDRaIiBmaWxsPSJibGFjayIvPgo8cGF0aCBkPSJNMjMuNSA4LjVWNEMyMy41IDMuMTcxNTcgMjIuODI4NCAyLjUgMjIgMi41VjIuNUMyMS4xNzE2IDIuNSAyMC41IDMuMTcxNTcgMjAuNSA0VjguNU0yMy41IDguNUgyNUMyNS44Mjg0IDguNSAyNi41IDkuMTcxNTcgMjYuNSAxMFYxMS41TTIzLjUgOC41SDIwLjVNMjAuNSA4LjVIMTlDMTguMTcxNiA4LjUgMTcuNSA5LjE3MTU3IDE3LjUgMTBWMTEuNU0yNi41IDExLjVWMTcuNUgyMy41TTI2LjUgMTEuNUgxNy41TTE3LjUgMTEuNUMxNy41IDExLjUgMTcuNSAxNSAxNi41IDE3LjVIMjAuNU0yMy41IDE3LjVWMTQuNU0yMy41IDE3LjVIMjAuNU0yMC41IDE3LjVWMTUuNSIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=') 8 1, auto;
|
|
263
|
-
|
|
264
|
-
/* stylelint-disable */
|
|
265
|
-
.e-rte-quick-popup {
|
|
266
|
-
border-radius: 6px !important;
|
|
267
|
-
.e-rte-quick-toolbar {
|
|
268
|
-
border-radius: 6px !important;
|
|
269
|
-
}
|
|
270
|
-
}
|
|
271
|
-
|
|
272
|
-
.e-richtexteditor .e-toolbar .e-tbar-btn {
|
|
273
|
-
border: 1px solid $transparent !important;
|
|
274
|
-
}
|
|
275
|
-
|
|
276
|
-
.e-richtexteditor .e-toolbar .e-tbar-btn:hover {
|
|
277
|
-
background: $rte-tb-hover-bg-color;
|
|
278
|
-
border: 1px solid $rte-quick-item-hover-border-color !important;
|
|
279
|
-
}
|