@syncfusion/ej2-richtexteditor 20.1.61 → 20.2.36
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 +10 -0
- package/dist/ej2-richtexteditor.umd.min.js +2 -2
- package/dist/ej2-richtexteditor.umd.min.js.map +1 -1
- package/dist/es6/ej2-richtexteditor.es2015.js +419 -171
- package/dist/es6/ej2-richtexteditor.es2015.js.map +1 -1
- package/dist/es6/ej2-richtexteditor.es5.js +411 -162
- package/dist/es6/ej2-richtexteditor.es5.js.map +1 -1
- package/dist/global/ej2-richtexteditor.min.js +2 -2
- package/dist/global/ej2-richtexteditor.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/helpers/e2e/index.js +8 -6
- package/helpers/e2e/rte-helper.js +80 -64
- package/package.json +12 -12
- package/src/common/util.js +7 -8
- package/src/editor-manager/plugin/inserthtml.d.ts +1 -0
- package/src/editor-manager/plugin/inserthtml.js +25 -3
- package/src/editor-manager/plugin/lists.js +12 -4
- package/src/markdown-parser/base/constant.d.ts +6 -0
- package/src/markdown-parser/base/constant.js +6 -0
- package/src/markdown-parser/base/markdown-parser.d.ts +2 -0
- package/src/markdown-parser/base/markdown-parser.js +6 -0
- package/src/markdown-parser/base/types.d.ts +1 -1
- package/src/markdown-parser/plugin/insert-text.d.ts +22 -0
- package/src/markdown-parser/plugin/insert-text.js +51 -0
- package/src/rich-text-editor/actions/color-picker.js +20 -4
- package/src/rich-text-editor/actions/resize.js +4 -3
- package/src/rich-text-editor/actions/toolbar.js +4 -2
- 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 +40 -0
- package/src/rich-text-editor/base/constant.js +41 -1
- package/src/rich-text-editor/base/interface.d.ts +2 -0
- package/src/rich-text-editor/base/rich-text-editor.d.ts +1 -0
- package/src/rich-text-editor/base/rich-text-editor.js +26 -23
- package/src/rich-text-editor/base/util.js +3 -3
- package/src/rich-text-editor/formatter/formatter.js +1 -1
- package/src/rich-text-editor/renderer/iframe-content-renderer.js +1 -1
- package/src/rich-text-editor/renderer/image-module.js +38 -37
- package/src/rich-text-editor/renderer/link-module.js +16 -14
- package/src/rich-text-editor/renderer/markdown-renderer.js +2 -1
- package/src/rich-text-editor/renderer/table-module.d.ts +3 -0
- package/src/rich-text-editor/renderer/table-module.js +132 -55
- package/src/rich-text-editor/renderer/toolbar-renderer.js +11 -1
- package/src/rich-text-editor/renderer/view-source.js +1 -1
- package/styles/fluent-dark.css +1 -0
- package/styles/fluent.css +1 -0
- package/styles/rich-text-editor/_fluent-definition.scss +1 -0
- package/styles/rich-text-editor/_fusionnew-definition.scss +189 -0
- package/styles/rich-text-editor/_layout.scss +3 -0
- package/styles/rich-text-editor/_material3-definition.scss +189 -0
- package/styles/rich-text-editor/fluent-dark.css +1 -0
- package/styles/rich-text-editor/fluent.css +1 -0
- package/styles/rich-text-editor/icons/_fusionnew.scss +303 -0
- package/styles/rich-text-editor/icons/_material3.scss +303 -0
|
@@ -0,0 +1,189 @@
|
|
|
1
|
+
$skin-name: 'bootstrap5' !default;
|
|
2
|
+
//Layout Variables Start
|
|
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: 1 !default;
|
|
8
|
+
$rte-split-btn-line-height: 20px !default;
|
|
9
|
+
$rte-big-split-btn-line-height: 30px !default;
|
|
10
|
+
$rte-big-quick-item-btn-width: 39px !default;
|
|
11
|
+
$rte-quick-item-btn-width: 27px !default;
|
|
12
|
+
$rte-big-quick-item-btn-height: 34px !default;
|
|
13
|
+
$rte-quick-item-btn-height: 26px !default;
|
|
14
|
+
$rte-big-quick-item-padding: 0 !default;
|
|
15
|
+
$rte-quick-item-padding: 0 !default;
|
|
16
|
+
$rte-quick-item-icon-min-width: 24px !default; // Clarify
|
|
17
|
+
$rte-big-quick-item-line-height: $leading-normal !default;
|
|
18
|
+
$rte-content-padding: 16px !default;
|
|
19
|
+
$rte-toolbar-icon-size: $text-base !default;
|
|
20
|
+
$rte-toolbar-big-icon-size: $text-lg !default;
|
|
21
|
+
$rte-big-quick-drop-btn-line-height: 33px !default;
|
|
22
|
+
$rte-quick-drop-btn-line-height: 24px !default;
|
|
23
|
+
$rte-big-quick-drop-btn-margin: 4px 0 !default;
|
|
24
|
+
$rte-quick-drop-btn-margin: 4px 0 !default;
|
|
25
|
+
$rte-big-quick-drop-btn-padding: 0 !default;
|
|
26
|
+
$rte-quick-drop-btn-padding: 1px 0 !default;
|
|
27
|
+
$rte-big-quick-drop-btn-icon-size: 16px !default;
|
|
28
|
+
$rte-quick-drop-btn-icon-size: 14px !default;
|
|
29
|
+
$rte-big-quick-drop-btn-caret-icon-size: 10px !default;
|
|
30
|
+
$rte-quick-drop-btn-caret-icon-size: 12px !default;
|
|
31
|
+
$rte-big-quick-drop-btn-caret-font-size: 12px !default;
|
|
32
|
+
$rte-quick-drop-btn-caret-font-size: 10px !default;
|
|
33
|
+
$rte-big-tb-items-margin-left: 3px !default;
|
|
34
|
+
$rte-tb-items-margin-left: 7px !default;
|
|
35
|
+
$rte-big-tb-items-padding-left: 3px !default;
|
|
36
|
+
$rte-tb-items-padding-left: 7px !default;
|
|
37
|
+
$rte-active-tb-item-btn-padding: 0 !default;
|
|
38
|
+
$rte-split-btn-bar-size: 0 !default;
|
|
39
|
+
$rte-split-btn-active-color-icon-line-height: 30px !default;
|
|
40
|
+
$rte-big-split-btn-active-color-icon-line-height: 37px !default;
|
|
41
|
+
$rte-format-btn-min-width: 75px !default;
|
|
42
|
+
$rte-font-name-btn-min-width: 67px !default;
|
|
43
|
+
$rte-font-size-btn-min-width: 36px !default;
|
|
44
|
+
$rte-drop-btn-padding-left: 7px !default;
|
|
45
|
+
$dropdown-btn-font-size: $text-sm;
|
|
46
|
+
$dropdown-btn-big-font-size: $text-base;
|
|
47
|
+
$rte-drop-btn-padding-right: 7px !default;
|
|
48
|
+
$rte-drop-btn-action-padding-left: 7px !default;
|
|
49
|
+
$rte-drop-btn-action-padding-right: 7px !default;
|
|
50
|
+
$rte-big-drop-btn-padding-left: 10px !default;
|
|
51
|
+
$rte-big-drop-btn-padding-right: 6px !default;
|
|
52
|
+
$rte-big-drop-btn-action-padding-left: 10px !default;
|
|
53
|
+
$rte-big-drop-btn-action-padding-right: 6px !default;
|
|
54
|
+
$rte-colorpicker-parent-padding: 0 !default;
|
|
55
|
+
$rte-colorpicker-parent-padding-hover: 0 !default;
|
|
56
|
+
$rte-colorpicker-parent-padding-active-hover: 0 !default;
|
|
57
|
+
$rte-font-icon-width: 30px !default;
|
|
58
|
+
$rte-font-arrow-width: 18px !default;
|
|
59
|
+
$rte-font-arrow-touch-width: 20px !default;
|
|
60
|
+
$rte-font-icon-line-height: $leading-tight !default;
|
|
61
|
+
$rte-placeholder-line-height: $leading-normal !default;
|
|
62
|
+
$rte-big-active-tb-item-btn-padding: 0 6px !default;
|
|
63
|
+
$rte-table-popup-padding: 10px !default;
|
|
64
|
+
$rte-insert-dialog-label-padding-top: 12px !default;
|
|
65
|
+
$rte-insert-dialog-label-padding-bottom: 12px !default;
|
|
66
|
+
$rte-big-quick-tbar-item-min-height: 34px !default;
|
|
67
|
+
$rte-big-quick-tbar-item-min-width: 39px !default;
|
|
68
|
+
$rte-content-font-size: $text-sm !default;
|
|
69
|
+
$rte-dropdown-caret-icon-size: $text-xs !default;
|
|
70
|
+
$rte-big-dropdown-caret-icon-size: $text-sm !default;
|
|
71
|
+
$font-weight: $font-weight-normal !default;
|
|
72
|
+
$rte-table-popup-bdr-radius: 6px !default;
|
|
73
|
+
$rte-resize-handler-width: 15px;
|
|
74
|
+
$rte-resize-handler-height: 15px;
|
|
75
|
+
$rte-resize-handler-position: 0;
|
|
76
|
+
$rte-big-inline-tmp-min-width: 48px;
|
|
77
|
+
$rte-inline-tmp-min-width: 55px;
|
|
78
|
+
$rte-big-inline-tmp-size-min-width: 59px;
|
|
79
|
+
$rte-inline-tmp-size-min-width: 66px;
|
|
80
|
+
$rte-big-inline-tmp-color-min-width: 50px;
|
|
81
|
+
$rte-inline-tmp-color-min-width: 55px;
|
|
82
|
+
$rte-big-color-list-span-common-padding-left-right: 0;
|
|
83
|
+
$rte-default-character-count-opacity: 1;
|
|
84
|
+
//Layout Variables End
|
|
85
|
+
|
|
86
|
+
//Theme Variables Start
|
|
87
|
+
$rte-split-btn-active-border: 0 !default;
|
|
88
|
+
$rte-border-color: $border-light !default;
|
|
89
|
+
$rte-content-bg: $content-bg-color !default;
|
|
90
|
+
$rte-full-screen-bg: $content-bg-color !default;
|
|
91
|
+
$rte-content-font-color: $content-text-color !default;
|
|
92
|
+
$rte-item-color: $content-text-color !default;
|
|
93
|
+
$rte-icons-color: $icon-color !default;
|
|
94
|
+
$rte-img-popup-border: 1px solid $border-light !default;
|
|
95
|
+
$rte-img-popup-box-shadow: $shadow !default;
|
|
96
|
+
$rte-img-popup-color: $border-light !default;
|
|
97
|
+
$rte-quick-item-active-bg: $secondary-bg-color-pressed !default;
|
|
98
|
+
$rte-quick-item-active-font-color: $secondary-text-color-hover !default;
|
|
99
|
+
$rte-quick-item-border: 0 !default;
|
|
100
|
+
$rte-quick-item-hover-border-color: $secondary-border-color-hover !default;
|
|
101
|
+
$rte-quick-item-active-border-color: $secondary-border-color-pressed !default;
|
|
102
|
+
$rte-quick-drop-btn-border-color: $content-bg-color-alt2 !default;
|
|
103
|
+
$rte-quick-drop-btn-hover-border-color: $content-bg-color-alt2 !default;
|
|
104
|
+
$rte-extended-toolbar-background: $content-bg-color-alt2 !default;
|
|
105
|
+
$rte-quick-pop-border: none !default;
|
|
106
|
+
$rte-quick-tb-border: 1px solid $border-light !default;
|
|
107
|
+
$rte-quick-pop-bg: $content-bg-color-alt2 !default;
|
|
108
|
+
$rte-quick-vr-line-color: $border-light !default;
|
|
109
|
+
$rte-quick-pop-shadow: none !default;
|
|
110
|
+
$rte-quick-pop-item-focus-bg: $secondary-bg-color-pressed !default;
|
|
111
|
+
$rte-quick-tb-btn-hover: $secondary-bg-color-hover !default;
|
|
112
|
+
$rte-tb-item-active-bg: $secondary-bg-color-pressed !default;
|
|
113
|
+
$rte-tb-active-font-color: $white !default;
|
|
114
|
+
$rte-tb-item-active-border: 1px solid $secondary-border-color-pressed !default;
|
|
115
|
+
$rte-expand-tb-border-bottom: $rte-border-size $rte-border-type $border-light !default;
|
|
116
|
+
$rte-color-picker-active-bg: inherit !default;
|
|
117
|
+
$rte-drop-btn-active-bg: $secondary-bg-color-pressed !default;
|
|
118
|
+
$rte-drop-btn-active-color: $white !default;
|
|
119
|
+
$rte-drop-btn-active-border-color: $secondary-border-color-pressed !default;
|
|
120
|
+
$rte-split-btn-active-hover-font-color: $white !default;
|
|
121
|
+
$rte-split-btn-color: $secondary-bg-color-pressed !default;
|
|
122
|
+
$rte-split-btn-active-color: $white !default;
|
|
123
|
+
$rte-split-btn-hover-bg: $secondary-bg-color-hover !default;
|
|
124
|
+
$rte-split-btn-active-bg: $secondary-bg-color-pressed !default;
|
|
125
|
+
$rte-split-btn-span-hover-bg: $secondary-bg-color-hover !default;
|
|
126
|
+
$rte-split-btn-span-focus-bg: $secondary-bg-color-pressed !default;
|
|
127
|
+
$rte-split-btn-span-active-bg: $secondary-bg-color-pressed !default;
|
|
128
|
+
$rte-split-btn-bar-bg: $content-bg-color !default;
|
|
129
|
+
$rte-split-btn-active-bar-bg: $content-bg-color !default;
|
|
130
|
+
$rte-split-btn-bar-size: 0 !default;
|
|
131
|
+
$rte-split-btn-active-border: 0 !default;
|
|
132
|
+
$rte-split-btn-active-color-icon-line-height: 30px !default;
|
|
133
|
+
$rte-big-split-btn-active-color-icon-line-height: 38px !default;
|
|
134
|
+
|
|
135
|
+
$rte-link-valid-color: $danger !default;
|
|
136
|
+
$rte-upload-drag-border-clr: $border-dark !default;
|
|
137
|
+
$rte-img-header-clr: $content-text-color !default;
|
|
138
|
+
$rte-drop-text-clr: $content-text-color-alt2 !default;
|
|
139
|
+
$rte-default-character-count-color: $placeholder-text-color !default;
|
|
140
|
+
$rte-warning-character-count-color: $warning !default;
|
|
141
|
+
$rte-error-character-count-color: $danger !default;
|
|
142
|
+
$rte-img-border: dashed 2px $primary !default;
|
|
143
|
+
$rte-font-family: $font-family !default;
|
|
144
|
+
$rte-content-color: $content-text-color !default;
|
|
145
|
+
$rte-content-blockquote-border-left-color: solid 2px $content-text-color !default;
|
|
146
|
+
$rte-dropdown-selection-bgcolor: $secondary-bg-color-pressed !default;
|
|
147
|
+
$rte-ext-tbar-overlay-icons-color: $icon-color-disabled !default;
|
|
148
|
+
$rte-overlay-color: $overlay-bg-color !default;
|
|
149
|
+
$rte-dropdown-selection-color: $secondary-text-color-pressed !default;
|
|
150
|
+
$rte-anchor-color: $primary !default;
|
|
151
|
+
$rte-ext-tbar-overlay-dropdown-color: $content-bg-color-alt4 !default;
|
|
152
|
+
$rte-img-resize-back-color: $primary !default;
|
|
153
|
+
$rte-img-resize-color: $primary-text-color !default;
|
|
154
|
+
$rte-table-header-color: $content-text-color-alt1 !default;
|
|
155
|
+
$rte-table-span-bg-color: $content-bg-color !default;
|
|
156
|
+
$rte-table-span-border: 1px solid $border-light !default;
|
|
157
|
+
$rte-table-span-active-bg-color: $primary-lighter !default;
|
|
158
|
+
$rte-table-span-active-border-color: $primary !default;
|
|
159
|
+
$rte-table-select-border-color: $primary !default;
|
|
160
|
+
$rte-table-popup-bg: $flyout-bg-color !default;
|
|
161
|
+
$rte-table-popup-color: $border-light !default;
|
|
162
|
+
$rte-table-popup-box: $shadow !default;
|
|
163
|
+
$rte-table-border-color: $border-light !default;
|
|
164
|
+
$rte-table-alternate-color: $content-bg-color-alt1 !default;
|
|
165
|
+
$rte-table-header-bg: $content-bg-color-alt1 !default;
|
|
166
|
+
//Theme Variables End
|
|
167
|
+
|
|
168
|
+
$rte-tb-hover-font-color: $secondary-text-color-hover;
|
|
169
|
+
$transparent: $transparent;
|
|
170
|
+
$rte-placeholder-padding: 16px !default;
|
|
171
|
+
|
|
172
|
+
$rte-img-dlg-min-height: 390px !default;
|
|
173
|
+
$rte-big-img-dlg-min-height: 425px !default;
|
|
174
|
+
$rte-link-dlg-min-height: 339px !default;
|
|
175
|
+
$rte-big-link-dlg-min-height: 385px !default;
|
|
176
|
+
$rte-table-dlg-min-height: 253px !default;
|
|
177
|
+
$rte-big-table-dlg-min-height: 299px !default;
|
|
178
|
+
$rte-img-alt-dlg-min-height: 159px !default;
|
|
179
|
+
$rte-big-img-alt-dlg-min-height: 193px !default;
|
|
180
|
+
$rte-img-link-dlg-min-height: 192px !default;
|
|
181
|
+
$rte-big-img-link-dlg-min-height: 229px !default;
|
|
182
|
+
$rte-img-size-dlg-min-height: 247px !default;
|
|
183
|
+
$rte-big-img-size-dlg-min-height: 299px !default;
|
|
184
|
+
$rte-edit-table-dlg-min-height: 321px !default;
|
|
185
|
+
$rte-big-edit-table-dlg-min-height: 373px !default;
|
|
186
|
+
$rte-file-browser-dlg-min-height: 586px !default;
|
|
187
|
+
$rte-big-file-browser-dlg-min-height: 641px !default;
|
|
188
|
+
$toolbar-expand-icon-min-height: 40px !default;
|
|
189
|
+
$rte-align-caret-icon-min-width: 24px !default;
|
|
@@ -0,0 +1,189 @@
|
|
|
1
|
+
$skin-name: 'bootstrap5' !default;
|
|
2
|
+
//Layout Variables Start
|
|
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: 1 !default;
|
|
8
|
+
$rte-split-btn-line-height: 20px !default;
|
|
9
|
+
$rte-big-split-btn-line-height: 30px !default;
|
|
10
|
+
$rte-big-quick-item-btn-width: 39px !default;
|
|
11
|
+
$rte-quick-item-btn-width: 27px !default;
|
|
12
|
+
$rte-big-quick-item-btn-height: 34px !default;
|
|
13
|
+
$rte-quick-item-btn-height: 26px !default;
|
|
14
|
+
$rte-big-quick-item-padding: 0 !default;
|
|
15
|
+
$rte-quick-item-padding: 0 !default;
|
|
16
|
+
$rte-quick-item-icon-min-width: 24px !default; // Clarify
|
|
17
|
+
$rte-big-quick-item-line-height: $leading-normal !default;
|
|
18
|
+
$rte-content-padding: 16px !default;
|
|
19
|
+
$rte-toolbar-icon-size: $text-base !default;
|
|
20
|
+
$rte-toolbar-big-icon-size: $text-lg !default;
|
|
21
|
+
$rte-big-quick-drop-btn-line-height: 33px !default;
|
|
22
|
+
$rte-quick-drop-btn-line-height: 24px !default;
|
|
23
|
+
$rte-big-quick-drop-btn-margin: 4px 0 !default;
|
|
24
|
+
$rte-quick-drop-btn-margin: 4px 0 !default;
|
|
25
|
+
$rte-big-quick-drop-btn-padding: 0 !default;
|
|
26
|
+
$rte-quick-drop-btn-padding: 1px 0 !default;
|
|
27
|
+
$rte-big-quick-drop-btn-icon-size: 16px !default;
|
|
28
|
+
$rte-quick-drop-btn-icon-size: 14px !default;
|
|
29
|
+
$rte-big-quick-drop-btn-caret-icon-size: 10px !default;
|
|
30
|
+
$rte-quick-drop-btn-caret-icon-size: 12px !default;
|
|
31
|
+
$rte-big-quick-drop-btn-caret-font-size: 12px !default;
|
|
32
|
+
$rte-quick-drop-btn-caret-font-size: 10px !default;
|
|
33
|
+
$rte-big-tb-items-margin-left: 3px !default;
|
|
34
|
+
$rte-tb-items-margin-left: 7px !default;
|
|
35
|
+
$rte-big-tb-items-padding-left: 3px !default;
|
|
36
|
+
$rte-tb-items-padding-left: 7px !default;
|
|
37
|
+
$rte-active-tb-item-btn-padding: 0 !default;
|
|
38
|
+
$rte-split-btn-bar-size: 0 !default;
|
|
39
|
+
$rte-split-btn-active-color-icon-line-height: 30px !default;
|
|
40
|
+
$rte-big-split-btn-active-color-icon-line-height: 37px !default;
|
|
41
|
+
$rte-format-btn-min-width: 75px !default;
|
|
42
|
+
$rte-font-name-btn-min-width: 67px !default;
|
|
43
|
+
$rte-font-size-btn-min-width: 36px !default;
|
|
44
|
+
$rte-drop-btn-padding-left: 7px !default;
|
|
45
|
+
$dropdown-btn-font-size: $text-sm;
|
|
46
|
+
$dropdown-btn-big-font-size: $text-base;
|
|
47
|
+
$rte-drop-btn-padding-right: 7px !default;
|
|
48
|
+
$rte-drop-btn-action-padding-left: 7px !default;
|
|
49
|
+
$rte-drop-btn-action-padding-right: 7px !default;
|
|
50
|
+
$rte-big-drop-btn-padding-left: 10px !default;
|
|
51
|
+
$rte-big-drop-btn-padding-right: 6px !default;
|
|
52
|
+
$rte-big-drop-btn-action-padding-left: 10px !default;
|
|
53
|
+
$rte-big-drop-btn-action-padding-right: 6px !default;
|
|
54
|
+
$rte-colorpicker-parent-padding: 0 !default;
|
|
55
|
+
$rte-colorpicker-parent-padding-hover: 0 !default;
|
|
56
|
+
$rte-colorpicker-parent-padding-active-hover: 0 !default;
|
|
57
|
+
$rte-font-icon-width: 30px !default;
|
|
58
|
+
$rte-font-arrow-width: 18px !default;
|
|
59
|
+
$rte-font-arrow-touch-width: 20px !default;
|
|
60
|
+
$rte-font-icon-line-height: $leading-tight !default;
|
|
61
|
+
$rte-placeholder-line-height: $leading-normal !default;
|
|
62
|
+
$rte-big-active-tb-item-btn-padding: 0 6px !default;
|
|
63
|
+
$rte-table-popup-padding: 10px !default;
|
|
64
|
+
$rte-insert-dialog-label-padding-top: 12px !default;
|
|
65
|
+
$rte-insert-dialog-label-padding-bottom: 12px !default;
|
|
66
|
+
$rte-big-quick-tbar-item-min-height: 34px !default;
|
|
67
|
+
$rte-big-quick-tbar-item-min-width: 39px !default;
|
|
68
|
+
$rte-content-font-size: $text-sm !default;
|
|
69
|
+
$rte-dropdown-caret-icon-size: $text-xs !default;
|
|
70
|
+
$rte-big-dropdown-caret-icon-size: $text-sm !default;
|
|
71
|
+
$font-weight: $font-weight-normal !default;
|
|
72
|
+
$rte-table-popup-bdr-radius: 6px !default;
|
|
73
|
+
$rte-resize-handler-width: 15px;
|
|
74
|
+
$rte-resize-handler-height: 15px;
|
|
75
|
+
$rte-resize-handler-position: 0;
|
|
76
|
+
$rte-big-inline-tmp-min-width: 48px;
|
|
77
|
+
$rte-inline-tmp-min-width: 55px;
|
|
78
|
+
$rte-big-inline-tmp-size-min-width: 59px;
|
|
79
|
+
$rte-inline-tmp-size-min-width: 66px;
|
|
80
|
+
$rte-big-inline-tmp-color-min-width: 50px;
|
|
81
|
+
$rte-inline-tmp-color-min-width: 55px;
|
|
82
|
+
$rte-big-color-list-span-common-padding-left-right: 0;
|
|
83
|
+
$rte-default-character-count-opacity: 1;
|
|
84
|
+
//Layout Variables End
|
|
85
|
+
|
|
86
|
+
//Theme Variables Start
|
|
87
|
+
$rte-split-btn-active-border: 0 !default;
|
|
88
|
+
$rte-border-color: $border-light !default;
|
|
89
|
+
$rte-content-bg: $content-bg-color !default;
|
|
90
|
+
$rte-full-screen-bg: $content-bg-color !default;
|
|
91
|
+
$rte-content-font-color: $content-text-color !default;
|
|
92
|
+
$rte-item-color: $content-text-color !default;
|
|
93
|
+
$rte-icons-color: $icon-color !default;
|
|
94
|
+
$rte-img-popup-border: 1px solid $border-light !default;
|
|
95
|
+
$rte-img-popup-box-shadow: $shadow !default;
|
|
96
|
+
$rte-img-popup-color: $border-light !default;
|
|
97
|
+
$rte-quick-item-active-bg: $secondary-bg-color-pressed !default;
|
|
98
|
+
$rte-quick-item-active-font-color: $secondary-text-color-hover !default;
|
|
99
|
+
$rte-quick-item-border: 0 !default;
|
|
100
|
+
$rte-quick-item-hover-border-color: $secondary-border-color-hover !default;
|
|
101
|
+
$rte-quick-item-active-border-color: $secondary-border-color-pressed !default;
|
|
102
|
+
$rte-quick-drop-btn-border-color: $content-bg-color-alt2 !default;
|
|
103
|
+
$rte-quick-drop-btn-hover-border-color: $content-bg-color-alt2 !default;
|
|
104
|
+
$rte-extended-toolbar-background: $content-bg-color-alt2 !default;
|
|
105
|
+
$rte-quick-pop-border: none !default;
|
|
106
|
+
$rte-quick-tb-border: 1px solid $border-light !default;
|
|
107
|
+
$rte-quick-pop-bg: $content-bg-color-alt2 !default;
|
|
108
|
+
$rte-quick-vr-line-color: $border-light !default;
|
|
109
|
+
$rte-quick-pop-shadow: none !default;
|
|
110
|
+
$rte-quick-pop-item-focus-bg: $secondary-bg-color-pressed !default;
|
|
111
|
+
$rte-quick-tb-btn-hover: $secondary-bg-color-hover !default;
|
|
112
|
+
$rte-tb-item-active-bg: $secondary-bg-color-pressed !default;
|
|
113
|
+
$rte-tb-active-font-color: $white !default;
|
|
114
|
+
$rte-tb-item-active-border: 1px solid $secondary-border-color-pressed !default;
|
|
115
|
+
$rte-expand-tb-border-bottom: $rte-border-size $rte-border-type $border-light !default;
|
|
116
|
+
$rte-color-picker-active-bg: inherit !default;
|
|
117
|
+
$rte-drop-btn-active-bg: $secondary-bg-color-pressed !default;
|
|
118
|
+
$rte-drop-btn-active-color: $white !default;
|
|
119
|
+
$rte-drop-btn-active-border-color: $secondary-border-color-pressed !default;
|
|
120
|
+
$rte-split-btn-active-hover-font-color: $white !default;
|
|
121
|
+
$rte-split-btn-color: $secondary-bg-color-pressed !default;
|
|
122
|
+
$rte-split-btn-active-color: $white !default;
|
|
123
|
+
$rte-split-btn-hover-bg: $secondary-bg-color-hover !default;
|
|
124
|
+
$rte-split-btn-active-bg: $secondary-bg-color-pressed !default;
|
|
125
|
+
$rte-split-btn-span-hover-bg: $secondary-bg-color-hover !default;
|
|
126
|
+
$rte-split-btn-span-focus-bg: $secondary-bg-color-pressed !default;
|
|
127
|
+
$rte-split-btn-span-active-bg: $secondary-bg-color-pressed !default;
|
|
128
|
+
$rte-split-btn-bar-bg: $content-bg-color !default;
|
|
129
|
+
$rte-split-btn-active-bar-bg: $content-bg-color !default;
|
|
130
|
+
$rte-split-btn-bar-size: 0 !default;
|
|
131
|
+
$rte-split-btn-active-border: 0 !default;
|
|
132
|
+
$rte-split-btn-active-color-icon-line-height: 30px !default;
|
|
133
|
+
$rte-big-split-btn-active-color-icon-line-height: 38px !default;
|
|
134
|
+
|
|
135
|
+
$rte-link-valid-color: $danger !default;
|
|
136
|
+
$rte-upload-drag-border-clr: $border-dark !default;
|
|
137
|
+
$rte-img-header-clr: $content-text-color !default;
|
|
138
|
+
$rte-drop-text-clr: $content-text-color-alt2 !default;
|
|
139
|
+
$rte-default-character-count-color: $placeholder-text-color !default;
|
|
140
|
+
$rte-warning-character-count-color: $warning !default;
|
|
141
|
+
$rte-error-character-count-color: $danger !default;
|
|
142
|
+
$rte-img-border: dashed 2px $primary !default;
|
|
143
|
+
$rte-font-family: $font-family !default;
|
|
144
|
+
$rte-content-color: $content-text-color !default;
|
|
145
|
+
$rte-content-blockquote-border-left-color: solid 2px $content-text-color !default;
|
|
146
|
+
$rte-dropdown-selection-bgcolor: $secondary-bg-color-pressed !default;
|
|
147
|
+
$rte-ext-tbar-overlay-icons-color: $icon-color-disabled !default;
|
|
148
|
+
$rte-overlay-color: $overlay-bg-color !default;
|
|
149
|
+
$rte-dropdown-selection-color: $secondary-text-color-pressed !default;
|
|
150
|
+
$rte-anchor-color: $primary !default;
|
|
151
|
+
$rte-ext-tbar-overlay-dropdown-color: $content-bg-color-alt4 !default;
|
|
152
|
+
$rte-img-resize-back-color: $primary !default;
|
|
153
|
+
$rte-img-resize-color: $primary-text-color !default;
|
|
154
|
+
$rte-table-header-color: $content-text-color-alt1 !default;
|
|
155
|
+
$rte-table-span-bg-color: $content-bg-color !default;
|
|
156
|
+
$rte-table-span-border: 1px solid $border-light !default;
|
|
157
|
+
$rte-table-span-active-bg-color: $primary-lighter !default;
|
|
158
|
+
$rte-table-span-active-border-color: $primary !default;
|
|
159
|
+
$rte-table-select-border-color: $primary !default;
|
|
160
|
+
$rte-table-popup-bg: $flyout-bg-color !default;
|
|
161
|
+
$rte-table-popup-color: $border-light !default;
|
|
162
|
+
$rte-table-popup-box: $shadow !default;
|
|
163
|
+
$rte-table-border-color: $border-light !default;
|
|
164
|
+
$rte-table-alternate-color: $content-bg-color-alt1 !default;
|
|
165
|
+
$rte-table-header-bg: $content-bg-color-alt1 !default;
|
|
166
|
+
//Theme Variables End
|
|
167
|
+
|
|
168
|
+
$rte-tb-hover-font-color: $secondary-text-color-hover;
|
|
169
|
+
$transparent: $transparent;
|
|
170
|
+
$rte-placeholder-padding: 16px !default;
|
|
171
|
+
|
|
172
|
+
$rte-img-dlg-min-height: 390px !default;
|
|
173
|
+
$rte-big-img-dlg-min-height: 425px !default;
|
|
174
|
+
$rte-link-dlg-min-height: 339px !default;
|
|
175
|
+
$rte-big-link-dlg-min-height: 385px !default;
|
|
176
|
+
$rte-table-dlg-min-height: 253px !default;
|
|
177
|
+
$rte-big-table-dlg-min-height: 299px !default;
|
|
178
|
+
$rte-img-alt-dlg-min-height: 159px !default;
|
|
179
|
+
$rte-big-img-alt-dlg-min-height: 193px !default;
|
|
180
|
+
$rte-img-link-dlg-min-height: 192px !default;
|
|
181
|
+
$rte-big-img-link-dlg-min-height: 229px !default;
|
|
182
|
+
$rte-img-size-dlg-min-height: 247px !default;
|
|
183
|
+
$rte-big-img-size-dlg-min-height: 299px !default;
|
|
184
|
+
$rte-edit-table-dlg-min-height: 321px !default;
|
|
185
|
+
$rte-big-edit-table-dlg-min-height: 373px !default;
|
|
186
|
+
$rte-file-browser-dlg-min-height: 586px !default;
|
|
187
|
+
$rte-big-file-browser-dlg-min-height: 641px !default;
|
|
188
|
+
$toolbar-expand-icon-min-height: 40px !default;
|
|
189
|
+
$rte-align-caret-icon-min-width: 24px !default;
|
|
@@ -0,0 +1,303 @@
|
|
|
1
|
+
/*! component's theme wise override definitions and variables */
|
|
2
|
+
@include export-module('richtexteditor-material-icons') {
|
|
3
|
+
/*! richtexteditor icons */
|
|
4
|
+
|
|
5
|
+
.e-rte-toolbar,
|
|
6
|
+
.e-rte-dropdown-popup {
|
|
7
|
+
|
|
8
|
+
.e-alignments::before {
|
|
9
|
+
content: '\e7b8';
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.e-justify-left::before {
|
|
13
|
+
content: '\e7b8';
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.e-justify-center::before {
|
|
17
|
+
content: '\e813';
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.e-justify-right::before {
|
|
21
|
+
content: '\e719';
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.e-justify-full::before {
|
|
25
|
+
content: '\e721';
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.e-font-name::before {
|
|
29
|
+
content: '\e76f';
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.e-font-color::before {
|
|
33
|
+
content: '\e79f';
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.e-background-color::before {
|
|
37
|
+
content: '\e783';
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.e-bold::before {
|
|
41
|
+
content: '\e737';
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.e-italic::before {
|
|
45
|
+
content: '\e75a';
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.e-underline::before {
|
|
49
|
+
content: '\e82f';
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.e-strike-through::before {
|
|
53
|
+
content: '\e758';
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.e-clear-format::before {
|
|
57
|
+
content: '\e803';
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.e-clear-all::before {
|
|
61
|
+
content: '\e7cc';
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.e-cut::before {
|
|
65
|
+
content: '\e7fb';
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.e-copy::before {
|
|
69
|
+
content: '\e77c';
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.e-paste::before {
|
|
73
|
+
content: '\e70b';
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.e-unorder-list::before {
|
|
77
|
+
content: '\e77e';
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.e-order-list::before {
|
|
81
|
+
content: '\e7cb';
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.e-indent::before {
|
|
85
|
+
content: '\e810';
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.e-outdent::before {
|
|
89
|
+
content: '\e72a';
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.e-undo::before {
|
|
93
|
+
content: '\e713';
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.e-redo::before {
|
|
97
|
+
content: '\e755';
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.e-super-script::before {
|
|
101
|
+
content: '\e7a7';
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.e-sub-script::before {
|
|
105
|
+
content: '\e80a';
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.e-create-link::before {
|
|
109
|
+
content: '\e757';
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.e-open-link::before {
|
|
113
|
+
content: '\e77a';
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.e-edit-link::before {
|
|
117
|
+
content: '\e722';
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.e-remove-link::before {
|
|
121
|
+
content: '\e80c';
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.e-image::before {
|
|
125
|
+
content: '\e786';
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.e-replace::before {
|
|
129
|
+
content: '\e710';
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.e-align::before {
|
|
133
|
+
content: '\e7b8';
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.e-caption::before {
|
|
137
|
+
content: '\e82e';
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.e-remove::before {
|
|
141
|
+
content: '\e820';
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.e-insert-link::before {
|
|
145
|
+
content: '\e757';
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.e-display::before {
|
|
149
|
+
content: '\e7b7';
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.e-alt-text::before {
|
|
153
|
+
content: '\e769';
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.e-img-dimension::before {
|
|
157
|
+
content: '\e879';
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.e-maximize::before {
|
|
161
|
+
content: '\e81c';
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.e-minimize::before {
|
|
165
|
+
content: '\e7b0';
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.e-zoom-in::before {
|
|
169
|
+
content: '\e795';
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.e-zoom-out::before {
|
|
173
|
+
content: '\e825';
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.e-lower-case::before {
|
|
177
|
+
content: '\e746';
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.e-upper-case::before {
|
|
181
|
+
content: '\e793';
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.e-print::before {
|
|
185
|
+
content: '\e75d';
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.e-formats::before {
|
|
189
|
+
content: '\e844';
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.e-source-code::before {
|
|
193
|
+
content: '\e80e';
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.e-preview::before {
|
|
197
|
+
content: '\e7de';
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.e-view-side::before {
|
|
201
|
+
content: '\e82b';
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.e-insert-code::before {
|
|
205
|
+
content: '\e831';
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.e-table-header::before {
|
|
209
|
+
content: '\e7c3';
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
.e-table-remove::before {
|
|
213
|
+
content: '\e820';
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.e-table-rows::before {
|
|
217
|
+
content: '\e77f';
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
.e-table-columns::before {
|
|
221
|
+
content: '\e841';
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
.e-table-cell-ver-align::before {
|
|
225
|
+
content: '\e74f';
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
.e-table-edit-properties::before {
|
|
229
|
+
content: '\e730';
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
.e-create-table::before {
|
|
233
|
+
content: '\e7e9';
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.e-align-bottom::before {
|
|
237
|
+
content: '\e7a0';
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.e-align-middle::before {
|
|
241
|
+
content: '\e74f';
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
.e-align-top::before {
|
|
245
|
+
content: '\e707';
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
.e-insert-column-left::before {
|
|
249
|
+
content: '\e78b';
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.e-insert-column-right::before {
|
|
253
|
+
content: '\e70e';
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
.e-delete-column::before {
|
|
257
|
+
content: '\e714';
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
.e-insert-row-before::before {
|
|
261
|
+
content: '\e836';
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
.e-insert-row-after::before {
|
|
265
|
+
content: '\e801';
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
.e-delete-row::before {
|
|
269
|
+
content: '\e7f2';
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
.e-style::before {
|
|
273
|
+
content: '\e76e';
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
.e-rte-file-manager::before {
|
|
277
|
+
content: '\e83c';
|
|
278
|
+
}
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
.e-richtexteditor {
|
|
282
|
+
.e-south-east::before,
|
|
283
|
+
.e-south-west::before {
|
|
284
|
+
content: '\e761';
|
|
285
|
+
}
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
.e-cell-merge::before {
|
|
289
|
+
content: '\e83a';
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
.e-cell-horizontal-split::before {
|
|
293
|
+
content: '\e7a4';
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
.e-cell-vertical-split::before {
|
|
297
|
+
content: '\e732';
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
.e-table-cell::before {
|
|
301
|
+
content: '\e7c2';
|
|
302
|
+
}
|
|
303
|
+
}
|