@syncfusion/ej2-angular-richtexteditor 23.2.6-ngcc → 23.2.7-52849

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.
Files changed (88) hide show
  1. package/esm2020/public_api.mjs +3 -0
  2. package/esm2020/src/index.mjs +5 -0
  3. package/esm2020/src/rich-text-editor/richtexteditor-all.module.mjs +71 -0
  4. package/esm2020/src/rich-text-editor/richtexteditor.component.mjs +197 -0
  5. package/esm2020/src/rich-text-editor/richtexteditor.module.mjs +25 -0
  6. package/esm2020/syncfusion-ej2-angular-richtexteditor.mjs +5 -0
  7. package/fesm2015/syncfusion-ej2-angular-richtexteditor.mjs +293 -0
  8. package/fesm2015/syncfusion-ej2-angular-richtexteditor.mjs.map +1 -0
  9. package/fesm2020/syncfusion-ej2-angular-richtexteditor.mjs +293 -0
  10. package/fesm2020/syncfusion-ej2-angular-richtexteditor.mjs.map +1 -0
  11. package/package.json +26 -12
  12. package/schematics/utils/lib-details.js +2 -2
  13. package/schematics/utils/lib-details.ts +2 -2
  14. package/src/rich-text-editor/richtexteditor-all.module.d.ts +6 -0
  15. package/src/rich-text-editor/richtexteditor.component.d.ts +3 -0
  16. package/src/rich-text-editor/richtexteditor.module.d.ts +6 -0
  17. package/styles/_all.scss +1 -0
  18. package/styles/material3-dark.scss +1 -0
  19. package/styles/material3.scss +1 -0
  20. package/styles/rich-text-editor/_all.scss +2 -0
  21. package/styles/rich-text-editor/_bootstrap-dark-definition.scss +277 -0
  22. package/styles/rich-text-editor/_bootstrap-definition.scss +334 -0
  23. package/styles/rich-text-editor/_bootstrap4-definition.scss +460 -0
  24. package/styles/rich-text-editor/_bootstrap5-dark-definition.scss +1 -0
  25. package/styles/rich-text-editor/_bootstrap5-definition.scss +262 -0
  26. package/styles/rich-text-editor/_fabric-dark-definition.scss +259 -0
  27. package/styles/rich-text-editor/_fabric-definition.scss +257 -0
  28. package/styles/rich-text-editor/_fluent-dark-definition.scss +1 -0
  29. package/styles/rich-text-editor/_fluent-definition.scss +263 -0
  30. package/styles/rich-text-editor/_fusionnew-definition.scss +261 -0
  31. package/styles/rich-text-editor/_highcontrast-definition.scss +257 -0
  32. package/styles/rich-text-editor/_highcontrast-light-definition.scss +257 -0
  33. package/styles/rich-text-editor/_layout.scss +2072 -0
  34. package/styles/rich-text-editor/_material-dark-definition.scss +262 -0
  35. package/styles/rich-text-editor/_material-definition.scss +260 -0
  36. package/styles/rich-text-editor/_material3-dark-definition.scss +1 -0
  37. package/styles/rich-text-editor/_material3-definition.scss +262 -0
  38. package/styles/rich-text-editor/_tailwind-dark-definition.scss +1 -0
  39. package/styles/rich-text-editor/_tailwind-definition.scss +257 -0
  40. package/styles/rich-text-editor/_theme.scss +837 -0
  41. package/styles/rich-text-editor/bootstrap-dark.scss +4 -1
  42. package/styles/rich-text-editor/bootstrap.scss +4 -1
  43. package/styles/rich-text-editor/bootstrap4.scss +4 -1
  44. package/styles/rich-text-editor/bootstrap5-dark.scss +4 -1
  45. package/styles/rich-text-editor/bootstrap5.scss +4 -1
  46. package/styles/rich-text-editor/fabric-dark.scss +4 -1
  47. package/styles/rich-text-editor/fabric.scss +4 -1
  48. package/styles/rich-text-editor/fluent-dark.scss +4 -1
  49. package/styles/rich-text-editor/fluent.scss +4 -1
  50. package/styles/rich-text-editor/highcontrast-light.scss +4 -1
  51. package/styles/rich-text-editor/highcontrast.scss +4 -1
  52. package/styles/rich-text-editor/icons/_bootstrap-dark.scss +349 -0
  53. package/styles/rich-text-editor/icons/_bootstrap.scss +349 -0
  54. package/styles/rich-text-editor/icons/_bootstrap4.scss +349 -0
  55. package/styles/rich-text-editor/icons/_bootstrap5-dark.scss +1 -0
  56. package/styles/rich-text-editor/icons/_bootstrap5.scss +348 -0
  57. package/styles/rich-text-editor/icons/_fabric-dark.scss +349 -0
  58. package/styles/rich-text-editor/icons/_fabric.scss +349 -0
  59. package/styles/rich-text-editor/icons/_fluent-dark.scss +1 -0
  60. package/styles/rich-text-editor/icons/_fluent.scss +348 -0
  61. package/styles/rich-text-editor/icons/_fusionnew.scss +348 -0
  62. package/styles/rich-text-editor/icons/_highcontrast-light.scss +349 -0
  63. package/styles/rich-text-editor/icons/_highcontrast.scss +349 -0
  64. package/styles/rich-text-editor/icons/_material-dark.scss +349 -0
  65. package/styles/rich-text-editor/icons/_material.scss +349 -0
  66. package/styles/rich-text-editor/icons/_material3-dark.scss +1 -0
  67. package/styles/rich-text-editor/icons/_material3.scss +348 -0
  68. package/styles/rich-text-editor/icons/_tailwind-dark.scss +1 -0
  69. package/styles/rich-text-editor/icons/_tailwind.scss +348 -0
  70. package/styles/rich-text-editor/material-dark.scss +4 -1
  71. package/styles/rich-text-editor/material.scss +4 -1
  72. package/styles/rich-text-editor/material3-dark.scss +4 -1
  73. package/styles/rich-text-editor/material3.scss +4 -1
  74. package/styles/rich-text-editor/tailwind-dark.scss +4 -1
  75. package/styles/rich-text-editor/tailwind.scss +4 -1
  76. package/syncfusion-ej2-angular-richtexteditor.d.ts +5 -0
  77. package/@syncfusion/ej2-angular-richtexteditor.es5.js +0 -343
  78. package/@syncfusion/ej2-angular-richtexteditor.es5.js.map +0 -1
  79. package/@syncfusion/ej2-angular-richtexteditor.js +0 -324
  80. package/@syncfusion/ej2-angular-richtexteditor.js.map +0 -1
  81. package/CHANGELOG.md +0 -1517
  82. package/dist/ej2-angular-richtexteditor.umd.js +0 -828
  83. package/dist/ej2-angular-richtexteditor.umd.js.map +0 -1
  84. package/dist/ej2-angular-richtexteditor.umd.min.js +0 -11
  85. package/dist/ej2-angular-richtexteditor.umd.min.js.map +0 -1
  86. package/ej2-angular-richtexteditor.d.ts +0 -5
  87. package/ej2-angular-richtexteditor.metadata.json +0 -1
  88. package/postinstall/tagchange.js +0 -18
