@syncfusion/ej2-richtexteditor 18.4.39 → 18.4.42-70943

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 (210) hide show
  1. package/CHANGELOG.md +782 -728
  2. package/README.md +67 -67
  3. package/dist/ej2-richtexteditor.umd.min.js +1 -10
  4. package/dist/ej2-richtexteditor.umd.min.js.map +1 -1
  5. package/dist/es6/ej2-richtexteditor.es2015.js +249 -145
  6. package/dist/es6/ej2-richtexteditor.es2015.js.map +1 -1
  7. package/dist/es6/ej2-richtexteditor.es5.js +371 -267
  8. package/dist/es6/ej2-richtexteditor.es5.js.map +1 -1
  9. package/helpers/e2e/index.js +3 -3
  10. package/license +9 -9
  11. package/package.json +76 -75
  12. package/src/common/interface.d.ts +6 -6
  13. package/src/editor-manager/base/classes.d.ts +1 -1
  14. package/src/editor-manager/base/classes.js +1 -1
  15. package/src/editor-manager/base/editor-manager.d.ts +3 -3
  16. package/src/editor-manager/base/editor-manager.js +3 -3
  17. package/src/editor-manager/base/interface.d.ts +7 -7
  18. package/src/editor-manager/base/types.d.ts +1 -1
  19. package/src/editor-manager/plugin/alignments.d.ts +2 -2
  20. package/src/editor-manager/plugin/alignments.js +2 -2
  21. package/src/editor-manager/plugin/clearformat-exec.d.ts +2 -2
  22. package/src/editor-manager/plugin/clearformat-exec.js +2 -2
  23. package/src/editor-manager/plugin/clearformat.d.ts +1 -1
  24. package/src/editor-manager/plugin/clearformat.js +1 -1
  25. package/src/editor-manager/plugin/dom-node.d.ts +34 -34
  26. package/src/editor-manager/plugin/dom-node.js +34 -34
  27. package/src/editor-manager/plugin/formats.d.ts +2 -2
  28. package/src/editor-manager/plugin/formats.js +2 -2
  29. package/src/editor-manager/plugin/image.d.ts +3 -3
  30. package/src/editor-manager/plugin/image.js +5 -4
  31. package/src/editor-manager/plugin/indents.d.ts +2 -2
  32. package/src/editor-manager/plugin/indents.js +2 -2
  33. package/src/editor-manager/plugin/insert-methods.d.ts +4 -4
  34. package/src/editor-manager/plugin/insert-methods.js +4 -4
  35. package/src/editor-manager/plugin/insert-text.d.ts +2 -2
  36. package/src/editor-manager/plugin/insert-text.js +2 -2
  37. package/src/editor-manager/plugin/inserthtml-exec.d.ts +2 -2
  38. package/src/editor-manager/plugin/inserthtml-exec.js +2 -2
  39. package/src/editor-manager/plugin/inserthtml.d.ts +2 -2
  40. package/src/editor-manager/plugin/inserthtml.js +16 -12
  41. package/src/editor-manager/plugin/isformatted.d.ts +8 -8
  42. package/src/editor-manager/plugin/isformatted.js +8 -8
  43. package/src/editor-manager/plugin/link.d.ts +2 -2
  44. package/src/editor-manager/plugin/link.js +8 -8
  45. package/src/editor-manager/plugin/lists.d.ts +2 -2
  46. package/src/editor-manager/plugin/lists.js +8 -4
  47. package/src/editor-manager/plugin/ms-word-clean-up.d.ts +1 -1
  48. package/src/editor-manager/plugin/ms-word-clean-up.js +23 -7
  49. package/src/editor-manager/plugin/nodecutter.d.ts +6 -6
  50. package/src/editor-manager/plugin/nodecutter.js +6 -6
  51. package/src/editor-manager/plugin/selection-commands.d.ts +2 -1
  52. package/src/editor-manager/plugin/selection-commands.js +35 -4
  53. package/src/editor-manager/plugin/selection-exec.d.ts +2 -2
  54. package/src/editor-manager/plugin/selection-exec.js +2 -2
  55. package/src/editor-manager/plugin/table.d.ts +2 -2
  56. package/src/editor-manager/plugin/table.js +4 -3
  57. package/src/editor-manager/plugin/toolbar-status.d.ts +2 -2
  58. package/src/editor-manager/plugin/toolbar-status.js +2 -2
  59. package/src/editor-manager/plugin/undo.d.ts +6 -6
  60. package/src/editor-manager/plugin/undo.js +6 -6
  61. package/src/global.d.ts +1 -0
  62. package/src/markdown-parser/base/interface.d.ts +10 -10
  63. package/src/markdown-parser/base/markdown-parser.d.ts +3 -3
  64. package/src/markdown-parser/base/markdown-parser.js +3 -3
  65. package/src/markdown-parser/base/types.d.ts +1 -1
  66. package/src/markdown-parser/plugin/clearformat.d.ts +2 -2
  67. package/src/markdown-parser/plugin/clearformat.js +2 -2
  68. package/src/markdown-parser/plugin/formats.d.ts +2 -2
  69. package/src/markdown-parser/plugin/formats.js +2 -2
  70. package/src/markdown-parser/plugin/link.d.ts +2 -2
  71. package/src/markdown-parser/plugin/link.js +2 -2
  72. package/src/markdown-parser/plugin/markdown-selection.d.ts +14 -14
  73. package/src/markdown-parser/plugin/markdown-selection.js +14 -14
  74. package/src/markdown-parser/plugin/md-selection-formats.d.ts +2 -2
  75. package/src/markdown-parser/plugin/md-selection-formats.js +2 -2
  76. package/src/markdown-parser/plugin/table.d.ts +3 -3
  77. package/src/markdown-parser/plugin/table.js +3 -3
  78. package/src/markdown-parser/plugin/undo.d.ts +6 -6
  79. package/src/markdown-parser/plugin/undo.js +6 -6
  80. package/src/rich-text-editor/actions/base-quick-toolbar.d.ts +9 -9
  81. package/src/rich-text-editor/actions/base-quick-toolbar.js +9 -9
  82. package/src/rich-text-editor/actions/base-toolbar.d.ts +3 -3
  83. package/src/rich-text-editor/actions/base-toolbar.js +3 -3
  84. package/src/rich-text-editor/actions/color-picker.d.ts +2 -2
  85. package/src/rich-text-editor/actions/color-picker.js +2 -2
  86. package/src/rich-text-editor/actions/count.d.ts +3 -3
  87. package/src/rich-text-editor/actions/count.js +3 -3
  88. package/src/rich-text-editor/actions/dropdown-buttons.d.ts +2 -2
  89. package/src/rich-text-editor/actions/dropdown-buttons.js +2 -2
  90. package/src/rich-text-editor/actions/full-screen.d.ts +3 -3
  91. package/src/rich-text-editor/actions/full-screen.js +3 -3
  92. package/src/rich-text-editor/actions/html-editor.d.ts +3 -3
  93. package/src/rich-text-editor/actions/html-editor.js +3 -3
  94. package/src/rich-text-editor/actions/keyboard-model.d.ts +13 -13
  95. package/src/rich-text-editor/actions/keyboard.d.ts +1 -1
  96. package/src/rich-text-editor/actions/keyboard.js +22 -21
  97. package/src/rich-text-editor/actions/markdown-editor.d.ts +2 -2
  98. package/src/rich-text-editor/actions/markdown-editor.js +2 -2
  99. package/src/rich-text-editor/actions/paste-clean-up.d.ts +1 -1
  100. package/src/rich-text-editor/actions/paste-clean-up.js +1 -1
  101. package/src/rich-text-editor/actions/quick-toolbar.d.ts +9 -9
  102. package/src/rich-text-editor/actions/quick-toolbar.js +9 -9
  103. package/src/rich-text-editor/actions/toolbar.d.ts +13 -13
  104. package/src/rich-text-editor/actions/toolbar.js +13 -13
  105. package/src/rich-text-editor/actions/xhtml-validation.d.ts +1 -1
  106. package/src/rich-text-editor/actions/xhtml-validation.js +1 -1
  107. package/src/rich-text-editor/base/classes.d.ts +103 -103
  108. package/src/rich-text-editor/base/classes.js +103 -103
  109. package/src/rich-text-editor/base/constant.d.ts +112 -107
  110. package/src/rich-text-editor/base/constant.js +112 -107
  111. package/src/rich-text-editor/base/enum.d.ts +1 -1
  112. package/src/rich-text-editor/base/enum.js +1 -1
  113. package/src/rich-text-editor/base/interface.d.ts +40 -40
  114. package/src/rich-text-editor/base/interface.js +1 -1
  115. package/src/rich-text-editor/base/rich-text-editor-model.d.ts +701 -701
  116. package/src/rich-text-editor/base/rich-text-editor.d.ts +51 -51
  117. package/src/rich-text-editor/base/rich-text-editor.js +88 -66
  118. package/src/rich-text-editor/base/util.d.ts +1 -1
  119. package/src/rich-text-editor/base/util.js +1 -1
  120. package/src/rich-text-editor/formatter/formatter.d.ts +8 -8
  121. package/src/rich-text-editor/formatter/formatter.js +8 -8
  122. package/src/rich-text-editor/formatter/html-formatter.d.ts +2 -2
  123. package/src/rich-text-editor/formatter/html-formatter.js +15 -15
  124. package/src/rich-text-editor/formatter/markdown-formatter.d.ts +2 -2
  125. package/src/rich-text-editor/formatter/markdown-formatter.js +15 -15
  126. package/src/rich-text-editor/models/iframe-settings-model.d.ts +21 -21
  127. package/src/rich-text-editor/models/iframe-settings.js +19 -19
  128. package/src/rich-text-editor/models/inline-mode-model.d.ts +9 -9
  129. package/src/rich-text-editor/models/inline-mode.js +19 -19
  130. package/src/rich-text-editor/models/toolbar-settings-model.d.ts +328 -328
  131. package/src/rich-text-editor/models/toolbar-settings.js +19 -19
  132. package/src/rich-text-editor/renderer/content-renderer.d.ts +6 -6
  133. package/src/rich-text-editor/renderer/content-renderer.js +6 -6
  134. package/src/rich-text-editor/renderer/dialog-renderer.d.ts +2 -2
  135. package/src/rich-text-editor/renderer/dialog-renderer.js +2 -2
  136. package/src/rich-text-editor/renderer/iframe-content-renderer.d.ts +4 -4
  137. package/src/rich-text-editor/renderer/iframe-content-renderer.js +17 -17
  138. package/src/rich-text-editor/renderer/image-module.d.ts +2 -1
  139. package/src/rich-text-editor/renderer/image-module.js +21 -7
  140. package/src/rich-text-editor/renderer/link-module.d.ts +1 -1
  141. package/src/rich-text-editor/renderer/link-module.js +1 -1
  142. package/src/rich-text-editor/renderer/markdown-renderer.d.ts +6 -6
  143. package/src/rich-text-editor/renderer/markdown-renderer.js +6 -6
  144. package/src/rich-text-editor/renderer/popup-renderer.d.ts +5 -5
  145. package/src/rich-text-editor/renderer/popup-renderer.js +5 -5
  146. package/src/rich-text-editor/renderer/render.d.ts +2 -2
  147. package/src/rich-text-editor/renderer/render.js +2 -2
  148. package/src/rich-text-editor/renderer/table-module.d.ts +1 -1
  149. package/src/rich-text-editor/renderer/table-module.js +7 -2
  150. package/src/rich-text-editor/renderer/toolbar-renderer.d.ts +8 -8
  151. package/src/rich-text-editor/renderer/toolbar-renderer.js +8 -8
  152. package/src/rich-text-editor/renderer/view-source.d.ts +6 -6
  153. package/src/rich-text-editor/renderer/view-source.js +6 -6
  154. package/src/rich-text-editor/services/renderer-factory.d.ts +3 -3
  155. package/src/rich-text-editor/services/renderer-factory.js +3 -3
  156. package/src/rich-text-editor/services/service-locator.d.ts +3 -3
  157. package/src/rich-text-editor/services/service-locator.js +3 -3
  158. package/src/selection/selection.d.ts +22 -22
  159. package/src/selection/selection.js +22 -22
  160. package/styles/_all.scss +2 -2
  161. package/styles/bootstrap-dark.css +13 -1
  162. package/styles/bootstrap.css +13 -1
  163. package/styles/bootstrap4.css +13 -1
  164. package/styles/bootstrap5-dark.css +0 -0
  165. package/styles/bootstrap5-dark.scss +0 -0
  166. package/styles/bootstrap5.css +0 -0
  167. package/styles/bootstrap5.scss +0 -0
  168. package/styles/fabric-dark.css +13 -1
  169. package/styles/fabric.css +13 -1
  170. package/styles/highcontrast-light.css +13 -1
  171. package/styles/highcontrast.css +13 -1
  172. package/styles/material-dark.css +13 -1
  173. package/styles/material.css +13 -1
  174. package/styles/rich-text-editor/_all.scss +2 -2
  175. package/styles/rich-text-editor/_bootstrap-dark-definition.scss +151 -151
  176. package/styles/rich-text-editor/_bootstrap-definition.scss +184 -184
  177. package/styles/rich-text-editor/_bootstrap4-definition.scss +307 -307
  178. package/styles/rich-text-editor/_fabric-dark-definition.scss +150 -150
  179. package/styles/rich-text-editor/_fabric-definition.scss +148 -148
  180. package/styles/rich-text-editor/_highcontrast-definition.scss +148 -148
  181. package/styles/rich-text-editor/_highcontrast-light-definition.scss +148 -148
  182. package/styles/rich-text-editor/_layout.scss +1416 -1404
  183. package/styles/rich-text-editor/_material-dark-definition.scss +151 -151
  184. package/styles/rich-text-editor/_material-definition.scss +150 -150
  185. package/styles/rich-text-editor/_theme.scss +499 -499
  186. package/styles/rich-text-editor/bootstrap-dark.css +13 -1
  187. package/styles/rich-text-editor/bootstrap.css +13 -1
  188. package/styles/rich-text-editor/bootstrap4.css +13 -1
  189. package/styles/rich-text-editor/fabric-dark.css +13 -1
  190. package/styles/rich-text-editor/fabric.css +13 -1
  191. package/styles/rich-text-editor/highcontrast-light.css +13 -1
  192. package/styles/rich-text-editor/highcontrast.css +13 -1
  193. package/styles/rich-text-editor/icons/_bootstrap-dark.scss +289 -289
  194. package/styles/rich-text-editor/icons/_bootstrap.scss +288 -288
  195. package/styles/rich-text-editor/icons/_bootstrap4.scss +288 -288
  196. package/styles/rich-text-editor/icons/_fabric-dark.scss +288 -288
  197. package/styles/rich-text-editor/icons/_fabric.scss +288 -288
  198. package/styles/rich-text-editor/icons/_highcontrast-light.scss +288 -288
  199. package/styles/rich-text-editor/icons/_highcontrast.scss +288 -288
  200. package/styles/rich-text-editor/icons/_material-dark.scss +288 -288
  201. package/styles/rich-text-editor/icons/_material.scss +288 -288
  202. package/styles/rich-text-editor/material-dark.css +13 -1
  203. package/styles/rich-text-editor/material.css +13 -1
  204. package/styles/tailwind-dark.css +0 -0
  205. package/styles/tailwind-dark.scss +0 -0
  206. package/styles/tailwind.css +0 -0
  207. package/styles/tailwind.scss +0 -0
  208. package/dist/global/ej2-richtexteditor.min.js +0 -11
  209. package/dist/global/ej2-richtexteditor.min.js.map +0 -1
  210. package/dist/global/index.d.ts +0 -14
