@syncfusion/ej2-richtexteditor 24.1.41 → 24.1.43-569781

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