@@ -0,0 +1,2072 @@
1
+ @include export-module('richtexteditor-layout') {
2
+
3
+ /*! tab layout */
4
+
5
+ .e-bigger .e-richtexteditor,
6
+ .e-richtexteditor.e-bigger {
7
+
8
+ .e-rte-toolbar {
9
+ .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child {
10
+ margin-left: $rte-big-tb-items-margin-left;
11
+ }
12
+ }
13
+
14
+ @if $skin-name == 'tailwind' or $skin-name == 'bootstrap5' {
15
+ .e-rte-toolbar .e-toolbar-item .e-dropdown-btn .e-dropdown-btn {
16
+ font-size: $dropdown-btn-big-font-size;
17
+ }
18
+ }
19
+
20
+ &.e-rtl .e-rte-toolbar .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child {
21
+ margin-left: 0;
22
+ margin-right: $rte-big-tb-items-margin-left;
23
+ }
24
+
25
+ .e-rte-toolbar,
26
+ .e-rte-toolbar.e-toolbar.e-extended-toolbar {
27
+
28
+ .e-toolbar-extended {
29
+ padding-left: $rte-big-tb-items-padding-left;
30
+ }
31
+
32
+ .e-toolbar-items,
33
+ .e-toolbar-extended {
34
+
35
+ .e-toolbar-item .e-tbar-btn .e-order-list.e-icons,
36
+ .e-toolbar-item .e-tbar-btn .e-unorder-list.e-icons,
37
+ .e-toolbar-item .e-tbar-btn .e-icons.e-btn-icon:not(.e-caret) {
38
+ font-size: $rte-toolbar-big-icon-size;
39
+ }
40
+
41
+ .e-toolbar-item .e-rte-font-color .e-selected-color.e-icons::before,
42
+ .e-toolbar-item .e-background-color .e-selected-color.e-icons::before {
43
+ top: -20px;
44
+ }
45
+
46
+ .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-dropdown-btn.e-rte-dropdown-btn {
47
+ padding-left: $rte-big-drop-btn-padding-left;
48
+ padding-right: $rte-big-drop-btn-padding-right;
49
+ }
50
+
51
+ .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-rte-dropdown-btn.e-dropdown-btn:hover,
52
+ .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-rte-dropdown-btn.e-dropdown-btn:focus,
53
+ .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-rte-dropdown-btn.e-dropdown-btn:active {
54
+ padding-left: $rte-big-drop-btn-action-padding-left;
55
+ padding-right: $rte-big-drop-btn-action-padding-right;
56
+ }
57
+
58
+ .e-toolbar-item.e-active .e-tbar-btn.e-btn {
59
+ padding: $rte-big-active-tb-item-btn-padding;
60
+ @if $skin-name == 'FluentUI' {
61
+ border-radius: 0;
62
+ }
63
+ }
64
+ .e-dropdown-btn .e-rte-color-content{
65
+ padding-top: $rte-big-dropdown-btn-color-content-padding;
66
+ height: $rte-big-dropdown-btn-color-content-height;
67
+ }
68
+ }
69
+
70
+ @if $skin-name == 'bootstrap5' {
71
+ .e-toolbar-extended .e-toolbar-item.e-active .e-tbar-btn.e-btn {
72
+ padding: 0 8px;
73
+ }
74
+ }
75
+ }
76
+
77
+ &.e-rte-full-screen {
78
+
79
+ iframe {
80
+ height: calc(100% - 56px);
81
+ }
82
+
83
+ .e-rte-edit-table {
84
+ max-height: $rte-big-table-dlg-max-height !important; /* stylelint-disable-line declaration-no-important */
85
+ }
86
+
87
+ .e-rte-edit-table-prop-dialog {
88
+ max-height: $rte-big-edit-table-dlg-max-height !important; /* stylelint-disable-line declaration-no-important */
89
+ }
90
+
91
+ .e-rte-link-dialog {
92
+ max-height: $rte-big-link-dlg-max-height !important; /* stylelint-disable-line declaration-no-important */
93
+ }
94
+
95
+ .e-rte-img-dialog {
96
+ min-height: $rte-big-img-dlg-max-height !important; /* stylelint-disable-line declaration-no-important */
97
+ }
98
+
99
+ .e-rte-img-link-dialog {
100
+ max-height: $rte-big-img-link-dlg-max-height !important; /* stylelint-disable-line declaration-no-important */
101
+ }
102
+
103
+ .e-rte-img-size-dialog {
104
+ max-height: $rte-big-img-size-dlg-max-height !important; /* stylelint-disable-line declaration-no-important */
105
+ }
106
+
107
+ .e-rte-img-alt-dialog {
108
+ min-height: $rte-big-img-alt-dlg-max-height !important; /* stylelint-disable-line declaration-no-important */
109
+ }
110
+ }
111
+
112
+ .e-rte-toolbar,
113
+ .e-rte-toolbar.e-toolbar.e-extended-toolbar {
114
+ .e-toolbar-items,
115
+ .e-toolbar-extended {
116
+ .e-toolbar-item {
117
+ .e-rte-numberformatlist-dropdown .e-rte-list-primary-content,
118
+ .e-rte-bulletformatlist-dropdown .e-rte-list-primary-content {
119
+ line-height: $rte-big-formatlists-dropdown-line-height;
120
+ @if $skin-name == 'FluentUI' {
121
+ padding: 5.5px;
122
+ }
123
+ }
124
+ }
125
+ }
126
+ }
127
+ .e-dialog.e-rte-dialog-minheight {
128
+ min-height: 324px;
129
+ @if $skin-name == 'FluentUI' {
130
+ min-height: 350px;
131
+ }
132
+ }
133
+ }
134
+
135
+ .e-richtexteditor {
136
+ color: $rte-content-color;
137
+ display: block;
138
+ position: relative;
139
+
140
+ & textarea.e-content {
141
+ border: 0;
142
+ display: block;
143
+ height: 100%;
144
+ margin: 0;
145
+ outline: 0;
146
+ padding: 8px;
147
+ resize: none;
148
+ width: 100%;
149
+ }
150
+
151
+ & .e-rte-hidden {
152
+ display: none;
153
+ }
154
+
155
+ &.e-disabled {
156
+ pointer-events: none;
157
+ }
158
+
159
+ &.e-rte-full-screen {
160
+ bottom: 0;
161
+ height: 100% !important; /* stylelint-disable-line declaration-no-important */
162
+ left: 0;
163
+ overflow: auto;
164
+ position: fixed;
165
+ right: 0;
166
+ top: 0;
167
+ width: 100% !important; /* stylelint-disable-line declaration-no-important */
168
+ z-index: 999;
169
+
170
+ .e-resize-handle {
171
+ display: none;
172
+ }
173
+
174
+ iframe {
175
+ height: calc(100% - 42px);
176
+ }
177
+
178
+ .e-rte-edit-table {
179
+ max-height: $rte-table-dlg-max-height !important; /* stylelint-disable-line declaration-no-important */
180
+ }
181
+
182
+ .e-rte-edit-table-prop-dialog {
183
+ max-height: $rte-edit-table-dlg-max-height !important; /* stylelint-disable-line declaration-no-important */
184
+ }
185
+
186
+ .e-rte-link-dialog {
187
+ max-height: $rte-link-dlg-max-height !important; /* stylelint-disable-line declaration-no-important */
188
+ }
189
+
190
+ .e-rte-img-dialog {
191
+ max-height: $rte-img-dlg-max-height !important; /* stylelint-disable-line declaration-no-important */
192
+ }
193
+
194
+ .e-rte-img-link-dialog {
195
+ max-height: $rte-img-link-dlg-max-height !important; /* stylelint-disable-line declaration-no-important */
196
+ }
197
+
198
+ .e-rte-img-size-dialog {
199
+ max-height: $rte-img-size-dlg-max-height !important; /* stylelint-disable-line declaration-no-important */
200
+ }
201
+
202
+ .e-rte-img-alt-dialog {
203
+ max-height: $rte-img-alt-dlg-max-height !important; /* stylelint-disable-line declaration-no-important */
204
+ }
205
+ }
206
+
207
+ &.e-rtl .e-rte-character-count {
208
+ left: 0;
209
+ padding-left: 30px;
210
+ padding-right: unset;
211
+ right: unset;
212
+ }
213
+
214
+ &.e-rtl .e-rte-content .e-content blockquote {
215
+ padding-left: 0;
216
+ padding-right: 5px;
217
+ }
218
+
219
+ .e-rte-toolbar {
220
+
221
+ @if $skin-name == 'bootstrap5' {
222
+ &.e-toolbar .e-hor-nav {
223
+ min-height: $toolbar-expand-icon-min-height;
224
+ }
225
+ }
226
+
227
+ .e-toolbar-items:not(.e-tbar-pos):not(.e-toolbar-multirow) .e-toolbar-item:first-child {
228
+ margin-left: $rte-tb-items-margin-left;
229
+ }
230
+
231
+ .e-hor-nav.e-expended-nav {
232
+ height: auto;
233
+ min-height: $rte-tb-expended-min-height;
234
+ padding-left: $rte-tb-expended-padding-left;
235
+ }
236
+
237
+ .e-toolbar-multirow {
238
+ margin-left: 7px;
239
+ margin-right: 7px;
240
+ }
241
+ }
242
+
243
+ &.e-rtl .e-rte-toolbar .e-toolbar-items:not(.e-tbar-pos):not(.e-toolbar-multirow) .e-toolbar-item:first-child {
244
+ margin-left: 0;
245
+ margin-right: $rte-tb-items-margin-left;
246
+ }
247
+
248
+ &.e-rtl .e-rte-toolbar .e-toolbar-multirow:not(.e-tbar-pos) .e-toolbar-item:first-child {
249
+ margin-right: 0;
250
+ }
251
+
252
+ .e-rte-toolbar.e-rte-tb-mobile .e-toolbar-multirow {
253
+ display: inline-block;
254
+ margin-left: 0;
255
+ margin-right: 0;
256
+ overflow-x: auto;
257
+ white-space: nowrap;
258
+ width: 100%;
259
+ }
260
+
261
+ .e-rte-toolbar,
262
+ .e-rte-toolbar.e-toolbar.e-extended-toolbar {
263
+ position: inherit;
264
+ z-index: 101;
265
+
266
+ .e-toolbar-extended {
267
+ margin-left: 0;
268
+ padding-left: $rte-tb-items-padding-left;
269
+ }
270
+
271
+ .e-toolbar-items,
272
+ .e-toolbar-extended {
273
+
274
+ .e-toolbar-item {
275
+
276
+ .e-formats-tbar-btn > :first-child {
277
+ min-width: $rte-format-btn-min-width;
278
+ }
279
+
280
+ .e-font-name-tbar-btn > :first-child {
281
+ min-width: $rte-font-name-btn-min-width;
282
+ }
283
+
284
+ .e-font-size-tbar-btn > :first-child {
285
+ min-width: $rte-font-size-btn-min-width;
286
+ }
287
+
288
+ .e-dropdown-btn {
289
+ padding-left: $rte-drop-btn-padding-left;
290
+ padding-right: $rte-drop-btn-padding-right;
291
+
292
+ @if $skin-name == 'bootstrap5' {
293
+ border: 1px solid $transparent;
294
+ }
295
+
296
+ .e-rte-dropdown-btn-text {
297
+ font-size: $dropdown-btn-font-size;
298
+ font-weight: $font-weight;
299
+ overflow: hidden;
300
+ text-overflow: ellipsis;
301
+ white-space: nowrap;
302
+ }
303
+ }
304
+
305
+ .e-dropdown-btn:hover,
306
+ .e-dropdown-btn:focus,
307
+ .e-dropdown-btn:active {
308
+ padding-left: $rte-drop-btn-action-padding-left;
309
+ padding-right: $rte-drop-btn-action-padding-right;
310
+ }
311
+
312
+ .e-rte-font-color .e-selected-color.e-icons::before {
313
+ font-size: 12px;
314
+ position: relative;
315
+ top: -18px;
316
+ }
317
+
318
+ .e-rte-numberformatlist-dropdown .e-rte-list-primary-content,
319
+ .e-rte-bulletformatlist-dropdown .e-rte-list-primary-content {
320
+ line-height: $rte-formatlists-dropdown-line-height;
321
+ @if $skin-name == 'FluentUI' {
322
+ padding: 5px;
323
+ }
324
+ }
325
+
326
+ .e-background-color.e-icons::before {
327
+ display: inline;
328
+ font-size: $rte-background-color-icon-fontsize;
329
+ }
330
+
331
+ .e-tbar-btn {
332
+
333
+ .e-order-list.e-icons,
334
+ .e-unorder-list.e-icons,
335
+ .e-icons.e-btn-icon:not(.e-caret) {
336
+ font-size: $rte-toolbar-icon-size;
337
+ }
338
+ }
339
+
340
+ &.e-active .e-tbar-btn.e-btn {
341
+ padding: $rte-active-tb-item-btn-padding;
342
+ @if $skin-name == 'FluentUI' {
343
+ border-radius: 0;
344
+ }
345
+ }
346
+ }
347
+ .e-dropdown-btn .e-rte-color-content {
348
+ padding-top: $rte-dropdown-btn-color-content-padding;
349
+ height: $rte-dropdown-btn-color-content-height;
350
+ }
351
+ }
352
+
353
+ @if $skin-name == 'bootstrap5' {
354
+ .e-toolbar-extended .e-toolbar-item.e-active .e-tbar-btn.e-btn {
355
+ padding: 0 4px;
356
+ }
357
+ }
358
+
359
+ &.e-control[class *= 'e-toolbar'] {
360
+ box-sizing: border-box;
361
+ }
362
+
363
+ .e-toolbar-extended.e-visible {
364
+ display: block;
365
+ visibility: hidden;
366
+ }
367
+
368
+ &.e-tbar-ios-fixed.e-rte-tb-fixed {
369
+ top: 0;
370
+ transform: translate3d(0, 0, 0);
371
+ }
372
+
373
+ &.e-rte-tb-fixed:not(.e-tbar-ios-fixed) {
374
+ bottom: 0;
375
+ }
376
+
377
+ &.e-rte-tb-fixed {
378
+ display: none;
379
+ left: 0;
380
+ position: fixed;
381
+ right: 0;
382
+
383
+ &.e-show {
384
+ display: block;
385
+ z-index: 101;
386
+ }
387
+ }
388
+
389
+ &.e-rte-tb-float {
390
+ position: fixed;
391
+ top: 0;
392
+
393
+ &.e-rte-tb-abs-float {
394
+ position: absolute;
395
+ }
396
+ }
397
+ }
398
+
399
+ .rte-placeholder {
400
+ color: $rte-content-font-color;
401
+ line-height: $rte-placeholder-line-height;
402
+ opacity: .54;
403
+ overflow: hidden;
404
+ padding: $rte-placeholder-padding;
405
+ position: absolute;
406
+ text-align: start;
407
+ top: 0;
408
+ z-index: 1;
409
+ }
410
+
411
+ .e-rte-content {
412
+ position: relative;
413
+ z-index: 1;
414
+ }
415
+
416
+ .e-rte-content,
417
+ .e-source-content {
418
+ /* stylelint-disable property-no-vendor-prefix */
419
+ -webkit-overflow-scrolling: touch; //iOS devices scrolling smooth
420
+ // sass-lint:enabled no-vendor-prefixes
421
+ overflow: auto;
422
+ transition: 100ms ease-out;
423
+ width: 100%;
424
+
425
+ .e-content {
426
+ background: unset;
427
+ box-sizing: border-box;
428
+ height: 100%;
429
+ min-height: 100px;
430
+ outline: 0 solid transparent;
431
+ overflow-x: auto;
432
+ padding: $rte-content-padding;
433
+ position: relative;
434
+ text-align: inherit;
435
+ z-index: 2;
436
+
437
+ @media screen and (min-width: 992px) {
438
+ font-size: $rte-content-font-size;
439
+ }
440
+ }
441
+
442
+ .e-content p {
443
+ margin: 0 0 10px;
444
+ margin-bottom: 10px;
445
+ }
446
+
447
+ .e-content li {
448
+ margin-bottom: 10px;
449
+ }
450
+
451
+ .e-content h1 {
452
+ font-size: 2.17em;
453
+ font-weight: normal;
454
+ line-height: 1;
455
+ margin: 10px 0;
456
+ }
457
+
458
+ .e-content h2 {
459
+ font-size: 1.74em;
460
+ font-weight: normal;
461
+ margin: 10px 0;
462
+ }
463
+
464
+ .e-content h3 {
465
+ font-size: 1.31em;
466
+ font-weight: normal;
467
+ margin: 10px 0;
468
+ }
469
+
470
+ .e-content h4 {
471
+ font-size: 16px;
472
+ font-weight: normal;
473
+ line-height: 1.5;
474
+ margin: 0;
475
+ }
476
+
477
+ .e-content h5 {
478
+ font-size: .8em;
479
+ font-weight: normal;
480
+ margin: 0;
481
+ }
482
+
483
+ .e-content h6 {
484
+ font-size: .65em;
485
+ font-weight: normal;
486
+ margin: 0;
487
+ }
488
+
489
+ .e-content blockquote {
490
+ margin: 10px 0;
491
+ margin-left: 0;
492
+ padding-left: 5px;
493
+ }
494
+
495
+ .e-content pre {
496
+ background-color: inherit;
497
+ border: 0;
498
+ border-radius: 0;
499
+ color: $rte-content-color;
500
+ font-size: inherit;
501
+ line-height: inherit;
502
+ margin: 0 0 10px;
503
+ overflow: visible;
504
+ padding: 0;
505
+ white-space: pre-wrap;
506
+ word-break: inherit;
507
+ word-wrap: break-word;
508
+ }
509
+
510
+ .e-content strong,
511
+ .e-content b {
512
+ font-weight: bold;
513
+ }
514
+
515
+ .e-content a {
516
+ text-decoration: none;
517
+ user-select: auto;
518
+ }
519
+
520
+ .e-content a:hover {
521
+ text-decoration: underline;
522
+ }
523
+
524
+ .e-content p:last-child,
525
+ .e-content pre:last-child,
526
+ .e-content blockquote:last-child {
527
+ margin-bottom: 0;
528
+ }
529
+
530
+ .e-content h3 + h4,
531
+ .e-content h4 + h5,
532
+ .e-content h5 + h6 {
533
+ margin-top: .6em;
534
+ }
535
+
536
+ .e-content ul:last-child {
537
+ margin-bottom: 0;
538
+ }
539
+ }
540
+
541
+ .e-rte-character-count {
542
+ bottom: 0;
543
+ color: $rte-default-character-count-color;
544
+ font-size: 14px;
545
+ margin-right: 30px;
546
+ opacity: $rte-default-character-count-opacity;
547
+ padding-bottom: 2px;
548
+ position: absolute;
549
+ right: 0;
550
+ z-index: 100;
551
+
552
+ &.e-warning {
553
+ color: $rte-warning-character-count-color;
554
+ opacity: unset;
555
+ }
556
+
557
+ &.e-error {
558
+ color: $rte-error-character-count-color;
559
+ opacity: unset;
560
+ }
561
+ }
562
+
563
+ .e-rte-srctextarea {
564
+ background-color: transparent;
565
+ border: 0;
566
+ color: $rte-content-color;
567
+ display: block;
568
+ height: 100%;
569
+ line-height: 22px;
570
+ overflow: auto;
571
+ padding: 16px;
572
+ resize: none;
573
+ transition: 100ms ease-out;
574
+ width: 100%;
575
+ }
576
+
577
+ .e-resize-handle {
578
+ height: $rte-resize-handler-height;
579
+ position: absolute;
580
+ width: $rte-resize-handler-width;
581
+
582
+ &.e-south-east {
583
+ bottom: $rte-resize-handler-position;
584
+ cursor: nwse-resize;
585
+ right: $rte-resize-handler-position;
586
+ z-index: 100;
587
+ }
588
+
589
+ &.e-south-west {
590
+ bottom: $rte-resize-handler-position;
591
+ cursor: sw-resize;
592
+ left: $rte-resize-handler-position;
593
+ transform: rotate(90deg);
594
+ z-index: 100;
595
+ }
596
+ }
597
+
598
+ &.e-rtl {
599
+
600
+ &.e-rte-resize {
601
+ float: right;
602
+ }
603
+
604
+ .e-resize-handle.e-south-west {
605
+ direction: ltr;
606
+ text-align: initial;
607
+ }
608
+ }
609
+
610
+ &.e-rte-tb-expand {
611
+ &.e-rte-fixed-tb-expand {
612
+ transition: none;
613
+ }
614
+ }
615
+ .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon:not(.e-toolbar-pop) {
616
+ padding: $rte-extended-toolbar-items-padding;
617
+ }
618
+ .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:hover {
619
+ background: $rte-expand-tbar-hover-bg;
620
+ }
621
+ .e-toolbar .e-toolbar-item .e-tbar-btn,
622
+ .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item .e-tbar-btn{
623
+ font-size: $rte-tbar-icon-size;
624
+ }
625
+ }
626
+
627
+ .e-rte-linkcontent .e-rte-label {
628
+ padding-top: $rte-insert-dialog-label-padding-top;
629
+ }
630
+
631
+ .e-rte-label label {
632
+ font-weight: normal;
633
+ }
634
+
635
+ .e-rte-linkcontent .e-rte-label:first-child {
636
+ padding-top: 0;
637
+ }
638
+
639
+ .e-bigger .e-rte-dropdown-popup {
640
+
641
+ ul {
642
+ min-width: 84px;
643
+ }
644
+ }
645
+
646
+ .e-rte-dropdown-popup {
647
+
648
+ &.e-rte-inline-dropdown {
649
+
650
+ @media screen and (max-width: 768px) {
651
+ ul {
652
+ padding: 7px 0;
653
+
654
+ li.e-item {
655
+ height: 34px;
656
+ line-height: 34px;
657
+ padding: 0 6.5px;
658
+ }
659
+
660
+ .e-item .e-menu-icon {
661
+ float: none;
662
+ }
663
+ }
664
+ }
665
+
666
+ &.e-rte-dropdown-icons.e-dropdown-popup {
667
+
668
+ @media screen and (max-width: 768px) {
669
+ max-height: 280px;
670
+
671
+ ul {
672
+ display: inline-flex;
673
+ }
674
+ }
675
+ }
676
+ }
677
+
678
+ ul {
679
+ min-width: 82px;
680
+
681
+ .e-item {
682
+
683
+ .e-menu-icon {
684
+ margin: 0 6px;
685
+ width: auto;
686
+ }
687
+
688
+ &.e-h1 {
689
+ font-size: 2em;
690
+ font-weight: bold;
691
+ height: 40px;
692
+ line-height: 40px;
693
+ }
694
+
695
+ &.e-h2 {
696
+ font-size: 1.5em;
697
+ font-weight: bold;
698
+ height: 40px;
699
+ line-height: 40px;
700
+ }
701
+
702
+ &.e-h3 {
703
+ font-size: 1.16em;
704
+ font-weight: bold;
705
+ }
706
+
707
+ &.e-h4 {
708
+ font-size: 1em;
709
+ font-weight: bold;
710
+ }
711
+
712
+ &.e-h5 {
713
+ font-size: .83em;
714
+ font-weight: bold;
715
+ }
716
+
717
+ &.e-h6 {
718
+ font-size: .7em;
719
+ font-weight: bold;
720
+ }
721
+
722
+ &.e-segoe-ui {
723
+ font-family: 'Segoe UI', 'Tahoma', 'Geneva', 'Verdana', sans-serif;
724
+ }
725
+
726
+ &.e-arial {
727
+ font-family: 'Arial', 'Helvetica', sans-serif;
728
+ }
729
+
730
+ &.e-courier-new {
731
+ font-family: 'Courier New', 'Courier', monospace;
732
+ }
733
+
734
+ &.e-georgia {
735
+ font-family: 'Georgia', 'Times New Roman', 'Times', serif;
736
+ }
737
+
738
+ &.e-helvetica-neue {
739
+ font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
740
+ }
741
+
742
+ &.e-impact {
743
+ font-family: 'Impact', 'Haettenschweiler', 'Arial Narrow Bold', sans-serif;
744
+ }
745
+
746
+ &.e-lucida-console {
747
+ font-family: 'Lucida Console', 'Monaco', monospace;
748
+ }
749
+
750
+ &.e-tahoma {
751
+ font-family: 'Segoe UI', 'Tahoma', 'Geneva', 'Verdana', sans-serif;
752
+ }
753
+
754
+ &.e-times-new-roman {
755
+ font-family: 'Times New Roman', 'Times', serif;
756
+ }
757
+
758
+ &.e-trebuchet-ms {
759
+ font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', 'Arial', sans-serif;
760
+ }
761
+
762
+ &.e-verdana {
763
+ font-family: 'Verdana', 'Geneva', 'Tahoma', sans-serif;
764
+ }
765
+
766
+ &.e-roboto {
767
+ font-family: 'Roboto', 'Segoe UI', 'GeezaPro', 'DejaVu Serif', sans-serif;
768
+ }
769
+ }
770
+ }
771
+
772
+ &.e-rte-dropdown-icons {
773
+
774
+ ul {
775
+ min-width: auto;
776
+ }
777
+
778
+ @media screen and (max-width: 768px) {
779
+
780
+ ul {
781
+ min-width: 30px;
782
+ }
783
+ }
784
+ }
785
+
786
+ &.e-rtl {
787
+ ul .e-item .e-menu-icon {
788
+ margin: 0 6px;
789
+ }
790
+ }
791
+ }
792
+
793
+ .e-rte-image.e-imgbreak,
794
+ .e-rte-audio.e-audio-break,
795
+ .e-rte-video.e-video-break {
796
+ border: 0;
797
+ cursor: pointer;
798
+ display: block;
799
+ float: none;
800
+ max-width: 100%;
801
+ padding: 1px;
802
+ position: relative;
803
+ }
804
+
805
+ .e-rte-image,
806
+ .e-rte-audio,
807
+ .e-rte-video {
808
+ border: 0;
809
+ cursor: pointer;
810
+ display: block;
811
+ float: none;
812
+ margin: auto;
813
+ max-width: 100%;
814
+ position: relative;
815
+ }
816
+
817
+ .e-rte-image.e-imginline,
818
+ .e-rte-audio.e-audio-inline,
819
+ .e-rte-video.e-video-inline {
820
+ display: inline-block;
821
+ float: none;
822
+ max-width: calc(100% - (2 * 5px));
823
+ padding: 1px;
824
+ vertical-align: bottom;
825
+ }
826
+
827
+ .e-rte-image.e-imgcenter,
828
+ .e-rte-video.e-video-center {
829
+ cursor: pointer;
830
+ display: block;
831
+ float: none;
832
+ margin: 5px auto;
833
+ max-width: 100%;
834
+ position: relative;
835
+ }
836
+
837
+ .e-rte-image.e-imgleft,
838
+ .e-rte-video.e-video-left {
839
+ float: left;
840
+ margin: 0 auto;
841
+ margin-right: 5px;
842
+ text-align: left;
843
+ }
844
+
845
+ .e-rte-image.e-imgright,
846
+ .e-rte-video.e-video-right {
847
+ float: right;
848
+ margin: 0 auto;
849
+ margin-left: 5px;
850
+ text-align: right;
851
+ }
852
+
853
+ .e-rte-img-popup .e-item {
854
+ height: 106px;
855
+ width: 300px;
856
+ }
857
+
858
+ .e-rte-img-caption {
859
+ display: inline-block;
860
+ margin: 5px auto;
861
+ max-width: 100%;
862
+ position: relative;
863
+ }
864
+
865
+ .e-rte-img-caption.e-caption-inline {
866
+ display: inline-block;
867
+ margin: 5px auto;
868
+ margin-left: 5px;
869
+ margin-right: 5px;
870
+ max-width: calc(100% - (2 * 5px));
871
+ position: relative;
872
+ text-align: center;
873
+ vertical-align: bottom;
874
+ }
875
+
876
+ .e-rte-img-caption.e-imgcenter {
877
+ display: block;
878
+ margin-left: auto;
879
+ margin-right: auto;
880
+ }
881
+
882
+ .e-rte-img-caption.e-imgright {
883
+ display: block;
884
+ margin-left: auto;
885
+ margin-right: 0;
886
+ }
887
+
888
+ .e-rte-img-caption.e-imgleft {
889
+ display: block;
890
+ margin-left: 0;
891
+ margin-right: auto;
892
+ }
893
+
894
+ .e-rte-img-caption .e-rte-image.e-imgright {
895
+ float: none;
896
+ margin-left: auto;
897
+ margin-right: 0;
898
+ }
899
+
900
+ .e-rte-img-caption .e-rte-image.e-imgleft {
901
+ float: none;
902
+ margin: 0;
903
+ }
904
+
905
+ .e-img-caption.e-rte-img-caption.e-imgbreak {
906
+ display: block;
907
+ }
908
+
909
+ .e-rte-table {
910
+ border-collapse: collapse;
911
+ empty-cells: show;
912
+ }
913
+
914
+ .e-rte-table td,
915
+ .e-rte-table th {
916
+ border: 1px solid $rte-table-border-color;
917
+ height: 20px;
918
+ min-width: 20px;
919
+ padding: 2px 5px;
920
+ vertical-align: middle;
921
+ }
922
+
923
+ .e-rte-table.e-dashed-border td,
924
+ .e-rte-table.e-dashed-border th {
925
+ border-style: dashed;
926
+ }
927
+
928
+ .e-rte-img-caption .e-img-inner {
929
+ box-sizing: border-box;
930
+ display: block;
931
+ font-size: $rte-toolbar-icon-size;
932
+ font-weight: initial;
933
+ margin: auto;
934
+ opacity: .9;
935
+ position: relative;
936
+ text-align: center;
937
+ width: 100%;
938
+ }
939
+
940
+ .e-rte-img-caption.e-imgleft .e-img-inner {
941
+ text-align: left;
942
+ }
943
+
944
+ .e-rte-img-caption.e-imgright .e-img-inner {
945
+ text-align: right;
946
+ }
947
+
948
+ .e-rte-img-caption .e-img-wrap {
949
+ display: inline-block;
950
+ margin: auto;
951
+ padding: 0;
952
+ width: 100%;
953
+ }
954
+
955
+ .e-rte-img-dialog .e-rte-label {
956
+ padding-top: $rte-insert-dialog-label-padding-top;
957
+ }
958
+
959
+ .e-rte-img-dialog .e-rte-label:first-child {
960
+ padding-top: 0;
961
+ }
962
+
963
+ .e-rte-table-resize.e-row-resize,
964
+ .e-rte-table-resize.e-column-resize {
965
+ background-color: transparent;
966
+ background-repeat: repeat;
967
+ bottom: 0;
968
+ cursor: col-resize;
969
+ height: 1px;
970
+ overflow: visible;
971
+ position: absolute;
972
+ width: 1px;
973
+ }
974
+
975
+ .e-rte-table-resize.e-row-resize {
976
+ cursor: row-resize;
977
+ height: 1px;
978
+ }
979
+
980
+ .e-richtexteditor {
981
+ .e-linkheader,
982
+ .e-audioheader,
983
+ .e-videoheader,
984
+ .e-video-url-wrap {
985
+ font-family: $rte-font-family;
986
+ font-size: $rte-insert-dialog-font-size;
987
+ opacity: .87;
988
+ padding-bottom: $rte-insert-dialog-label-padding-bottom;
989
+ padding-top: $rte-insert-dialog-label-padding-top;
990
+ }
991
+
992
+ .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn,
993
+ .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control {
994
+ padding: $rte-toolbar-expaned-padding;
995
+ }
996
+
997
+ .e-toolbar .e-toolbar-pop .e-toolbar-item.e-tbtn-align .e-btn.e-control .e-icons.e-btn-icon {
998
+ min-width: $rte-toolbar-expaned-minwidth;
999
+ }
1000
+
1001
+ .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control:hover {
1002
+ padding: $rte-toolbar-expaned-padding-hover;
1003
+ }
1004
+
1005
+ .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-delete-btn.e-icons,
1006
+ .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
1007
+ .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-delete-btn.e-icons,
1008
+ .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
1009
+ .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-delete-btn.e-icons,
1010
+ .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
1011
+ margin-top: 0;
1012
+ }
1013
+
1014
+ .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
1015
+ .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons,
1016
+ .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
1017
+ margin-right: 30px;
1018
+ }
1019
+
1020
+ .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list,
1021
+ .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list,
1022
+ .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list {
1023
+ border-bottom: 0 solid transparent;
1024
+ min-height: initial;
1025
+ }
1026
+
1027
+ .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list .e-file-container,
1028
+ .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list .e-file-container,
1029
+ .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list .e-file-container {
1030
+ margin-left: 0;
1031
+ margin-right: 0;
1032
+ }
1033
+
1034
+ .e-img-uploadwrap.e-droparea .e-upload .e-upload-files,
1035
+ .e-aud-uploadwrap.e-droparea .e-upload .e-upload-files,
1036
+ .e-vid-uploadwrap.e-droparea .e-upload .e-upload-files {
1037
+ border-top: 0 solid transparent;
1038
+ }
1039
+
1040
+ .e-img-uploadwrap.e-droparea .e-file-select-wrap,
1041
+ .e-aud-uploadwrap.e-droparea .e-file-select-wrap,
1042
+ .e-vid-uploadwrap.e-droparea .e-file-select-wrap {
1043
+ display: none;
1044
+ }
1045
+
1046
+ .e-img-uploadwrap.e-droparea .e-upload,
1047
+ .e-aud-uploadwrap.e-droparea .e-upload,
1048
+ .e-vid-uploadwrap.e-droparea .e-upload {
1049
+ border: 0 solid transparent;
1050
+ float: none;
1051
+ }
1052
+
1053
+ .e-dialog .e-img-uploadwrap.e-droparea .e-browsebtn,
1054
+ .e-dialog .e-aud-uploadwrap.e-droparea .e-browsebtn,
1055
+ .e-dialog .e-vid-uploadwrap.e-droparea .e-browsebtn {
1056
+ display: block;
1057
+ height: $rte-droparea-browsebtn-height;
1058
+ margin: 0 auto;
1059
+ padding: $rte-droparea-browsebtn-padding;
1060
+ position: relative;
1061
+ top: $rte-droparea-browsebtn-top;
1062
+ @if $skin-name == 'FluentUI' {
1063
+ outline: none;
1064
+ }
1065
+ }
1066
+
1067
+ .e-dialog .e-vid-uploadwrap.e-droparea .e-browsebtn,
1068
+ .e-rte-video-dialog.e-dialog.e-device.e-dlg-modal .e-vid-uploadwrap.e-droparea .e-browsebtn {
1069
+ top: -130px;
1070
+ }
1071
+
1072
+ .e-dialog.e-device.e-dlg-modal .e-img-uploadwrap.e-droparea .e-browsebtn,
1073
+ .e-dialog.e-device.e-dlg-modal .e-aud-uploadwrap.e-droparea .e-browsebtn,
1074
+ .e-dialog.e-device.e-dlg-modal .e-vid-uploadwrap.e-droparea .e-browsebtn {
1075
+ display: none;
1076
+ }
1077
+
1078
+ .e-dialog .e-img-uploadwrap.e-droparea,
1079
+ .e-dialog .e-aud-uploadwrap.e-droparea,
1080
+ .e-dialog .e-vid-uploadwrap.e-droparea {
1081
+ line-height: $rte-droparea-line-height;
1082
+ min-height: 50px;
1083
+ position: relative;
1084
+ }
1085
+
1086
+ .e-dialog .e-img-uploadwrap.e-droparea .e-rte-upload-text,
1087
+ .e-dialog .e-aud-uploadwrap.e-droparea .e-rte-upload-text,
1088
+ .e-dialog .e-vid-uploadwrap.e-droparea .e-rte-upload-text {
1089
+ display: inline-block;
1090
+ line-height: normal;
1091
+ }
1092
+
1093
+ .e-dialog.e-device.e-dlg-modal .e-img-uploadwrap.e-droparea,
1094
+ .e-dialog.e-device.e-dlg-modal .e-aud-uploadwrap.e-droparea,
1095
+ .e-dialog.e-device.e-dlg-modal .e-vid-uploadwrap.e-droparea {
1096
+ line-height: 4;
1097
+ }
1098
+
1099
+ .e-rte-inline-dropdown ul {
1100
+ max-height: 200px;
1101
+ overflow-y: auto;
1102
+ }
1103
+
1104
+ .e-rte-dropdown-popup.e-rte-dropdown-items ul {
1105
+ max-height: 280px;
1106
+ overflow-y: auto;
1107
+ }
1108
+
1109
+ .e-bigger .e-rte-dropdown-popup.e-rte-dropdown-items ul {
1110
+ max-height: 360px;
1111
+ overflow-y: auto;
1112
+ }
1113
+
1114
+ .e-dropdown-btn.e-rte-backgroundcolor-dropdown,
1115
+ .e-dropdown-btn.e-rte-fontcolor-dropdown,
1116
+ .e-dropdown-btn.e-rte-numberformatlist-dropdown,
1117
+ .e-dropdown-btn.e-rte-bulletformatlist-dropdown {
1118
+ line-height: $rte-inline-dropdown-line-height;
1119
+ }
1120
+
1121
+ .e-rte-table-popup.e-popup.e-popup-open {
1122
+ border-radius: $rte-table-popup-bdr-radius;
1123
+ box-shadow: $rte-table-popup-box;
1124
+ font-size: 14px;
1125
+ font-weight: normal;
1126
+ min-width: 120px;
1127
+ overflow: hidden;
1128
+ padding: $rte-table-popup-padding;
1129
+ border: $rte-table-popup-border;
1130
+ }
1131
+
1132
+ .e-rte-table-popup.e-popup-open .e-rte-tablecell {
1133
+ border: $rte-table-span-border;
1134
+ display: inline-block;
1135
+ height: $rte-table-popup-tablecell-height;
1136
+ margin: $rte-table-popup-tablecell-margin;
1137
+ overflow: hidden;
1138
+ vertical-align: top;
1139
+ width: $rte-table-popup-tablecell-width;
1140
+ }
1141
+
1142
+ .e-rte-table-popup.e-popup-open .e-rte-table-row {
1143
+ height: $rte-table-popup-row-height;
1144
+ }
1145
+
1146
+ .e-rte-table-popup.e-popup-open .e-insert-table-btn {
1147
+ width: 100%;
1148
+ }
1149
+
1150
+ .e-rte-edit-table .e-rte-field {
1151
+ padding-top: $rte-insert-dialog-label-padding-top;
1152
+ }
1153
+
1154
+ .e-rte-edit-table .e-rte-field:first-child {
1155
+ padding-top: 0;
1156
+ }
1157
+
1158
+ .e-rte-content .e-content table td.e-cell-select,
1159
+ .e-rte-content .e-content table th.e-cell-select {
1160
+ border: 1px double $rte-table-select-border-color;
1161
+ height: 24.67px;
1162
+ }
1163
+
1164
+ span.e-table-box {
1165
+ cursor: nwse-resize;
1166
+ display: block;
1167
+ height: 10px;
1168
+ position: absolute;
1169
+ width: 10px;
1170
+
1171
+ &.e-hide {
1172
+ display: none;
1173
+ }
1174
+ }
1175
+
1176
+ span.e-table-box.e-rmob {
1177
+ height: 14px;
1178
+ width: 14px;
1179
+ }
1180
+
1181
+ .e-upload .e-upload-files .e-upload-file-list .e-file-container {
1182
+ margin-right: 50px;
1183
+ }
1184
+
1185
+ .e-rte-upload-popup {
1186
+ width: 250px;
1187
+ }
1188
+
1189
+ .e-rte-dialog-upload .e-upload-files {
1190
+ border-top: 0;
1191
+ }
1192
+
1193
+ .e-rte-dialog-upload .e-upload-files .e-upload-file-list {
1194
+ border-bottom: 0;
1195
+ }
1196
+
1197
+ .e-rte-emojipicker-popup.e-popup.e-popup-open {
1198
+ border: $rte-emoji-pop-border;
1199
+ min-width: 120px;
1200
+ height: 330px;
1201
+ width: 308px;
1202
+
1203
+ .e-toolbar .e-toolbar-item .e-tbar-btn {
1204
+ padding: 7px 3px;
1205
+ border-radius: 4px;
1206
+
1207
+ @if $skin-name =='bootstrap' or $skin-name =='botstrap-dark' {
1208
+ &:hover,
1209
+ &:focus{
1210
+ padding: 6px 2px;
1211
+ }
1212
+ }
1213
+
1214
+ @if $skin-name =='material' or $skin-name =='material-dark' {
1215
+ padding: 3px;
1216
+ }
1217
+
1218
+ .e-tbar-btn-text {
1219
+ font-size: 24px;
1220
+ padding: 1px;
1221
+ }
1222
+ }
1223
+
1224
+ .e-input-group.e-control-wrapper {
1225
+ margin: 10px;
1226
+ width: 94%;
1227
+
1228
+ .e-rte-emoji-search {
1229
+ @if $skin-name =='material' or $skin-name =='material-dark' or $skin-name =='material3' or $skin-name =='material3-dark' {
1230
+ text-indent: 4px;
1231
+ }
1232
+ }
1233
+ }
1234
+
1235
+ .e-rte-emojipicker-btn {
1236
+ display: block;
1237
+ gap: 10px;
1238
+ height: $rte-emoji-btn-height;
1239
+ overflow: auto;
1240
+ padding: 10px;
1241
+
1242
+ .e-rte-emojipicker-group .e-rte-emojipickerbtn-group {
1243
+ display: grid;
1244
+ grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
1245
+ gap: 6px;
1246
+
1247
+ .e-btn.e-control {
1248
+ display: inline-block;
1249
+ box-shadow: none;
1250
+ font-size: 24px;
1251
+ padding: 6px 0;
1252
+ width: 40px;
1253
+ height: 40px;
1254
+ border: none;
1255
+ line-height: $rte-emoji-grp-btn-line-height;
1256
+ }
1257
+ }
1258
+
1259
+ .e-rte-emojisearch-btn {
1260
+ display: grid;
1261
+ grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
1262
+ gap: 6px;
1263
+ height: 0;
1264
+
1265
+ .e-btn.e-control {
1266
+ display: inline-block;
1267
+ box-shadow: none;
1268
+ font-size: 24px;
1269
+ padding: 6px 0;
1270
+ width: 40px;
1271
+ height: 40px;
1272
+ border: none;
1273
+ line-height: $rte-emoji-grp-btn-line-height;
1274
+ }
1275
+ }
1276
+
1277
+ .e-rte-emojipicker-group .e-rte-emojipicker-name {
1278
+ font-weight: $rte-emoji-headname-font-weight;
1279
+ font-size: 14px;
1280
+ }
1281
+
1282
+ .e-rte-emojiSearch-noEmoji {
1283
+ text-align: center;
1284
+ }
1285
+ }
1286
+ }
1287
+ }
1288
+
1289
+ .e-rte-backgroundcolor-colorpicker,
1290
+ .e-rte-fontcolor-colorpicker {
1291
+ & .e-color-palette.e-container {
1292
+ & .e-custom-palette .e-palette {
1293
+ padding: 0;
1294
+ }
1295
+
1296
+ & .e-switch-ctrl-btn {
1297
+ padding: 5px;
1298
+ .e-bigger & {
1299
+ padding: 5px;
1300
+ }
1301
+ }
1302
+ }
1303
+ }
1304
+
1305
+ .e-rte-quick-popup {
1306
+ border-radius: 2px;
1307
+ overflow: hidden;
1308
+
1309
+ .e-rte-quick-toolbar {
1310
+ border-radius: 2px;
1311
+ min-height: 42px;
1312
+
1313
+ .e-toolbar-items:not(.e-tbar-pos).e-toolbar-multirow {
1314
+ white-space: nowrap;
1315
+ display: inline-block;
1316
+ }
1317
+
1318
+ &.e-remove-white-space {
1319
+
1320
+ .e-toolbar-items:not(.e-tbar-pos).e-toolbar-multirow {
1321
+ white-space: nowrap;
1322
+ }
1323
+ }
1324
+
1325
+ .e-toolbar-items:not(.e-tbar-pos) {
1326
+ border-radius: 2px;
1327
+ margin: $rte-quick-toolbar-item-margin;
1328
+ min-height: 42px;
1329
+
1330
+ .e-toolbar-item.e-rte-horizontal-separator,
1331
+ .e-toolbar-item.e-separator.e-multirow-separator.e-rte-horizontal-separator {
1332
+ display: block;
1333
+ height: 1px;
1334
+ margin: 0;
1335
+ min-height: 1px;
1336
+ }
1337
+
1338
+ .e-toolbar-item {
1339
+ margin: $rte-toolbar-item-frist-last-child-margin;
1340
+ min-height: 42px;
1341
+
1342
+ &:first-child,
1343
+ &:last-child {
1344
+ margin: 0;
1345
+ }
1346
+
1347
+ .e-tbar-btn:not(.e-rte-dropdown-btn) {
1348
+ line-height: 20px;
1349
+ }
1350
+
1351
+ .e-tbar-btn:not(.e-rte-dropdown-btn) .e-icons {
1352
+ min-width: $rte-quick-item-icon-min-width;
1353
+ }
1354
+ }
1355
+
1356
+ .e-toolbar-item .e-btn,
1357
+ .e-toolbar-item .e-btn:hover {
1358
+ min-height: $rte-quick-item-btn-height;
1359
+ min-width: $rte-quick-item-btn-width;
1360
+ padding: $rte-quick-item-padding;
1361
+ @if $skin-name == 'FluentUI' {
1362
+ padding-left: $rte-quick-item-padding-left;
1363
+ padding-right: $rte-quick-item-padding-right;
1364
+ }
1365
+ }
1366
+ }
1367
+
1368
+ .e-tbar-btn {
1369
+ .e-icons.e-btn-icon:not(.e-caret) {
1370
+ font-size: $rte-toolbar-icon-size;
1371
+ }
1372
+ }
1373
+
1374
+ .e-background-color.e-icons::before {
1375
+ display: inline;
1376
+ }
1377
+
1378
+ .e-rte-fontcolor-dropdown .e-btn-icon.e-caret,
1379
+ .e-rte-backgroundcolor-dropdown .e-btn-icon.e-caret,
1380
+ .e-rte-numberformatlist-dropdown .e-btn-icon.e-caret,
1381
+ .e-rte-bulletformatlist-dropdown .e-btn-icon.e-caret {
1382
+ font-size: 10px;
1383
+ }
1384
+ }
1385
+
1386
+ .e-rte-dropdown-btn.e-tbar-btn {
1387
+ line-height: $rte-quick-drop-btn-line-height;
1388
+ margin: $rte-quick-drop-btn-margin;
1389
+ padding: $rte-quick-drop-btn-padding;
1390
+
1391
+ .e-rte-dropdown-btn-text {
1392
+ font-weight: 500;
1393
+ overflow: hidden;
1394
+ text-overflow: ellipsis;
1395
+ white-space: nowrap;
1396
+ }
1397
+
1398
+ .e-order-list.e-icons,
1399
+ .e-unorder-list.e-icons,
1400
+ .e-icons:not(.e-caret) {
1401
+ font-size: 14px;
1402
+ }
1403
+
1404
+ .e-caret {
1405
+ font-size: $rte-quick-drop-btn-caret-font-size;
1406
+ width: 12px;
1407
+ }
1408
+ }
1409
+
1410
+ &.e-hide {
1411
+ display: block;
1412
+ visibility: hidden;
1413
+ }
1414
+ }
1415
+
1416
+ .e-bigger .e-rte-quick-popup {
1417
+ .e-rte-quick-toolbar {
1418
+ min-height: 48px;
1419
+
1420
+ .e-toolbar-items:not(.e-tbar-pos) {
1421
+ margin: $rte-big-quick-toolbar-items-margin;
1422
+ min-height: 48px;
1423
+
1424
+ .e-toolbar-item:not(.e-separator) {
1425
+ margin: $rte-big-quick-toolbar-item-margin;
1426
+ min-height: 48px;
1427
+ min-width: 36px;
1428
+ padding: $rte-big-quick-toolbar-item-btn-padding;
1429
+ }
1430
+
1431
+ .e-toolbar-item .e-tbar-btn:not(.e-rte-dropdown-btn) {
1432
+ line-height: $rte-big-quick-item-line-height;
1433
+ }
1434
+
1435
+ .e-toolbar-item .e-btn,
1436
+ .e-toolbar-item .e-btn:hover {
1437
+ min-height: $rte-big-quick-item-btn-height;
1438
+ min-width: $rte-big-quick-item-btn-width;
1439
+ padding: $rte-big-quick-item-padding;
1440
+ @if $skin-name == 'FluentUI' {
1441
+ padding-left: $rte-quick-item-padding-left;
1442
+ padding-right: $rte-quick-item-padding-right;
1443
+ }
1444
+ }
1445
+
1446
+ .e-toolbar-item:first-child,
1447
+ .e-toolbar-item:last-child {
1448
+ margin: $rte-big-toolbar-item-frist-last-child-margin;
1449
+ }
1450
+
1451
+ .e-toolbar-item .e-tbar-btn.e-btn.e-control {
1452
+ height: $rte-big-quick-tbar-item-min-height;
1453
+ line-height: normal;
1454
+ margin: 0;
1455
+ min-height: $rte-big-quick-tbar-item-min-height;
1456
+ min-width: $rte-big-quick-tbar-item-min-width;
1457
+ }
1458
+
1459
+ .e-toolbar-item .e-tbar-btn .e-order-list.e-icons,
1460
+ .e-toolbar-item .e-tbar-btn .e-unorder-list.e-icons,
1461
+ .e-toolbar-item .e-tbar-btn .e-icons.e-btn-icon:not(.e-caret) {
1462
+ font-size: $rte-toolbar-big-icon-size;
1463
+ }
1464
+ }
1465
+ }
1466
+ .e-bigger .e-rte-emojipicker-popup.e-popup.e-popup-open {
1467
+ min-width: 120px;
1468
+ height: 337px;
1469
+ width: 335px;
1470
+
1471
+ .e-toolbar .e-toolbar-item .e-tbar-btn {
1472
+ // padding: 2px 5px;
1473
+ border-radius: 4px;
1474
+ padding: 0;
1475
+ @if $skin-name =='material' or $skin-name =='material-dark' {
1476
+ padding: 3px 7px;
1477
+ }
1478
+
1479
+ &:hover {
1480
+ padding: 0;
1481
+ }
1482
+
1483
+ &:active {
1484
+ padding: 0;
1485
+ }
1486
+
1487
+ .e-tbar-btn-text {
1488
+ font-size: 26px;
1489
+ padding: 9px 5px;
1490
+ }
1491
+ }
1492
+
1493
+ .e-rte-emojipicker-btn {
1494
+ gap: 10px;
1495
+ height: $rte-big-emoji-btn-height;
1496
+ padding: 12px;
1497
+
1498
+ .e-rte-emojipicker-group .e-rte-emojipickerbtn-group {
1499
+ gap: 8px;
1500
+
1501
+ .e-btn.e-control {
1502
+ font-size: 26px;
1503
+ padding: 8px 0;
1504
+ width: 42px;
1505
+ height: 42px;
1506
+ line-height: 0;
1507
+ }
1508
+ }
1509
+
1510
+ .e-rte-emojisearch-btn {
1511
+ gap: 6px;
1512
+
1513
+ .e-btn.e-control {
1514
+ font-size: 26px;
1515
+ padding: 8px 0;
1516
+ width: 40px;
1517
+ height: 40px;
1518
+ border: none;
1519
+ line-height: 0;
1520
+ }
1521
+ }
1522
+
1523
+ .e-rte-emojipicker-group .e-rte-emojipicker-name {
1524
+ font-weight: 500;
1525
+ font-size: 16px;
1526
+ }
1527
+ }
1528
+ }
1529
+ .e-rte-dropdown-btn.e-tbar-btn {
1530
+ line-height: $rte-big-quick-drop-btn-line-height;
1531
+ margin: $rte-big-quick-drop-btn-margin;
1532
+ padding: $rte-big-quick-drop-btn-padding;
1533
+
1534
+ .e-order-list.e-icons,
1535
+ .e-unorder-list.e-icons,
1536
+ .e-icons:not(.e-caret) {
1537
+ font-size: $rte-toolbar-icon-size;
1538
+ }
1539
+
1540
+ .e-caret {
1541
+ font-size: $rte-big-quick-drop-btn-caret-font-size;
1542
+ width: 20px;
1543
+ }
1544
+ }
1545
+ }
1546
+
1547
+ .e-bigger .e-rte-quick-popup.e-rte-inline-popup {
1548
+ .e-rte-quick-toolbar {
1549
+ .e-toolbar-items:not(.e-tbar-pos) {
1550
+ .e-toolbar-item:not(.e-separator).e-rte-inline-template {
1551
+ min-width: $rte-big-inline-tmp-min-width;
1552
+ }
1553
+
1554
+ .e-toolbar-item:not(.e-separator).e-rte-inline-size-template {
1555
+ min-width: $rte-big-inline-tmp-size-min-width;
1556
+ }
1557
+
1558
+ .e-toolbar-item:not(.e-separator).e-rte-inline-color-template {
1559
+ min-width: $rte-big-inline-tmp-color-min-width;
1560
+ }
1561
+ }
1562
+ }
1563
+ }
1564
+
1565
+ .e-rte-quick-popup.e-rte-inline-popup {
1566
+ .e-rte-quick-toolbar {
1567
+ .e-toolbar-item {
1568
+ &.e-rte-inline-template {
1569
+ min-width: $rte-inline-tmp-min-width;
1570
+ }
1571
+
1572
+ &.e-rte-inline-size-template {
1573
+ min-width: $rte-inline-tmp-size-min-width;
1574
+ }
1575
+
1576
+ &.e-rte-inline-color-template {
1577
+ min-width: $rte-inline-tmp-color-min-width;
1578
+ }
1579
+ }
1580
+ }
1581
+ }
1582
+
1583
+ .e-rte-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item {
1584
+ button.e-rte-fontcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control,
1585
+ button.e-rte-backgroundcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control,
1586
+ button.e-rte-numberformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control,
1587
+ button.e-rte-bulletformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control {
1588
+ @if $skin-name == 'FluentUI' {
1589
+ .e-btn-icon.e-icons.e-caret {
1590
+ padding-top: 0;
1591
+ }
1592
+ }
1593
+ }
1594
+ }
1595
+
1596
+ .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item,
1597
+ .e-rte-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item,
1598
+ .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item,
1599
+ .e-rte-toolbar.e-toolbar .e-toolbar-extended .e-toolbar-item {
1600
+
1601
+ .e-rte-fontcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control,
1602
+ .e-rte-backgroundcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control,
1603
+ .e-rte-numberformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control,
1604
+ .e-rte-bulletformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control {
1605
+ display: flex;
1606
+ padding-left: $rte-colorpicker-parent-padding;
1607
+ padding-right: $rte-colorpicker-parent-padding;
1608
+ @if $skin-name == 'FluentUI' {
1609
+ padding-top: $rte-colorpicker-parent-padding-top;
1610
+ }
1611
+
1612
+ &:hover,
1613
+ &:active,
1614
+ &.e-active,
1615
+ &.e-active:hover {
1616
+ padding-left: $rte-colorpicker-parent-padding-hover;
1617
+ padding-right: $rte-colorpicker-parent-padding-hover;
1618
+ @if $skin-name == 'FluentUI' {
1619
+ padding-top: $rte-colorpicker-parent-padding-hover-top;
1620
+ }
1621
+ }
1622
+
1623
+ .e-rte-color-content,
1624
+ .e-rte-list-primary-content {
1625
+ position: relative;
1626
+ vertical-align: middle;
1627
+ width: $rte-font-icon-width;
1628
+ }
1629
+
1630
+ .e-rte-color-content {
1631
+ .e-rte-elements {
1632
+ border-bottom-style: solid;
1633
+ border-bottom-width: 3px;
1634
+ padding-bottom: 1px;
1635
+ }
1636
+ }
1637
+
1638
+ .e-rte-list-primary-content .e-order-list,
1639
+ &.e-active .e-rte-list-primary-content .e-order-list,
1640
+ .e-rte-list-primary-content .e-unorder-list,
1641
+ &.e-active .e-rte-list-primary-content .e-unorder-list {
1642
+ line-height: $rte-split-btn-active-color-icon-line-height;
1643
+ }
1644
+
1645
+ .e-rte-color-content::after {
1646
+ content: '';
1647
+ height: 100%;
1648
+ position: absolute;
1649
+ right: 0;
1650
+ width: $rte-split-btn-bar-size;
1651
+ }
1652
+
1653
+ .e-icons.e-btn-icon {
1654
+ display: flex;
1655
+ flex-direction: $rte-list-btn-flex;
1656
+ justify-content: center;
1657
+ line-height: $rte-list-btn-line-height;
1658
+ min-width: $rte-font-arrow-width;
1659
+ text-align: center;
1660
+ width: $rte-font-arrow-width;
1661
+ }
1662
+
1663
+ @if $skin-name == 'bootstrap5' {
1664
+
1665
+ .e-icons.e-btn-icon.e-caret:not(.e-toolbar-pop) {
1666
+ padding-left: 0;
1667
+ padding-right: 0;
1668
+ }
1669
+ }
1670
+ }
1671
+
1672
+ .e-dropdown-btn.e-tbar-btn .e-icons.e-btn-icon.e-caret {
1673
+ font-size: $rte-dropdown-caret-icon-size;
1674
+
1675
+ @if $skin-name == 'bootstrap5' {
1676
+ &:not(.e-toolbar-pop) {
1677
+ font-size: 12px;
1678
+ }
1679
+ }
1680
+ }
1681
+ @if $skin-name == 'bootstrap5' {
1682
+ .e-dropdown-btn.e-alignment-tbar-btn .e-btn-icon.e-caret {
1683
+ min-width: $rte-align-caret-icon-min-width;
1684
+ }
1685
+ }
1686
+
1687
+ @if $skin-name == 'FluentUI' {
1688
+ .e-dropdown-btn:focus,
1689
+ .e-dropdown-btn.e-btn:focus {
1690
+ box-shadow: none;
1691
+ }
1692
+ }
1693
+ }
1694
+
1695
+ .e-rte-inline-dropdown .e-rte-color-content .e-rte-elements {
1696
+ border-bottom-style: solid;
1697
+ border-bottom-width: 3px;
1698
+ line-height: $rte-font-icon-line-height;
1699
+ padding-bottom: 1px;
1700
+ }
1701
+
1702
+ .e-bigger {
1703
+ .e-rte-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item {
1704
+ button.e-rte-fontcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control,
1705
+ button.e-rte-backgroundcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control,
1706
+ button.e-rte-numberformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control,
1707
+ button.e-rte-bulletformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control {
1708
+ @if $skin-name == 'FluentUI' {
1709
+ .e-btn-icon.e-icons.e-caret {
1710
+ padding-top: 0;
1711
+ }
1712
+ }
1713
+ }
1714
+ }
1715
+
1716
+ .e-rte-edit-table .e-rte-field {
1717
+ padding-top: $rte-big-insert-dialog-label-padding-top;
1718
+ }
1719
+
1720
+ .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item,
1721
+ .e-rte-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item,
1722
+ .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item,
1723
+ .e-rte-toolbar.e-toolbar .e-toolbar-extended .e-toolbar-item {
1724
+ .e-rte-fontcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control,
1725
+ .e-rte-backgroundcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control,
1726
+ .e-rte-numberformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control,
1727
+ .e-rte-bulletformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control {
1728
+ .e-icons.e-btn-icon {
1729
+ min-width: $rte-font-arrow-touch-width;
1730
+ padding-left: 0;
1731
+ padding-right: 0;
1732
+ width: $rte-font-arrow-touch-width;
1733
+ }
1734
+
1735
+ &:hover,
1736
+ &:focus,
1737
+ &:active {
1738
+ padding-left: $rte-big-color-list-span-common-padding-left-right;
1739
+ padding-right: $rte-big-color-list-span-common-padding-left-right;
1740
+ }
1741
+
1742
+ .e-rte-list-primary-content .e-order-list,
1743
+ &.e-active .e-rte-list-primary-content .e-order-list,
1744
+ .e-rte-list-primary-content .e-unorder-list,
1745
+ &.e-active .e-rte-list-primary-content .e-unorder-list {
1746
+ line-height: $rte-big-split-btn-active-color-icon-line-height;
1747
+ }
1748
+ }
1749
+
1750
+ .e-dropdown-btn .e-caret {
1751
+ font-size: $rte-big-dropdown-caret-icon-size;
1752
+
1753
+ @if $skin-name == 'bootstrap5' {
1754
+ &.e-btn-icon:not(.e-toolbar-pop) {
1755
+ font-size: 14px;
1756
+ }
1757
+ }
1758
+ }
1759
+ }
1760
+ .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item,
1761
+ .e-rte-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item,
1762
+ .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item,
1763
+ .e-rte-toolbar.e-toolbar .e-toolbar-extended .e-toolbar-item {
1764
+
1765
+ .e-rte-fontcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control,
1766
+ .e-rte-backgroundcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control,
1767
+ .e-rte-numberformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control,
1768
+ .e-rte-bulletformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control {
1769
+ .e-icons.e-btn-icon {
1770
+ line-height: $rte-big-list-btn-line-height;
1771
+ }
1772
+ }
1773
+ }
1774
+ .e-richtexteditor{
1775
+ .e-rte-toolbar{
1776
+ .e-tbar-btn.e-dropdown-btn.e-rte-backgroundcolor-dropdown,
1777
+ .e-tbar-btn.e-dropdown-btn.e-rte-fontcolor-dropdown,
1778
+ .e-tbar-btn.e-dropdown-btn.e-rte-numberformatlist-dropdown,
1779
+ .e-tbar-btn.e-dropdown-btn.e-rte-bulletformatlist-dropdown {
1780
+ line-height: $rte-big-inline-dropdown-line-height;
1781
+ }
1782
+ .e-toolbar-item .e-tbar-btn.e-btn .e-icons {
1783
+ font-size: $rte-toolbar-big-icon-size;
1784
+ }
1785
+ .e-hor-nav.e-expended-nav {
1786
+ min-height: $rte-big-tb-expended-min-height;
1787
+ }
1788
+ }
1789
+ .e-rte-toolbar,
1790
+ .e-rte-toolbar.e-toolbar.e-extended-toolbar {
1791
+ .e-toolbar-items,
1792
+ .e-toolbar-extended {
1793
+ .e-toolbar-item {
1794
+ .e-background-color.e-icons::before {
1795
+ display: inline;
1796
+ font-size: $rte-big-background-color-icon-fontsize;
1797
+ }
1798
+ }
1799
+ }
1800
+ }
1801
+ }
1802
+ }
1803
+
1804
+ .e-popup-modal.e-popup.e-popup-open {
1805
+ display: inline-flex;
1806
+ }
1807
+
1808
+ .e-rte-modal-popup.e-popup-container.e-center {
1809
+ justify-content: center;
1810
+ }
1811
+
1812
+ .e-rte-modal-popup.e-popup-container {
1813
+ align-items: center;
1814
+ display: none;
1815
+ height: 100%;
1816
+ left: 0;
1817
+ position: fixed;
1818
+ top: 0;
1819
+ width: 100%;
1820
+ z-index: 10000;
1821
+ }
1822
+
1823
+ .e-popup-overlay {
1824
+ height: 100%;
1825
+ left: 0;
1826
+ opacity: .5;
1827
+ position: absolute;
1828
+ top: 0;
1829
+ width: 100%;
1830
+ }
1831
+
1832
+ .e-bigger .e-rte-table-popup.e-popup-open .e-rte-tablecell {
1833
+ height: $rte-big-tablecell-height;
1834
+ width: $rte-big-tablecell-width;
1835
+ }
1836
+
1837
+ .e-bigger .e-rte-table-popup.e-popup-open .e-rte-table-row {
1838
+ height: $rte-big-table-row-height;
1839
+ }
1840
+
1841
+ .e-table-rhelper {
1842
+ cursor: col-resize;
1843
+ opacity: .87;
1844
+ position: absolute;
1845
+ }
1846
+
1847
+ .e-table-rhelper.e-column-helper {
1848
+ width: 1px;
1849
+ }
1850
+
1851
+ .e-table-rhelper.e-row-helper {
1852
+ height: 1px;
1853
+ }
1854
+
1855
+ .e-reicon::before {
1856
+ border-bottom: 6px solid transparent;
1857
+ border-right: 6px solid;
1858
+ border-top: 6px solid transparent;
1859
+ content: '';
1860
+ display: block;
1861
+ height: 0;
1862
+ position: absolute;
1863
+ right: 4px;
1864
+ top: 4px;
1865
+ width: 20px;
1866
+ }
1867
+
1868
+ .e-reicon::after {
1869
+ border-bottom: 6px solid transparent;
1870
+ border-left: 6px solid;
1871
+ border-top: 6px solid transparent;
1872
+ content: '';
1873
+ display: block;
1874
+ height: 0;
1875
+ left: 4px;
1876
+ position: absolute;
1877
+ top: 4px;
1878
+ width: 20px;
1879
+ z-index: 3;
1880
+ }
1881
+
1882
+ .e-row-helper.e-reicon::after {
1883
+ top: 10px;
1884
+ transform: rotate(90deg);
1885
+ }
1886
+
1887
+ .e-row-helper.e-reicon::before {
1888
+ left: 4px;
1889
+ top: -20px;
1890
+ transform: rotate(90deg);
1891
+ }
1892
+
1893
+ .e-rte-overflow {
1894
+ overflow: hidden;
1895
+ }
1896
+
1897
+ .e-dialog.e-rte-dialog-minheight {
1898
+ min-height: 296px;
1899
+ @if $skin-name == 'FluentUI' {
1900
+ min-height: 308px;
1901
+ }
1902
+ }
1903
+
1904
+ .e-content-placeholder.e-richtexteditor.e-placeholder-richtexteditor {
1905
+ background-size: 700px 190px;
1906
+ min-height: 190px;
1907
+ }
1908
+
1909
+ .e-bigger .e-content-placeholder.e-richtexteditor.e-placeholder-richtexteditor,
1910
+ .e-bigger.e-content-placeholder.e-richtexteditor.e-placeholder-richtexteditor {
1911
+ background-size: 700px 190px;
1912
+ min-height: 190px;
1913
+ }
1914
+
1915
+ .e-rte-table.e-rte-table-border {
1916
+ border: 1px solid $rte-table-border-color;
1917
+ border-collapse: separate;
1918
+ }
1919
+
1920
+ .e-rte-img-dialog.e-dialog.e-device.e-dlg-modal,
1921
+ .e-rte-audio-dialog.e-dialog.e-device.e-dlg-modal,
1922
+ .e-rte-video-dialog.e-dialog.e-device.e-dlg-modal {
1923
+ .e-img-uploadwrap.e-droparea,
1924
+ .e-aud-uploadwrap.e-droparea,
1925
+ .e-vid-uploadwrap.e-droparea {
1926
+ line-height: 10;
1927
+ min-height: 50px;
1928
+ position: relative;
1929
+
1930
+ .e-browsebtn {
1931
+ display: block;
1932
+ height: 36px;
1933
+ margin: 0 auto;
1934
+ padding: 0 18px;
1935
+ position: relative;
1936
+ top: -50px;
1937
+ @if $skin-name == 'FluentUI' {
1938
+ outline: none;
1939
+ }
1940
+ }
1941
+
1942
+ .e-upload {
1943
+ border: 0 solid transparent;
1944
+ float: none;
1945
+ }
1946
+
1947
+ .e-file-select-wrap {
1948
+ display: none;
1949
+ }
1950
+ }
1951
+
1952
+ .e-linkheader {
1953
+ font-family: $rte-font-family;
1954
+ font-size: $rte-big-insert-dialog-font-size;
1955
+ opacity: .87;
1956
+ padding-bottom: $rte-insert-dialog-label-padding-bottom;
1957
+ padding-top: $rte-insert-dialog-label-padding-top;
1958
+ }
1959
+ }
1960
+
1961
+ .e-rte-file-manager-dialog {
1962
+
1963
+ .e-rte-label {
1964
+ padding-bottom: 8px;
1965
+ padding-top: 15px;
1966
+
1967
+ label {
1968
+ font-size: 15px;
1969
+ opacity: .87;
1970
+ }
1971
+ }
1972
+ }
1973
+
1974
+ @if $skin-name == 'Material3' {
1975
+ .e-rte-toolbar .e-rte-table-popup .e-insert-table-btn{
1976
+ border-color: $outline;
1977
+ }
1978
+ .e-dialog .e-dlg-header-content + .e-dlg-content{
1979
+ padding-top: 0;
1980
+ }
1981
+ .e-bigger .e-richtexteditor,
1982
+ .e-richtexteditor.e-bigger {
1983
+ .e-dialog {
1984
+ border-radius: 16px;
1985
+ }
1986
+ }
1987
+ .e-rte-link-dialog .e-dlg-content{
1988
+ padding: 7px 20px;
1989
+ }
1990
+ .e-toolbar-wrapper .e-toolbar .e-toolbar-item:not(.e-separator),
1991
+ .e-bigger .e-toolbar .e-toolbar-item:not(.e-separator) {
1992
+ padding: 8px 4px;
1993
+ }
1994
+ .e-rte-quick-popup .e-rte-toolbar.e-rte-quick-toolbar .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child,
1995
+ .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:last-child {
1996
+ margin: 0;
1997
+ }
1998
+ }
1999
+
2000
+ // Blazor styles start
2001
+ .e-rte-upload-popup.e-dialog .e-file-select-wrap {
2002
+ display: none;
2003
+ }
2004
+
2005
+ .e-rte-upload-popup.e-dialog .e-dlg-content {
2006
+ overflow: hidden;
2007
+ padding: 0;
2008
+ }
2009
+
2010
+ .e-hide.e-rte-quick-popup-hide {
2011
+ border: 0;
2012
+ position: absolute;
2013
+ }
2014
+
2015
+ .e-rte-popup-hide {
2016
+ display: none;
2017
+ }
2018
+
2019
+ .e-rte-hide-visible {
2020
+ visibility: hidden;
2021
+ }
2022
+
2023
+ .e-rte-table-popup.e-dialog .e-dlg-content {
2024
+ padding: 0;
2025
+ @if $skin-name == 'FluentUI' {
2026
+ margin-bottom: 0;
2027
+ }
2028
+ }
2029
+
2030
+ @if $skin-name == 'tailwind' {
2031
+ .e-rte-table-popup.e-popup.e-popup-open {
2032
+ box-shadow: $rte-table-popup-box;
2033
+ }
2034
+
2035
+ .e-rte-elements.e-rte-quick-popup .e-toolbar .e-toolbar-items.e-toolbar-multirow:not(.e-tbar-pos) .e-toolbar-item:first-child {
2036
+ margin-left: 6px;
2037
+ }
2038
+
2039
+ .e-rte-elements.e-rte-quick-popup .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
2040
+ min-width: 24px;
2041
+ }
2042
+ }
2043
+
2044
+ @if $skin-name == 'bootstrap5' {
2045
+ .e-rte-elements.e-rte-quick-popup .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
2046
+ min-width: 24px;
2047
+ }
2048
+
2049
+ .e-richtexteditor .e-toolbar .e-insert-table-btn.e-btn .e-icons {
2050
+ padding-bottom: 0;
2051
+ }
2052
+ }
2053
+
2054
+ @if $skin-name == 'bootstrap' or $skin-name == 'bootstrap-dark' or $skin-name == 'FluentUI' {
2055
+ .e-rte-quick-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-rte-backgroundcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control,
2056
+ .e-rte-quick-toolbar.e-rte-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-rte-backgroundcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control:hover,
2057
+ .e-rte-quick-toolbar.e-rte-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-rte-backgroundcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control:active,
2058
+ .e-rte-quick-toolbar.e-rte-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-rte-backgroundcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control.e-active {
2059
+ padding-left: 0;
2060
+ padding-right: 0;
2061
+ }
2062
+ }
2063
+
2064
+ .e-richtexteditor .e-rte-table-popup.e-popup-open.e-dialog .e-rte-tablecell {
2065
+ margin: 1px;
2066
+ }
2067
+ .e-transparent.e-rte-elements.e-tbar-btn.e-rte-fontcolor-dropdown,
2068
+ .e-transparent.e-rte-elements.e-tbar-btn.e-rte-backgroundcolor-dropdown {
2069
+ visibility: hidden;
2070
+ }
2071
+ // Blazor styles end
2072
+ }