@syncfusion/ej2-richtexteditor 23.2.7-52849 → 24.1.41

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