@syncfusion/ej2-angular-richtexteditor 20.2.40-ngcc → 20.2.40

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