@syncfusion/ej2-richtexteditor 25.1.42 → 25.2.4-621927

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