@@ -1,1404 +1,1416 @@
1
- @include export-module('richtexteditor-layout') {
2
- /*! tab layout */
3
-
4
- .e-bigger .e-richtexteditor,
5
- .e-richtexteditor.e-bigger {
6
-
7
- .e-rte-toolbar {
8
-
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-rtl .e-rte-toolbar .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child {
15
- margin-left: 0;
16
- margin-right: $rte-big-tb-items-margin-left;
17
- }
18
-
19
- .e-rte-toolbar,
20
- .e-rte-toolbar.e-toolbar.e-extended-toolbar {
21
-
22
- .e-toolbar-extended {
23
- padding-left: $rte-big-tb-items-padding-left;
24
- }
25
-
26
- .e-toolbar-items,
27
- .e-toolbar-extended {
28
-
29
- .e-toolbar-item .e-tbar-btn .e-icons.e-btn-icon:not(.e-caret) {
30
- font-size: 18px;
31
- }
32
-
33
- .e-toolbar-item .e-font-color .e-selected-color.e-icons::before,
34
- .e-toolbar-item .e-background-color .e-selected-color.e-icons::before {
35
- top: -20px;
36
- }
37
-
38
- .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-dropdown-btn {
39
- padding-left: $rte-big-drop-btn-padding-left;
40
- padding-right: $rte-big-drop-btn-padding-right;
41
- }
42
-
43
- .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-dropdown-btn:hover,
44
- .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-dropdown-btn:focus,
45
- .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-dropdown-btn:active {
46
- padding-left: $rte-big-drop-btn-action-padding-left;
47
- padding-right: $rte-big-drop-btn-action-padding-right;
48
- }
49
-
50
- .e-toolbar-item.e-active .e-tbar-btn.e-btn {
51
- padding: $rte-big-active-tb-item-btn-padding;
52
- }
53
-
54
- .e-toolbar-item .e-rte-fontcolor-dropdown.e-active .e-rte-color-content,
55
- .e-toolbar-item .e-rte-backgroundcolor-dropdown.e-active .e-rte-color-content {
56
- line-height: $rte-big-split-btn-active-color-icon-line-height;
57
- }
58
- }
59
-
60
- .e-dropdown-btn .e-caret {
61
- font-size: $rte-big-dropdown-caret-icon-size;
62
- }
63
- }
64
- }
65
-
66
- .e-richtexteditor {
67
- color: $rte-content-color;
68
- display: block;
69
- position: relative;
70
-
71
- & textarea.e-content {
72
- border: 0;
73
- display: block;
74
- height: 100%;
75
- margin: 0;
76
- outline: 0;
77
- padding: 8px;
78
- resize: none;
79
- width: 100%;
80
- }
81
-
82
- & .e-rte-hidden {
83
- border: 0;
84
- display: block;
85
- height: 0;
86
- margin: 0;
87
- outline: 0;
88
- padding: 0;
89
- resize: none;
90
- visibility: hidden;
91
- width: 0;
92
- }
93
-
94
- &.e-disabled {
95
- pointer-events: none;
96
- }
97
-
98
- &.e-rte-full-screen {
99
- bottom: 0;
100
- height: 100% !important; // sass-lint:disable-line no-important
101
- left: 0;
102
- position: fixed;
103
- right: 0;
104
- top: 0;
105
- width: 100% !important; // sass-lint:disable-line no-important
106
- z-index: 999;
107
- }
108
-
109
- &.e-rtl .e-rte-character-count {
110
- left: 0;
111
- padding-left: 30px;
112
- padding-right: unset;
113
- right: unset;
114
- }
115
-
116
- .e-rte-toolbar {
117
-
118
- .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child {
119
- margin-left: $rte-tb-items-margin-left;
120
- }
121
- }
122
-
123
- &.e-rtl .e-rte-toolbar .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child {
124
- margin-left: 0;
125
- margin-right: $rte-tb-items-margin-left;
126
- }
127
-
128
- .e-rte-toolbar.e-rte-tb-mobile .e-toolbar-multirow {
129
- margin-left: 0;
130
- margin-right: 0;
131
- overflow-x: auto;
132
- white-space: nowrap;
133
- width: 100%;
134
- }
135
-
136
- .e-rte-toolbar,
137
- .e-rte-toolbar.e-toolbar.e-extended-toolbar {
138
- z-index: 101;
139
-
140
- .e-toolbar-extended {
141
- margin-left: 0;
142
- padding-left: $rte-tb-items-padding-left;
143
- }
144
-
145
- .e-toolbar-items,
146
- .e-toolbar-extended {
147
-
148
- .e-toolbar-item {
149
-
150
- .e-formats-tbar-btn > :first-child {
151
- min-width: $rte-format-btn-min-width;
152
- }
153
-
154
- .e-font-name-tbar-btn > :first-child {
155
- min-width: $rte-font-name-btn-min-width;
156
- }
157
-
158
- .e-font-size-tbar-btn > :first-child {
159
- min-width: $rte-font-size-btn-min-width;
160
- }
161
-
162
- .e-dropdown-btn {
163
- padding-left: $rte-drop-btn-padding-left;
164
- padding-right: $rte-drop-btn-padding-right;
165
-
166
- .e-rte-dropdown-btn-text {
167
- font-weight: 500;
168
- overflow: hidden;
169
- text-overflow: ellipsis;
170
- white-space: nowrap;
171
- }
172
- }
173
-
174
- .e-dropdown-btn:hover,
175
- .e-dropdown-btn:focus,
176
- .e-dropdown-btn:active {
177
- padding-left: $rte-drop-btn-action-padding-left;
178
- padding-right: $rte-drop-btn-action-padding-right;
179
- }
180
-
181
- .e-font-color .e-selected-color.e-icons::before {
182
-
183
- font-size: 12px;
184
- position: relative;
185
- top: -18px;
186
- }
187
-
188
- .e-font-color.e-icons::before {
189
- font-size: 13px;
190
- }
191
-
192
- .e-background-color.e-icons::before {
193
- display: inline;
194
- font-size: 14px;
195
- }
196
-
197
- .e-rte-fontcolor-dropdown.e-active .e-rte-color-content,
198
- .e-rte-backgroundcolor-dropdown.e-active .e-rte-color-content {
199
- line-height: $rte-split-btn-active-color-icon-line-height;
200
- }
201
-
202
- .e-tbar-btn {
203
-
204
- .e-icons.e-btn-icon:not(.e-caret) {
205
- font-size: 16px;
206
- }
207
- }
208
-
209
- &.e-active .e-tbar-btn.e-btn {
210
- padding: $rte-active-tb-item-btn-padding;
211
- }
212
- }
213
- }
214
-
215
- &.e-control[class*='e-toolbar'] {
216
- box-sizing: border-box;
217
- }
218
-
219
- .e-toolbar-extended.e-visible {
220
- display: block;
221
- visibility: hidden;
222
- }
223
-
224
- &.e-tbar-ios-fixed.e-rte-tb-fixed {
225
- top: 0;
226
- transform: translate3d(0, 0, 0);
227
- }
228
-
229
- &.e-rte-tb-fixed:not(.e-tbar-ios-fixed) {
230
- bottom: 0;
231
- }
232
-
233
- &.e-rte-tb-fixed {
234
- display: none;
235
- left: 0;
236
- position: fixed;
237
- right: 0;
238
-
239
- &.e-show {
240
- display: block;
241
- z-index: 101;
242
- }
243
- }
244
-
245
- &.e-rte-tb-float {
246
- position: fixed;
247
- top: 0;
248
-
249
- &.e-rte-tb-abs-float {
250
- position: absolute;
251
- }
252
- }
253
-
254
- .e-dropdown-btn .e-caret {
255
- font-size: $rte-dropdown-caret-icon-size;
256
- }
257
- }
258
-
259
- .rte-placeholder {
260
- color: $rte-content-font-color;
261
- line-height: $rte-placeholder-line-height;
262
- opacity: 00.54;
263
- overflow: hidden;
264
- position: absolute;
265
- text-align: start;
266
- top: 0;
267
- z-index: 1;
268
- }
269
-
270
- .e-rte-content {
271
- position: relative;
272
- z-index: 1;
273
- }
274
-
275
- .e-rte-content,
276
- .e-source-content {
277
- // sass-lint:disable no-vendor-prefixes
278
- -webkit-overflow-scrolling: touch; //iOS devices scrolling smooth
279
- // sass-lint:enabled no-vendor-prefixes
280
- overflow: auto;
281
- transition: 100ms ease-out;
282
- width: 100%;
283
-
284
- .e-content {
285
- background: unset;
286
- box-sizing: border-box;
287
- height: 100%;
288
- min-height: 100px;
289
- outline: 0 solid transparent;
290
- overflow-x: auto;
291
- padding: 16px;
292
- position: relative;
293
- text-align: inherit;
294
- z-index: 2;
295
-
296
- @media screen and (min-width: 992px) {
297
- font-size: $rte-content-font-size;
298
- }
299
- }
300
-
301
- .e-content p {
302
- margin: 0 0 10px;
303
- margin-bottom: 10px;
304
- }
305
-
306
- .e-content li {
307
- margin-bottom: 10px;
308
- }
309
-
310
- .e-content h1 {
311
- font-size: 2.17em;
312
- font-weight: 400;
313
- line-height: 1;
314
- margin: 10px 0;
315
- }
316
-
317
- .e-content h2 {
318
- font-size: 1.74em;
319
- font-weight: 400;
320
- margin: 10px 0;
321
- }
322
-
323
- .e-content h3 {
324
- font-size: 1.31em;
325
- font-weight: 400;
326
- margin: 10px 0;
327
- }
328
-
329
- .e-content h4 {
330
- font-size: 16px;
331
- font-weight: 400;
332
- line-height: 1.5;
333
- margin: 0;
334
- }
335
-
336
- .e-content h5 {
337
- font-size: 00.8em;
338
- font-weight: 400;
339
- margin: 0;
340
- }
341
-
342
- .e-content h6 {
343
- font-size: 00.65em;
344
- font-weight: 400;
345
- margin: 0;
346
- }
347
-
348
- .e-content blockquote {
349
- margin: 10px 0;
350
- margin-left: 0;
351
- padding-left: 5px;
352
- }
353
-
354
- .e-content pre {
355
- background-color: inherit;
356
- border: 0;
357
- border-radius: 0;
358
- color: $rte-content-color;
359
- font-size: inherit;
360
- line-height: inherit;
361
- margin: 0 0 10px;
362
- overflow: visible;
363
- padding: 0;
364
- white-space: pre-wrap;
365
- word-break: inherit;
366
- word-wrap: break-word;
367
- }
368
-
369
- .e-content strong,
370
- .e-content b {
371
- font-weight: 700;
372
- }
373
-
374
- .e-content a {
375
- text-decoration: none;
376
- user-select: auto;
377
- }
378
-
379
- .e-content a:hover {
380
- text-decoration: underline;
381
- }
382
-
383
- .e-content p:last-child,
384
- .e-content pre:last-child,
385
- .e-content blockquote:last-child {
386
- margin-bottom: 0;
387
- }
388
-
389
- .e-content h3+h4,
390
- .e-content h4+h5,
391
- .e-content h5+h6 {
392
- margin-top: 00.6em;
393
- }
394
-
395
- .e-content ul:last-child {
396
- margin-bottom: 0;
397
- }
398
-
399
- }
400
-
401
- .e-rte-character-count {
402
- bottom: 0;
403
- color: $rte-default-character-count-color;
404
- font-family: 'Times New Roman', Georgia, Serif;
405
- font-size: 14px;
406
- margin-right: 30px;
407
- opacity: 00.54;
408
- padding-bottom: 2px;
409
- position: absolute;
410
- right: 0;
411
- z-index: 100;
412
-
413
- &.e-warning {
414
- color: $rte-warning-character-count-color;
415
- opacity: unset;
416
- }
417
-
418
- &.e-error {
419
- color: $rte-error-character-count-color;
420
- opacity: unset;
421
- }
422
-
423
- }
424
-
425
- .e-rte-srctextarea {
426
- background-color: transparent;
427
- border: 0;
428
- color: $rte-content-color;
429
- display: block;
430
- height: 100%;
431
- line-height: 22px;
432
- min-height: 200px;
433
- overflow: auto;
434
- padding: 16px;
435
- resize: none;
436
- transition: 100ms ease-out;
437
- width: 100%;
438
- }
439
-
440
- img::selection {
441
- background: transparent;
442
- color: transparent;
443
- }
444
-
445
- .e-resize-handle {
446
- height: $rte-resize-handler-height;
447
- position: absolute;
448
- width: $rte-resize-handler-width;
449
-
450
- &.e-south-east {
451
- bottom: $rte-resize-handler-position;
452
- cursor: nwse-resize;
453
- right: $rte-resize-handler-position;
454
- z-index: 100;
455
- }
456
- }
457
-
458
- &.e-rte-tb-expand {
459
- &.e-rte-fixed-tb-expand {
460
- transition: none;
461
- }
462
- }
463
- }
464
-
465
- .e-rte-linkcontent .e-rte-label {
466
- padding-top: $rte-insert-dialog-label-padding-top;
467
- }
468
-
469
- .e-rte-label label {
470
- font-weight: normal;
471
- }
472
-
473
- .e-rte-linkcontent .e-rte-label:first-child {
474
- padding-top: 0;
475
- }
476
-
477
- .e-bigger .e-rte-dropdown-popup {
478
-
479
- ul {
480
- min-width: 84px;
481
- }
482
- }
483
-
484
- .e-rte-dropdown-popup {
485
-
486
- &.e-rte-inline-dropdown {
487
-
488
- @media screen and (max-width: 768px) {
489
- ul {
490
- padding: 7px 0;
491
-
492
- li.e-item {
493
- height: 34px;
494
- line-height: 34px;
495
- padding: 0 6.5px;
496
- }
497
-
498
- .e-item .e-menu-icon {
499
- float: none;
500
- }
501
- }
502
- }
503
-
504
- &.e-rte-dropdown-icons.e-dropdown-popup {
505
-
506
- @media screen and (max-width: 768px) {
507
- max-height: 280px;
508
-
509
- ul {
510
- display: inline-flex;
511
- }
512
- }
513
- }
514
-
515
- }
516
-
517
- ul {
518
- min-width: 82px;
519
-
520
- .e-item {
521
-
522
- .e-menu-icon {
523
- margin: 0 6px;
524
- width: auto;
525
- }
526
-
527
- &.e-h1 {
528
- font-size: 2em;
529
- font-weight: bold;
530
- height: 40px;
531
- line-height: 40px;
532
- }
533
-
534
- &.e-h2 {
535
- font-size: 1.5em;
536
- font-weight: bold;
537
- height: 40px;
538
- line-height: 40px;
539
- }
540
-
541
- &.e-h3 {
542
- font-size: 1.16em;
543
- font-weight: bold;
544
- }
545
-
546
- &.e-h4 {
547
- font-size: 1em;
548
- font-weight: bold;
549
- }
550
-
551
- &.e-h5 {
552
- font-size: .83em;
553
- font-weight: bold;
554
- }
555
-
556
- &.e-h6 {
557
- font-size: .7em;
558
- font-weight: bold;
559
- }
560
-
561
- &.e-segoe-ui {
562
- font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
563
- }
564
-
565
- &.e-arial {
566
- font-family: Arial, Helvetica, sans-serif;
567
- }
568
-
569
- &.e-courier-new {
570
- font-family: Courier New, Courier, monospace;
571
- }
572
-
573
- &.e-georgia {
574
- font-family: Georgia, 'Times New Roman', Times, serif;
575
- }
576
-
577
- &.e-helvetica-neue {
578
- font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
579
- }
580
-
581
- &.e-impact {
582
- font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
583
- }
584
-
585
- &.e-lucida-console {
586
- font-family: Lucida Console, Monaco, monospace;
587
- }
588
-
589
- &.e-tahoma {
590
- font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
591
- }
592
-
593
- &.e-times-new-roman {
594
- font-family: 'Times New Roman', Times, serif;
595
- }
596
-
597
- &.e-trebuchet-ms {
598
- font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
599
- }
600
-
601
- &.e-verdana {
602
- font-family: Verdana, Geneva, Tahoma, sans-serif;
603
- }
604
-
605
- &.e-roboto {
606
- font-family: 'Roboto', 'Segoe UI', 'GeezaPro', 'DejaVu Serif', sans-serif;
607
- }
608
-
609
- }
610
- }
611
-
612
- &.e-rte-dropdown-icons {
613
-
614
- ul {
615
- min-width: auto;
616
- }
617
-
618
- @media screen and (max-width: 768px) {
619
-
620
- ul {
621
- min-width: 30px;
622
- }
623
- }
624
- }
625
- }
626
-
627
- .e-rte-image.e-imgbreak {
628
- border: 0;
629
- cursor: pointer;
630
- display: block;
631
- float: none;
632
- margin: 5px auto;
633
- max-width: 100%;
634
- position: relative;
635
- }
636
-
637
- .e-rte-image {
638
- border: 0;
639
- cursor: pointer;
640
- display: block;
641
- float: none;
642
- margin: auto;
643
- max-width: 100%;
644
- position: relative;
645
- }
646
-
647
- .e-rte-image.e-imginline {
648
- display: inline-block;
649
- float: none;
650
- margin-left: 5px;
651
- margin-right: 5px;
652
- max-width: calc(100% - (2 * 5px));
653
- vertical-align: bottom;
654
- }
655
-
656
- .e-rte-image.e-imgcenter {
657
- cursor: pointer;
658
- display: block;
659
- float: none;
660
- margin: 5px auto;
661
- max-width: 100%;
662
- position: relative;
663
- }
664
-
665
- .e-rte-image.e-imgleft {
666
- float: left;
667
- margin: 0 auto;
668
- margin-right: 5px;
669
- text-align: left;
670
- }
671
-
672
- .e-rte-image.e-imgright {
673
- float: right;
674
- margin: 0 auto;
675
- margin-left: 5px;
676
- text-align: right;
677
- }
678
-
679
- .e-rte-img-popup .e-item {
680
- height: 106px;
681
- width: 300px;
682
- }
683
-
684
- .e-rte-img-caption {
685
- display: inline-block;
686
- margin: 5px auto;
687
- max-width: 100%;
688
- position: relative;
689
- }
690
-
691
- .e-rte-img-caption.e-caption-inline {
692
- display: inline-block;
693
- margin: 5px auto;
694
- margin-left: 5px;
695
- margin-right: 5px;
696
- max-width: calc(100% - (2 * 5px));
697
- position: relative;
698
- text-align: center;
699
- vertical-align: bottom;
700
- }
701
-
702
- .e-rte-img-caption.e-imgcenter {
703
- display: block;
704
- margin-left: auto;
705
- margin-right: auto;
706
- }
707
-
708
- .e-rte-img-caption.e-imgright {
709
- display: block;
710
- margin-left: auto;
711
- margin-right: 0;
712
- }
713
-
714
- .e-rte-img-caption.e-imgleft {
715
- display: block;
716
- margin-left: 0;
717
- margin-right: auto;
718
- }
719
-
720
- .e-rte-img-caption .e-rte-image.e-imgright {
721
- float: none;
722
- margin-left: auto;
723
- margin-right: 0;
724
- }
725
-
726
- .e-rte-img-caption .e-rte-image.e-imgleft {
727
- float: none;
728
- margin: 0;
729
- }
730
-
731
- .e-rte-table {
732
- border-collapse: collapse;
733
- empty-cells: show;
734
- }
735
-
736
- .e-rte-table td,
737
- .e-rte-table th {
738
- border: 1px solid $rte-table-border-color;
739
- height: 20px;
740
- min-width: 20px;
741
- padding: 2px 5px;
742
- vertical-align: middle;
743
- }
744
-
745
- .e-rte-table.e-dashed-border td,
746
- .e-rte-table.e-dashed-border th {
747
- border-style: dashed;
748
- }
749
-
750
- .e-rte-img-caption .e-img-inner {
751
- box-sizing: border-box;
752
- display: block;
753
- font-size: 16px;
754
- font-weight: initial;
755
- margin: auto;
756
- opacity: .9;
757
- position: relative;
758
- text-align: center;
759
- width: 100%;
760
- }
761
-
762
- .e-rte-img-caption .e-img-wrap {
763
- display: inline-block;
764
- margin: auto;
765
- padding: 0;
766
- width: 100%;
767
- }
768
-
769
- .e-rte-img-dialog .e-rte-label {
770
- padding-top: $rte-insert-dialog-label-padding-top;
771
- }
772
-
773
- .e-rte-img-dialog .e-rte-label:first-child {
774
- padding-top: 0;
775
- }
776
-
777
- .e-rte-table-resize.e-row-resize,
778
- .e-rte-table-resize.e-column-resize {
779
- background-color: transparent;
780
- background-repeat: repeat;
781
- bottom: 0;
782
- cursor: col-resize;
783
- height: 1px;
784
- overflow: visible;
785
- position: absolute;
786
- width: 1px;
787
- }
788
-
789
- .e-rte-table-resize.e-row-resize {
790
- cursor: row-resize;
791
- height: 1px;
792
- }
793
-
794
- .e-richtexteditor {
795
- .e-linkheader {
796
- font-family: $rte-font-family;
797
- font-size: 15px;
798
- opacity: .87;
799
- padding-bottom: $rte-insert-dialog-label-padding-bottom;
800
- padding-top: $rte-insert-dialog-label-padding-top;
801
- }
802
-
803
- .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-delete-btn.e-icons,
804
- .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
805
- margin-top: 0;
806
- }
807
-
808
- .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list {
809
- border-bottom: 0 solid transparent;
810
- min-height: initial;
811
- }
812
-
813
- .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list .e-file-container {
814
- margin-left: 0;
815
- }
816
-
817
- .e-img-uploadwrap.e-droparea .e-upload .e-upload-files {
818
- border-top: 0 solid transparent;
819
- }
820
-
821
- .e-img-uploadwrap.e-droparea .e-file-select-wrap {
822
- display: none;
823
- }
824
-
825
- .e-img-uploadwrap.e-droparea .e-upload {
826
- border: 0 solid transparent;
827
- float: none;
828
- }
829
-
830
- .e-dialog .e-img-uploadwrap.e-droparea .e-browsebtn {
831
- display: block;
832
- height: 36px;
833
- margin: -50px auto;
834
- padding: 0 18px;
835
- }
836
-
837
- .e-dialog.e-device.e-dlg-modal .e-img-uploadwrap.e-droparea .e-browsebtn {
838
- display: none;
839
- }
840
-
841
- .e-dialog .e-img-uploadwrap.e-droparea {
842
- line-height: 10;
843
- min-height: 50px;
844
- position: relative;
845
- }
846
-
847
- .e-dialog .e-img-uploadwrap.e-droparea .e-rte-upload-text {
848
- display: inline-block;
849
- line-height: normal;
850
- }
851
-
852
- .e-dialog.e-device.e-dlg-modal .e-img-uploadwrap.e-droparea {
853
- line-height: 4;
854
- }
855
-
856
- .e-rte-inline-dropdown ul {
857
- max-height: 200px;
858
- overflow-y: auto;
859
- }
860
-
861
- .e-rte-dropdown-popup.e-rte-dropdown-items ul {
862
- max-height: 280px;
863
- overflow-y: auto;
864
- }
865
-
866
- .e-bigger .e-rte-dropdown-popup.e-rte-dropdown-items ul {
867
- max-height: 360px;
868
- overflow-y: auto;
869
- }
870
-
871
- .e-rte-inline-dropdown.e-rte-backgroundcolor-dropdown,
872
- .e-rte-inline-dropdown.e-rte-fontcolor-dropdown {
873
- line-height: 0;
874
- }
875
-
876
- .e-rte-inline-dropdown .e-rte-color-content .e-rte-elements {
877
- border-bottom-style: solid;
878
- border-bottom-width: 3px;
879
- line-height: $rte-font-icon-line-height;
880
- padding-bottom: 1px;
881
- }
882
-
883
- .e-rte-table-popup.e-popup.e-popup-open {
884
- border-radius: 0;
885
- box-shadow: $rte-table-popup-box;
886
- font-size: 14px;
887
- font-weight: normal;
888
- min-width: 120px;
889
- overflow: hidden;
890
- padding: 10px;
891
- }
892
-
893
- .e-rte-table-popup.e-popup-open .e-rte-tablecell {
894
- border: $rte-table-span-border;
895
- display: inline-block;
896
- height: 14px;
897
- margin: 1px;
898
- overflow: hidden;
899
- vertical-align: top;
900
- width: 14px;
901
- }
902
-
903
- .e-rte-table-popup.e-popup-open .e-rte-table-row {
904
- height: 16px;
905
- }
906
-
907
- .e-rte-table-popup.e-popup-open .e-insert-table-btn {
908
- width: 100%;
909
- }
910
-
911
- .e-rte-edit-table .e-rte-field {
912
- padding-top: $rte-insert-dialog-label-padding-top;
913
- }
914
-
915
- .e-rte-edit-table .e-rte-field:first-child {
916
- padding-top: 0;
917
- }
918
-
919
- .e-rte-content .e-content table td.e-cell-select,
920
- .e-rte-content .e-content table th.e-cell-select {
921
- border: 1px double $rte-table-select-border-color;
922
- height: 24.67px;
923
- }
924
-
925
- span.e-table-box {
926
- cursor: nwse-resize;
927
- display: block;
928
- height: 10px;
929
- position: absolute;
930
- width: 10px;
931
- }
932
-
933
- span.e-table-box.e-rmob {
934
- height: 14px;
935
- width: 14px;
936
- }
937
-
938
- .e-upload .e-upload-files .e-upload-file-list .e-file-container {
939
- margin-right: 50px;
940
- }
941
-
942
- .e-rte-upload-popup {
943
- width: 250px;
944
- }
945
-
946
- .e-rte-dialog-upload .e-upload-files {
947
- border-top: 0;
948
- }
949
-
950
- .e-rte-dialog-upload .e-upload-files .e-upload-file-list {
951
- border-bottom: 0;
952
- }
953
-
954
- }
955
-
956
- .e-rte-backgroundcolor-colorpicker,
957
- .e-rte-fontcolor-colorpicker {
958
- & .e-color-palette.e-container {
959
- & .e-custom-palette .e-palette {
960
- padding: 0;
961
- }
962
-
963
- & .e-switch-ctrl-btn {
964
- padding: 5px;.e-bigger & {
965
- padding: 5px;
966
- }
967
- }
968
-
969
- }
970
-
971
- }
972
-
973
- .e-rte-quick-popup {
974
- border-radius: 2px;
975
- overflow: hidden;
976
-
977
- .e-rte-quick-toolbar {
978
- border-radius: 2px;
979
- min-height: 42px;
980
-
981
- .e-toolbar-items:not(.e-tbar-pos).e-toolbar-multirow {
982
- white-space: nowrap;
983
- }
984
-
985
- &.e-remove-white-space {
986
-
987
- .e-toolbar-items:not(.e-tbar-pos).e-toolbar-multirow {
988
- white-space: nowrap;
989
- }
990
- }
991
-
992
- .e-toolbar-items:not(.e-tbar-pos) {
993
- border-radius: 2px;
994
- margin: 0 6px;
995
- min-height: 42px;
996
-
997
- .e-toolbar-item.e-rte-horizontal-separator,
998
- .e-toolbar-item.e-separator.e-multirow-separator.e-rte-horizontal-separator {
999
- display: block;
1000
- height: 1px;
1001
- margin: 0;
1002
- min-height: 1px;
1003
- }
1004
-
1005
- .e-toolbar-item {
1006
- margin: 0 6px;
1007
- min-height: 42px;
1008
-
1009
- &:first-child,
1010
- &:last-child {
1011
- margin: 0 6px;
1012
- }
1013
-
1014
- .e-tbar-btn:not(.e-rte-dropdown-btn) {
1015
- line-height: 20px;
1016
- }
1017
-
1018
- .e-tbar-btn:not(.e-rte-dropdown-btn) .e-icons {
1019
- min-width: $rte-quick-item-icon-min-width;
1020
- }
1021
- }
1022
-
1023
- .e-toolbar-item .e-btn,
1024
- .e-toolbar-item .e-btn:hover {
1025
- min-height: $rte-quick-item-btn-height;
1026
- min-width: $rte-quick-item-btn-width;
1027
- padding: $rte-quick-item-padding;
1028
- }
1029
- }
1030
-
1031
- .e-tbar-btn {
1032
-
1033
- .e-icons.e-btn-icon:not(.e-caret) {
1034
- font-size: 16px;
1035
- }
1036
- }
1037
-
1038
- .e-background-color.e-icons::before {
1039
- display: inline;
1040
- }
1041
-
1042
- .e-rte-backgroundcolor-dropdown .e-btn-icon.e-caret {
1043
- font-size: 10px;
1044
- }
1045
- }
1046
-
1047
- .e-rte-dropdown-btn.e-tbar-btn {
1048
- line-height: $rte-quick-drop-btn-line-height;
1049
- margin: $rte-quick-drop-btn-margin;
1050
- padding: $rte-quick-drop-btn-padding;
1051
-
1052
- .e-rte-dropdown-btn-text {
1053
- font-weight: 500;
1054
- overflow: hidden;
1055
- text-overflow: ellipsis;
1056
- white-space: nowrap;
1057
- }
1058
-
1059
- .e-icons:not(.e-caret) {
1060
- font-size: 14px;
1061
- margin-left: -3px;
1062
- }
1063
-
1064
- .e-caret {
1065
- font-size: $rte-quick-drop-btn-caret-font-size;
1066
- width: 12px;
1067
- }
1068
- }
1069
-
1070
- &.e-hide {
1071
- display: block;
1072
- visibility: hidden;
1073
- }
1074
-
1075
- }
1076
-
1077
- .e-bigger .e-rte-quick-popup {
1078
- .e-rte-quick-toolbar {
1079
- min-height: 48px;
1080
-
1081
- .e-toolbar-items:not(.e-tbar-pos) {
1082
- margin: 0 6px;
1083
- min-height: 48px;
1084
-
1085
- .e-toolbar-item:not(.e-separator) {
1086
- margin: 0 6px;
1087
- min-height: 48px;
1088
- min-width: 36px;
1089
- padding: 0;
1090
- }
1091
-
1092
- .e-toolbar-item .e-tbar-btn:not(.e-rte-dropdown-btn) {
1093
- line-height: $rte-big-quick-item-line-height;
1094
- }
1095
-
1096
- .e-toolbar-item .e-btn,
1097
- .e-toolbar-item .e-btn:hover {
1098
- min-height: $rte-big-quick-item-btn-height;
1099
- min-width: $rte-big-quick-item-btn-width;
1100
- padding: $rte-big-quick-item-padding;
1101
- }
1102
-
1103
- .e-toolbar-item:first-child,
1104
- .e-toolbar-item:last-child {
1105
- margin: 0 6px;
1106
- }
1107
-
1108
- .e-toolbar-item .e-tbar-btn.e-btn.e-control {
1109
- height: $rte-big-quick-tbar-item-min-height;
1110
- line-height: normal;
1111
- margin: 0;
1112
- min-height: $rte-big-quick-tbar-item-min-height;
1113
- min-width: $rte-big-quick-tbar-item-min-width;
1114
- }
1115
-
1116
- .e-toolbar-item .e-tbar-btn .e-icons.e-btn-icon:not(.e-caret) {
1117
- font-size: 18px;
1118
- }
1119
- }
1120
- }
1121
-
1122
- .e-rte-dropdown-btn.e-tbar-btn {
1123
- line-height: $rte-big-quick-drop-btn-line-height;
1124
- margin: $rte-big-quick-drop-btn-margin;
1125
- padding: $rte-big-quick-drop-btn-padding;
1126
-
1127
- .e-icons:not(.e-caret) {
1128
- font-size: 16px;
1129
- }
1130
-
1131
- .e-caret {
1132
- font-size: $rte-big-quick-drop-btn-caret-font-size;
1133
- width: 20px;
1134
- }
1135
- }
1136
- }
1137
-
1138
- .e-bigger .e-richtexteditor,
1139
- .e-richtexteditor.e-bigger,
1140
- .e-richtexteditor {
1141
-
1142
- & .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item,
1143
- & .e-rte-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item,
1144
- & .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item,
1145
- & .e-rte-toolbar.e-toolbar .e-toolbar-extended .e-toolbar-item {
1146
-
1147
- & .e-rte-fontcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control,
1148
- & .e-rte-backgroundcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control {
1149
- display: flex;
1150
- padding-left: $rte-colorpicker-parent-padding;
1151
- padding-right: $rte-colorpicker-parent-padding;
1152
-
1153
- &:hover,
1154
- &:active,
1155
- &.e-active,
1156
- &.e-active:hover {
1157
- padding-left: $rte-colorpicker-parent-padding-hover;
1158
- padding-right: $rte-colorpicker-parent-padding-hover;
1159
- }
1160
-
1161
- &.e-active:hover {
1162
- padding-bottom: $rte-colorpicker-parent-padding-active-hover;
1163
- padding-top: $rte-colorpicker-parent-padding-active-hover;
1164
- }
1165
-
1166
- & .e-rte-color-content {
1167
- position: relative;
1168
- vertical-align: middle;
1169
- width: $rte-font-icon-width;
1170
-
1171
- & .e-rte-elements {
1172
- border-bottom-style: solid;
1173
- border-bottom-width: 3px;
1174
- line-height: $rte-font-icon-line-height;
1175
- padding-bottom: 1px;
1176
- }
1177
- }
1178
-
1179
- .e-rte-color-content::after {
1180
- content: '';
1181
- height: 100%;
1182
- position: absolute;
1183
- right: 0;
1184
- width: $rte-split-btn-bar-size;
1185
- }
1186
-
1187
- & .e-icons.e-btn-icon {
1188
- display: flex;
1189
- flex-direction: column;
1190
- justify-content: center;
1191
- line-height: 1;
1192
- min-width: $rte-font-arrow-width;
1193
- text-align: center;
1194
- width: $rte-font-arrow-width;
1195
- }
1196
- }
1197
- }
1198
- }
1199
-
1200
- .e-bigger .e-richtexteditor,
1201
- .e-richtexteditor.e-bigger {
1202
- & .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item,
1203
- & .e-rte-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item,
1204
- & .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item,
1205
- & .e-rte-toolbar.e-toolbar .e-toolbar-extended .e-toolbar-item {
1206
- & .e-rte-fontcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control,
1207
- & .e-rte-backgroundcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control {
1208
- & .e-icons.e-btn-icon {
1209
- min-width: $rte-font-arrow-touch-width;
1210
- width: $rte-font-arrow-touch-width;
1211
- }
1212
- }
1213
- }
1214
- }
1215
-
1216
- .e-popup-modal.e-popup.e-popup-open {
1217
- display: inline-flex;
1218
- }
1219
-
1220
- .e-rte-modal-popup.e-popup-container.e-center {
1221
- justify-content: center;
1222
- }
1223
-
1224
- .e-rte-modal-popup.e-popup-container {
1225
- align-items: center;
1226
- display: none;
1227
- height: 100%;
1228
- left: 0;
1229
- position: fixed;
1230
- top: 0;
1231
- width: 100%;
1232
- z-index: 10000;
1233
- }
1234
-
1235
- .e-popup-overlay {
1236
- height: 100%;
1237
- left: 0;
1238
- opacity: .5;
1239
- position: absolute;
1240
- top: 0;
1241
- width: 100%;
1242
- }
1243
-
1244
- .e-bigger .e-rte-table-popup.e-popup-open .e-rte-tablecell {
1245
- height: 16px;
1246
- width: 16px;
1247
- }
1248
-
1249
- .e-bigger .e-rte-table-popup.e-popup-open .e-rte-table-row {
1250
- height: 18px;
1251
- }
1252
-
1253
- .e-table-rhelper {
1254
- cursor: col-resize;
1255
- opacity: .87;
1256
- position: absolute;
1257
- }
1258
-
1259
- .e-table-rhelper.e-column-helper {
1260
- width: 1px;
1261
- }
1262
-
1263
- .e-table-rhelper.e-row-helper {
1264
- height: 1px;
1265
- }
1266
-
1267
- .e-reicon::before {
1268
- border-bottom: 6px solid transparent;
1269
- border-right: 6px solid;
1270
- border-top: 6px solid transparent;
1271
- content: '';
1272
- display: block;
1273
- height: 0;
1274
- position: absolute;
1275
- right: 4px;
1276
- top: 4px;
1277
- width: 20px;
1278
- }
1279
-
1280
- .e-reicon::after {
1281
- border-bottom: 6px solid transparent;
1282
- border-left: 6px solid;
1283
- border-top: 6px solid transparent;
1284
- content: '';
1285
- display: block;
1286
- height: 0;
1287
- left: 4px;
1288
- position: absolute;
1289
- top: 4px;
1290
- width: 20px;
1291
- z-index: 3;
1292
- }
1293
-
1294
- .e-row-helper.e-reicon::after {
1295
- top: 10px;
1296
- transform: rotate(90deg);
1297
- }
1298
-
1299
- .e-row-helper.e-reicon::before {
1300
- left: 4px;
1301
- top: -20px;
1302
- transform: rotate(90deg);
1303
- }
1304
-
1305
- .e-rte-overflow {
1306
- overflow: hidden;
1307
- }
1308
-
1309
- .e-rte-dialog-minheight {
1310
- min-height: 296px;
1311
- }
1312
-
1313
- .e-content-placeholder.e-richtexteditor.e-placeholder-richtexteditor {
1314
- background-size: 700px 190px;
1315
- min-height: 190px;
1316
- }
1317
-
1318
- .e-bigger .e-content-placeholder.e-richtexteditor.e-placeholder-richtexteditor,
1319
- .e-bigger.e-content-placeholder.e-richtexteditor.e-placeholder-richtexteditor {
1320
- background-size: 700px 190px;
1321
- min-height: 190px;
1322
- }
1323
-
1324
- .e-rte-table.e-rte-table-border {
1325
- border: 1px solid $rte-table-border-color;
1326
- border-collapse: separate;
1327
- }
1328
-
1329
- .e-rte-img-dialog.e-dialog.e-device.e-dlg-modal {
1330
- .e-img-uploadwrap.e-droparea {
1331
- line-height: 10;
1332
- min-height: 50px;
1333
- position: relative;
1334
-
1335
- .e-browsebtn {
1336
- display: block;
1337
- height: 36px;
1338
- margin: -50px auto;
1339
- padding: 0 18px;
1340
- }
1341
-
1342
- .e-upload {
1343
- border: 0 solid transparent;
1344
- float: none;
1345
- }
1346
-
1347
- .e-file-select-wrap {
1348
- display: none;
1349
- }
1350
- }
1351
-
1352
- .e-linkheader {
1353
- font-family: $rte-font-family;
1354
- font-size: 15px;
1355
- opacity: .87;
1356
- padding-bottom: $rte-insert-dialog-label-padding-bottom;
1357
- padding-top: $rte-insert-dialog-label-padding-top;
1358
- }
1359
- }
1360
-
1361
- .e-rte-file-manager-dialog {
1362
-
1363
- .e-rte-label {
1364
- padding-bottom: 8px;
1365
- padding-top: 15px;
1366
-
1367
- label {
1368
- font-size: 15px;
1369
- opacity: .87;
1370
- }
1371
- }
1372
- }
1373
-
1374
- // Blazor styles start
1375
- .e-rte-upload-popup.e-dialog .e-file-select-wrap {
1376
- display: none;
1377
- }
1378
-
1379
- .e-rte-upload-popup.e-dialog .e-dlg-content {
1380
- overflow: hidden;
1381
- padding: 0;
1382
- }
1383
-
1384
- .e-hide.e-rte-quick-popup-hide {
1385
- display: none;
1386
- }
1387
-
1388
- .e-rte-popup-hide {
1389
- display: none;
1390
- }
1391
-
1392
- .e-rte-hide-visible {
1393
- visibility: hidden;
1394
- }
1395
-
1396
- .e-rte-table-popup.e-dialog .e-dlg-content {
1397
- padding: 0;
1398
- }
1399
-
1400
- .e-richtexteditor .e-rte-table-popup.e-popup-open.e-dialog .e-rte-tablecell {
1401
- margin: 0;
1402
- }
1403
- // Blazor styles end
1404
- }
1
+ @include export-module('richtexteditor-layout') {
2
+ /*! tab layout */
3
+
4
+ .e-bigger .e-richtexteditor,
5
+ .e-richtexteditor.e-bigger {
6
+
7
+ .e-rte-toolbar {
8
+
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-rtl .e-rte-toolbar .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child {
15
+ margin-left: 0;
16
+ margin-right: $rte-big-tb-items-margin-left;
17
+ }
18
+
19
+ .e-rte-toolbar,
20
+ .e-rte-toolbar.e-toolbar.e-extended-toolbar {
21
+
22
+ .e-toolbar-extended {
23
+ padding-left: $rte-big-tb-items-padding-left;
24
+ }
25
+
26
+ .e-toolbar-items,
27
+ .e-toolbar-extended {
28
+
29
+ .e-toolbar-item .e-tbar-btn .e-icons.e-btn-icon:not(.e-caret) {
30
+ font-size: 18px;
31
+ }
32
+
33
+ .e-toolbar-item .e-font-color .e-selected-color.e-icons::before,
34
+ .e-toolbar-item .e-background-color .e-selected-color.e-icons::before {
35
+ top: -20px;
36
+ }
37
+
38
+ .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-dropdown-btn {
39
+ padding-left: $rte-big-drop-btn-padding-left;
40
+ padding-right: $rte-big-drop-btn-padding-right;
41
+ }
42
+
43
+ .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-dropdown-btn:hover,
44
+ .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-dropdown-btn:focus,
45
+ .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-dropdown-btn:active {
46
+ padding-left: $rte-big-drop-btn-action-padding-left;
47
+ padding-right: $rte-big-drop-btn-action-padding-right;
48
+ }
49
+
50
+ .e-toolbar-item.e-active .e-tbar-btn.e-btn {
51
+ padding: $rte-big-active-tb-item-btn-padding;
52
+ }
53
+
54
+ .e-toolbar-item .e-rte-fontcolor-dropdown.e-active .e-rte-color-content,
55
+ .e-toolbar-item .e-rte-backgroundcolor-dropdown.e-active .e-rte-color-content {
56
+ line-height: $rte-big-split-btn-active-color-icon-line-height;
57
+ }
58
+ }
59
+
60
+ .e-dropdown-btn .e-caret {
61
+ font-size: $rte-big-dropdown-caret-icon-size;
62
+ }
63
+ }
64
+ }
65
+
66
+ .e-richtexteditor {
67
+ color: $rte-content-color;
68
+ display: block;
69
+ position: relative;
70
+
71
+ & textarea.e-content {
72
+ border: 0;
73
+ display: block;
74
+ height: 100%;
75
+ margin: 0;
76
+ outline: 0;
77
+ padding: 8px;
78
+ resize: none;
79
+ width: 100%;
80
+ }
81
+
82
+ & .e-rte-hidden {
83
+ border: 0;
84
+ display: block;
85
+ height: 0;
86
+ margin: 0;
87
+ outline: 0;
88
+ padding: 0;
89
+ resize: none;
90
+ visibility: hidden;
91
+ width: 0;
92
+ }
93
+
94
+ &.e-disabled {
95
+ pointer-events: none;
96
+ }
97
+
98
+ &.e-rte-full-screen {
99
+ bottom: 0;
100
+ height: 100% !important; // sass-lint:disable-line no-important
101
+ left: 0;
102
+ position: fixed;
103
+ right: 0;
104
+ top: 0;
105
+ width: 100% !important; // sass-lint:disable-line no-important
106
+ z-index: 999;
107
+ }
108
+
109
+ &.e-rtl .e-rte-character-count {
110
+ left: 0;
111
+ padding-left: 30px;
112
+ padding-right: unset;
113
+ right: unset;
114
+ }
115
+
116
+ .e-rte-toolbar {
117
+
118
+ .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child {
119
+ margin-left: $rte-tb-items-margin-left;
120
+ }
121
+
122
+ .e-hor-nav.e-expended-nav {
123
+ height: auto;
124
+ }
125
+ }
126
+
127
+ &.e-rtl .e-rte-toolbar .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child {
128
+ margin-left: 0;
129
+ margin-right: $rte-tb-items-margin-left;
130
+ }
131
+
132
+ .e-rte-toolbar.e-rte-tb-mobile .e-toolbar-multirow {
133
+ margin-left: 0;
134
+ margin-right: 0;
135
+ overflow-x: auto;
136
+ white-space: nowrap;
137
+ width: 100%;
138
+ }
139
+
140
+ .e-rte-toolbar,
141
+ .e-rte-toolbar.e-toolbar.e-extended-toolbar {
142
+ position: inherit;
143
+ z-index: 101;
144
+
145
+ .e-toolbar-extended {
146
+ margin-left: 0;
147
+ padding-left: $rte-tb-items-padding-left;
148
+ }
149
+
150
+ .e-toolbar-items,
151
+ .e-toolbar-extended {
152
+
153
+ .e-toolbar-item {
154
+
155
+ .e-formats-tbar-btn > :first-child {
156
+ min-width: $rte-format-btn-min-width;
157
+ }
158
+
159
+ .e-font-name-tbar-btn > :first-child {
160
+ min-width: $rte-font-name-btn-min-width;
161
+ }
162
+
163
+ .e-font-size-tbar-btn > :first-child {
164
+ min-width: $rte-font-size-btn-min-width;
165
+ }
166
+
167
+ .e-dropdown-btn {
168
+ padding-left: $rte-drop-btn-padding-left;
169
+ padding-right: $rte-drop-btn-padding-right;
170
+
171
+ .e-rte-dropdown-btn-text {
172
+ font-weight: 500;
173
+ overflow: hidden;
174
+ text-overflow: ellipsis;
175
+ white-space: nowrap;
176
+ }
177
+ }
178
+
179
+ .e-dropdown-btn:hover,
180
+ .e-dropdown-btn:focus,
181
+ .e-dropdown-btn:active {
182
+ padding-left: $rte-drop-btn-action-padding-left;
183
+ padding-right: $rte-drop-btn-action-padding-right;
184
+ }
185
+
186
+ .e-font-color .e-selected-color.e-icons::before {
187
+
188
+ font-size: 12px;
189
+ position: relative;
190
+ top: -18px;
191
+ }
192
+
193
+ .e-font-color.e-icons::before {
194
+ font-size: 13px;
195
+ }
196
+
197
+ .e-background-color.e-icons::before {
198
+ display: inline;
199
+ font-size: 14px;
200
+ }
201
+
202
+ .e-rte-fontcolor-dropdown.e-active .e-rte-color-content,
203
+ .e-rte-backgroundcolor-dropdown.e-active .e-rte-color-content {
204
+ line-height: $rte-split-btn-active-color-icon-line-height;
205
+ }
206
+
207
+ .e-tbar-btn {
208
+
209
+ .e-icons.e-btn-icon:not(.e-caret) {
210
+ font-size: 16px;
211
+ }
212
+ }
213
+
214
+ &.e-active .e-tbar-btn.e-btn {
215
+ padding: $rte-active-tb-item-btn-padding;
216
+ }
217
+ }
218
+ }
219
+
220
+ &.e-control[class*='e-toolbar'] {
221
+ box-sizing: border-box;
222
+ }
223
+
224
+ .e-toolbar-extended.e-visible {
225
+ display: block;
226
+ visibility: hidden;
227
+ }
228
+
229
+ &.e-tbar-ios-fixed.e-rte-tb-fixed {
230
+ top: 0;
231
+ transform: translate3d(0, 0, 0);
232
+ }
233
+
234
+ &.e-rte-tb-fixed:not(.e-tbar-ios-fixed) {
235
+ bottom: 0;
236
+ }
237
+
238
+ &.e-rte-tb-fixed {
239
+ display: none;
240
+ left: 0;
241
+ position: fixed;
242
+ right: 0;
243
+
244
+ &.e-show {
245
+ display: block;
246
+ z-index: 101;
247
+ }
248
+ }
249
+
250
+ &.e-rte-tb-float {
251
+ position: fixed;
252
+ top: 0;
253
+
254
+ &.e-rte-tb-abs-float {
255
+ position: absolute;
256
+ }
257
+ }
258
+
259
+ .e-dropdown-btn .e-caret {
260
+ font-size: $rte-dropdown-caret-icon-size;
261
+ }
262
+ }
263
+
264
+ .rte-placeholder {
265
+ color: $rte-content-font-color;
266
+ line-height: $rte-placeholder-line-height;
267
+ opacity: 00.54;
268
+ overflow: hidden;
269
+ position: absolute;
270
+ text-align: start;
271
+ top: 0;
272
+ z-index: 1;
273
+ }
274
+
275
+ .e-rte-content {
276
+ position: relative;
277
+ z-index: 1;
278
+ }
279
+
280
+ .e-rte-content,
281
+ .e-source-content {
282
+ // sass-lint:disable no-vendor-prefixes
283
+ -webkit-overflow-scrolling: touch; //iOS devices scrolling smooth
284
+ // sass-lint:enabled no-vendor-prefixes
285
+ overflow: auto;
286
+ transition: 100ms ease-out;
287
+ width: 100%;
288
+
289
+ .e-content {
290
+ background: unset;
291
+ box-sizing: border-box;
292
+ height: 100%;
293
+ min-height: 100px;
294
+ outline: 0 solid transparent;
295
+ overflow-x: auto;
296
+ padding: 16px;
297
+ position: relative;
298
+ text-align: inherit;
299
+ z-index: 2;
300
+
301
+ @media screen and (min-width: 992px) {
302
+ font-size: $rte-content-font-size;
303
+ }
304
+ }
305
+
306
+ .e-content p {
307
+ margin: 0 0 10px;
308
+ margin-bottom: 10px;
309
+ }
310
+
311
+ .e-content li {
312
+ margin-bottom: 10px;
313
+ }
314
+
315
+ .e-content h1 {
316
+ font-size: 2.17em;
317
+ font-weight: 400;
318
+ line-height: 1;
319
+ margin: 10px 0;
320
+ }
321
+
322
+ .e-content h2 {
323
+ font-size: 1.74em;
324
+ font-weight: 400;
325
+ margin: 10px 0;
326
+ }
327
+
328
+ .e-content h3 {
329
+ font-size: 1.31em;
330
+ font-weight: 400;
331
+ margin: 10px 0;
332
+ }
333
+
334
+ .e-content h4 {
335
+ font-size: 16px;
336
+ font-weight: 400;
337
+ line-height: 1.5;
338
+ margin: 0;
339
+ }
340
+
341
+ .e-content h5 {
342
+ font-size: 00.8em;
343
+ font-weight: 400;
344
+ margin: 0;
345
+ }
346
+
347
+ .e-content h6 {
348
+ font-size: 00.65em;
349
+ font-weight: 400;
350
+ margin: 0;
351
+ }
352
+
353
+ .e-content blockquote {
354
+ margin: 10px 0;
355
+ margin-left: 0;
356
+ padding-left: 5px;
357
+ }
358
+
359
+ .e-content pre {
360
+ background-color: inherit;
361
+ border: 0;
362
+ border-radius: 0;
363
+ color: $rte-content-color;
364
+ font-size: inherit;
365
+ line-height: inherit;
366
+ margin: 0 0 10px;
367
+ overflow: visible;
368
+ padding: 0;
369
+ white-space: pre-wrap;
370
+ word-break: inherit;
371
+ word-wrap: break-word;
372
+ }
373
+
374
+ .e-content strong,
375
+ .e-content b {
376
+ font-weight: 700;
377
+ }
378
+
379
+ .e-content a {
380
+ text-decoration: none;
381
+ user-select: auto;
382
+ }
383
+
384
+ .e-content a:hover {
385
+ text-decoration: underline;
386
+ }
387
+
388
+ .e-content p:last-child,
389
+ .e-content pre:last-child,
390
+ .e-content blockquote:last-child {
391
+ margin-bottom: 0;
392
+ }
393
+
394
+ .e-content h3+h4,
395
+ .e-content h4+h5,
396
+ .e-content h5+h6 {
397
+ margin-top: 00.6em;
398
+ }
399
+
400
+ .e-content ul:last-child {
401
+ margin-bottom: 0;
402
+ }
403
+
404
+ }
405
+
406
+ .e-rte-character-count {
407
+ bottom: 0;
408
+ color: $rte-default-character-count-color;
409
+ font-family: 'Times New Roman', Georgia, Serif;
410
+ font-size: 14px;
411
+ margin-right: 30px;
412
+ opacity: 00.54;
413
+ padding-bottom: 2px;
414
+ position: absolute;
415
+ right: 0;
416
+ z-index: 100;
417
+
418
+ &.e-warning {
419
+ color: $rte-warning-character-count-color;
420
+ opacity: unset;
421
+ }
422
+
423
+ &.e-error {
424
+ color: $rte-error-character-count-color;
425
+ opacity: unset;
426
+ }
427
+
428
+ }
429
+
430
+ .e-rte-srctextarea {
431
+ background-color: transparent;
432
+ border: 0;
433
+ color: $rte-content-color;
434
+ display: block;
435
+ height: 100%;
436
+ line-height: 22px;
437
+ min-height: 200px;
438
+ overflow: auto;
439
+ padding: 16px;
440
+ resize: none;
441
+ transition: 100ms ease-out;
442
+ width: 100%;
443
+ }
444
+
445
+ img::selection {
446
+ background: transparent;
447
+ color: transparent;
448
+ }
449
+
450
+ .e-resize-handle {
451
+ height: $rte-resize-handler-height;
452
+ position: absolute;
453
+ width: $rte-resize-handler-width;
454
+
455
+ &.e-south-east {
456
+ bottom: $rte-resize-handler-position;
457
+ cursor: nwse-resize;
458
+ right: $rte-resize-handler-position;
459
+ z-index: 100;
460
+ }
461
+ }
462
+
463
+ &.e-rte-tb-expand {
464
+ &.e-rte-fixed-tb-expand {
465
+ transition: none;
466
+ }
467
+ }
468
+ }
469
+
470
+ .e-rte-linkcontent .e-rte-label {
471
+ padding-top: $rte-insert-dialog-label-padding-top;
472
+ }
473
+
474
+ .e-rte-label label {
475
+ font-weight: normal;
476
+ }
477
+
478
+ .e-rte-linkcontent .e-rte-label:first-child {
479
+ padding-top: 0;
480
+ }
481
+
482
+ .e-bigger .e-rte-dropdown-popup {
483
+
484
+ ul {
485
+ min-width: 84px;
486
+ }
487
+ }
488
+
489
+ .e-rte-dropdown-popup {
490
+
491
+ &.e-rte-inline-dropdown {
492
+
493
+ @media screen and (max-width: 768px) {
494
+ ul {
495
+ padding: 7px 0;
496
+
497
+ li.e-item {
498
+ height: 34px;
499
+ line-height: 34px;
500
+ padding: 0 6.5px;
501
+ }
502
+
503
+ .e-item .e-menu-icon {
504
+ float: none;
505
+ }
506
+ }
507
+ }
508
+
509
+ &.e-rte-dropdown-icons.e-dropdown-popup {
510
+
511
+ @media screen and (max-width: 768px) {
512
+ max-height: 280px;
513
+
514
+ ul {
515
+ display: inline-flex;
516
+ }
517
+ }
518
+ }
519
+
520
+ }
521
+
522
+ ul {
523
+ min-width: 82px;
524
+
525
+ .e-item {
526
+
527
+ .e-menu-icon {
528
+ margin: 0 6px;
529
+ width: auto;
530
+ }
531
+
532
+ &.e-h1 {
533
+ font-size: 2em;
534
+ font-weight: bold;
535
+ height: 40px;
536
+ line-height: 40px;
537
+ }
538
+
539
+ &.e-h2 {
540
+ font-size: 1.5em;
541
+ font-weight: bold;
542
+ height: 40px;
543
+ line-height: 40px;
544
+ }
545
+
546
+ &.e-h3 {
547
+ font-size: 1.16em;
548
+ font-weight: bold;
549
+ }
550
+
551
+ &.e-h4 {
552
+ font-size: 1em;
553
+ font-weight: bold;
554
+ }
555
+
556
+ &.e-h5 {
557
+ font-size: .83em;
558
+ font-weight: bold;
559
+ }
560
+
561
+ &.e-h6 {
562
+ font-size: .7em;
563
+ font-weight: bold;
564
+ }
565
+
566
+ &.e-segoe-ui {
567
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
568
+ }
569
+
570
+ &.e-arial {
571
+ font-family: Arial, Helvetica, sans-serif;
572
+ }
573
+
574
+ &.e-courier-new {
575
+ font-family: Courier New, Courier, monospace;
576
+ }
577
+
578
+ &.e-georgia {
579
+ font-family: Georgia, 'Times New Roman', Times, serif;
580
+ }
581
+
582
+ &.e-helvetica-neue {
583
+ font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
584
+ }
585
+
586
+ &.e-impact {
587
+ font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
588
+ }
589
+
590
+ &.e-lucida-console {
591
+ font-family: Lucida Console, Monaco, monospace;
592
+ }
593
+
594
+ &.e-tahoma {
595
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
596
+ }
597
+
598
+ &.e-times-new-roman {
599
+ font-family: 'Times New Roman', Times, serif;
600
+ }
601
+
602
+ &.e-trebuchet-ms {
603
+ font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
604
+ }
605
+
606
+ &.e-verdana {
607
+ font-family: Verdana, Geneva, Tahoma, sans-serif;
608
+ }
609
+
610
+ &.e-roboto {
611
+ font-family: 'Roboto', 'Segoe UI', 'GeezaPro', 'DejaVu Serif', sans-serif;
612
+ }
613
+
614
+ }
615
+ }
616
+
617
+ &.e-rte-dropdown-icons {
618
+
619
+ ul {
620
+ min-width: auto;
621
+ }
622
+
623
+ @media screen and (max-width: 768px) {
624
+
625
+ ul {
626
+ min-width: 30px;
627
+ }
628
+ }
629
+ }
630
+ }
631
+
632
+ .e-rte-image.e-imgbreak {
633
+ border: 0;
634
+ cursor: pointer;
635
+ display: block;
636
+ float: none;
637
+ margin: 5px auto;
638
+ max-width: 100%;
639
+ position: relative;
640
+ }
641
+
642
+ .e-rte-image {
643
+ border: 0;
644
+ cursor: pointer;
645
+ display: block;
646
+ float: none;
647
+ margin: auto;
648
+ max-width: 100%;
649
+ position: relative;
650
+ }
651
+
652
+ .e-rte-image.e-imginline {
653
+ display: inline-block;
654
+ float: none;
655
+ margin-left: 5px;
656
+ margin-right: 5px;
657
+ max-width: calc(100% - (2 * 5px));
658
+ vertical-align: bottom;
659
+ }
660
+
661
+ .e-rte-image.e-imgcenter {
662
+ cursor: pointer;
663
+ display: block;
664
+ float: none;
665
+ margin: 5px auto;
666
+ max-width: 100%;
667
+ position: relative;
668
+ }
669
+
670
+ .e-rte-image.e-imgleft {
671
+ float: left;
672
+ margin: 0 auto;
673
+ margin-right: 5px;
674
+ text-align: left;
675
+ }
676
+
677
+ .e-rte-image.e-imgright {
678
+ float: right;
679
+ margin: 0 auto;
680
+ margin-left: 5px;
681
+ text-align: right;
682
+ }
683
+
684
+ .e-rte-img-popup .e-item {
685
+ height: 106px;
686
+ width: 300px;
687
+ }
688
+
689
+ .e-rte-img-caption {
690
+ display: inline-block;
691
+ margin: 5px auto;
692
+ max-width: 100%;
693
+ position: relative;
694
+ }
695
+
696
+ .e-rte-img-caption.e-caption-inline {
697
+ display: inline-block;
698
+ margin: 5px auto;
699
+ margin-left: 5px;
700
+ margin-right: 5px;
701
+ max-width: calc(100% - (2 * 5px));
702
+ position: relative;
703
+ text-align: center;
704
+ vertical-align: bottom;
705
+ }
706
+
707
+ .e-rte-img-caption.e-imgcenter {
708
+ display: block;
709
+ margin-left: auto;
710
+ margin-right: auto;
711
+ }
712
+
713
+ .e-rte-img-caption.e-imgright {
714
+ display: block;
715
+ margin-left: auto;
716
+ margin-right: 0;
717
+ }
718
+
719
+ .e-rte-img-caption.e-imgleft {
720
+ display: block;
721
+ margin-left: 0;
722
+ margin-right: auto;
723
+ }
724
+
725
+ .e-rte-img-caption .e-rte-image.e-imgright {
726
+ float: none;
727
+ margin-left: auto;
728
+ margin-right: 0;
729
+ }
730
+
731
+ .e-rte-img-caption .e-rte-image.e-imgleft {
732
+ float: none;
733
+ margin: 0;
734
+ }
735
+
736
+ .e-img-caption.e-rte-img-caption.e-imgbreak {
737
+ display: block;
738
+ }
739
+
740
+ .e-rte-table {
741
+ border-collapse: collapse;
742
+ empty-cells: show;
743
+ }
744
+
745
+ .e-rte-table td,
746
+ .e-rte-table th {
747
+ border: 1px solid $rte-table-border-color;
748
+ height: 20px;
749
+ min-width: 20px;
750
+ padding: 2px 5px;
751
+ vertical-align: middle;
752
+ }
753
+
754
+ .e-rte-table.e-dashed-border td,
755
+ .e-rte-table.e-dashed-border th {
756
+ border-style: dashed;
757
+ }
758
+
759
+ .e-rte-img-caption .e-img-inner {
760
+ box-sizing: border-box;
761
+ display: block;
762
+ font-size: 16px;
763
+ font-weight: initial;
764
+ margin: auto;
765
+ opacity: .9;
766
+ position: relative;
767
+ text-align: center;
768
+ width: 100%;
769
+ }
770
+
771
+ .e-rte-img-caption .e-img-wrap {
772
+ display: inline-block;
773
+ margin: auto;
774
+ padding: 0;
775
+ width: 100%;
776
+ }
777
+
778
+ .e-rte-img-dialog .e-rte-label {
779
+ padding-top: $rte-insert-dialog-label-padding-top;
780
+ }
781
+
782
+ .e-rte-img-dialog .e-rte-label:first-child {
783
+ padding-top: 0;
784
+ }
785
+
786
+ .e-rte-table-resize.e-row-resize,
787
+ .e-rte-table-resize.e-column-resize {
788
+ background-color: transparent;
789
+ background-repeat: repeat;
790
+ bottom: 0;
791
+ cursor: col-resize;
792
+ height: 1px;
793
+ overflow: visible;
794
+ position: absolute;
795
+ width: 1px;
796
+ }
797
+
798
+ .e-rte-table-resize.e-row-resize {
799
+ cursor: row-resize;
800
+ height: 1px;
801
+ }
802
+
803
+ .e-richtexteditor {
804
+ .e-linkheader {
805
+ font-family: $rte-font-family;
806
+ font-size: 15px;
807
+ opacity: .87;
808
+ padding-bottom: $rte-insert-dialog-label-padding-bottom;
809
+ padding-top: $rte-insert-dialog-label-padding-top;
810
+ }
811
+
812
+ .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-delete-btn.e-icons,
813
+ .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
814
+ margin-top: 0;
815
+ }
816
+
817
+ .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list {
818
+ border-bottom: 0 solid transparent;
819
+ min-height: initial;
820
+ }
821
+
822
+ .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list .e-file-container {
823
+ margin-left: 0;
824
+ }
825
+
826
+ .e-img-uploadwrap.e-droparea .e-upload .e-upload-files {
827
+ border-top: 0 solid transparent;
828
+ }
829
+
830
+ .e-img-uploadwrap.e-droparea .e-file-select-wrap {
831
+ display: none;
832
+ }
833
+
834
+ .e-img-uploadwrap.e-droparea .e-upload {
835
+ border: 0 solid transparent;
836
+ float: none;
837
+ }
838
+
839
+ .e-dialog .e-img-uploadwrap.e-droparea .e-browsebtn {
840
+ display: block;
841
+ height: 36px;
842
+ margin: -50px auto;
843
+ padding: 0 18px;
844
+ }
845
+
846
+ .e-dialog.e-device.e-dlg-modal .e-img-uploadwrap.e-droparea .e-browsebtn {
847
+ display: none;
848
+ }
849
+
850
+ .e-dialog .e-img-uploadwrap.e-droparea {
851
+ line-height: 10;
852
+ min-height: 50px;
853
+ position: relative;
854
+ }
855
+
856
+ .e-dialog .e-img-uploadwrap.e-droparea .e-rte-upload-text {
857
+ display: inline-block;
858
+ line-height: normal;
859
+ }
860
+
861
+ .e-dialog.e-device.e-dlg-modal .e-img-uploadwrap.e-droparea {
862
+ line-height: 4;
863
+ }
864
+
865
+ .e-rte-inline-dropdown ul {
866
+ max-height: 200px;
867
+ overflow-y: auto;
868
+ }
869
+
870
+ .e-rte-dropdown-popup.e-rte-dropdown-items ul {
871
+ max-height: 280px;
872
+ overflow-y: auto;
873
+ }
874
+
875
+ .e-bigger .e-rte-dropdown-popup.e-rte-dropdown-items ul {
876
+ max-height: 360px;
877
+ overflow-y: auto;
878
+ }
879
+
880
+ .e-rte-inline-dropdown.e-rte-backgroundcolor-dropdown,
881
+ .e-rte-inline-dropdown.e-rte-fontcolor-dropdown {
882
+ line-height: 0;
883
+ }
884
+
885
+ .e-rte-inline-dropdown .e-rte-color-content .e-rte-elements {
886
+ border-bottom-style: solid;
887
+ border-bottom-width: 3px;
888
+ line-height: $rte-font-icon-line-height;
889
+ padding-bottom: 1px;
890
+ }
891
+
892
+ .e-rte-table-popup.e-popup.e-popup-open {
893
+ border-radius: 0;
894
+ box-shadow: $rte-table-popup-box;
895
+ font-size: 14px;
896
+ font-weight: normal;
897
+ min-width: 120px;
898
+ overflow: hidden;
899
+ padding: 10px;
900
+ }
901
+
902
+ .e-rte-table-popup.e-popup-open .e-rte-tablecell {
903
+ border: $rte-table-span-border;
904
+ display: inline-block;
905
+ height: 14px;
906
+ margin: 1px;
907
+ overflow: hidden;
908
+ vertical-align: top;
909
+ width: 14px;
910
+ }
911
+
912
+ .e-rte-table-popup.e-popup-open .e-rte-table-row {
913
+ height: 16px;
914
+ }
915
+
916
+ .e-rte-table-popup.e-popup-open .e-insert-table-btn {
917
+ width: 100%;
918
+ }
919
+
920
+ .e-rte-edit-table .e-rte-field {
921
+ padding-top: $rte-insert-dialog-label-padding-top;
922
+ }
923
+
924
+ .e-rte-edit-table .e-rte-field:first-child {
925
+ padding-top: 0;
926
+ }
927
+
928
+ .e-rte-content .e-content table td.e-cell-select,
929
+ .e-rte-content .e-content table th.e-cell-select {
930
+ border: 1px double $rte-table-select-border-color;
931
+ height: 24.67px;
932
+ }
933
+
934
+ span.e-table-box {
935
+ cursor: nwse-resize;
936
+ display: block;
937
+ height: 10px;
938
+ position: absolute;
939
+ width: 10px;
940
+ }
941
+
942
+ span.e-table-box.e-rmob {
943
+ height: 14px;
944
+ width: 14px;
945
+ }
946
+
947
+ .e-upload .e-upload-files .e-upload-file-list .e-file-container {
948
+ margin-right: 50px;
949
+ }
950
+
951
+ .e-rte-upload-popup {
952
+ width: 250px;
953
+ }
954
+
955
+ .e-rte-dialog-upload .e-upload-files {
956
+ border-top: 0;
957
+ }
958
+
959
+ .e-rte-dialog-upload .e-upload-files .e-upload-file-list {
960
+ border-bottom: 0;
961
+ }
962
+
963
+ }
964
+
965
+ .e-rte-backgroundcolor-colorpicker,
966
+ .e-rte-fontcolor-colorpicker {
967
+ & .e-color-palette.e-container {
968
+ & .e-custom-palette .e-palette {
969
+ padding: 0;
970
+ }
971
+
972
+ & .e-switch-ctrl-btn {
973
+ padding: 5px;.e-bigger & {
974
+ padding: 5px;
975
+ }
976
+ }
977
+
978
+ }
979
+
980
+ }
981
+
982
+ .e-rte-quick-popup {
983
+ border-radius: 2px;
984
+ overflow: hidden;
985
+
986
+ .e-rte-quick-toolbar {
987
+ border-radius: 2px;
988
+ min-height: 42px;
989
+
990
+ .e-toolbar-items:not(.e-tbar-pos).e-toolbar-multirow {
991
+ white-space: nowrap;
992
+ }
993
+
994
+ &.e-remove-white-space {
995
+
996
+ .e-toolbar-items:not(.e-tbar-pos).e-toolbar-multirow {
997
+ white-space: nowrap;
998
+ }
999
+ }
1000
+
1001
+ .e-toolbar-items:not(.e-tbar-pos) {
1002
+ border-radius: 2px;
1003
+ margin: 0 6px;
1004
+ min-height: 42px;
1005
+
1006
+ .e-toolbar-item.e-rte-horizontal-separator,
1007
+ .e-toolbar-item.e-separator.e-multirow-separator.e-rte-horizontal-separator {
1008
+ display: block;
1009
+ height: 1px;
1010
+ margin: 0;
1011
+ min-height: 1px;
1012
+ }
1013
+
1014
+ .e-toolbar-item {
1015
+ margin: 0 6px;
1016
+ min-height: 42px;
1017
+
1018
+ &:first-child,
1019
+ &:last-child {
1020
+ margin: 0 6px;
1021
+ }
1022
+
1023
+ .e-tbar-btn:not(.e-rte-dropdown-btn) {
1024
+ line-height: 20px;
1025
+ }
1026
+
1027
+ .e-tbar-btn:not(.e-rte-dropdown-btn) .e-icons {
1028
+ min-width: $rte-quick-item-icon-min-width;
1029
+ }
1030
+ }
1031
+
1032
+ .e-toolbar-item .e-btn,
1033
+ .e-toolbar-item .e-btn:hover {
1034
+ min-height: $rte-quick-item-btn-height;
1035
+ min-width: $rte-quick-item-btn-width;
1036
+ padding: $rte-quick-item-padding;
1037
+ }
1038
+ }
1039
+
1040
+ .e-tbar-btn {
1041
+
1042
+ .e-icons.e-btn-icon:not(.e-caret) {
1043
+ font-size: 16px;
1044
+ }
1045
+ }
1046
+
1047
+ .e-background-color.e-icons::before {
1048
+ display: inline;
1049
+ }
1050
+
1051
+ .e-rte-backgroundcolor-dropdown .e-btn-icon.e-caret {
1052
+ font-size: 10px;
1053
+ }
1054
+ }
1055
+
1056
+ .e-rte-dropdown-btn.e-tbar-btn {
1057
+ line-height: $rte-quick-drop-btn-line-height;
1058
+ margin: $rte-quick-drop-btn-margin;
1059
+ padding: $rte-quick-drop-btn-padding;
1060
+
1061
+ .e-rte-dropdown-btn-text {
1062
+ font-weight: 500;
1063
+ overflow: hidden;
1064
+ text-overflow: ellipsis;
1065
+ white-space: nowrap;
1066
+ }
1067
+
1068
+ .e-icons:not(.e-caret) {
1069
+ font-size: 14px;
1070
+ margin-left: -3px;
1071
+ }
1072
+
1073
+ .e-caret {
1074
+ font-size: $rte-quick-drop-btn-caret-font-size;
1075
+ width: 12px;
1076
+ }
1077
+ }
1078
+
1079
+ &.e-hide {
1080
+ display: block;
1081
+ visibility: hidden;
1082
+ }
1083
+
1084
+ }
1085
+
1086
+ .e-bigger .e-rte-quick-popup {
1087
+ .e-rte-quick-toolbar {
1088
+ min-height: 48px;
1089
+
1090
+ .e-toolbar-items:not(.e-tbar-pos) {
1091
+ margin: 0 6px;
1092
+ min-height: 48px;
1093
+
1094
+ .e-toolbar-item:not(.e-separator) {
1095
+ margin: 0 6px;
1096
+ min-height: 48px;
1097
+ min-width: 36px;
1098
+ padding: 0;
1099
+ }
1100
+
1101
+ .e-toolbar-item .e-tbar-btn:not(.e-rte-dropdown-btn) {
1102
+ line-height: $rte-big-quick-item-line-height;
1103
+ }
1104
+
1105
+ .e-toolbar-item .e-btn,
1106
+ .e-toolbar-item .e-btn:hover {
1107
+ min-height: $rte-big-quick-item-btn-height;
1108
+ min-width: $rte-big-quick-item-btn-width;
1109
+ padding: $rte-big-quick-item-padding;
1110
+ }
1111
+
1112
+ .e-toolbar-item:first-child,
1113
+ .e-toolbar-item:last-child {
1114
+ margin: 0 6px;
1115
+ }
1116
+
1117
+ .e-toolbar-item .e-tbar-btn.e-btn.e-control {
1118
+ height: $rte-big-quick-tbar-item-min-height;
1119
+ line-height: normal;
1120
+ margin: 0;
1121
+ min-height: $rte-big-quick-tbar-item-min-height;
1122
+ min-width: $rte-big-quick-tbar-item-min-width;
1123
+ }
1124
+
1125
+ .e-toolbar-item .e-tbar-btn .e-icons.e-btn-icon:not(.e-caret) {
1126
+ font-size: 18px;
1127
+ }
1128
+ }
1129
+ }
1130
+
1131
+ .e-rte-dropdown-btn.e-tbar-btn {
1132
+ line-height: $rte-big-quick-drop-btn-line-height;
1133
+ margin: $rte-big-quick-drop-btn-margin;
1134
+ padding: $rte-big-quick-drop-btn-padding;
1135
+
1136
+ .e-icons:not(.e-caret) {
1137
+ font-size: 16px;
1138
+ }
1139
+
1140
+ .e-caret {
1141
+ font-size: $rte-big-quick-drop-btn-caret-font-size;
1142
+ width: 20px;
1143
+ }
1144
+ }
1145
+ }
1146
+
1147
+ .e-bigger .e-richtexteditor,
1148
+ .e-richtexteditor.e-bigger,
1149
+ .e-richtexteditor {
1150
+
1151
+ & .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item,
1152
+ & .e-rte-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item,
1153
+ & .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item,
1154
+ & .e-rte-toolbar.e-toolbar .e-toolbar-extended .e-toolbar-item {
1155
+
1156
+ & .e-rte-fontcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control,
1157
+ & .e-rte-backgroundcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control {
1158
+ display: flex;
1159
+ padding-left: $rte-colorpicker-parent-padding;
1160
+ padding-right: $rte-colorpicker-parent-padding;
1161
+
1162
+ &:hover,
1163
+ &:active,
1164
+ &.e-active,
1165
+ &.e-active:hover {
1166
+ padding-left: $rte-colorpicker-parent-padding-hover;
1167
+ padding-right: $rte-colorpicker-parent-padding-hover;
1168
+ }
1169
+
1170
+ &.e-active:hover {
1171
+ padding-bottom: $rte-colorpicker-parent-padding-active-hover;
1172
+ padding-top: $rte-colorpicker-parent-padding-active-hover;
1173
+ }
1174
+
1175
+ & .e-rte-color-content {
1176
+ position: relative;
1177
+ vertical-align: middle;
1178
+ width: $rte-font-icon-width;
1179
+
1180
+ & .e-rte-elements {
1181
+ border-bottom-style: solid;
1182
+ border-bottom-width: 3px;
1183
+ line-height: $rte-font-icon-line-height;
1184
+ padding-bottom: 1px;
1185
+ }
1186
+ }
1187
+
1188
+ .e-rte-color-content::after {
1189
+ content: '';
1190
+ height: 100%;
1191
+ position: absolute;
1192
+ right: 0;
1193
+ width: $rte-split-btn-bar-size;
1194
+ }
1195
+
1196
+ & .e-icons.e-btn-icon {
1197
+ display: flex;
1198
+ flex-direction: column;
1199
+ justify-content: center;
1200
+ line-height: 1;
1201
+ min-width: $rte-font-arrow-width;
1202
+ text-align: center;
1203
+ width: $rte-font-arrow-width;
1204
+ }
1205
+ }
1206
+ }
1207
+ }
1208
+
1209
+ .e-bigger .e-richtexteditor,
1210
+ .e-richtexteditor.e-bigger {
1211
+ & .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item,
1212
+ & .e-rte-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item,
1213
+ & .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item,
1214
+ & .e-rte-toolbar.e-toolbar .e-toolbar-extended .e-toolbar-item {
1215
+ & .e-rte-fontcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control,
1216
+ & .e-rte-backgroundcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control {
1217
+ & .e-icons.e-btn-icon {
1218
+ min-width: $rte-font-arrow-touch-width;
1219
+ width: $rte-font-arrow-touch-width;
1220
+ }
1221
+ }
1222
+ }
1223
+ }
1224
+
1225
+ .e-popup-modal.e-popup.e-popup-open {
1226
+ display: inline-flex;
1227
+ }
1228
+
1229
+ .e-rte-modal-popup.e-popup-container.e-center {
1230
+ justify-content: center;
1231
+ }
1232
+
1233
+ .e-rte-modal-popup.e-popup-container {
1234
+ align-items: center;
1235
+ display: none;
1236
+ height: 100%;
1237
+ left: 0;
1238
+ position: fixed;
1239
+ top: 0;
1240
+ width: 100%;
1241
+ z-index: 10000;
1242
+ }
1243
+
1244
+ .e-popup-overlay {
1245
+ height: 100%;
1246
+ left: 0;
1247
+ opacity: .5;
1248
+ position: absolute;
1249
+ top: 0;
1250
+ width: 100%;
1251
+ }
1252
+
1253
+ .e-bigger .e-rte-table-popup.e-popup-open .e-rte-tablecell {
1254
+ height: 16px;
1255
+ width: 16px;
1256
+ }
1257
+
1258
+ .e-bigger .e-rte-table-popup.e-popup-open .e-rte-table-row {
1259
+ height: 18px;
1260
+ }
1261
+
1262
+ .e-table-rhelper {
1263
+ cursor: col-resize;
1264
+ opacity: .87;
1265
+ position: absolute;
1266
+ }
1267
+
1268
+ .e-table-rhelper.e-column-helper {
1269
+ width: 1px;
1270
+ }
1271
+
1272
+ .e-table-rhelper.e-row-helper {
1273
+ height: 1px;
1274
+ }
1275
+
1276
+ .e-reicon::before {
1277
+ border-bottom: 6px solid transparent;
1278
+ border-right: 6px solid;
1279
+ border-top: 6px solid transparent;
1280
+ content: '';
1281
+ display: block;
1282
+ height: 0;
1283
+ position: absolute;
1284
+ right: 4px;
1285
+ top: 4px;
1286
+ width: 20px;
1287
+ }
1288
+
1289
+ .e-reicon::after {
1290
+ border-bottom: 6px solid transparent;
1291
+ border-left: 6px solid;
1292
+ border-top: 6px solid transparent;
1293
+ content: '';
1294
+ display: block;
1295
+ height: 0;
1296
+ left: 4px;
1297
+ position: absolute;
1298
+ top: 4px;
1299
+ width: 20px;
1300
+ z-index: 3;
1301
+ }
1302
+
1303
+ .e-row-helper.e-reicon::after {
1304
+ top: 10px;
1305
+ transform: rotate(90deg);
1306
+ }
1307
+
1308
+ .e-row-helper.e-reicon::before {
1309
+ left: 4px;
1310
+ top: -20px;
1311
+ transform: rotate(90deg);
1312
+ }
1313
+
1314
+ .e-rte-overflow {
1315
+ overflow: hidden;
1316
+ }
1317
+
1318
+ .e-rte-dialog-minheight {
1319
+ min-height: 296px;
1320
+ }
1321
+
1322
+ .e-content-placeholder.e-richtexteditor.e-placeholder-richtexteditor {
1323
+ background-size: 700px 190px;
1324
+ min-height: 190px;
1325
+ }
1326
+
1327
+ .e-bigger .e-content-placeholder.e-richtexteditor.e-placeholder-richtexteditor,
1328
+ .e-bigger.e-content-placeholder.e-richtexteditor.e-placeholder-richtexteditor {
1329
+ background-size: 700px 190px;
1330
+ min-height: 190px;
1331
+ }
1332
+
1333
+ .e-rte-table.e-rte-table-border {
1334
+ border: 1px solid $rte-table-border-color;
1335
+ border-collapse: separate;
1336
+ }
1337
+
1338
+ .e-rte-img-dialog.e-dialog.e-device.e-dlg-modal {
1339
+ .e-img-uploadwrap.e-droparea {
1340
+ line-height: 10;
1341
+ min-height: 50px;
1342
+ position: relative;
1343
+
1344
+ .e-browsebtn {
1345
+ display: block;
1346
+ height: 36px;
1347
+ margin: -50px auto;
1348
+ padding: 0 18px;
1349
+ }
1350
+
1351
+ .e-upload {
1352
+ border: 0 solid transparent;
1353
+ float: none;
1354
+ }
1355
+
1356
+ .e-file-select-wrap {
1357
+ display: none;
1358
+ }
1359
+ }
1360
+
1361
+ .e-linkheader {
1362
+ font-family: $rte-font-family;
1363
+ font-size: 15px;
1364
+ opacity: .87;
1365
+ padding-bottom: $rte-insert-dialog-label-padding-bottom;
1366
+ padding-top: $rte-insert-dialog-label-padding-top;
1367
+ }
1368
+ }
1369
+
1370
+ .e-rte-file-manager-dialog {
1371
+
1372
+ .e-rte-label {
1373
+ padding-bottom: 8px;
1374
+ padding-top: 15px;
1375
+
1376
+ label {
1377
+ font-size: 15px;
1378
+ opacity: .87;
1379
+ }
1380
+ }
1381
+ }
1382
+
1383
+ // Blazor styles start
1384
+ .e-rte-upload-popup.e-dialog .e-file-select-wrap {
1385
+ display: none;
1386
+ }
1387
+
1388
+ .e-rte-upload-popup.e-dialog .e-dlg-content {
1389
+ overflow: hidden;
1390
+ padding: 0;
1391
+ }
1392
+
1393
+ .e-hide.e-rte-quick-popup-hide {
1394
+ border: 0;
1395
+ height: 0;
1396
+ position: absolute;
1397
+ width: 0;
1398
+ }
1399
+
1400
+ .e-rte-popup-hide {
1401
+ display: none;
1402
+ }
1403
+
1404
+ .e-rte-hide-visible {
1405
+ visibility: hidden;
1406
+ }
1407
+
1408
+ .e-rte-table-popup.e-dialog .e-dlg-content {
1409
+ padding: 0;
1410
+ }
1411
+
1412
+ .e-richtexteditor .e-rte-table-popup.e-popup-open.e-dialog .e-rte-tablecell {
1413
+ margin: 0;
1414
+ }
1415
+ // Blazor styles end
1416
+ }