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