@syncfusion/ej2-richtexteditor 23.2.7 → 24.1.41-569421

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