@syncfusion/ej2-richtexteditor 26.2.10 → 26.2.11-618955

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