@syncfusion/ej2-angular-documenteditor 20.4.49-ngcc → 20.4.49

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 (141) hide show
  1. package/README.md +45 -137
  2. package/esm2020/public_api.mjs +3 -0
  3. package/esm2020/src/document-editor/documenteditor-all.module.mjs +116 -0
  4. package/esm2020/src/document-editor/documenteditor.component.mjs +269 -0
  5. package/esm2020/src/document-editor/documenteditor.module.mjs +25 -0
  6. package/esm2020/src/document-editor-container/documenteditorcontainer-all.module.mjs +29 -0
  7. package/esm2020/src/document-editor-container/documenteditorcontainer.component.mjs +66 -0
  8. package/esm2020/src/document-editor-container/documenteditorcontainer.module.mjs +25 -0
  9. package/esm2020/src/index.mjs +8 -0
  10. package/esm2020/syncfusion-ej2-angular-documenteditor.mjs +5 -0
  11. package/fesm2015/syncfusion-ej2-angular-documenteditor.mjs +516 -0
  12. package/fesm2015/syncfusion-ej2-angular-documenteditor.mjs.map +1 -0
  13. package/fesm2020/syncfusion-ej2-angular-documenteditor.mjs +516 -0
  14. package/fesm2020/syncfusion-ej2-angular-documenteditor.mjs.map +1 -0
  15. package/package.json +27 -13
  16. package/schematics/utils/lib-details.d.ts +2 -2
  17. package/src/document-editor/documenteditor-all.module.d.ts +6 -0
  18. package/src/document-editor/documenteditor.component.d.ts +3 -0
  19. package/src/document-editor/documenteditor.module.d.ts +6 -0
  20. package/src/document-editor-container/documenteditorcontainer-all.module.d.ts +6 -0
  21. package/src/document-editor-container/documenteditorcontainer.component.d.ts +3 -0
  22. package/src/document-editor-container/documenteditorcontainer.module.d.ts +6 -0
  23. package/styles/document-editor/_all.scss +3 -0
  24. package/styles/document-editor/_bootstrap-dark-definition.scss +547 -0
  25. package/styles/document-editor/_bootstrap-definition.scss +546 -0
  26. package/styles/document-editor/_bootstrap4-definition.scss +559 -0
  27. package/styles/document-editor/_bootstrap5-dark-definition.scss +1 -0
  28. package/styles/document-editor/_bootstrap5-definition.scss +560 -0
  29. package/styles/document-editor/_fabric-dark-definition.scss +549 -0
  30. package/styles/document-editor/_fabric-definition.scss +548 -0
  31. package/styles/document-editor/_fluent-dark-definition.scss +1 -0
  32. package/styles/document-editor/_fluent-definition.scss +569 -0
  33. package/styles/document-editor/_fusionnew-definition.scss +560 -0
  34. package/styles/document-editor/_highcontrast-definition.scss +548 -0
  35. package/styles/document-editor/_highcontrast-light-definition.scss +2988 -0
  36. package/styles/document-editor/_layout.scss +216 -0
  37. package/styles/document-editor/_material-dark-definition.scss +565 -0
  38. package/styles/document-editor/_material-definition.scss +565 -0
  39. package/styles/document-editor/_material3-definition.scss +560 -0
  40. package/styles/document-editor/_tailwind-dark-definition.scss +1 -0
  41. package/styles/document-editor/_tailwind-definition.scss +557 -0
  42. package/styles/document-editor/_theme.scss +3404 -0
  43. package/styles/document-editor/bootstrap-dark.scss +4 -1
  44. package/styles/document-editor/bootstrap.scss +4 -1
  45. package/styles/document-editor/bootstrap4.scss +4 -1
  46. package/styles/document-editor/bootstrap5-dark.scss +4 -1
  47. package/styles/document-editor/bootstrap5.scss +4 -1
  48. package/styles/document-editor/fabric-dark.scss +4 -1
  49. package/styles/document-editor/fabric.scss +4 -1
  50. package/styles/document-editor/fluent-dark.scss +4 -1
  51. package/styles/document-editor/fluent.scss +4 -1
  52. package/styles/document-editor/highcontrast-light.scss +4 -1
  53. package/styles/document-editor/highcontrast.scss +4 -1
  54. package/styles/document-editor/icons/_bootstrap-dark.scss +654 -0
  55. package/styles/document-editor/icons/_bootstrap.scss +654 -0
  56. package/styles/document-editor/icons/_bootstrap4.scss +639 -0
  57. package/styles/document-editor/icons/_bootstrap5-dark.scss +1 -0
  58. package/styles/document-editor/icons/_bootstrap5.scss +689 -0
  59. package/styles/document-editor/icons/_fabric-dark.scss +654 -0
  60. package/styles/document-editor/icons/_fabric.scss +654 -0
  61. package/styles/document-editor/icons/_fluent-dark.scss +1 -0
  62. package/styles/document-editor/icons/_fluent.scss +687 -0
  63. package/styles/document-editor/icons/_fusionnew.scss +689 -0
  64. package/styles/document-editor/icons/_highcontrast-light.scss +659 -0
  65. package/styles/document-editor/icons/_highcontrast.scss +654 -0
  66. package/styles/document-editor/icons/_material-dark.scss +647 -0
  67. package/styles/document-editor/icons/_material.scss +647 -0
  68. package/styles/document-editor/icons/_material3.scss +689 -0
  69. package/styles/document-editor/icons/_tailwind-dark.scss +689 -0
  70. package/styles/document-editor/icons/_tailwind.scss +689 -0
  71. package/styles/document-editor/implementation/dailogs/_paragraph-dailogs.scss +171 -0
  72. package/styles/document-editor/material-dark.scss +4 -1
  73. package/styles/document-editor/material.scss +4 -1
  74. package/styles/document-editor/tailwind-dark.scss +4 -1
  75. package/styles/document-editor/tailwind.scss +4 -1
  76. package/styles/document-editor-container/_all.scss +2 -0
  77. package/styles/document-editor-container/_bootstrap-dark-definition.scss +127 -0
  78. package/styles/document-editor-container/_bootstrap-definition.scss +127 -0
  79. package/styles/document-editor-container/_bootstrap4-definition.scss +143 -0
  80. package/styles/document-editor-container/_bootstrap5-dark-definition.scss +1 -0
  81. package/styles/document-editor-container/_bootstrap5-definition.scss +153 -0
  82. package/styles/document-editor-container/_definition.scss +11 -0
  83. package/styles/document-editor-container/_fabric-dark-definition.scss +132 -0
  84. package/styles/document-editor-container/_fabric-definition.scss +129 -0
  85. package/styles/document-editor-container/_fluent-dark-definition.scss +1 -0
  86. package/styles/document-editor-container/_fluent-definition.scss +154 -0
  87. package/styles/document-editor-container/_fusionnew-definition.scss +153 -0
  88. package/styles/document-editor-container/_highcontrast-definition.scss +130 -0
  89. package/styles/document-editor-container/_highcontrast-light-definition.scss +133 -0
  90. package/styles/document-editor-container/_layout.scss +87 -0
  91. package/styles/document-editor-container/_material-dark-definition.scss +131 -0
  92. package/styles/document-editor-container/_material-definition.scss +130 -0
  93. package/styles/document-editor-container/_material3-definition.scss +153 -0
  94. package/styles/document-editor-container/_tailwind-dark-definition.scss +1 -0
  95. package/styles/document-editor-container/_tailwind-definition.scss +147 -0
  96. package/styles/document-editor-container/_theme.scss +2005 -0
  97. package/styles/document-editor-container/bootstrap-dark.scss +5 -1
  98. package/styles/document-editor-container/bootstrap.scss +5 -1
  99. package/styles/document-editor-container/bootstrap4.scss +5 -1
  100. package/styles/document-editor-container/bootstrap5-dark.scss +5 -1
  101. package/styles/document-editor-container/bootstrap5.scss +5 -1
  102. package/styles/document-editor-container/fabric-dark.scss +5 -1
  103. package/styles/document-editor-container/fabric.scss +5 -1
  104. package/styles/document-editor-container/fluent-dark.scss +5 -1
  105. package/styles/document-editor-container/fluent.scss +5 -1
  106. package/styles/document-editor-container/highcontrast-light.scss +5 -1
  107. package/styles/document-editor-container/highcontrast.scss +5 -1
  108. package/styles/document-editor-container/icons/_bootstrap-dark.scss +467 -0
  109. package/styles/document-editor-container/icons/_bootstrap.scss +467 -0
  110. package/styles/document-editor-container/icons/_bootstrap4.scss +467 -0
  111. package/styles/document-editor-container/icons/_bootstrap5-dark.scss +1 -0
  112. package/styles/document-editor-container/icons/_bootstrap5.scss +494 -0
  113. package/styles/document-editor-container/icons/_fabric-dark.scss +468 -0
  114. package/styles/document-editor-container/icons/_fabric.scss +467 -0
  115. package/styles/document-editor-container/icons/_fluent-dark.scss +1 -0
  116. package/styles/document-editor-container/icons/_fluent.scss +493 -0
  117. package/styles/document-editor-container/icons/_fusionnew.scss +493 -0
  118. package/styles/document-editor-container/icons/_highcontrast-light.scss +467 -0
  119. package/styles/document-editor-container/icons/_highcontrast.scss +467 -0
  120. package/styles/document-editor-container/icons/_material-dark.scss +469 -0
  121. package/styles/document-editor-container/icons/_material.scss +469 -0
  122. package/styles/document-editor-container/icons/_material3.scss +493 -0
  123. package/styles/document-editor-container/icons/_tailwind-dark.scss +493 -0
  124. package/styles/document-editor-container/icons/_tailwind.scss +493 -0
  125. package/styles/document-editor-container/material-dark.scss +5 -1
  126. package/styles/document-editor-container/material.scss +5 -1
  127. package/styles/document-editor-container/tailwind-dark.scss +5 -1
  128. package/styles/document-editor-container/tailwind.scss +5 -1
  129. package/syncfusion-ej2-angular-documenteditor.d.ts +5 -0
  130. package/@syncfusion/ej2-angular-documenteditor.es5.js +0 -583
  131. package/@syncfusion/ej2-angular-documenteditor.es5.js.map +0 -1
  132. package/@syncfusion/ej2-angular-documenteditor.js +0 -553
  133. package/@syncfusion/ej2-angular-documenteditor.js.map +0 -1
  134. package/CHANGELOG.md +0 -3195
  135. package/dist/ej2-angular-documenteditor.umd.js +0 -866
  136. package/dist/ej2-angular-documenteditor.umd.js.map +0 -1
  137. package/dist/ej2-angular-documenteditor.umd.min.js +0 -11
  138. package/dist/ej2-angular-documenteditor.umd.min.js.map +0 -1
  139. package/ej2-angular-documenteditor.d.ts +0 -6
  140. package/ej2-angular-documenteditor.metadata.json +0 -1
  141. package/postinstall/tagchange.js +0 -18
@@ -0,0 +1,3404 @@
1
+ @include export-module('documenteditor-theme') {
2
+ /* stylelint-disable */
3
+ .e-de-background {
4
+ background-color: $de-background;
5
+ }
6
+ .e-de-column-label {
7
+ font-size: $de-border-dlg-settinglabels-fontsize;
8
+ font-weight: $de-border-dlg-border-label-fontweight;
9
+ padding-left: 20px;
10
+ padding-right: 20px;
11
+ }
12
+
13
+ .e-de-column-label.e-de-rtl {
14
+ font-size: $de-border-dlg-settinglabels-fontsize;
15
+ font-weight: $de-border-dlg-border-label-fontweight;
16
+ padding-left: 50px;
17
+ padding-right: 50px;
18
+ }
19
+ .e-de-ff-sub-header {
20
+ display: block;
21
+ font-size: 12px;
22
+ font-weight: $de-header-font-weight;
23
+ margin-top: 6px;
24
+ }
25
+
26
+ .e-de-check-exactnumbr-width {
27
+ width: $de-check-exactnumbr-width !important;
28
+ }
29
+
30
+ .e-de-ff-dlg-heading {
31
+ display: block;
32
+ // font-size: $de-para-dlg-heading-font-size;
33
+ font-weight: $de-para-dlg-heading-font-weight;
34
+ margin-bottom: $de-ff-dlg-heading-mrgn-btm;
35
+ @if $skin-name=='tailwind' {
36
+ color: $de-dlg-heading-main-header;
37
+ }
38
+ }
39
+ .e-de-ff-dlg-heading-small {
40
+ display: block;
41
+ // font-size: $de-para-dlg-small-heading-font-size;
42
+ font-weight: $de-para-dlg-heading-font-weight;
43
+ margin-bottom: $de-ff-dlg-hdg-small-mrgn-btm;
44
+ }
45
+ .e-de-ff-dlg-drpdwn-heading {
46
+ display: block;
47
+ font-size: $de-para-dlg-heading-font-size;
48
+ font-weight: $de-para-dlg-heading-font-weight;
49
+ margin-bottom: 8px;
50
+ @if $skin-name=='tailwind' {
51
+ color: $de-dlg-heading-main-header;
52
+ }
53
+ }
54
+ .e-de-ff-dlg-check {
55
+ display: block;
56
+ font-size: $de-para-dlg-heading-font-size;
57
+ font-weight: $de-para-dlg-heading-font-weight;
58
+ margin-bottom: -2px;
59
+ }
60
+ .e-de-div-seperate-dlg {
61
+ display: inline-flex;
62
+ margin-bottom: $de-ff-seperate-div-mrgn-btm;
63
+ width: 100%;
64
+ }
65
+ .e-de-ff-radio-div {
66
+ display: inline-flex;
67
+ margin-right: 16px;
68
+ }
69
+ .e-de-ff-radio-div.e-de-rtl {
70
+ margin-left: 16px;
71
+ margin-right: 0;
72
+ }
73
+ .e-de-ff-radio-scnd-div {
74
+ display: inline-flex;
75
+ margin-bottom: $de-ff-radio-scnd-div-mrgn-btm;
76
+ margin-right: 16px;
77
+ }
78
+ .e-de-ff-radio-scnd-div.e-de-rtl {
79
+ margin-left: 16px;
80
+ margin-right: 0;
81
+ }
82
+ .e-de-ff-dlg-lft-hlf {
83
+ margin-right: $de-ff-dlg-lft-hlf-mrgn-rgt;
84
+ width: $de-ff-dlg-lft-hlf-wdth;
85
+ }
86
+ .e-de-ff-dlg-lft-hlf.e-de-rtl {
87
+ margin-left: $de-ff-dlg-lft-hlf-mrgn-rgt;
88
+ margin-right: 0;
89
+ }
90
+ .e-de-ff-chck-exact {
91
+ margin-left: 15px;
92
+ margin-top: -6px;
93
+ }
94
+ .e-de-ff-chck-exact.e-de-rtl {
95
+ margin-left: 0;
96
+ margin-right: 15px;
97
+ }
98
+ .e-de-ff-dlg-rght-hlf {
99
+ width: 47.5%;
100
+ }
101
+ .e-de-ff-drpdwn-dlg-scndiv {
102
+ display: inline-flex;
103
+ height: 168px;
104
+ margin-bottom: $de-ff-drpdwn-dlg-scndiv-mrgn-botton;
105
+ width: 100%;
106
+ }
107
+ .e-de-cmt-avatar {
108
+ align-items: center;
109
+ display: flex;
110
+ width: $de-avatar-width;
111
+ }
112
+ .e-de-ff-cmt-avatar {
113
+ align-items: center;
114
+ border-radius: 50%;
115
+ color: $de-avatar-clr;
116
+ display: flex;
117
+ font-size: 12px;
118
+ height: $de-cmt-avatar-height;
119
+ justify-content: center;
120
+ letter-spacing: 0;
121
+ line-height: 12px;
122
+ opacity: 100%;
123
+ user-select: none;
124
+ width: $de-cmt-avatar-width;
125
+ z-index: 1;
126
+ }
127
+ .e-de-ff-drpdwn-listview {
128
+ margin-right: 12px;
129
+ width: 100%;
130
+ }
131
+ .e-de-ff-drpdwn-listview.e-de-rtl {
132
+ margin-left: 12px;
133
+ margin-right: 0;
134
+ }
135
+ .e-de-ff-drpdwn-mvup {
136
+ margin-right: 8px;
137
+ }
138
+ .e-de-ff-drpdwn-mvup.e-de-rtl {
139
+ margin-left: 8px;
140
+ margin-right: 0;
141
+ }
142
+ .e-de-drp-dwn-frst-div {
143
+ margin-bottom: $de-drp-dwn-frst-div-mrgn-btm;
144
+ width: 47.5%;
145
+ }
146
+ .e-de-result-list-block .e-de-search-result-hglt {
147
+ background: $search-result-highlight-bg-color;
148
+ border-bottom: 2px solid $search-result-hightlight-bdr-clr-hvr;
149
+ cursor: default;
150
+ padding: $search-result-item-padding-top 1px $search-result-item-padding-bottom 5px;
151
+ }
152
+ .e-de-result-list-block .e-de-op-search-txt .e-de-op-search-word-text {
153
+ color: $search-result-hightlight-bdr-clr;
154
+ }
155
+ .e-de-search-result-item {
156
+ cursor: default;
157
+ padding: $search-result-item-padding-top 1px $search-result-item-padding-bottom 5px;
158
+ word-break: break-word;
159
+ }
160
+ .e-de-search-result-item:hover {
161
+ border-bottom: 1px solid $search-result-hightlight-bdr-clr-hvr;
162
+ cursor: default;
163
+ }
164
+ .e-de-search-result-item:focus {
165
+ border-bottom: 2px solid $search-result-hightlight-bdr-clr-hvr;
166
+ cursor: default;
167
+ padding: $search-result-item-padding-top 1px $search-result-item-padding-bottom 5px;
168
+ }
169
+ @if $skin-name !='tailwind' {
170
+ .e-de-search-tab-content .e-input-group .e-de-op-search-icon:focus {
171
+ border: 1px solid $search-icon-bdr-clr;
172
+ }
173
+ .e-de-op-search-icon:hover {
174
+ background: $search-icon-hvr;
175
+ }
176
+ .e-de-search-tab-content .e-input-group .e-de-op-search-close-icon:focus {
177
+ border: 1px solid $search-icon-bdr-clr;
178
+ border-right-width: 0;
179
+ }
180
+ .e-de-op-search-close-icon:hover {
181
+ background: $search-icon-hvr;
182
+ }
183
+ .e-spin-down:focus {
184
+ border: 1px solid $spin-down-bdr-clr;
185
+ border-right-width: 0;
186
+ }
187
+ .e-spin-down:hover {
188
+ background: $spin-down-hvr;
189
+ }
190
+ .e-spin-up:focus {
191
+ border: 1px solid $spin-up-bdr-clr;
192
+ border-right-width: 0;
193
+ }
194
+ .e-spin-up:hover {
195
+ background: $spin-up-hvr;
196
+ }
197
+ }
198
+ .e-de-toc-dlg-heading {
199
+ color: $de-dlg-heading-main-header;
200
+ display: block;
201
+ font-size: $de-toc-dlg-heading-font-size;
202
+ font-weight: $de-toc-dlg-heading-font-weight;
203
+ margin-bottom: $de-toc-title-bottom-margin;
204
+ }
205
+ .e-de-toc-dlg-main-heading {
206
+ color: $de-dlg-heading-main-header;
207
+ display: block;
208
+ font-size: $de-toc-dlg-heading-font-size;
209
+ font-weight: $de-toc-dlg-main-heading-font-weight;
210
+ margin-bottom: $de-title-bottom-margin;
211
+ }
212
+ .e-content-placeholder.e-documenteditor.e-placeholder-documenteditor {
213
+ background-size: 100%;
214
+ }
215
+ .e-de-toc-reset-button {
216
+ margin-top: $de-toc-reset-button-margin-top;
217
+ }
218
+ .e-de-toc-reset-button.e-de-rtl {
219
+ margin-right: 0;
220
+ }
221
+ .e-de-toc-modify-button {
222
+ margin-left: $de-toc-modify-button-margin-left;
223
+ margin-top: $de-toc-modify-button-margin-top;
224
+ }
225
+ .e-de-toc-modify-button.e-de-rtl {
226
+ margin-left: 0;
227
+ margin-right: $de-toc-modify-button-margin-rtl;
228
+ }
229
+ .e-de-toc-dlg-container {
230
+ height: $de-toc-dlg-height;
231
+ width: $de-toc-dlg-width;
232
+ }
233
+ .e-de-toc-dlg-sub-container {
234
+ margin-bottom: $de-toc-sub-container-bottom;
235
+ }
236
+ .e-de-toc-list-view {
237
+ border: 1px solid $de-toc-list-view-border-color;
238
+ border-radius: $de-toc-styles-table-div-border-radius;
239
+ font-size: $de-toc-list-view-font-size;
240
+ height: $de-toc-list-view-height;
241
+ overflow-y: scroll;
242
+ }
243
+ .e-de-toc-list-view.e-de-rtl {
244
+ margin-left: 0;
245
+ }
246
+ .e-de-toc-dlg-sub-heading {
247
+ color: $de-dlg-heading-main-header;
248
+ display: block;
249
+ font-size: $de-toc-dlg-heading-font-size;
250
+ font-weight: $de-toc-dlg-heading-font-weight;
251
+ margin: $de-toc-dlg-sub-margin;
252
+ }
253
+ .e-de-toc-dlg-style-label {
254
+ margin-left: $de-toc-dlg-style-label-left;
255
+ margin-top: $de-toc-dlg-style-label-top;
256
+ }
257
+ .e-de-toc-dlg-style-label .e-de-rtl {
258
+ margin-left: 0;
259
+ margin-right: $de-toc-dlg-style-label-left;
260
+ }
261
+ .e-de-pagesetup-dlg-container {
262
+ height: $de-page-setup-dlg-height;
263
+ width: $de-page-setup-dlg-width;
264
+ }
265
+ .e-de-page-setup-ppty-tab {
266
+ border: $de-page-setup-ppty-tab-border;
267
+ }
268
+ .e-de-page-setup-dlg-sub-container {
269
+ margin-bottom: $de-page-setup-sub-container-bottom;
270
+ }
271
+ .e-de-page-setup-dlg-left-sub-container {
272
+ float: left;
273
+ position: relative;
274
+ top: $de-page-setup-dlg-left-container-top;
275
+ }
276
+ .e-de-page-setup-dlg-left-sub-container.e-de-rtl {
277
+ float: right;
278
+ }
279
+ .e-de-page-setup-dlg-right-sub-container {
280
+ float: right;
281
+ position: relative;
282
+ top: $de-page-setup-dlg-right-container-top;
283
+ }
284
+ .e-de-page-setup-dlg-right-sub-container.e-de-rtl {
285
+ float: left;
286
+ }
287
+ .e-de-page-setup-dlg-sub-header {
288
+ display: block;
289
+ font-size: $de-page-setup-margin-dia-common-font;
290
+ font-weight: $de-header-font-weight;
291
+ margin-bottom: $de-page-setup-margin-dia-common-margin-bottom;
292
+ margin-top: $de-page-setup-margin-dia-common-margin-top;
293
+ }
294
+ .e-de-page-setup-dlg-sub-title-header {
295
+ display: block;
296
+ font-size: $de-page-setup-margin-dia-common-font;
297
+ font-weight: $de-header-font-weight;
298
+ margin-bottom: $de-page-setup-margin-dia-common-margin-bottom;
299
+ margin-top: $de-page-setup-common-margin-top;
300
+ }
301
+ .e-de-page-setup-dlg-sub-container-port {
302
+ height: $de-page-setup-sub-container-height-style;
303
+ margin-bottom: $de-page-setup-sub-container-port-bottom;
304
+ }
305
+ .e-de-page-setup-dlg-sub-label {
306
+ font-size: $de-page-setup-dlg-sub-label-font-size;
307
+ font-weight: $de-page-setup-dlg-sub-label-font-weight;
308
+ @if $skin-name=='tailwind' {
309
+ color: $de-dlg-heading-main-header;
310
+ }
311
+ }
312
+ .e-de-page-setup-dlg-orientation-prop {
313
+ margin-top: $de-page-setup-dlg-orientation-prop-margin-top;
314
+ }
315
+ .e-de-page-setup-dlg-sub-size-container {
316
+ height: $de-page-setup-sub-size-container-height;
317
+ margin-bottom: $de-page-setup-sub-size-container-bottom;
318
+ }
319
+ .e-de-page-setup-dlg-layout-sub-container {
320
+ height: $de-page-setup-layout-sub-container-height;
321
+ margin-bottom: $de-page-setup-layout-sub-container-bottom;
322
+ position: relative;
323
+ top: $de-page-setup-layout-sub-container-top;
324
+ }
325
+ .e-de-page-setup-dlg-first-page-prop {
326
+ margin-bottom: 8px;
327
+ }
328
+ @if $skin-name !='tailwind' and $skin-name !='FluentUI' {
329
+ .e-de-page-setup-dlg-first-page-prop .e-label,
330
+ .e-de-page-setup-dlg-odd-or-even-prop .e-label {
331
+ font-size: $de-page-setup-checkbox-label-font-size;
332
+ }
333
+ .e-de-page-setup-dlg-first-page-prop .e-frame,
334
+ .e-de-page-setup-dlg-odd-or-even-prop .e-frame {
335
+ height: $de-checkbox-height;
336
+ line-height: $de-checkbox-line-height;
337
+ width: $de-checkbox-width;
338
+ }
339
+ }
340
+
341
+ .e-de-page-setup-dlg-left-layout-container {
342
+ float: left;
343
+ position: relative;
344
+ top: $de-page-setup-dlg-layout-container-top;
345
+ }
346
+ .e-de-page-setup-dlg-left-layout-container.e-de-rtl {
347
+ float: right;
348
+ }
349
+ .e-de-page-setup-dlg-right-layout-container {
350
+ float: right;
351
+ position: relative;
352
+ top: $de-page-setup-dlg-layout-container-top;
353
+ }
354
+ .e-de-page-setup-dlg-right-layout-container.e-de-rtl {
355
+ float: left;
356
+ }
357
+ .e-de-dlg-footer .e-btn {
358
+ margin-left: 10px;
359
+ }
360
+ .e-de-hyperlink-dlg-title {
361
+ font-size: 12px;
362
+ font-weight: $de-header-font-weight;
363
+ margin-bottom: $de-hyperlink-dlg-margin-bottom;
364
+ margin-top: $de-hyperlink-dlg-margin-top;
365
+ }
366
+ .e-de-hyperlink .e-de-hyperlink-dlg-input {
367
+ height: $de-hyperlink-dlg-input-height;
368
+ margin-bottom: $de-hyperlink-dlg-input-bottom;
369
+ width: $de-hyperlink-dlg-input-width;
370
+ }
371
+ .e-de-font-dlg-header {
372
+ display: flex;
373
+ font-size: 12px;
374
+ font-weight: $de-header-font-weight;
375
+ margin-bottom: $de-font-dlg-header-margin-bottom;
376
+ @if $skin-name=='tailwind' {
377
+ line-height: 18px;
378
+ }
379
+ }
380
+ .e-de-font-dlg-header-effects,
381
+ .e-de-font-dlg-header-font-color {
382
+ display: flex;
383
+ font-size: $de-font-dlg-font-size;
384
+ font-weight: $de-header-font-weight;
385
+ margin-bottom: $de-fnt-dlg-header-effects-mrgn-btm;
386
+ }
387
+ .e-de-font-dlg-main-header {
388
+ color: $de-dlg-heading-main-header;
389
+ font-size: 14px;
390
+ font-weight: $de-header-font-weight;
391
+ margin-right: $de-font-dlg-main-header-margin-right;
392
+ }
393
+ .e-de-font-dlg-cb-right {
394
+ margin-left: $e-de-font-dlg-cb-margin-right;
395
+ }
396
+ .e-de-font-dlg-cb-right.e-de-rtl {
397
+ margin-left: 0;
398
+ margin-right: $e-de-font-dlg-cb-margin-right;
399
+ }
400
+ .e-de-font-dlg-cb-right-div {
401
+ margin-left: 20px;
402
+ }
403
+ .e-de-dropdown {
404
+ margin-right: $de-dropdown-margin-right;
405
+ }
406
+ .e-de-restrict-pane{
407
+ border-right: 1px solid $de-op-border-clr;
408
+ padding-left: $de-op-padding-left;
409
+ padding-top: $de-op-padding-top;
410
+ padding-right: $de-op-padding-left;
411
+ position: relative;
412
+ width: 300px;
413
+ }
414
+ @if $skin-name =='FluentUI' {
415
+ .e-bigger {
416
+ .e-de-restrict-pane,
417
+ .e-de-op {
418
+ width: 300px;
419
+ }
420
+ }
421
+ }
422
+ .e-de-op {
423
+ border-right: 1px solid $de-op-border-clr;
424
+ padding-left: $de-op-padding-left;
425
+ padding-right: $de-op-padding-left;
426
+ position: relative;
427
+ width: 300px;
428
+ }
429
+ .e-de-op.e-de-rtl {
430
+ padding-left: 0;
431
+ padding-right: $de-op-padding-left;
432
+ }
433
+ .e-de-op-header {
434
+ color: $de-op-title-clr;
435
+ font-family: $de-op-header-font-family;
436
+ font-size: 15px;
437
+ font-weight: $de-op-header-font-weight;
438
+ margin-bottom: $de-op-header-bottm-margin;
439
+ padding-top: $de-op-header-padding-top;
440
+ @if $skin-name=='tailwind' {
441
+ line-height: 24px;
442
+ }
443
+ }
444
+ .e-de-op-header.e-de-rtl {
445
+ direction: rtl;
446
+ text-align: right;
447
+ }
448
+ .e-de-op-tab {
449
+ border: 0;
450
+ height: auto;
451
+ @if $skin-name=='tailwind' {
452
+ background: transparent;
453
+ }
454
+ }
455
+ .e-de-op-icon {
456
+ color: $de-op-icon-color;
457
+ @if $skin-name !='tailwind' {
458
+ height: 20px;
459
+ width: 20px;
460
+ }
461
+ }
462
+ .e-de-op-close-icon {
463
+ @if $skin-name !='bootstrap' {
464
+ color: $dialog-btn-clr;
465
+ }
466
+ }
467
+ .e-de-op-nav-btn {
468
+ @if $skin-name !='tailwind' {
469
+ height: $de-op-close-icon-width;
470
+ width: $de-op-close-icon-width;
471
+ }
472
+ }
473
+ .e-de-op-search-txt {
474
+ border-bottom: 1px solid $search-result-hightlight-bdr-item;
475
+ color: $de-dlg-heading-main-header;
476
+ font-size: 14px;
477
+ }
478
+ .e-de-op-search-txt .e-de-op-search-word {
479
+ color: $de-op-search-txt;
480
+ }
481
+ .e-de-op-more-less {
482
+ display: inline-flex;
483
+ margin-top: $de-op-more-less-mrgn-top;
484
+ }
485
+
486
+ @if $skin-name == "FluentUI" {
487
+ .e-de-rp-more-less{
488
+ .e-label{
489
+ font-size: 14px !important;
490
+ }
491
+ }
492
+ .e-bigger {
493
+ .e-de-op-more-less,
494
+ .e-de-rp-more-less {
495
+ .e-label {
496
+ font-size: 16px !important;
497
+ }
498
+ }
499
+ }
500
+ }
501
+
502
+ .e-de-op-replacetabcontentdiv {
503
+ margin-top: $de-op-more-less-mrgn-top;
504
+ }
505
+ label[for*="_wholeWord_e-de-ltr"] {
506
+ @if $skin-name == "FluentUI" {
507
+ left: 15px;
508
+ }
509
+ @else {
510
+ left: 35px;
511
+ }
512
+ }
513
+ label[for*="_wholeWord_e-de-rtl"] {
514
+ @if $skin-name == "FluentUI" {
515
+ right: 15px;
516
+ }
517
+ @else {
518
+ right: 35px;
519
+ }
520
+ }
521
+ .e-de-cell-dia-label-common {
522
+ display: inline-block;
523
+ font-size: $de-cell-margin-dia-common-font;
524
+ font-weight: $de-header-font-weight;
525
+ margin-bottom: $de-cell-margin-dia-common-margin-bottom;
526
+ margin-top: $de-cell-margin-dia-common-margin-top;
527
+ width: $de-cell-margin-dia-common-width;
528
+ }
529
+ .e-de-cell-dia-options-label {
530
+ //font-size: $de-cell-margin-dia-options-font;
531
+ font-weight: $de-para-dlg-heading-font-weight;
532
+ @if $skin-name=='tailwind' {
533
+ color: $de-dlg-heading-main-header;
534
+ }
535
+ }
536
+ .e-de-table-border-heading {
537
+ font-size: $de-border-dlg-border-label-fontsize;
538
+ font-weight: $de-border-dlg-border-label-font-weight;
539
+ padding-bottom: $de-border-dlg-border-label-paddingbottom;
540
+ @if $skin-name=='tailwind' {
541
+ color: $de-dlg-heading-main-header;
542
+ }
543
+ }
544
+ .e-de-table-setting-heading {
545
+ font-size: $de-border-dlg-setting-label-fontsize;
546
+ font-weight: $de-border-dlg-border-label-fontweight;
547
+ padding-bottom: $de-border-dlg-setting-label-paddingbottom;
548
+ }
549
+ .e-de-layout-setting-heading {
550
+ font-size: $de-border-dlg-setting-label-fontsize;
551
+ font-weight: $de-border-dlg-border-label-fontweight;
552
+ padding-bottom: $de-border-dlg-setting-label-paddingbottom;
553
+ }
554
+ .e-de-table-setting-labels-heading {
555
+ font-size: $de-border-dlg-settinglabels-fontsize;
556
+ font-weight: $de-border-dlg-border-label-fontweight;
557
+ margin-left: $de-table-alignment-label-margin-left;
558
+ }
559
+ .e-de-table-element-subheading {
560
+ font-size: $de-border-dlg-settinglabels-fontsize;
561
+ font-weight: $de-border-dlg-border-label-fontweight;
562
+ @if $skin-name=='tailwind' {
563
+ padding-bottom: 8px !important;
564
+ }
565
+ }
566
+ .e-de-border-dlg-preview-div {
567
+ border: $de-border-dlg-border-preview-div-width solid $de-border-dlg-border-preview-div-opacity;
568
+ width: 80px;
569
+ height: 80px;
570
+ }
571
+ .e-de-border-dlg-preview-inside-divs {
572
+ opacity: $de-border-dlg-preview-inside-divs-opacity;
573
+ }
574
+ .e-de-tablecell-dia-align-div {
575
+ border: $de-table-align-border-width solid $de-table-align-border-color;
576
+ display: inline-block;
577
+ height: $de-table-align-height;
578
+ margin-right: $de-table-align-margin-right;
579
+ width: $de-table-align-width;
580
+ }
581
+ .e-de-tablecell-dia-align-div.e-de-rtl {
582
+ margin-left: $de-table-align-margin-right;
583
+ margin-right: 0;
584
+ }
585
+ .e-de-table-dia-align-label {
586
+ display: inline-block;
587
+ font-size: $de-table-alignment-label-font-size;
588
+ font-weight: $de-header-font-weight;
589
+ margin-left: $de-table-alignment-label-margin-left;
590
+ margin-top: $de-table-alignment-label-margin-top;
591
+ }
592
+ .e-de-table-dialog-separator-line {
593
+ background-color: $de-table-separator-line-color;
594
+ bottom: $de-table-separtor-line-top;
595
+ display: none;
596
+ height: $de-table-separator-line-height;
597
+ left: $de-table-separator-line-left;
598
+ margin-top: $de-table-dlg-separator-line-top;
599
+ position: absolute;
600
+ width: $de-table-separator-line-width;
601
+ }
602
+ .e-de-table-alignment-active {
603
+ border: 1px solid $de-table-align-active-color;
604
+ }
605
+ // .e-de-table-dialog-options-label {
606
+ // font-size: $de-table-options-font-size;
607
+ // font-weight: $de-table-options-font-weight;
608
+ // padding-bottom: $de-table-options-padding-bottom;
609
+ // @if $skin-name=='tailwind' {
610
+ // color: $de-dlg-heading-main-header;
611
+ // }
612
+ // }
613
+ .e-de-table-dialog-size-label {
614
+ padding-top: $de-table-options-padding-top !important;
615
+ }
616
+
617
+ .e-de-list-ddl-header {
618
+ font-size: 14px;
619
+ font-weight: $de-list-dlg-header-font-weight;
620
+ margin-bottom: $de-list-dlg-header-margin-bottom;
621
+ margin-top: $de-list-dlg-header-margin-top;
622
+ @if $skin-name=='tailwind' {
623
+ color: $de-dlg-heading-main-header;
624
+ }
625
+ }
626
+ .e-de-list-ddl-header-list-level {
627
+ font-size: 14px;
628
+ font-weight: $de-list-dlg-header-font-weight;
629
+ margin-bottom: $de-list-dlg-header-margin-bottom;
630
+ @if $skin-name=='tailwind' {
631
+ color: $de-dlg-heading-main-header;
632
+ }
633
+ }
634
+ .e-de-tbl-dlg-footer {
635
+ padding-top: $de-tbl-dlg-footer;
636
+ }
637
+ .e-de-row-ht-top,
638
+ .e-de-cell-ht-top {
639
+ padding: 0 $de-table-row-cell-pdng;
640
+ @if $skin-name=='bootstrap5' or $skin-name=='tailwind' {
641
+ width: 144px;
642
+ }
643
+ @else {
644
+ width: 160px;
645
+ }
646
+ }
647
+ .e-de-ht-wdth-type {
648
+ margin-top: $de-hght-type-top;
649
+ width: 120px;
650
+ }
651
+ .e-de-row-ht-top.e-de-rtl,
652
+ .e-de-cell-ht-top.e-de-rtl {
653
+ margin-left: 0;
654
+ margin-right: $de-table-row-cell-pdng;
655
+ }
656
+ .e-de-cell-width-top {
657
+ margin-left: $de-cell-width-top-margin-left;
658
+ margin-top: $de-cell-width-top-margin-top;
659
+ }
660
+ .e-de-cell-width-top.e-de-rtl {
661
+ margin-left: 0;
662
+ margin-right: $de-cell-width-top-margin-left;
663
+ }
664
+ .e-de-tbl-dlg-border-btn {
665
+ float: right;
666
+ //margin-bottom: $de-tbl-dlg-border-btn-margin-bottom;
667
+ margin-top: $de-tbl-dlg-border-btn-margin-top;
668
+ }
669
+ .e-de-tbl-dlg-border-btn.e-de-rtl {
670
+ float: left;
671
+ margin-right: 0;
672
+ }
673
+ .e-de-table-border-setting.e-de-rtl {
674
+ right: 5px;
675
+ }
676
+ .e-de-tbl-dlg-op-btn {
677
+ left: $de-tbl-opt-btn-left;
678
+ position: absolute;
679
+ top: $de-tbl-opt-btn-top;
680
+ }
681
+ .e-de-insert-table-dlg-sub-header {
682
+ display: block;
683
+ font-size: 12px;
684
+ font-weight: $de-header-font-weight;
685
+ margin-bottom: $de-insert-table-title-bottom-margin;
686
+ margin-top: $de-insert-table-title-top-margin;
687
+ }
688
+ .e-de-insert-footnote-dlg-sub-header,
689
+ .e-de-insert-footnote-dlg-header {
690
+ display: block;
691
+ font-size: 12px;
692
+ font-weight: $de-header-font-weight;
693
+ margin-bottom: $de-insert-table-title-bottom-margin;
694
+ margin-top: $de-insert-table-title-top-margin;
695
+ }
696
+ .e-de-insert-footnote-dlg-header {
697
+ margin-bottom: $de-insert-footnote-dlg-header-mrg-btm;
698
+ }
699
+ .e-de-insert-table-dlg-input {
700
+ @if $skin-name == 'FluentUI' {
701
+ display: inline-block;
702
+ }
703
+ margin-bottom: $de-insert-table-dlg-input-bottom;
704
+ }
705
+ .e-de-list-ddl-subheader,
706
+ .e-de-list-ddl-subheaderbottom {
707
+ font-size: 12px;
708
+ font-weight: $de-list-dlg-subheader-font-weight;
709
+ margin-bottom: $de-list-dlg-subheader-margin-bottom;
710
+ margin-top: $de-list-dlg-subheader-margin-top;
711
+ }
712
+ .e-de-list-dlg-subdiv {
713
+ float: right;
714
+ margin-top: $e-de-list-subdiv-margin-top;
715
+ position: relative;
716
+ }
717
+ .e-de-list-dlg-subdiv.e-de-rtl {
718
+ float: left;
719
+ margin-top: $e-de-list-subdiv-margin-top-rtl;
720
+ }
721
+ .e-de-list-dlg-div {
722
+ float: right;
723
+ margin-top: $e-de-list-div-margin-top;
724
+ position: relative;
725
+ }
726
+ .e-de-list-dlg-div.e-de-rtl {
727
+ float: left;
728
+ margin-top: $e-de-list-div-margin-top-rtl;
729
+ }
730
+ .e-de-ok-button {
731
+ margin-right: $de-ok-insert-button-margin-right;
732
+ }
733
+ .e-de-ok-button.e-de-rtl {
734
+ margin-left: $de-ok-insert-button-margin-right;
735
+ }
736
+ .e-de-options-setter {
737
+ left: $de-options-buttons-left;
738
+ }
739
+ .e-de-op-close-icon:hover {
740
+ color: $de-op-btn-icon-hover-clr;
741
+ }
742
+ .e-de-tooltip {
743
+ background-color: $de-tooltip-bg-clr;
744
+ box-shadow: $de-tooltip-shadow;
745
+ color: $de-tooltip-color;
746
+ cursor: text;
747
+ display: table;
748
+ max-width: 200px;
749
+ padding: 5px;
750
+ word-wrap: break-word;
751
+ }
752
+ .e-de-form-popup {
753
+ background-color: $de-tooltip-bg-clr;
754
+ box-shadow: $de-tooltip-shadow;
755
+ color: $de-tooltip-color;
756
+ cursor: text;
757
+ max-width: 350px;
758
+ min-width: 300px;
759
+ padding: 16px;
760
+ position: absolute;
761
+ width: fit-content;
762
+ word-wrap: break-word;
763
+ }
764
+ .e-de-save,
765
+ .e-de-cancel {
766
+ margin-left: 8px;
767
+ }
768
+ .e-btn.e-de-op-icon-btn {
769
+ background-color: $de-op-btn-icon-bg;
770
+ border-color: $de-op-btn-icon-border;
771
+ }
772
+ .e-documenteditor .e-de-op-close-button {
773
+ left: 250px;
774
+ position: absolute;
775
+ top: $de-op-close-button-top;
776
+ @if $skin-name=='bootstrap4' {
777
+ padding-top: 0px;
778
+ }
779
+ }
780
+ @if $skin-name=='FluentUI' or $skin-name=='bootstrap5' {
781
+ .e-bigger {
782
+ .e-documenteditor .e-de-op-close-button {
783
+ left: 240px;
784
+ position: absolute;
785
+ top: 5px;
786
+ }
787
+ }
788
+ }
789
+ @if $skin-name=='bootstrap4' or $skin-name=='bootstrap5' {
790
+
791
+ .e-de-style-paragraph-indent-group-button .e-btn.e-active,
792
+ .e-de-style-paragraph-group-button .e-btn.e-active,
793
+ .e-de-style-font-group-button .e-btn.e-active {
794
+ @if $skin-name !='tailwind' {
795
+ background-color: $de-style-btn-bg-color;
796
+ box-shadow: $de-toggle-btn-border;
797
+ box-shadow: none;
798
+ .e-btn-icon {
799
+ @if $skin-name !='bootstrap5' {
800
+ color: $de-style-btn-color;
801
+ }
802
+ }
803
+ }
804
+ }
805
+
806
+ .e-de-style-font-group-button,
807
+ .e-de-style-paragraph-group-button,
808
+ .e-de-style-paragraph-indent-group-button {
809
+ .e-btn {
810
+ background-color: $de-style-dlg-btn-bg-color;
811
+ border-color: $de-style-dlg-btn-border-color;
812
+ #{if(&, '&', '*')}:focus {
813
+ background-color: $de-style-btn-bg-color;
814
+ box-shadow: $de-toggle-btn-border;
815
+ }
816
+ #{if(&, '&', '*')}:active {
817
+ background-color: $de-style-btn-bg-color;
818
+ box-shadow: $de-toggle-btn-border;
819
+ }
820
+ #{if(&, '&', '*')}:hover {
821
+ background-color: $de-style-btn-bg-color;
822
+ box-shadow: $de-toggle-btn-border;
823
+ }
824
+ }
825
+ }
826
+ .e-de-style-font-group-button .e-btn:hover,
827
+ .e-de-style-font-group-button .e-btn:focus,
828
+ .e-de-style-font-group-button .e-btn:active,
829
+ .e-de-style-font-group-button .e-btn:disabled,
830
+ .e-de-style-paragraph-group-button .e-btn:hover,
831
+ .e-de-style-paragraph-group-button .e-btn:focus,
832
+ .e-de-style-paragraph-group-button .e-btn:active,
833
+ .e-de-style-paragraph-group-button .e-btn:disabled {
834
+ .e-btn-icon {
835
+ @if $skin-name=='bootstrap5' {
836
+ color: $de-style-btn-hover-color
837
+ }
838
+ @else {
839
+ color: $de-style-btn-color;
840
+ }
841
+ }
842
+ }
843
+ .e-de-style-font-group-button .e-btn-icon,
844
+ .e-de-style-paragraph-group-button .e-btn-icon,
845
+ .e-de-style-paragraph-indent-group-button .e-btn-icon {
846
+ color: $de-prop-btn-icon-clr;
847
+ font-size: $de-btn-font-size;
848
+ }
849
+ .e-de-style-paragraph-indent-group-button .e-btn:hover,
850
+ .e-de-style-paragraph-indent-group-button .e-btn:focus,
851
+ .e-de-style-paragraph-indent-group-button .e-btn:active,
852
+ .e-de-style-paragraph-indent-group-button .e-btn:disabled {
853
+ .e-btn-icon {
854
+ color: $de-style-btn-color;
855
+ }
856
+ }
857
+ .e-de-style-paragraph-indent-group-button .e-btn-icon {
858
+ color: $de-prop-btn-icon-clr;
859
+ font-size: $de-btn-font-size;
860
+ }
861
+
862
+ @if $skin-name != 'bootstrap5' {
863
+ .e-de-style-font-color-picker .e-split-btn-wrapper .e-split-colorpicker.e-split-btn,
864
+ .e-de-style-font-color-picker .e-btn.e-icon-btn,
865
+ .e-de-dlg-clr-picker .e-split-btn-wrapper .e-split-colorpicker.e-split-btn,
866
+ .e-de-dlg-clr-picker .e-btn.e-icon-btn,
867
+ .e-de-font-dlg-display .e-colorpicker-wrapper .e-split-btn-wrapper .e-split-colorpicker.e-split-btn,
868
+ .e-de-font-dlg-display .e-colorpicker-wrapper .e-btn.e-icon-btn {
869
+ padding: 4px 8px !important;
870
+ }
871
+
872
+ .e-de-rp-close-icon.e-btn {
873
+ background: $de-rp-btn-bg-color;
874
+ border: 0;
875
+ color: $de-cmt-pant-content-font;
876
+ opacity: 1;
877
+ }
878
+
879
+ .e-de-toc-dlg-style-input {
880
+ margin-top: 18px;
881
+ }
882
+ .e-de-list-container {
883
+ background: $de-style-btn-color !important;
884
+ }
885
+
886
+ .e-documenteditor .e-de-op-close-button {
887
+ top: 10px;
888
+ }
889
+ .e-de-styles,
890
+ .e-de-bookmark {
891
+ margin-top: 0 !important;
892
+ }
893
+
894
+ .e-styles-common {
895
+ padding-top: $de-style-list-top;
896
+ }
897
+ .e-styles-list {
898
+ margin-right: $de-style-list-top;
899
+ }
900
+ .e-bigger {
901
+ .e-de-style-left-div .e-de-style-dlg-name-input {
902
+ height: $e-de-style-input-text-height-bigger;
903
+ }
904
+ .e-de-style-bold-button-size {
905
+ height: $e-de-style-input-text-height-bigger;
906
+ }
907
+ .e-styles-common {
908
+ padding-top: $de-style-list-top-bigger;
909
+ }
910
+ .e-styles-list {
911
+ margin-right: $de-style-list-top-bigger;
912
+ }
913
+ .e-bookmark-gotobutton,
914
+ .e-bookmark-addbutton,
915
+ .e-styles-addbutton,
916
+ .e-bookmark-deletebutton {
917
+ margin-bottom: $de-style-list-top-bigger;
918
+ }
919
+ }
920
+ .e-bigger .e-de-search-tab-content {
921
+ margin-top: $de-op-search-tab-content-margin-top-bigger;
922
+ width: $de-op-search-text-box-container-width;
923
+ }
924
+ .e-bigger .e-de-op-more-less {
925
+ display: inline-flex;
926
+ margin-top: 16px;
927
+ }
928
+ .e-bigger .e-de-op-dlg-footer {
929
+ margin-top: $de-op-dlg-footer-margin-top-bigger;
930
+ }
931
+ .e-de-font-dlg-display .e-split-btn-wrapper .e-btn {
932
+ border-color: $de-style-toggle-btn-color;
933
+ }
934
+ }
935
+ }
936
+ @if $skin-name=='bootstrap5' or $skin-name=='FluentUI' {
937
+ .e-de-restrict-pane {
938
+ color: $content-text-color;
939
+ }
940
+ //Hyperlink dialog
941
+ .e-bigger {
942
+ .e-de-hyperlink-dlg-input,
943
+ .e-de-insert-table-dlg-input,
944
+ .e-de-insert-footnote-dlg-header,
945
+ .e-bookmark-dlgfields,
946
+ .e-de-ff-dlg-heading {
947
+ margin-bottom: $de-bigger-padding !important;
948
+ }
949
+ @if $skin-name != 'FluentUI' {
950
+ // Font dialog
951
+ .e-de-font-dlg-cb-right,
952
+ .e-bookmark-list.e-de-rtl,
953
+ .e-styles-list.e-de-rtl,
954
+ .e-de-ff-dlg-lft-hlf.e-de-rtl {
955
+ margin-left: $de-bigger-padding;
956
+ }
957
+ .e-de-font-dlg-cb-right.e-de-rtl,
958
+ .e-bookmark-list,
959
+ .e-styles-list,
960
+ .e-de-ff-dlg-lft-hlf {
961
+ margin-right: $de-bigger-padding;
962
+ }
963
+ }
964
+ @else {
965
+ // Font dialog
966
+ .e-de-font-dlg-cb-right,
967
+ .e-bookmark-list.e-de-rtl,
968
+ .e-styles-list.e-de-rtl,
969
+ .e-de-ff-dlg-lft-hlf.e-de-rtl {
970
+ margin-left: 16px;
971
+ }
972
+ .e-de-font-dlg-cb-right.e-de-rtl,
973
+ .e-bookmark-list,
974
+ .e-styles-list,
975
+ .e-de-ff-dlg-lft-hlf {
976
+ margin-right: 16px;
977
+ }
978
+ }
979
+
980
+ .e-bookmark-textboxdiv {
981
+ margin-bottom: 12px !important;
982
+ }
983
+ .e-de-ff-drpdwn-mvdn,
984
+ .e-de-ff-drpdwn-mvup {
985
+ width: 52px !important;
986
+ }
987
+ .e-documenteditor {
988
+ .e-de-op-close-button.e-de-rtl {
989
+ right: 240px;
990
+ }
991
+ }
992
+ // .e-de-enforce .e-de-enforce-dlg-input:not(.e-de-enforce .e-de-enforce-dlg-input:last-child) {
993
+ // margin-bottom: $de-bigger-padding;
994
+ // }
995
+ .e-de-track-date {
996
+ font-size: 12px;
997
+ }
998
+ .e-de-page-setup-dlg-sub-container-port {
999
+ @if $skin-name != 'FluentUI' {
1000
+ margin-top: 19px;
1001
+ }
1002
+ @else {
1003
+ margin-top: 34px;
1004
+ }
1005
+ }
1006
+ // .e-de-table-ppty-dlg-left-indent-container {
1007
+ // bottom: 12px;
1008
+ // }
1009
+ .e-de-table-container-div {
1010
+ margin-top: 13px;
1011
+ }
1012
+ .e-de-table-properties-dlg {
1013
+ width: 470px;
1014
+ }
1015
+ .e-de-table-ppty-dlg-preferred-width-div,
1016
+ .e-de-table-ppty-dlg-measure-drop-down-div,
1017
+ .e-de-ht-wdth-type {
1018
+ width: 155px;
1019
+ }
1020
+ .e-de-row-ht-top,
1021
+ .e-de-cell-ht-top {
1022
+ width: 179px;
1023
+ }
1024
+ }
1025
+ }
1026
+ @if $skin-name=='tailwind' {
1027
+ .e-bigger {
1028
+ .e-de-table-properties-dlg {
1029
+ width: 485px;
1030
+ }
1031
+ .e-de-table-ppty-dlg-preferred-width-div,
1032
+ .e-de-table-ppty-dlg-measure-drop-down-div,
1033
+ .e-de-ht-wdth-type {
1034
+ width: 155px;
1035
+ }
1036
+ .e-de-row-ht-top,
1037
+ .e-de-cell-ht-top {
1038
+ width: 179px;
1039
+ }
1040
+ .e-de-restrict-pane {
1041
+ width: 295px;
1042
+ }
1043
+ // .e-de-rp-sub-div,
1044
+ // .e-de-rp-whole-header {
1045
+ // padding: 16px;
1046
+ // }
1047
+ .e-de-rp-stop-div1 {
1048
+ padding: 12px 16px 12px 16px;
1049
+ }
1050
+ .e-de-rp-stop-div2 {
1051
+ padding: 16px 16px 24px;
1052
+ }
1053
+ // .e-de-rp-stop-div3 {
1054
+ // padding: 0 0 16px 16px;
1055
+ // }
1056
+ // .e-de-rp-nav-btn {
1057
+ // margin: 0px 25px;
1058
+ // }
1059
+ // .e-de-rp-enforce {
1060
+ // padding: 16px;
1061
+ // }
1062
+ .e-de-cmt-sub-container,
1063
+ .e-de-font-dlg-header,
1064
+ .e-de-font-dlg-header-effects,
1065
+ .e-de-font-dlg-header-font-color,
1066
+ .e-de-dlg-sub-header,
1067
+ .e-de-prop-sub-label,
1068
+ .e-de-hyperlink-dlg-title,
1069
+ .e-de-insert-table-dlg-sub-header,
1070
+ .e-de-row-ht-top,
1071
+ .e-de-table-dia-align-label,
1072
+ .e-de-cell-dia-label-common,
1073
+ .e-de-table-setting-labels-heading,
1074
+ .e-de-trckchanges-inner,
1075
+ .e-de-page-setup-dlg-sub-header,
1076
+ .e-de-tbl-indent-lbl,
1077
+ .e-de-table-element-subheading,
1078
+ .e-de-ff-dlg-heading-small,
1079
+ .e-styles-dlgfields,
1080
+ .e-de-insert-footnote-dlg-sub-header,
1081
+ .e-de-list-ddl-subheaderbottom,
1082
+ .e-de-table-measure-lbl,
1083
+ .e-bookmark-dlgfields,
1084
+ .e-de-page-setup-dlg-sub-title-header,
1085
+ .e-de-list-ddl-subheader,
1086
+ .e-de-rp-stop-div1,
1087
+ .e-de-unprotect-dlg-title,
1088
+ .e-de-rp-stop-div2,
1089
+ .e-de-rp-enforce-nav.e-de-rp-nav-lbl .e-label,
1090
+ .e-de-enforce-dlg-title,
1091
+ .e-de-track-date,
1092
+ .e-de-rp-sub-content-div,
1093
+ .e-de-rp-stop-div3,
1094
+ .e-de-cmt-date {
1095
+ font-size: 14px !important;
1096
+ }
1097
+ .e-de-table-setting-heading,
1098
+ .e-de-cell-dia-options-label,
1099
+ .e-de-style-formatting,
1100
+ .e-de-table-border-heading,
1101
+ .e-de-style-properties,
1102
+ .e-de-page-setup-dlg-sub-label,
1103
+ .e-de-toc-dlg-heading,
1104
+ .e-de-ff-dlg-heading,
1105
+ .e-de-toc-dlg-main-heading,
1106
+ .e-de-list-ddl-header,
1107
+ .e-de-prop-header-label,
1108
+ .e-de-table-border-heading,
1109
+ .e-de-dlg-spellchecker-subheader,
1110
+ .e-de-dlg-spellchecker-subheaderbtm,
1111
+ .e-de-list-ddl-header-list-level,
1112
+ .e-de-rp-format,
1113
+ .e-de-track-toolbar-overlay,
1114
+ .e-de-cmt-author-name,
1115
+ .e-de-cmt-readonly,
1116
+ .e-de-op-search-icon,
1117
+ .e-de-op-nav-btn,
1118
+ .e-de-track-user-nme,
1119
+ .e-de-tc-no-chng {
1120
+ font-size: 16px;
1121
+ }
1122
+ .e-de-cell-margin-top {
1123
+ padding-top: 0;
1124
+ }
1125
+ .e-de-op {
1126
+ padding-left: 16px;
1127
+ padding-right: 16px;
1128
+ width: 308px;
1129
+ }
1130
+ .e-de-font-dlg-cb-right.e-de-rtl,
1131
+ .e-de-style-left-div,
1132
+ .e-bookmark-list,
1133
+ .e-de-ff-dlg-lft-hlf,
1134
+ .e-styles-list,
1135
+ .e-de-user-dlg-textbox-input {
1136
+ margin-right: 16px !important;
1137
+ }
1138
+ .e-de-ff-dlg-lft-hlf.e-de-rtl,
1139
+ .e-de-table-ppty-dlg-preferred-width-div,
1140
+ .e-de-font-dlg-cb-right,
1141
+ .e-de-table-ppty-dlg-measure-div,
1142
+ .e-de-ff-drpdwn-listview.e-de-rtl,
1143
+ .e-de-table-ppty-dlg-measure-drop-down-div,
1144
+ .e-bookmark-list.e-de-rtl,
1145
+ .e-de-op.e-de-rtl .e-de-search-tab-content,
1146
+ .e-de-user-dlg-list.e-de-rtl .e-de-user-dlg-textbox-input {
1147
+ margin-left: 16px;
1148
+ }
1149
+ .e-de-toc-dlg-style-label {
1150
+ margin-top: 56px;
1151
+ }
1152
+ .e-de-ff-drpdwn-mvup {
1153
+ margin-right: 12px;
1154
+ }
1155
+ .e-de-font-clr-div,
1156
+ .e-de-toc-dlg-styles,
1157
+ // .e-de-tbl-dlg-border-btn {
1158
+ // margin-top: 20px;
1159
+ // }
1160
+ .e-de-font-dlg-padding,
1161
+ .e-de-page-setup-dlg-sub-title-header,
1162
+ .e-de-op-result-container .e-de-list-ddl-subheaderbottom,
1163
+ .e-de-op-more-less,
1164
+ .e-de-op-replacetabcontentdiv,
1165
+ .e-de-op-dlg-footer {
1166
+ margin-top: 16px;
1167
+ }
1168
+ // .e-de-table-ppty-dlg-left-indent-container {
1169
+ // bottom: 14px;
1170
+ // }
1171
+ // .e-de-table-ppty-dlg-left-indent-container {
1172
+ // left: 50px;
1173
+ // }
1174
+ // .e-de-table-ppty-dlg-left-indent-container.e-de-rtl {
1175
+ // right: 50px;
1176
+ // }
1177
+ .e-de-ff-drpdwn-mvdn,
1178
+ .e-de-ff-drpdwn-mvup {
1179
+ width: 46px !important;
1180
+ }
1181
+ .e-de-list-dlg-div.e-de-rtl,
1182
+ .e-de-list-dlg-subdiv.e-de-rtl {
1183
+ margin-top: -150px;
1184
+ }
1185
+ .e-de-list-dlg-div:not(.e-de-rtl) {
1186
+ margin-top: 40px;
1187
+ }
1188
+ .e-de-ht-wdth-type {
1189
+ margin-top: -18px;
1190
+ }
1191
+ .e-de-list-dlg {
1192
+ width: 425px;
1193
+ }
1194
+ .e-de-list-dlg-subdiv .e-input {
1195
+ height: 38px;
1196
+ }
1197
+ .e-de-toc-dlg-container {
1198
+ width: 640px;
1199
+ }
1200
+ .e-de-toc-styles-table-div {
1201
+ height: 195px;
1202
+ }
1203
+ .e-de-toc-table-div {
1204
+ height: 127px;
1205
+ }
1206
+ .e-de-toc-list-view {
1207
+ height: 204px;
1208
+ }
1209
+ .e-de-style-options-div,
1210
+ .e-de-ff-dlg-heading,
1211
+ .e-de-table-ppty-options-break,
1212
+ .e-de-page-setup-dlg-first-page-prop,
1213
+ .e-de-style-options-div>div:first-child,
1214
+ .e-de-toc-dlg-sub-container,
1215
+ .e-de-cmt-author,
1216
+ .e-de-font-checkbox-transform,
1217
+ .e-de-font-color-label,
1218
+ .e-bookmark-gotobutton,
1219
+ .e-de-drp-dwn-frst-div,
1220
+ .e-de-font-checkbox-transform-label,
1221
+ .e-bookmark-deletebutton,
1222
+ .e-bookmark-textboxdiv,
1223
+ .e-de-user-dlg-user,
1224
+ .e-de-page-setup-dlg-sub-label {
1225
+ margin-bottom: 12px !important;
1226
+ }
1227
+ .e-de-row-ht-top,
1228
+ .e-de-cell-ht-top {
1229
+ padding: 0 16px;
1230
+ }
1231
+ .e-de-style-name,
1232
+ .e-de-style-styletype,
1233
+ .e-de-style-style-based-on,
1234
+ .e-de-style-style-paragraph {
1235
+ font-size: 14px;
1236
+ }
1237
+ .e-de-pagesetup-dlg-container .e-input-group {
1238
+ width: 199px !important;
1239
+ }
1240
+ .e-de-table-measure-lbl {
1241
+ width: 90px !important;
1242
+ }
1243
+ .e-de-list-ddl-subheader,
1244
+ .e-de-cell-dia-label-common,
1245
+ .e-de-page-setup-dlg-sub-container-port {
1246
+ margin-top: 42px;
1247
+ }
1248
+ .e-de-page-setup-dlg-first-page-prop {
1249
+ height: 30px !important;
1250
+ }
1251
+ .e-de-table-dialog-options-label {
1252
+ padding-bottom: 16px;
1253
+ }
1254
+ .e-de-row-ht-top,
1255
+ .e-de-cell-ht-top {
1256
+ margin-top: 4px;
1257
+ }
1258
+ .e-de-table-options-dlg {
1259
+ width: 425px;
1260
+ }
1261
+ .e-de-style-based-para-div .e-input-group,
1262
+ .e-de-style-nametype-div .e-input-group,
1263
+ .e-de-style-nametype-div .e-input {
1264
+ width: 320px !important;
1265
+ }
1266
+ .e-de-font-color-label,
1267
+ .e-de-hyperlink-bookmark-check,
1268
+ .e-de-search-tab-content,
1269
+ .e-de-page-setup-dlg-orientation-prop {
1270
+ margin-top: 16px;
1271
+ }
1272
+ .e-de-page-setup-dlg-sub-size-container,
1273
+ .e-bookmark-addbutton,
1274
+ .e-de-page-setup-dlg-layout-sub-container,
1275
+ .e-de-insert-table-dlg-input,
1276
+ .e-de-insert-footnote-dlg-header,
1277
+ .e-de-hyperlink-dlg-input,
1278
+ .e-de-style-nametype-div,
1279
+ .e-de-rp-format,
1280
+ .e-de-hdr-ftr-frst-page-div,
1281
+ .e-de-page-setup-dlg-sub-container,
1282
+ .e-de-div-seperate-dlg,
1283
+ .e-styles-addbutton,
1284
+ .e-de-user-dlg-list,
1285
+ .e-de-spellcheck-error-container,
1286
+ .e-bookmark-deletebutton,
1287
+ .e-bookmark-gotobutton {
1288
+ margin-bottom: 16px !important;
1289
+ }
1290
+ .e-de-op-header {
1291
+ margin-bottom: 0;
1292
+ }
1293
+ .e-de-style-based-para-div,
1294
+ .e-de-table-options-dlg-div {
1295
+ margin-bottom: 20px;
1296
+ }
1297
+ .e-de-font-dlg .e-input-group {
1298
+ width: max-content !important;
1299
+ }
1300
+ .e-de-list-dlg .e-input-group,
1301
+ .e-de-list-dlg .e-input {
1302
+ width: 203px !important;
1303
+ }
1304
+ .e-de-pagesetup-dlg-container {
1305
+ width: 415px;
1306
+ }
1307
+ .e-style-font-fmaily-right {
1308
+ width: 188px !important;
1309
+ }
1310
+ .e-de-style-format-dropdwn {
1311
+ height: auto !important;
1312
+ }
1313
+ .e-de-table-options-dlg-div .e-input-group {
1314
+ width: 200px !important;
1315
+ margin-right: 16px;
1316
+ }
1317
+ }
1318
+ .e-bigger .e-de-rp-enforce-nav:not(.e-de-rp-nav-lbl) {
1319
+ margin: 0 16px 16px 16px;
1320
+ }
1321
+ .e-de-style-font-group-button .e-btn:not(button:last-child),
1322
+ .e-de-style-paragraph-group-button .e-btn:not(button:last-child),
1323
+ .e-de-style-paragraph-indent-group-button .e-btn:not(button:last-child) {
1324
+ margin-right: 3px;
1325
+ }
1326
+ .e-style-font-fmaily-right:not(.e-bigger .e-style-font-fmaily-right) {
1327
+ width: 148px !important;
1328
+ }
1329
+ .e-de-rp-enforce-nav.e-de-rp-nav-lbl .e-label {
1330
+ font-size: 12px;
1331
+ }
1332
+ .e-de-cell-margin-top {
1333
+ padding-bottom: 0;
1334
+ }
1335
+ .e-bigger .e-de-ctnr-prop-label.e-de-table-prop-label {
1336
+ margin-bottom: 12px;
1337
+ }
1338
+ .e-de-ctnr-prop-label.e-de-table-prop-label {
1339
+ margin-bottom: 8px;
1340
+ }
1341
+ .e-de-search-tab-content .e-input-group .e-de-op-search-icon:active,
1342
+ .e-de-op-search-close-icon:active {
1343
+ color: $search-icon-bdr-clr !important;
1344
+ }
1345
+ .e-de-op-search-icon:hover,
1346
+ .e-de-op-search-close-icon:hover {
1347
+ color: $search-icon-hvr !important;
1348
+ }
1349
+ .e-de-enforce {
1350
+ font-weight: 500;
1351
+ }
1352
+ // .e-bigger .e-de-enforce .e-de-enforce-dlg-input:not(.e-de-enforce .e-de-enforce-dlg-input:last-child) {
1353
+ // margin-bottom: 16px;
1354
+ // }
1355
+ .e-de-page-setup-dlg-first-page-prop {
1356
+ margin-bottom: 8px;
1357
+ }
1358
+ .e-de-pagesetup-dlg-container .e-input-group {
1359
+ width: 184px !important;
1360
+ }
1361
+ .e-de-table-options-dlg-div .e-input-group {
1362
+ width: 187px !important;
1363
+ }
1364
+ .e-de-font-dlg .e-input-group,
1365
+ .e-de-list-dlg .e-input-group,
1366
+ .e-de-list-dlg .e-input {
1367
+ width: max-content !important;
1368
+ }
1369
+ .e-de-list-ddl-subheaderbottom {
1370
+ margin-top: 12px;
1371
+ }
1372
+ .e-de-style-based-para-div .e-input-group,
1373
+ .e-de-style-nametype-div .e-input-group,
1374
+ .e-de-style-nametype-div .e-input {
1375
+ width: 256px !important;
1376
+ }
1377
+ .e-de-list-ddl-subheader {
1378
+ width: auto !important;
1379
+ }
1380
+ .e-de-table-measure-lbl {
1381
+ width: 80px !important;
1382
+ }
1383
+ .e-de-style-font-group-button>button:last-child {
1384
+ margin-right: 6px;
1385
+ }
1386
+ .e-de-hdr-ftr-frst-page-div,
1387
+ .e-de-page-setup-dlg-sub-container,
1388
+ .e-de-div-seperate-dlg {
1389
+ margin-bottom: 12px;
1390
+ }
1391
+ .e-de-toc-dlg-tab-div {
1392
+ margin-top: 16px;
1393
+ }
1394
+ .e-bookmark-textbox-input {
1395
+ margin-top: 0px !important;
1396
+ }
1397
+ .e-de-table-cell-header-div,
1398
+ .e-de-table-header-div {
1399
+ margin-top: 4px !important;
1400
+ }
1401
+ .e-documenteditor {
1402
+ .e-tab .e-content .e-item {
1403
+ padding: 0;
1404
+ }
1405
+ }
1406
+ // .e-de-enforce .e-de-enforce-dlg-input:last-child {
1407
+ // margin-bottom: 0;
1408
+ // }
1409
+ .e-de-table-cell-margin-dlg .e-input-group {
1410
+ width: 188px !important;
1411
+ }
1412
+ .e-de-restrict-pane {
1413
+ line-height: $de-rp-content-ln-ht;
1414
+ }
1415
+ }
1416
+ .e-de-restrict-pane {
1417
+ color: $de-input-color;
1418
+ }
1419
+ .e-de-op.e-de-rtl .e-de-search-tab-content {
1420
+ margin-left: $de-op-search-tab-content-margin-top;
1421
+ margin-right: 0;
1422
+ }
1423
+ .e-documenteditor .e-de-op-close-button.e-de-rtl {
1424
+ right: 255px;
1425
+ }
1426
+ .e-de-table-measure-lbl {
1427
+ font-size: $de-tbl-measure-lbl-font-size;
1428
+ font-weight: $de-header-font-weight;
1429
+ display: block;
1430
+ margin-bottom: $de-row-height-bottom-margin;
1431
+ }
1432
+ .e-de-tbl-indent-lbl {
1433
+ font-weight: $de-header-font-weight;
1434
+ font-size: $de-tbl-indent-lb-fnt-size;
1435
+ position: relative;
1436
+ display: block;
1437
+ margin-bottom: $de-tbl-indent-lbl-mrgn-btm;
1438
+ top: $de-tbl-indent-lbl-top;
1439
+ }
1440
+ .e-btn.e-de-op-close-button:hover {
1441
+ background-color: $de-op-btn-icon-bg;
1442
+ border-color: $de-op-btn-icon-border;
1443
+ color: $de-op-btn-icon-hover-clr;
1444
+ }
1445
+ .e-btn.e-de-op-close-button:focus {
1446
+ background-color: $de-op-btn-icon-bg;
1447
+ border-color: $de-op-btn-icon-border;
1448
+ color: $de-op-btn-icon-hover-clr;
1449
+ }
1450
+ .e-btn.e-de-op-close-button:active {
1451
+ background-color: $de-op-btn-icon-bg;
1452
+ border-color: $de-op-btn-icon-border;
1453
+ color: $de-op-btn-icon-active-clr;
1454
+ }
1455
+ .e-documenteditor {
1456
+ .e-input {
1457
+ //color: $de-input-color;
1458
+ font-size: 14px;
1459
+ }
1460
+ }
1461
+ .e-de-dlg-target .e-footer-content {
1462
+ .e-control.e-btn.e-flat:not(.e-icon-btn) {
1463
+ height: $de-dlg-btn-height;
1464
+ }
1465
+ }
1466
+ .e-de-tbl-dlg-border-btn .e-control.e-btn.e-flat:not(.e-icon-btn) {
1467
+ height: auto;
1468
+ }
1469
+ .e-de-op-result-container {
1470
+ margin-top: $de-op-result-container-margin-top;
1471
+ }
1472
+ .e-de-restrict-pane,
1473
+ .e-de-op {
1474
+ background-color: $de-op-bg-color;
1475
+ }
1476
+ .e-de-restrict-pane,
1477
+ .e-de-op {
1478
+ .e-tab-header .e-toolbar-items {
1479
+ margin-bottom: $de-op-tab-header-margin-bottom;
1480
+ margin-top: $de-op-tab-header-margin-top;
1481
+ }
1482
+ }
1483
+ .e-de-font-dlg-color {
1484
+ border: $de-font-color-border;
1485
+ border-radius: $de-font-color-border-radius;
1486
+ font-size: 12px;
1487
+ height: 16px;
1488
+ margin-left: 15px;
1489
+ width: 25px;
1490
+ }
1491
+ .e-de-icon-table-row-above {
1492
+ top: $de-icon-table-row-above-top;
1493
+ }
1494
+ .e-de-icon-table-row-below {
1495
+ top: $de-icon-table-row-below-top;
1496
+ }
1497
+ .e-de-icon-table-column-left {
1498
+ top: $de-icon-table-column-left-top;
1499
+ }
1500
+ .e-de-icon-table-column-right {
1501
+ top: $de-icon-table-column-right-top;
1502
+ }
1503
+ .e-de-icon-table-delete {
1504
+ top: $de-icon-table-delete-top;
1505
+ }
1506
+ .e-de-icon-table-row-delete {
1507
+ top: $de-icon-table-row-delete-top;
1508
+ }
1509
+ .e-de-icon-table-column-delete {
1510
+ top: $de-icon-table-column-delete-top;
1511
+ }
1512
+ .e-de-list-bullet-none {
1513
+ height: 40px;
1514
+ width: 40px;
1515
+ }
1516
+ .e-de-list-bullet-dot {
1517
+ height: 40px;
1518
+ width: 40px;
1519
+ }
1520
+ .e-de-list-bullet-circle {
1521
+ height: 40px;
1522
+ width: 40px;
1523
+ }
1524
+ .e-de-list-bullet-square {
1525
+ height: 40px;
1526
+ width: 40px;
1527
+ }
1528
+ .e-de-list-bullet-flower {
1529
+ height: 40px;
1530
+ width: 40px;
1531
+ }
1532
+ .e-de-list-bullet-arrow {
1533
+ height: 40px;
1534
+ width: 40px;
1535
+ }
1536
+ .e-de-list-bullet-tick {
1537
+ height: 40px;
1538
+ width: 40px;
1539
+ }
1540
+ .e-de-bullet:hover {
1541
+ background: $de-bullet-list-hover-color;
1542
+ }
1543
+ .e-de-list-numbered-none {
1544
+ height: 80px;
1545
+ width: 80px;
1546
+ }
1547
+ .e-de-list-numbered-number-dot {
1548
+ height: 80px;
1549
+ width: 80px;
1550
+ }
1551
+ .e-de-list-numbered-number-brace {
1552
+ height: 80px;
1553
+ width: 80px;
1554
+ }
1555
+ .e-de-list-numbered-up-roman {
1556
+ height: 80px;
1557
+ width: 80px;
1558
+ }
1559
+ .e-de-list-numbered-up-letter {
1560
+ height: 80px;
1561
+ width: 80px;
1562
+ }
1563
+ .e-de-list-numbered-low-letter-brace {
1564
+ height: 80px;
1565
+ width: 80px;
1566
+ }
1567
+ .e-de-numbered-low-letter-dot {
1568
+ height: 80px;
1569
+ width: 80px;
1570
+ }
1571
+ .e-de-list-numbered-low-roman {
1572
+ height: 80px;
1573
+ width: 80px;
1574
+ }
1575
+ .e-de-numbered:hover {
1576
+ background: $de-number-list-hover-color;
1577
+ }
1578
+ .e-de-list-multilevel-none {
1579
+ height: 80px;
1580
+ width: 80px;
1581
+ }
1582
+ .e-de-list-multilevel-list-normal {
1583
+ height: 80px;
1584
+ width: 80px;
1585
+ }
1586
+ .e-de-list-multilevel-list-multilevel {
1587
+ height: 80px;
1588
+ width: 80px;
1589
+ }
1590
+ .e-de-list-multilevel-list-bullets {
1591
+ height: 80px;
1592
+ width: 80px;
1593
+ }
1594
+ .e-de-multilevel-list:hover {
1595
+ background: $de-multilevel-list-hover-color;
1596
+ }
1597
+ .e-de-list-dialog-open:hover {
1598
+ background: $de-list-dialog-hover-color;
1599
+ }
1600
+ .e-de-cell-options {
1601
+ left: $de-cell-options-left;
1602
+ top: $de-cell-options-top;
1603
+ }
1604
+ .e-de-cell-options.e-de-rtl {
1605
+ left: $de-cell-options-rtl;
1606
+ }
1607
+ .e-de-font-color-label {
1608
+ margin-bottom: $de-font-color-margin-bottom;
1609
+ margin-right: $de-font-color-margin-top;
1610
+ margin-top: $de-font-color-margin-top;
1611
+ }
1612
+ .e-de-font-content-label {
1613
+ width: $de-font-label-width;
1614
+ }
1615
+ .e-de-font-color-margin {
1616
+ margin-right: $de-font-dlg-color-margin-right;
1617
+ margin-top: $de-font-dlg-color-margin-top;
1618
+ }
1619
+ .e-de-font-color-margin.e-de-rtl {
1620
+ margin-left: $de-font-dlg-color-margin-right;
1621
+ margin-right: 0;
1622
+ }
1623
+ .e-de-font-content-checkbox-label {
1624
+ margin-left: $de-font-content-checkbox-left;
1625
+ }
1626
+ .e-de-font-content-checkbox-label-rtl {
1627
+ margin-right: $de-font-content-checkbox-right;
1628
+ }
1629
+ .e-bigger {
1630
+ .e-de-font-content-checkbox-label {
1631
+ margin-left: $de-font-content-checkbox-left-bg;
1632
+ }
1633
+ .e-de-font-content-checkbox-label-rtl {
1634
+ margin-right: $de-font-content-checkbox-right-bg;
1635
+ }
1636
+ .e-de-font-content-label {
1637
+ width: $de-font-label-width-bg;
1638
+ }
1639
+ }
1640
+ .e-de-font-checkbox {
1641
+ margin-top: $de-font-style-margin;
1642
+ }
1643
+ .e-de-font-checkbox-transform {
1644
+ margin-left: $de-font-checkbox-ltr;
1645
+ }
1646
+ .e-de-font-checkbox-transform.e-de-rtl {
1647
+ margin-left: 0;
1648
+ margin-right: $de-font-checkbox-ltr;
1649
+ }
1650
+ .e-de-font-checkbox-transform-label {
1651
+ margin-bottom: $de-font-style-margin;
1652
+ margin-top: $de-font-style-margin;
1653
+ }
1654
+ .e-de-font-checkbox.e-de-rtl {
1655
+ margin-left: 0;
1656
+ margin-right: $de-font-checkbox-ltr;
1657
+ }
1658
+ .e-de-font-checkbox.e-de-rtl {
1659
+ margin-left: 0;
1660
+ margin-right: $de-font-checkbox-left;
1661
+ }
1662
+ .e-de-font-clr-div {
1663
+ margin-top: $de-font-clr-div-mrgn-top;
1664
+ }
1665
+ .e-de-font-dlg-padding {
1666
+ margin-top: $de-font-dlg-margin-top;
1667
+ }
1668
+ .e-de-table-container-div {
1669
+ margin-top: $de-table-container-margin-top;
1670
+ }
1671
+ .e-de-table-header-div {
1672
+ padding-top: $de-table-header-padding-top;
1673
+ }
1674
+ .e-de-table-subheader-div {
1675
+ float: right;
1676
+ margin-right: $de-table-subheader-div-margin-right;
1677
+ margin-top: $de-table-subheader-div-margin-top;
1678
+ }
1679
+ .e-de-table-subheader-div.e-de-rtl {
1680
+ float: left;
1681
+ margin-left: $de-table-subheader-div-margin-right;
1682
+ margin-right: 0;
1683
+ }
1684
+ .e-de-table-cell-header-div {
1685
+ padding-top: $de-table-header-padding-top;
1686
+ }
1687
+ .e-de-table-cell-subheader-div {
1688
+ top: $de-cell-subheader-top;
1689
+ }
1690
+ .e-de-cell-margin-header {
1691
+ left: $de-cell-margin-header-left;
1692
+ top: $de-cell-margin-header-top;
1693
+ }
1694
+ .e-de-font-dlg-display {
1695
+ display: inline-flex;
1696
+ }
1697
+ .e-de-tbl-margin-sub-header {
1698
+ margin-top: $de-tbl-margin-sub-header;
1699
+ }
1700
+ .e-de-tbl-btn-separator {
1701
+ width: $de-tbl-btn-separator;
1702
+ }
1703
+ .e-de-op-msg {
1704
+ color: $de-op-container-messagediv-color;
1705
+ top: 79px;
1706
+ }
1707
+ .e-de-save-dlg-file-name {
1708
+ height: 25px;
1709
+ margin-bottom: 8px;
1710
+ }
1711
+ .e-de-save-dlg-format-type {
1712
+ height: 25px;
1713
+ margin-bottom: 8px;
1714
+ padding-top: $de-save-dlg-format-type-padding;
1715
+ }
1716
+ .e-de-search-tab-content {
1717
+ //margin-right: $de-op-search-tab-content-margin-top;
1718
+ margin-top: $de-op-search-tab-content-margin-top;
1719
+ width: $de-op-search-text-box-container-width;
1720
+ }
1721
+ .e-de-font-dlg {
1722
+ width: $de-font-dlg-width;
1723
+ }
1724
+ .e-de-hyperlink {
1725
+ width: $de-hyper-link-width;
1726
+ }
1727
+ .e-bigger {
1728
+ .e-de-hyperlink {
1729
+ width: 300px;
1730
+ }
1731
+ }
1732
+ .e-de-insert-table {
1733
+ height: $de-insert-table-height;
1734
+ width: $de-insert-table-width;
1735
+ }
1736
+ .e-de-insert-footnote {
1737
+ height: $de-insert-footnote-height;
1738
+ width: $de-insert-footnote-width;
1739
+ }
1740
+ .e-de-insert-spellchecker {
1741
+ height: $de-insert-spellchecker-height;
1742
+ width: $de-insert-spellchecker-width;
1743
+ font-weight: $de-header-font-weight;
1744
+ }
1745
+ .e-bigger {
1746
+ .e-de-insert-spellchecker {
1747
+ width: $de-insert-big-spellchecker-width;
1748
+ }
1749
+ }
1750
+ .e-de-dlg-spellcheck-listview {
1751
+ @if $skin-name !='tailwind' {
1752
+ border: 1px solid $de-spellcheck-listview-border-color;
1753
+ border-radius: 2px !important;
1754
+ }
1755
+ height: $de-spellcheck-listview-height !important;
1756
+ margin-right: $de-bookmark-list-margin-right;
1757
+ margin-top: 8px;
1758
+ position: relative;
1759
+ float: left;
1760
+ width:$de-spellcheck-list-width;
1761
+ }
1762
+ .e-de-dlg-spellcheck-listview.e-de-rtl {
1763
+ float: right;
1764
+ }
1765
+ .e-de-spellcheck-error-container {
1766
+ height: $de-spellcheck-container-height;
1767
+ margin-bottom: $de-spellcheck-container-gap;
1768
+ display: flex;
1769
+ }
1770
+ .e-de-spellcheck-suggestion-container {
1771
+ // height: 140px;
1772
+ height: $de-spellcheck-container-height;
1773
+ margin-bottom: $de-spellcheck-container-gap;
1774
+ display: flex;
1775
+ }
1776
+ .e-dlg-spellcheck-listitem {
1777
+ font-size: 15px !important;
1778
+ }
1779
+ // .e-de-dlg-suggestListView {
1780
+ // position:absolute;
1781
+ // width: 343px;
1782
+ // height: 124px !important;
1783
+ // margin-top: 8px;
1784
+ // }
1785
+ .e-de-spellcheck-btncontainer {
1786
+ margin-top: 8px;
1787
+ position: relative;
1788
+ width:$de-spellcheck-btn-container-width;
1789
+ float: right;
1790
+ }
1791
+ .e-de-spellcheck-btncontainer.e-de-rtl {
1792
+ float: left;
1793
+ }
1794
+ .e-de-spellcheck-btn {
1795
+ //height: 36px;
1796
+ margin-bottom:$de-padding-half-bigger;
1797
+ width:$de-spellcheck-btn-width;
1798
+ }
1799
+ .e-de-dlg-spellchecker-subheader {
1800
+ margin-top: 8px;
1801
+ @if $skin-name=='tailwind' {
1802
+ font-size: 14px;
1803
+ margin-top: 4px;
1804
+ }
1805
+ @else {
1806
+ font-size: 15px;
1807
+ }
1808
+ }
1809
+ .e-de-dlg-spellchecker-subheaderbtm {
1810
+ @if $skin-name=='tailwind' {
1811
+ font-size: 14px;
1812
+ }
1813
+ @else {
1814
+ font-size: 15px;
1815
+ }
1816
+ }
1817
+ .e-de-list-dlg {
1818
+ height: $de-list-dlg-height;
1819
+ width: $de-list-dlg-width;
1820
+ }
1821
+ .e-de-save-dlg {
1822
+ height: $de-save-dlg-height;
1823
+ width: $de-save-dlg-width;
1824
+ }
1825
+ .e-de-table-properties-dlg {
1826
+ //height: $de-table-ppty-dlg-height;
1827
+ width: $de-table-ppty-dlg-width;
1828
+ }
1829
+ .e-de-table-border-shading-dlg {
1830
+ width: $de-table-border-shading-dlg-width;
1831
+ }
1832
+ .e-de-table-cell-margin-dlg {
1833
+ height: $de-table-cell-margin-dlg-height;
1834
+ width: $de-table-cell-margin-dlg-width;
1835
+ }
1836
+ .e-de-table-options-dlg {
1837
+ height: $de-table-options-dlg-height;
1838
+ width: $de-table-options-dlg-width;
1839
+ }
1840
+ .e-de-table-border-none {
1841
+ position: absolute;
1842
+ top: $de-table-border-none-top;
1843
+ }
1844
+ .e-de-table-border-box {
1845
+ position: absolute;
1846
+ top: $de-table-border-box-top;
1847
+ }
1848
+ .e-de-table-border-all {
1849
+ position: absolute;
1850
+ top: $de-table-border-all-top;
1851
+ }
1852
+ .e-de-table-border-custom {
1853
+ position: absolute;
1854
+ top: $de-table-border-custom-top;
1855
+ }
1856
+ .e-de-table-shading-preview {
1857
+ top: $de-table-shading-preview-top;
1858
+ }
1859
+ // .e-de-font-content-label span.e-label {
1860
+ // color: $de-checkbox-wrapper-color;
1861
+ // }
1862
+ .e-de-font-label span.e-label {
1863
+ color: $de-checkbox-wrapper-color;
1864
+ }
1865
+ .e-de-font-content-label:hover .e-label,
1866
+ .e-css.e-de-font-content-label:hover .e-label {
1867
+ color: $de-checkbox-wrapper-color;
1868
+ }
1869
+ .e-de-font-label:hover .e-label,
1870
+ .e-css.e-de-font-label:hover .e-label {
1871
+ color: $de-checkbox-wrapper-color;
1872
+ }
1873
+ // @if $skin-name !='tailwind' and $skin-name !='bootstrap5' {
1874
+ // .e-documenteditor {
1875
+ // // .e-checkbox-wrapper .e-label {
1876
+ // // color: $de-checkbox-wrapper-color;
1877
+ // // font-size: 14px;
1878
+ // // }
1879
+ // // .e-checkbox-wrapper .e-frame {
1880
+ // // height: $de-checkbox-height;
1881
+ // // line-height: $de-checkbox-line-height;
1882
+ // // width: $de-checkbox-width;
1883
+ // // }
1884
+ // }
1885
+ // }
1886
+ .e-de-op-dlg-footer {
1887
+ margin-top: $de-op-dlg-footer-margin-top;
1888
+ }
1889
+ .e-de-op-dlg-footer .e-btn {
1890
+ // height: $de-dlg-btn-height;
1891
+ padding-left: 6px;
1892
+ padding-right: 6px;
1893
+ }
1894
+ .e-de-search-tab-content .e-input-group .e-de-search-input {
1895
+ width: $de-op-search-input-width;
1896
+ }
1897
+ .e-de-op-replacewith {
1898
+ width: $de-op-replacewith-width;
1899
+ }
1900
+ .e-de-table-ppty-tab {
1901
+ border: $de-table-ppty-tab-border;
1902
+ }
1903
+ // @if $skin-name !='tailwind' {
1904
+ // .e-de-table-container-div .e-checkbox-wrapper .e-label {
1905
+ // color: $de-checkbox-wrapper-color;
1906
+ // }
1907
+ // .e-de-table-header-div .e-checkbox-wrapper .e-label {
1908
+ // color: $de-checkbox-wrapper-color;
1909
+ // }
1910
+ // .e-de-table-ppty-options-break .e-checkbox-wrapper .e-label {
1911
+ // color: $de-checkbox-wrapper-color;
1912
+ // }
1913
+ // .e-de-table-ppty-options-header-row .e-checkbox-wrapper .e-label {
1914
+ // color: $de-checkbox-wrapper-color;
1915
+ // }
1916
+ // .e-de-table-cell-header-div .e-checkbox-wrapper .e-label {
1917
+ // color: $de-checkbox-wrapper-color;
1918
+ // }
1919
+ // .e-de-tbl-margin-sub-header .e-label {
1920
+ // color: $de-checkbox-wrapper-color;
1921
+ // }
1922
+ // .e-de-tbl-btn-separator .e-checkbox-wrapper .e-label {
1923
+ // color: $de-checkbox-wrapper-color;
1924
+ // }
1925
+ // }
1926
+ // .e-de-table-container-div .e-checkbox-wrapper .e-label {
1927
+ // color: $de-checkbox-wrapper-color;
1928
+ // }
1929
+ // .e-de-table-header-div .e-checkbox-wrapper .e-label {
1930
+ // color: $de-checkbox-wrapper-color;
1931
+ // }
1932
+ // .e-de-table-ppty-options-break .e-checkbox-wrapper .e-label {
1933
+ // color: $de-checkbox-wrapper-color;
1934
+ // }
1935
+ // .e-de-table-ppty-options-header-row .e-checkbox-wrapper .e-label {
1936
+ // color: $de-checkbox-wrapper-color;
1937
+ // }
1938
+ // .e-de-table-cell-header-div .e-checkbox-wrapper .e-label {
1939
+ // color: $de-checkbox-wrapper-color;
1940
+ // }
1941
+ // .e-de-tbl-margin-sub-header .e-label {
1942
+ // color: $de-checkbox-wrapper-color;
1943
+ // }
1944
+ // .e-de-tbl-btn-separator .e-checkbox-wrapper .e-label {
1945
+ // color: $de-checkbox-wrapper-color;
1946
+ // }
1947
+ .e-de-list-format-info {
1948
+ border-radius: 50% !important;
1949
+ cursor: default;
1950
+ font-size: 12px !important;
1951
+ height: 15px;
1952
+ line-height: 1px;
1953
+ padding: $de-list-info-btn-padding !important;
1954
+ text-transform: lowercase;
1955
+ width: 16px;
1956
+ }
1957
+ .e-button-custom {
1958
+ height: $de-bookmark-custom-btn-height;
1959
+ width: 100%;
1960
+ }
1961
+ .e-bigger {
1962
+ .e-button-custom {
1963
+ height: $de-bigger-style-button-height;
1964
+ width: 100%;
1965
+ }
1966
+ }
1967
+ .e-styles-listview,
1968
+ .e-bookmark-listview {
1969
+ border: 1px solid $bookmark-listview-border-color;
1970
+ border-radius: $de-bookmark-list-view-border-radius;
1971
+ height: 150px;
1972
+ overflow-y: scroll;
1973
+ }
1974
+ .e-bookmark-gotobutton,
1975
+ .e-bookmark-addbutton,
1976
+ .e-styles-addbutton,
1977
+ .e-bookmark-deletebutton {
1978
+ margin-bottom: 12px;
1979
+ }
1980
+ .e-bookmark-list {
1981
+ float: left;
1982
+ margin-right: $de-bookmark-list-margin-right;
1983
+ width: 250px;
1984
+ }
1985
+ .e-bookmark-list.e-de-rtl {
1986
+ margin-left: $de-bkmrk-list-margin-left;
1987
+ margin-right: 0;
1988
+ }
1989
+ .e-bookmark-textboxdiv {
1990
+ margin-bottom: $de-bookmark-textbox-margin-bottom;
1991
+ }
1992
+ .e-bookmark-listview .e-list-item {
1993
+ font-size: 13px;
1994
+ height: 30px;
1995
+ line-height: 27px;
1996
+ }
1997
+ .e-bookmark-common {
1998
+ display: flex;
1999
+ }
2000
+ .e-bookmark-button {
2001
+ position: relative;
2002
+ top: $de-bookmark-button-div-top-position;
2003
+ }
2004
+ .e-font {
2005
+ float: left;
2006
+ }
2007
+ .e-font-rtl {
2008
+ float: right;
2009
+ }
2010
+ .e-de-table-border-toptop-alignment,
2011
+ .e-de-table-border-topcenter-alignment,
2012
+ .e-de-table-border-topbottom-alignment,
2013
+ .e-de-table-border-diagionalup-alignment,
2014
+ .e-de-table-border-diagionaldown-alignment,
2015
+ .e-de-table-border-bottomleft-alignment,
2016
+ .e-de-table-border-bottomcenter-alignment,
2017
+ .e-de-table-border-bottomright-alignment {
2018
+ left: $de-table-border-dlg-alignments-left;
2019
+ position: relative;
2020
+ top: $de-table-border-preview-top;
2021
+ transform: $de-table-border-dlg-alignments-transform;
2022
+ }
2023
+ .e-de-style-properties,
2024
+ .e-de-style-formatting {
2025
+ font-size: $de-style-heading-font-size;
2026
+ font-weight: $de-style-heading-font-weight;
2027
+ color: $de-dlg-heading-main-header;
2028
+ }
2029
+ .e-de-style-formatting {
2030
+ margin-bottom: $de-style-dialog-style-formatting-bottom-margin;
2031
+ }
2032
+ .e-de-style-paragraph-indent-group-button .e-btn,
2033
+ .e-de-style-paragraph-group-button .e-btn,
2034
+ .e-de-style-font-group-button .e-btn {
2035
+ box-shadow: none;
2036
+ }
2037
+ .e-de-table-options-dlg-div {
2038
+ height: auto;
2039
+ position: relative;
2040
+ margin-bottom: 14px;
2041
+ width: $de-dlg-table-options-content-div;
2042
+ }
2043
+ @if $skin-name !='bootstrap4' and $skin-name !='tailwind' {
2044
+ .e-de-style-paragraph-indent-group-button .e-btn.e-active,
2045
+ .e-de-style-paragraph-group-button .e-btn.e-active,
2046
+ .e-de-style-font-group-button .e-btn.e-active {
2047
+ background-color: $de-style-btn-active-bg-border-color;
2048
+ border-color: $de-style-btn-active-bg-border-color;
2049
+ box-shadow: none;
2050
+ color: $de-style-btn-active-text-color;
2051
+ }
2052
+ }
2053
+ .e-de-style-properties {
2054
+ margin-bottom: $de-style-dialog-style-ppties-bottom-margin;
2055
+ }
2056
+ .e-de-style-nametype-div {
2057
+ margin-bottom: $de-style-dialog-style-name-type-div-bottom-margin;
2058
+ }
2059
+ .e-de-style-based-para-div {
2060
+ margin-bottom: $de-style-dialog-style-based-para-div-bottom-margin;
2061
+ }
2062
+ .e-de-style-name,
2063
+ .e-de-style-styletype,
2064
+ .e-de-style-style-based-on,
2065
+ .e-de-style-style-paragraph {
2066
+ font-weight: $de-header-font-weight;
2067
+ margin-bottom: $de-style-dialog-label-bottom-margin;
2068
+ font-size: $de-style-font-size;
2069
+ @if $skin-name !='tailwind' {
2070
+ width: 180px;
2071
+ }
2072
+ }
2073
+ .e-de-style-left-div {
2074
+ margin-right: $de-style-dialog-style-left-div-right-margin;
2075
+ }
2076
+ .e-de-style-left-div.e-de-rtl {
2077
+ margin-left: $de-style-dialog-style-left-div-right-margin;
2078
+ margin-right: 0;
2079
+ }
2080
+ @if $skin-name !='tailwind' and $skin-name !='bootstrap5' and $skin-name != 'FluentUI' {
2081
+ .e-de-style-font-color-picker,
2082
+ .e-de-style-icon-button-size,
2083
+ .e-de-style-icon-button-first-size,
2084
+ .e-de-style-icon-button-last-size {
2085
+ height: 31px;
2086
+ }
2087
+ }
2088
+ .e-bigger {
2089
+ @if $skin-name !='tailwind' and $skin-name !='bootstrap5' and $skin-name != 'FluentUI' {
2090
+ .e-de-style-font-color-picker,
2091
+ .e-de-style-icon-button-size,
2092
+ .e-de-style-icon-button-first-size,
2093
+ .e-de-style-icon-button-last-size {
2094
+ height: 35px;
2095
+ }
2096
+ }
2097
+ .e-de-style-bold-button-size {
2098
+ margin-left: $de-style-dialog-label-bottom-margin;
2099
+ @if $skin-name !='tailwind' and $skin-name !='bootstrap5' and $skin-name != 'FluentUI' {
2100
+ margin-right: 8px;
2101
+ height: 35px;
2102
+ }
2103
+ }
2104
+ }
2105
+ .e-de-style-bold-button-size {
2106
+ margin-left: $de-style-dialog-label-bottom-margin;
2107
+ @if $skin-name !='tailwind' and $skin-name !='bootstrap5' and $skin-name != 'FluentUI' {
2108
+ margin-right: 8px;
2109
+ height: 31px;
2110
+ }
2111
+ }
2112
+ .e-de-style-format-dropdwn .e-btn-icon {
2113
+ margin-left: 8px;
2114
+ }
2115
+ @if $skin-name !='tailwind' and $skin-name !='bootstrap5' and $skin-name != 'FluentUI' {
2116
+ .e-de-style-font-color-picker,
2117
+ .e-de-style-icon-button-size {
2118
+ margin-right: $de-style-dialog-label-bottom-margin;
2119
+ }
2120
+ }
2121
+ .e-de-style-icon-button-first-size {
2122
+ margin-left: $de-style-dialog-label-bottom-margin;
2123
+ @if $skin-name !='tailwind' and $skin-name !='bootstrap5' and $skin-name != 'FluentUI' {
2124
+ margin-right: 3px;
2125
+ }
2126
+ }
2127
+ .e-de-style-icon-button-last-size {
2128
+ margin-right: $de-style-dialog-label-bottom-margin;
2129
+ }
2130
+ .e-de-style-font-color-picker {
2131
+ margin-left: $de-style-dialog-label-bottom-margin;
2132
+ }
2133
+ .e-style-font-fmaily-right {
2134
+ margin-right: $de-style-dialog-label-bottom-margin;
2135
+ }
2136
+ .e-style-font {
2137
+ margin-left: $de-style-font-margin-left;
2138
+ margin-right: $de-style-font-margin-right;
2139
+ }
2140
+ .e-de-style-left-div .e-de-style-dlg-name-input {
2141
+ height: $e-de-style-input-text-height;
2142
+ }
2143
+ .e-style-list {
2144
+ margin-left: $de-style-list-margin-left;
2145
+ }
2146
+ .e-de-style-dialog .e-de-style-only-this-document {
2147
+ margin-top: 25px;
2148
+ }
2149
+ .e-de-style-format-dropdwn {
2150
+ @if $skin-name == 'FluentUI' {
2151
+ width: 145px;
2152
+ }
2153
+ @else
2154
+ {
2155
+ width: 135px;
2156
+ }
2157
+ }
2158
+ .e-de-style-options-div,
2159
+ .e-de-style-options-div>div:first-child {
2160
+ margin-bottom: $de-style-dialog-option-div-bottom-margin !important;
2161
+ }
2162
+ .e-de-style-paragraph-group-button {
2163
+ border-right: 2px solid $de-style-toggle-btn-color;
2164
+ }
2165
+ .e-de-style-font-group-button {
2166
+ border-left: 2px solid $de-style-toggle-btn-color;
2167
+ border-right: 2px solid $de-style-toggle-btn-color;
2168
+ @if $skin-name=='bootstrap5' or $skin-name == 'FluentUI' {
2169
+ padding-right: $de-style-dialog-option-div-bottom-margin;
2170
+ }
2171
+ }
2172
+ .e-de-op-replace-messagediv {
2173
+ color: $de-op-container-messagediv-color;
2174
+ top: auto;
2175
+ }
2176
+ @if $skin-name !='bootstrap5' and $skin-name !='FluentUI' {
2177
+ .e-de-font-content-label .e-label,
2178
+ .e-de-font-dlg-cb-right .e-label,
2179
+ .e-de-font-checkbox .e-label {
2180
+ font-size: $de-font-checkbox-label-font-size;
2181
+ @if $skin-name=='tailwind' {
2182
+ line-height: 1.5;
2183
+ }
2184
+ }
2185
+ .e-de-font-content-label .e-frame,
2186
+ .e-de-font-dlg-cb-right .e-frame,
2187
+ .e-de-font-checkbox .e-frame,
2188
+ .e-de-font-content-label-caps .e-frame,
2189
+ .e-de-cntr-pane-padding .e-frame {
2190
+ height: $de-checkbox-height;
2191
+ line-height: $de-checkbox-line-height;
2192
+ width: $de-checkbox-width;
2193
+ }
2194
+ }
2195
+ .e-de-op-input-group,
2196
+ .e-de-op-replacewith {
2197
+ height: $de-op-input-group-height;
2198
+ }
2199
+ .e-bigger {
2200
+ .e-de-op-input-group,
2201
+ .e-de-op-replacewith {
2202
+ height: 40px;
2203
+ }
2204
+ }
2205
+ .e-de-hyperlink-bookmark-check {
2206
+ margin-top: $de-hyperlink-bookmark-check-margin-top;
2207
+ }
2208
+ @if $skin-name !='tailwind' and $skin-name !='bootstrap5' and $skin-name !='FluentUI' {
2209
+ .e-de-table-container-div .e-checkbox-wrapper .e-frame,
2210
+ .e-de-table-header-div .e-checkbox-wrapper .e-frame,
2211
+ .e-de-table-ppty-options-break .e-checkbox-wrapper .e-frame,
2212
+ .e-de-table-ppty-options-header-row .e-checkbox-wrapper .e-frame,
2213
+ .e-de-table-cell-header-div .e-checkbox-wrapper .e-frame,
2214
+ .e-de-tbl-btn-separator .e-checkbox-wrapper .e-frame,
2215
+ .e-de-hyperlink-bookmark-check .e-checkbox-wrapper .e-frame,
2216
+ .e-de-tbl-margin-sub-header .e-frame {
2217
+ height: $de-checkbox-height;
2218
+ line-height: $de-checkbox-line-height;
2219
+ width: $de-checkbox-width;
2220
+ }
2221
+ .e-de-table-container-div .e-checkbox-wrapper .e-label,
2222
+ .e-de-table-header-div .e-checkbox-wrapper .e-label,
2223
+ .e-de-table-ppty-options-break .e-checkbox-wrapper .e-label,
2224
+ .e-de-table-ppty-options-header-row .e-checkbox-wrapper .e-label,
2225
+ .e-de-table-cell-header-div .e-checkbox-wrapper .e-label,
2226
+ .e-de-tbl-btn-separator .e-checkbox-wrapper .e-label,
2227
+ .e-de-hyperlink-bookmark-check .e-checkbox-wrapper .e-label,
2228
+ .e-de-tbl-margin-sub-header .e-label {
2229
+ font-size: 14px;
2230
+ }
2231
+ }
2232
+ .e-de-table-container-div .e-checkbox-wrapper .e-label,
2233
+ .e-de-table-header-div .e-checkbox-wrapper .e-label,
2234
+ .e-de-table-ppty-options-break .e-checkbox-wrapper .e-label,
2235
+ .e-de-table-ppty-options-header-row .e-checkbox-wrapper .e-label,
2236
+ .e-de-table-cell-header-div .e-checkbox-wrapper .e-label,
2237
+ .e-de-tbl-btn-separator .e-checkbox-wrapper .e-label,
2238
+ .e-de-hyperlink-bookmark-check .e-checkbox-wrapper .e-label,
2239
+ .e-de-tbl-margin-sub-header .e-label {
2240
+ font-size: 14px;
2241
+ }
2242
+ .e-de-table-ppty-dlg-measure-div {
2243
+ float: right;
2244
+ margin-left: $de-table-ppty-dlg-measure-div-margin-left;
2245
+ margin-top: -18px;
2246
+ }
2247
+ .e-de-table-ppty-dlg-measure-div.e-de-rtl {
2248
+ float: left;
2249
+ margin-left: 0;
2250
+ margin-right: $de-table-ppty-dlg-measure-div-margin-left;
2251
+ }
2252
+ .e-de-table-ppty-dlg-measure-drop-down-div {
2253
+ float: right;
2254
+ margin-left: $de-table-ppty-dlg-measure-div-margin-left;
2255
+ margin-top: $de-table-ppty-dlg-measure-div-margin-top;
2256
+ width: 120px;
2257
+ }
2258
+ .e-de-table-ppty-dlg-measure-drop-down-div.e-de-rtl {
2259
+ margin-left: 0;
2260
+ margin-right: $de-table-ppty-dlg-measure-div-margin-left;
2261
+ }
2262
+ // .e-de-table-ppty-dlg-left-indent-container {
2263
+ // bottom: $e-de-table-ppty-dlg-left-indent-container-bottom;
2264
+ // left: $de-table-prop-left-indnt-cntr-pos;
2265
+ // position: relative;
2266
+ // }
2267
+ // .e-de-table-ppty-dlg-left-indent-container.e-de-rtl {
2268
+ // right: $de-table-prop-left-indnt-cntr-pos;
2269
+ // }
2270
+ .e-de-table-ppty-dlg-row-height-label {
2271
+ float: right;
2272
+ margin-right: $de-table-ppty-dlg-row-height-label-margin-right;
2273
+ margin-top: $de-table-ppty-dlg-row-height-label-margin-top;
2274
+ }
2275
+ .e-de-table-ppty-dlg-row-height-label.e-de-rtl {
2276
+ float: left;
2277
+ margin-left: $de-table-ppty-dlg-row-height-label-margin-right;
2278
+ margin-right: 0;
2279
+ }
2280
+ .e-de-table-ppty-dlg-preferred-width-div {
2281
+ float: right;
2282
+ margin-left: $de-table-ppty-dlg-preferred-width-margin-left;
2283
+ margin-top: $de-table-ppty-dlg-preferred-width-margin-top;
2284
+ width: 120px;
2285
+ }
2286
+ .e-de-table-ppty-dlg-preferred-width-div.e-de-rtl {
2287
+ margin-left: 0;
2288
+ margin-right: $de-table-ppty-dlg-preferred-width-margin-left;
2289
+ width: 120px;
2290
+ }
2291
+ .e-de-table-ppty-options-break {
2292
+ margin-bottom: $de-table-ppty-options-break-margin-bottom;
2293
+ }
2294
+ .e-de-table-cell-subheader-div {
2295
+ margin-right: $de-table-cell-subheader-div-margin-right;
2296
+ margin-top: $de-table-cell-subheader-div-margin-top;
2297
+ }
2298
+ .e-de-table-cell-subheader-div.e-de-rtl {
2299
+ margin-left: $de-table-cell-subheader-div-margin-right;
2300
+ margin-right: 0;
2301
+ }
2302
+ .e-de-table-ppty-dlg-cell-tab-measure-label {
2303
+ float: right;
2304
+ margin-right: $de-table-ppty-dlg-cell-tab-measure-label-margin-right;
2305
+ margin-top: $de-table-ppty-dlg-cell-tab-measure-label-margin-top;
2306
+ }
2307
+ .e-tab .e-tab-header .e-toolbar-item .e-de-table-ppty-dlg-row-header {
2308
+ padding-left: $de-table-ppty-dlg-table-header-padding;
2309
+ padding-right: $de-table-ppty-dlg-table-header-padding;
2310
+ }
2311
+ .e-tab .e-tab-header .e-toolbar-item .e-de-table-ppty-dlg-cell-header {
2312
+ padding-left: $de-table-ppty-dlg-table-header-padding;
2313
+ padding-right: $de-table-ppty-dlg-table-header-padding;
2314
+ }
2315
+ .e-tab .e-tab-header .e-toolbar-item .e-de-page-setup-dlg-margin-tab-header {
2316
+ padding-left: $de-table-ppty-dlg-table-header-padding-left;
2317
+ padding-right: $de-table-ppty-dlg-table-header-padding;
2318
+ }
2319
+ .e-styles-list {
2320
+ float: left;
2321
+ margin-right: $de-bookmark-listview-margin-right;
2322
+ width: 250px;
2323
+ }
2324
+ .e-styles-textboxdiv {
2325
+ padding-bottom: 15px;
2326
+ }
2327
+ .e-styles-listview .e-list-item {
2328
+ font-size: 13px;
2329
+ height: 30px;
2330
+ line-height: 27px;
2331
+ }
2332
+ .e-styles-common {
2333
+ padding-top: 5px;
2334
+ }
2335
+ .e-styles-button {
2336
+ float: right;
2337
+ }
2338
+ .e-de-toc-dlg-right-sub-container.e-de-rtl {
2339
+ margin-left: $de-toc-dlg-right-sub-container-margin-right;
2340
+ margin-right: $de-toc-dlg-right-sub-container-margin-right;
2341
+ }
2342
+ .e-de-toc-dlg-styles {
2343
+ margin-bottom: $de-toc-dlg-styles-margin-bottom;
2344
+ margin-left: $de-toc-dlg-styles-margin-left;
2345
+ margin-top: $de-toc-dlg-styles-margin-top;
2346
+ }
2347
+ .e-de-toc-dlg-styles.e-de-rtl {
2348
+ margin-left: 0;
2349
+ margin-right: $de-toc-dlg-styles-margin-left;
2350
+ }
2351
+ .e-de-toc-dlg-style-input.e-de-rtl {
2352
+ margin-left: 0;
2353
+ margin-right: $de-toc-dlg-style-input-margin-left;
2354
+ }
2355
+ .e-de-toc-table-div .e-de-toc-dlg-toc-level {
2356
+ height: 24px;
2357
+ margin-left: $de-toc-dlg-toc-level-margin-left;
2358
+ width: 44px;
2359
+ }
2360
+ .e-de-toc-styles-table-div {
2361
+ border: 1px solid $de-toc-list-view-border-color;
2362
+ border-radius: $de-toc-styles-table-div-border-radius;
2363
+ margin-top: $de-toc-styles-table-div-margin-top;
2364
+ width: $de-toc-list-view-width;
2365
+ height: $de-toc-table-list-view-height;
2366
+ }
2367
+ .e-de-toc-dlg-sub-level-heading {
2368
+ font-size: 12px;
2369
+ }
2370
+ .e-de-toc-table-div {
2371
+ height: $e-de-toc-table-div-height;
2372
+ overflow-y: scroll;
2373
+ width: $de-toc-table-div-width;
2374
+ }
2375
+ .e-de-toc-dlg-style-input {
2376
+ margin-bottom: $de-toc-dlg-style-input-margin-bottom;
2377
+ margin-left: $de-toc-dlg-style-input-margin-left;
2378
+ width: $de-toc-dlg-style-input-width;
2379
+ }
2380
+ .e-de-toc-dlg-outline-levels {
2381
+ margin-top: 15px;
2382
+ width: $de-toc-dlg-outline-levels-width;
2383
+ }
2384
+ .e-bookmark-textboxdiv .e-bookmark-textbox-input {
2385
+ height: $de-bookmark-textbox-height;
2386
+ }
2387
+ .e-styles-dlgfields {
2388
+ font-weight: $de-header-font-weight;
2389
+ margin-bottom: 6px;
2390
+ }
2391
+ .e-tab .e-tab-header .e-toolbar-item .e-de-op-find-tab-header {
2392
+ padding-left: $de-op-tab-header-padding-left;
2393
+ padding-right: $de-op-tab-header-padding;
2394
+ }
2395
+ .e-tab .e-tab-header .e-toolbar-item .e-de-op-replace-tab-header {
2396
+ padding-left: $de-op-tab-header-padding-left;
2397
+ padding-right: $de-op-tab-header-padding;
2398
+ }
2399
+ .e-de-dlg-target .e-footer-content .e-list-dlg-font {
2400
+ margin-left: $de-list-dlg-font-margin-left;
2401
+ }
2402
+ .e-bookmark-dlgfields {
2403
+ font-weight: $de-header-font-weight;
2404
+ font-size: $de-dlg-bkm-fld-fnt-size;
2405
+ margin-bottom: $de-bookmark-dlgfields-margin-bottom;
2406
+ }
2407
+ .e-de-ui-wfloating-menu.e-de-ui-bullets-menu .e-de-ui-wfloating-menuitem-md {
2408
+ height: $de-floating-menu-height;
2409
+ padding: $de-floating-menu-padding;
2410
+ width: $de-floating-menu-width;
2411
+ }
2412
+ .e-de-ui-wfloating-menu.e-de-ui-bullets-menu .e-de-ui-wfloating-bullet-menuitem-md {
2413
+ height: 45px;
2414
+ width: 45px;
2415
+ }
2416
+ .e-de-bullet-icon-size {
2417
+ height: 45px;
2418
+ width: 45px;
2419
+ }
2420
+ .e-de-ui-list-header-presetmenu {
2421
+ cursor: pointer;
2422
+ font-size: 11px;
2423
+ line-height: 14px;
2424
+ min-width: $de-ui-list-header-presetmenu-min-width;
2425
+ overflow: hidden;
2426
+ text-align: left;
2427
+ white-space: nowrap;
2428
+ width: 100%;
2429
+ @if $skin-name=='tailwind' {
2430
+ color: $icon-color;
2431
+ }
2432
+ }
2433
+ .e-de-number-bullet-dlg .e-tab .e-content .e-item {
2434
+ padding: 0px;
2435
+ }
2436
+ .e-de-number-bullet-dlg {
2437
+ width: $de-bullet-numbered-dlg-width;
2438
+ }
2439
+ .e-de-style-numbered-list,
2440
+ .e-de-ui-bullet-list-header-presetmenu {
2441
+ height: $de-bullet-numbered-dlg-height;
2442
+ }
2443
+ .e-de-ui-bullet {
2444
+ font-size: 42px;
2445
+ }
2446
+ .e-de-ui-list-header-presetmenu .e-de-ui-list-line {
2447
+ border-bottom: 1px solid $de-numbering-list-line-color;
2448
+ margin-left: 5px;
2449
+ width: 100%;
2450
+ }
2451
+ .e-de-ui-list-header-presetmenu div span {
2452
+ color: $de-numbering-list-span-color;
2453
+ display: inline-block;
2454
+ vertical-align: middle;
2455
+ }
2456
+ .e-de-ui-wfloating-menu .e-de-ui-wfloating-menuitem,
2457
+ .e-de-ui-wfloating-menu .e-de-ui-menuitem-none {
2458
+ border: 0;
2459
+ box-shadow: inset 0 0 0 1px $de-numbering-list-border-color;
2460
+ cursor: pointer;
2461
+ height: 70px;
2462
+ margin: $de-ui-wfloating-menu;
2463
+ padding: 0;
2464
+ width: 70px;
2465
+ }
2466
+ .e-de-ui-wfloating-menu {
2467
+ padding: $de-ui-floating-menu-padding;
2468
+ }
2469
+ .e-de-list-thumbnail .e-de-list-items {
2470
+ float: left;
2471
+ }
2472
+ .e-de-list-thumbnail .e-de-list-items {
2473
+ background: $de-numbering-list-background-color;
2474
+ border: 1px solid transparent;
2475
+ clear: initial;
2476
+ display: inline-block;
2477
+ height: auto;
2478
+ margin: 5px;
2479
+ text-align: center;
2480
+ width: auto;
2481
+ }
2482
+ .e-de-list-items {
2483
+ background: $de-numbering-list-background-color;
2484
+ box-sizing: border-box;
2485
+ cursor: pointer;
2486
+ list-style: none;
2487
+ padding: 7px 10px;
2488
+ position: relative;
2489
+ }
2490
+ .e-de-list-item-size {
2491
+ font-size: 14px;
2492
+ }
2493
+ .e-de-ui-wfloating-menu {
2494
+ padding: $de-ui-floating-menu-padding;
2495
+ }
2496
+ .e-de-table-ppty-dlg-tabs {
2497
+ height: $de-table-ppty-dlg-tabs-height;
2498
+ position: relative;
2499
+ }
2500
+ .e-de-ui-bullet-list-header-presetmenu .e-de-list-thumbnail .e-de-list-active,
2501
+ .e-de-style-numbered-list .e-de-list-thumbnail .e-de-list-active {
2502
+ border-color: $de-table-align-active-color;
2503
+ }
2504
+ .e-de-rp-sub-content-div {
2505
+ line-height: $de-rp-content-ln-ht;
2506
+ font-size: $de-rp-font-size;
2507
+ margin-bottom: 8px;
2508
+ }
2509
+ .e-de-bullet-icons {
2510
+ left: 50%;
2511
+ position: absolute;
2512
+ top: 50%;
2513
+ transform: translate(-50%, -50%);
2514
+ }
2515
+ .e-de-header-footer-list {
2516
+ color: $de-op-search-txt;
2517
+ }
2518
+
2519
+ .e-de-ltr-btn-div {
2520
+ font-size: 12px;
2521
+ width: 200px;
2522
+ }
2523
+ .e-de-tbl-rtl-btn-div {
2524
+ font-size: 12px;
2525
+ margin-right: 14px;
2526
+ //width: 140px;
2527
+ }
2528
+ .e-de-tbl-rtl-btn-div.e-de-rtl {
2529
+ margin-left: 14px;
2530
+ margin-right: 0;
2531
+ }
2532
+ .e-de-tbl-ltr-btn-div {
2533
+ font-size: 12px;
2534
+ //width: 140px;
2535
+ }
2536
+
2537
+ .e-de-disabledbutton {
2538
+ opacity: $de-paradialog-dir-div;
2539
+ pointer-events: none;
2540
+ }
2541
+ .e-bigger {
2542
+ .e-de-insert-table {
2543
+ height: auto;
2544
+ width: auto;
2545
+ }
2546
+ .e-de-insert-footnote {
2547
+ height: auto;
2548
+ width: auto;
2549
+ }
2550
+ .e-de-dlg-target .e-footer-content .e-control.e-btn.e-flat:not(.e-icon-btn) {
2551
+ height: auto;
2552
+ }
2553
+ .e-de-font-dlg {
2554
+ width: $de-font-dlg-width-big;
2555
+ }
2556
+ .e-para-dlg-sub-height {
2557
+ height: 170px;
2558
+ }
2559
+ .e-de-toc-table-div .e-de-toc-dlg-toc-level.e-de-rtl {
2560
+ margin-right: $de-toc-dlg-toc-level-margin-left;
2561
+ }
2562
+ .e-de-font-content-label-width {
2563
+ width: $de-font-content-label-width;
2564
+ }
2565
+ .e-de-toc-label {
2566
+ margin-left: 0px;
2567
+ }
2568
+ .e-de-toc-label-rtl {
2569
+ margin-left: 0px;
2570
+ margin-right: 0px;
2571
+ }
2572
+ .e-de-outline-rtl {
2573
+ width: 173px;
2574
+ }
2575
+ .e-de-rp-header {
2576
+ font-size: 16px;
2577
+ width: 75%;
2578
+ }
2579
+ }
2580
+ .e-de-restrict-format {
2581
+ margin-top: 16px;
2582
+ }
2583
+ .e-de-rp-format {
2584
+ font-size: $de-rp-format-font-size;
2585
+ @if $skin-name == 'FluentUI'{
2586
+ margin-bottom: 16px;
2587
+ }
2588
+ @else {
2589
+ margin-bottom: 12px;
2590
+ opacity: 0.65;
2591
+ }
2592
+ font-weight: $de-header-font-weight;
2593
+ }
2594
+ .e-de-rp-checkbox {
2595
+ font-size: 12px;
2596
+ }
2597
+ .e-de-rp-border {
2598
+ margin-bottom: 12px;
2599
+ margin-top: 12px;
2600
+ }
2601
+ .e-de-rp-header {
2602
+ font-size: 15px;
2603
+ font-weight: $de-header-font-weight;
2604
+ opacity: 0.87;
2605
+ color: $de-op-title-clr;
2606
+ width: 75%;
2607
+ }
2608
+ @if $skin-name !='tailwind' {
2609
+ // .e-de-restrict-pane {
2610
+ // .e-checkbox-wrapper .e-label {
2611
+ // color: $de-checkbox-wrapper-color;
2612
+ // font-size: 12px;
2613
+ // }
2614
+ // .e-checkbox-wrapper .e-frame {
2615
+ // height: 16px;
2616
+ // width: 16px;
2617
+ // }
2618
+ // .e-checkbox-wrapper {
2619
+ // margin-bottom: 8px;
2620
+ // }
2621
+ // }
2622
+ .e-de-rp-user .e-checkbox-wrapper {
2623
+ width: auto;
2624
+ }
2625
+ }
2626
+ .e-de-rp-nav-btn,
2627
+ .e-de-rp-btn-enforce {
2628
+ @if $skin-name !='tailwind' {
2629
+ background: $de-rp-btn-bg-color;
2630
+ font-size: 13px;
2631
+ }
2632
+ opacity: 0.87;
2633
+ border-radius: 2px;
2634
+ box-shadow: $de-rp-btn-enforce-bx-shadow;
2635
+ // @if $skin-name !='FluentUI' {
2636
+ // height: 36px;
2637
+ // }
2638
+ @if $skin-name=='bootstrap4' {
2639
+ border-color: $de-cmt-separator;
2640
+ box-shadow: none;
2641
+ color: $de-cmt-pant-content-font;
2642
+ opacity: 1;
2643
+ }
2644
+ }
2645
+ .e-bigger .e-de-rp-btn-enforce {
2646
+ padding-left: $de-rp-btn-enforce-padding-big;
2647
+ padding-right: $de-rp-btn-enforce-padding-big;
2648
+ }
2649
+ .e-de-rp-nav-btn {
2650
+ //margin: $de-rp-nav-btn-mrgn;
2651
+ width: auto;
2652
+ }
2653
+ .e-de-rp-btn-stop-enforce {
2654
+ @if $skin-name !='tailwind' {
2655
+ background: $de-rp-btn-bg-color;
2656
+ font-size: 13px;
2657
+ opacity: 0.87;
2658
+ }
2659
+ border-radius: 2px;
2660
+ box-shadow: $de-rp-btn-enforce-bx-shadow;
2661
+ // @if $skin-name !='FluentUI' {
2662
+ // height: 36px;
2663
+ // }
2664
+ //margin: $de-rp-btn-enforce-prtct-margin;
2665
+ @if $skin-name=='bootstrap4' {
2666
+ border-color: $de-cmt-separator;
2667
+ box-shadow: none;
2668
+ color: $de-cmt-pant-content-font;
2669
+ opacity: 1;
2670
+ }
2671
+ }
2672
+ .e-de-rp-sub-div {
2673
+ border-bottom: 1px solid $de-list-view;
2674
+ padding: $de-rp-sub-div-padding;
2675
+ }
2676
+ .e-de-restrict-pane {
2677
+ padding-left: 0;
2678
+ padding-top: 0;
2679
+ padding-right: 0;
2680
+ }
2681
+ .e-de-rp-whole-header {
2682
+ padding: $de-rp-whole-header-padding;
2683
+ }
2684
+ .e-de-rp-user {
2685
+ background: $de-numbering-list-background-color;
2686
+ border: 1px solid $de-list-view;
2687
+ border-radius: 2px;
2688
+ font-size: 12px;
2689
+ height: 110px;
2690
+ //width: 238px;
2691
+ }
2692
+ .e-de-rp-enforce {
2693
+ padding: $de-rp-enforce-padding;
2694
+ // @if $skin-name=='bootstrap4' {
2695
+ // text-align: center;
2696
+ // }
2697
+ }
2698
+ .e-de-rp-enforce-nav {
2699
+ margin: 0 12px 12px 12px;
2700
+ }
2701
+ .e-de-enforce-dlg-title {
2702
+ font-size: $de-enforce-dlg-title-fnt-size;
2703
+ font-weight: $de-header-font-weight;
2704
+ margin-bottom: $de-hyperlink-dlg-margin-bottom;
2705
+ }
2706
+ .e-de-enforce .e-de-enforce-dlg-input {
2707
+ height: $de-hyperlink-dlg-input-height;
2708
+ //margin-bottom: $de-enforce-btn-mrng-btm;
2709
+ width: 300px;
2710
+ }
2711
+ .e-de-user-add-btn {
2712
+ @if ($skin-name !='bootstrap4' and $skin-name !='tailwind' and $skin-name !='bootstrap5') {
2713
+ background: $de-style-toggle-btn-color;
2714
+ }
2715
+ border-radius: 2px;
2716
+ width: 74px;
2717
+ }
2718
+ .e-de-user-dlg .e-de-user-dlg-textbox-input {
2719
+ margin-right: $de-user-dlg-textbox-input-mrgn-right;
2720
+ width: 304px;
2721
+ }
2722
+ .e-de-user-dlg-list.e-de-rtl .e-de-user-dlg-textbox-input {
2723
+ margin-right: 0;
2724
+ margin-left: $de-user-dlg-textbox-input-mrgn-right;
2725
+ }
2726
+ .e-de-user-dlg-list {
2727
+ margin-bottom: $de-user-dlg-list-mrgn-btm;
2728
+ display: inline-flex;
2729
+ }
2730
+ .e-de-user-listview {
2731
+ border: 1px solid $de-list-view;
2732
+ border-radius: 2px;
2733
+ height: 106px;
2734
+ }
2735
+ .e-de-user-dlg-user {
2736
+ margin-bottom: $de-user-dlg-user-mrgn-btm;
2737
+ @if $skin-name=='tailwind' {
2738
+ color: $de-dlg-heading-main-header;
2739
+ font-weight: $de-para-dlg-heading-font-weight;
2740
+ }
2741
+ }
2742
+ .e-user-delete {
2743
+ float: left;
2744
+ }
2745
+ .e-de-unprotect-dlg-title {
2746
+ font-size: $de-unprotect-dlg-title-fnt-size;
2747
+ margin-bottom: $de-unprotect-dlg-title-mrgn-btm;
2748
+ }
2749
+ .e-de-rp-stop-div1 {
2750
+ @if $skin-name != 'FluentUI' {
2751
+ opacity: 0.87;
2752
+ }
2753
+ padding: 12px 12px 6px 12px;
2754
+ font-weight: 500;
2755
+ border-bottom: 1px solid #e0e0e0;
2756
+ }
2757
+ .e-de-rp-stop-div2 {
2758
+ padding: 12px 12px 24px;
2759
+ }
2760
+ // .e-de-rp-stop-div3 {
2761
+ // padding: 0 0 12px 12px;
2762
+ // }
2763
+ .e-de-rp-close-icon {
2764
+ float: right;
2765
+ position: relative;
2766
+ top: $de-rp-close-icon-top;
2767
+ right: $de-rp-close-icon-right;
2768
+ }
2769
+ .e-de-restrict-pane {
2770
+ height: 100%;
2771
+ overflow: auto;
2772
+ overflow-x: hidden;
2773
+ width: $de-rp-width;
2774
+ }
2775
+ .e-de-rp-nav-lbl {
2776
+ font-size: 13px;
2777
+ margin: 0 12px;
2778
+ }
2779
+ .e-documenteditor-optionspane {
2780
+ height: 100%;
2781
+ }
2782
+ //Comment Implementation
2783
+ .e-de-cmt-pane {
2784
+ background-color: inherit;
2785
+ color: $de-cmt-pant-content-font;
2786
+ }
2787
+ .e-de-cp-whole-header {
2788
+ padding: 12px;
2789
+ }
2790
+ .e-de-cp-header {
2791
+ font-size: 13px;
2792
+ font-weight: 500;
2793
+ opacity: 0.87;
2794
+ width: 75%;
2795
+ }
2796
+ .e-de-cmt-container {
2797
+ height: auto;
2798
+ padding: $de-cmt-container-padding;
2799
+ overflow: auto;
2800
+ }
2801
+ .e-de-cmt-sub-container {
2802
+ @if $skin-name !='tailwind' and $skin-name != 'FluentUI' {
2803
+ background-color: $de-background;
2804
+ }
2805
+ border: 1px solid $de-cmt-separator;
2806
+ border-radius: 2px;
2807
+ margin: $de-cmt-sub-container-margin;
2808
+ padding: $de-cmt-sub-container-padding;
2809
+ }
2810
+ .e-de-cmt-view {
2811
+ cursor: default;
2812
+ }
2813
+ .e-de-cmt-sub-container.e-de-cmt-selection {
2814
+ border-left: 3px solid $de-cmt-selection;
2815
+ padding-left: $de-cmt-sub-container-padding-left;
2816
+ }
2817
+ .e-de-tc-outer {
2818
+ border-bottom: 1px solid #d8d8d8;
2819
+ }
2820
+ .e-de-tc-pane {
2821
+ color: $de-cmt-pant-content-font;
2822
+ }
2823
+ .e-de-trckchanges-inner {
2824
+ cursor: default;
2825
+ margin: $de-trckchanges-inner-mrgn;
2826
+ padding-left: 8px;
2827
+ padding-right: 16px;
2828
+ padding-bottom: 8px;
2829
+ }
2830
+ .e-de-trckchanges-inner:hover {
2831
+ border-left: 2px solid $de-cmt-selection;
2832
+ cursor: default;
2833
+ margin: $de-trckchanges-inner-mrgn;
2834
+ padding-left: 6px;
2835
+ padding-right: 16px;
2836
+ padding-bottom: 8px;
2837
+ }
2838
+ .e-de-trckchanges-inner.e-de-trckchanges-inner-select {
2839
+ border-left: 3px solid $de-cmt-selection;
2840
+ cursor: default;
2841
+ margin: $de-trckchanges-inner-mrgn;
2842
+ padding-left: 5px;
2843
+ padding-right: 16px;
2844
+ padding-bottom: 8px;
2845
+ }
2846
+ .e-de-tc-no-chng {
2847
+ color: $de-input-color;
2848
+ font-size: 14px;
2849
+ opacity: 65%;
2850
+ margin: 60px 0;
2851
+ text-align: center;
2852
+ }
2853
+ .e-tc-btn-bg-clr.e-btn:not(:hover):not(.e-active) {
2854
+ background-color: inherit;
2855
+ border-color: transparent;
2856
+ color: inherit;
2857
+ }
2858
+ .e-tc-nvgte.e-icon-btn {
2859
+ text-align: center;
2860
+ vertical-align: middle;
2861
+ }
2862
+ .e-de-track-span-user {
2863
+ display: inline-flex;
2864
+ overflow: hidden;
2865
+ width: 110px;
2866
+ }
2867
+ .e-de-track-span-view {
2868
+ display: inline-flex;
2869
+ overflow: hidden;
2870
+ width: 50px;
2871
+ }
2872
+ .e-btn.e-outline.e-de-track-accept-button {
2873
+ min-width: 66px;
2874
+ padding: 5px $de-tc-btn-padding;
2875
+ text-transform: initial;
2876
+ }
2877
+ .e-btn.e-outline.e-de-track-accept-button:hover {
2878
+ min-width: 66px;
2879
+ padding: 5px $de-tc-btn-padding;
2880
+ text-transform: initial;
2881
+ }
2882
+ .e-btn.e-outline.e-de-track-reject-button {
2883
+ min-width: 64px;
2884
+ padding: 5px 6px;
2885
+ margin-left: 8px;
2886
+ text-transform: initial;
2887
+ }
2888
+ .e-btn.e-outline.e-de-track-reject-button:hover {
2889
+ min-width: 64px;
2890
+ padding: 5px 6px;
2891
+ margin-left: 8px;
2892
+ text-transform: initial;
2893
+ }
2894
+ .e-de-track-chngs-count {
2895
+ font-size: 12px;
2896
+ margin-left: 6px;
2897
+ opacity: 0.87;
2898
+ padding-top: 7px;
2899
+ white-space: nowrap;
2900
+ }
2901
+ .e-de-track-insert {
2902
+ color: $de-track-chngs-sucs-bg-color;
2903
+ font-size: 13px;
2904
+ opacity: 100%;
2905
+ }
2906
+ .e-de-track-delete {
2907
+ color: $de-track-chngs-rejct-bg-color;
2908
+ font-size: 13px;
2909
+ opacity: 100%;
2910
+ }
2911
+ @if $skin-name !='tailwind' {
2912
+ .e-de-track-toolbar {
2913
+ border-bottom: 1px solid #d8d8d8;
2914
+ border-top: 1px solid #d8d8d8;
2915
+ padding-bottom: $de-tc-tlbr-padding-btm;
2916
+ }
2917
+ .e-de-track-pane-drop-btn {
2918
+ padding-left: 0px;
2919
+ padding-right: 0px;
2920
+ padding-top: 5px;
2921
+ font-size: 13px;
2922
+ font-weight: $de-header-font-weight;
2923
+ }
2924
+ }
2925
+ .e-toolbar-item.e-de-track-toolbar-overlay.e-template.e-overlay {
2926
+ opacity: 1;
2927
+ font-weight: $de-header-font-weight;
2928
+ font-size: $de-cmt-author-nme-fnt-size;
2929
+ }
2930
+ .e-de-track-date {
2931
+ font-size: $de-cmt-date-fnt-size;
2932
+ margin-top: 4px;
2933
+ opacity: 0.67;
2934
+ }
2935
+ .e-de-track-usernme-div {
2936
+ justify-content: space-between;
2937
+ padding-top: 8px;
2938
+ }
2939
+ .e-de-track-user-nme {
2940
+ font-size: $de-cmt-author-nme-fnt-size;
2941
+ font-weight: 500;
2942
+ padding-left: 8px;
2943
+ }
2944
+ .e-de-track-chngs-text {
2945
+ line-height: 19.5px;
2946
+ overflow: hidden;
2947
+ word-wrap: break-word;
2948
+ text-overflow: ellipsis;
2949
+ font-size: $de-cmt-author-nme-fnt-size;
2950
+ min-height: 20px;
2951
+ padding-top: 8px;
2952
+ margin-bottom: 16px;
2953
+ }
2954
+ .e-de-track-chng-table {
2955
+ border-collapse: collapse;
2956
+ border-spacing: 0px;
2957
+ opacity: 70%;
2958
+ width: 100%;
2959
+ }
2960
+ .e-de-tc-tble-cell {
2961
+ border: 1px solid;
2962
+ height: 20px;
2963
+ }
2964
+ .e-de-tc-shrink-img {
2965
+ height: 30px;
2966
+ margin: 0 4px;
2967
+ vertical-align: middle;
2968
+ width: 50px;
2969
+ }
2970
+ .e-de-tc-field {
2971
+ background-color: rgb(206, 205, 205);
2972
+ margin: 0 2px;
2973
+ }
2974
+ .e-de-tc-pmark {
2975
+ font-size: 14px;
2976
+ font-family: Roboto-Regular;
2977
+ font-weight: 600;
2978
+ color: rgb(1, 22, 119);
2979
+ margin: 0 2px;
2980
+ }
2981
+ .e-de-cmt-sub-container:not(.e-de-cmt-selection):not(.e-de-cmt-reply):hover {
2982
+ border-left: 2px solid $de-cmt-selection;
2983
+ padding-left: $de-cmt-sub-container-hover-padding-left;
2984
+ }
2985
+ .e-de-cmt-author {
2986
+ align-items: center;
2987
+ @if $skin-name == 'bootstrap5' {
2988
+ margin-bottom: 12px;
2989
+ }
2990
+ @else {
2991
+ margin-bottom: 8px;
2992
+ }
2993
+ }
2994
+ .e-de-cmt-author-name {
2995
+ font-size: $de-cmt-author-nme-fnt-size;
2996
+ font-weight: $de-header-font-weight;
2997
+ padding-left: $de-cmt-author-nme-padding-left;
2998
+ width: 90%;
2999
+ }
3000
+ .e-de-cp-option.e-btn.e-icon-btn {
3001
+ background-color: inherit;
3002
+ border: none;
3003
+ color: inherit;
3004
+ float: right;
3005
+ height: $de-cmt-opt-size;
3006
+ padding: 0px;
3007
+ width: $de-cmt-opt-size;
3008
+ @if $skin-name=='bootstrap4' {
3009
+ margin-top: -4px;
3010
+ }
3011
+ @if $skin-name=='bootstrap' {
3012
+ margin-top: -8px;
3013
+ }
3014
+ }
3015
+ .e-de-cp-option.e-btn.e-icon-btn span {
3016
+ margin-top: 0px;
3017
+ }
3018
+ .e-de-cmt-view:hover {
3019
+ .e-de-cp-option {
3020
+ display: block;
3021
+ }
3022
+ }
3023
+ .e-de-cmt-readonly {
3024
+ font-size: $de-cmt-author-nme-fnt-size;
3025
+ @if $skin-name != 'bootstrap5' {
3026
+ padding-top: 4px;
3027
+ }
3028
+ word-break: break-word;
3029
+ }
3030
+ .e-de-cmt-date {
3031
+ font-size: $de-cmt-date-fnt-size;
3032
+ margin-top: $de-cmt-date-mrgn-top;
3033
+ opacity: 0.67;
3034
+ }
3035
+ .e-de-cmt-sub-container.e-de-cmt-reply {
3036
+ border: none;
3037
+ border-top: 1px solid $de-cmt-separator;
3038
+ border-radius: 0px;
3039
+ margin: $de-rply-cmt-sub-container-margin;
3040
+ padding: 0px;
3041
+ .e-de-cmt-view {
3042
+ margin-top: $de-cmt-view-mrgn-top;
3043
+ }
3044
+ }
3045
+ .e-de-cmt-textarea.e-input {
3046
+ color: $de-cmt-pant-content-font;
3047
+ font-size: 13px;
3048
+ line-height: normal;
3049
+ min-height: 30px;
3050
+ overflow: hidden;
3051
+ padding-top: $e-de-cmt-textarea-padding-top;
3052
+ resize: none;
3053
+ }
3054
+ .e-bigger .e-de-cmt-textarea.e-input {
3055
+ padding-top: $e-de-cmt-textarea-padding-top-big;
3056
+ }
3057
+ .e-de-cmt-action-button {
3058
+ text-align: right;
3059
+ margin-top: $de-reply-footer-margin-top;
3060
+ }
3061
+ .e-de-cmt-post-btn.e-btn.e-flat,
3062
+ .e-de-cmt-cancel-btn.e-btn.e-flat {
3063
+ height: $de-cmt-post-btn-ht;
3064
+ margin-left: 8px;
3065
+ width: $de-cmt-post-btn-wt;
3066
+ @if $skin-name == 'tailwind' {
3067
+ padding-top: $de-cmt-cancel-btn-padding-top;
3068
+ padding-left: $de-cmt-cancel-btn-padding-left;
3069
+ }
3070
+ }
3071
+ .e-de-cmt-resolved {
3072
+ .e-de-cmt-author-name,
3073
+ .e-de-cmt-readonly,
3074
+ e-de-cmt-date {
3075
+ opacity: 0.67;
3076
+ }
3077
+ .e-de-cmt-rply-view {
3078
+ display: none;
3079
+ }
3080
+ .e-de-cmt-resolve-btn {
3081
+ display: block;
3082
+ margin-top: 8px;
3083
+ text-align: right;
3084
+ }
3085
+ }
3086
+ .e-de-cmt-sub-container.e-de-cmt-resolved.e-de-cmt-selection {
3087
+ border-left: 3px solid $de-cmt-selection-rslv;
3088
+ }
3089
+ .e-de-cmt-sub-container.e-de-cmt-resolved:not(.e-de-cmt-selection):not(.e-de-cmt-reply):hover {
3090
+ border-left: 2px solid $de-cmt-selection-rslv;
3091
+ }
3092
+ .e-de-lock-mark {
3093
+ cursor: default;
3094
+ color: $de-op-icon-color;
3095
+ font-size: 13px;
3096
+ height: 13px;
3097
+ pointer-events: all;
3098
+ width: 13px;
3099
+ }
3100
+ .e-de-cmt-mark {
3101
+ cursor: default;
3102
+ color: $de-op-icon-color;
3103
+ font-size: 13px;
3104
+ height: 13px;
3105
+ pointer-events: all;
3106
+ width: 13px;
3107
+ :hover {
3108
+ color: $de-cmt-selection;
3109
+ }
3110
+ }
3111
+ .e-de-cmt-mark.e-de-cmt-mark-selected,
3112
+ .e-de-cmt-mark.e-de-cmt-mark-hover {
3113
+ color: $de-cmt-selection;
3114
+ }
3115
+ .e-de-cmt-no-cmt {
3116
+ margin-left: 6px;
3117
+ margin-top: 24px;
3118
+ font-size: 13px;
3119
+ }
3120
+ .e-de-cmt-drawer-cnt {
3121
+ font-size: 13px;
3122
+ height: 20px;
3123
+ margin-top: 8px;
3124
+ }
3125
+ .e-de-cmt-drawer {
3126
+ cursor: pointer;
3127
+ float: right;
3128
+ opacity: 0.54;
3129
+ margin-right: 4px;
3130
+ margin-top: 4px;
3131
+ }
3132
+ .e-de-cmt-rply-view {
3133
+ margin-top: $de-cmt-textbox-top-margin;
3134
+ }
3135
+ .e-de-cmt-resolve-btn {
3136
+ display: none;
3137
+ }
3138
+ @if $skin-name=='bootstrap4' {
3139
+ textarea.e-de-cmt-textarea {
3140
+ height: 28px;
3141
+ }
3142
+ }
3143
+ .e-rtl {
3144
+ .e-de-cmt-pane {
3145
+ border-left: none;
3146
+ border-right: 1px solid $de-op-border-clr;
3147
+ }
3148
+ .e-de-rp-close-icon {
3149
+ float: left;
3150
+ right: $de-rp-close-icon-right-rtl;
3151
+ }
3152
+ .e-de-cp-option.e-btn.e-icon-btn {
3153
+ float: left;
3154
+ }
3155
+ .e-de-cmt-sub-container.e-de-cmt-selection {
3156
+ border-left: 1px solid $de-cmt-separator;
3157
+ border-right: 3px solid $de-cmt-selection;
3158
+ padding-left: $de-cmt-sub-container-padding;
3159
+ padding-right: $de-cmt-sub-container-padding-left;
3160
+ }
3161
+ .e-de-cmt-sub-container:not(.e-de-cmt-selection):not(.e-de-cmt-reply):hover {
3162
+ border-left: 1px solid $de-cmt-separator;
3163
+ border-right: 2px solid $de-cmt-selection;
3164
+ padding-left: $de-cmt-sub-container-padding;
3165
+ padding-right: $de-cmt-sub-container-hover-padding-left;
3166
+ }
3167
+ .e-de-cmt-sub-container.e-de-cmt-resolved.e-de-cmt-selection {
3168
+ border-right: 3px solid $de-cmt-selection-rslv;
3169
+ }
3170
+ .e-de-cmt-sub-container.e-de-cmt-resolved:not(.e-de-cmt-selection):not(.e-de-cmt-reply):hover {
3171
+ border-right: 2px solid $de-cmt-selection-rslv;
3172
+ }
3173
+ .e-de-cmt-action-button {
3174
+ text-align: left;
3175
+ }
3176
+ .e-de-cmt-no-cmt {
3177
+ margin-left: auto;
3178
+ margin-right: 6px;
3179
+ }
3180
+ .e-de-cmt-drawer {
3181
+ float: left;
3182
+ margin-left: 8px;
3183
+ margin-right: auto;
3184
+ }
3185
+ .e-de-cmt-resolve-btn {
3186
+ text-align: left;
3187
+ }
3188
+ }
3189
+ .e-bigger {
3190
+ .e-de-cmt-post-btn.e-btn.e-flat,
3191
+ .e-de-cmt-cancel-btn.e-btn.e-flat {
3192
+ height: $de-cmt-post-btn-ht-big;
3193
+ margin-left: 12px;
3194
+ width: $de-cmt-post-btn-wt-big;
3195
+ @if $skin-name == 'tailwind' {
3196
+ padding-top: $de-cmt-cancel-btn-padding-top-big;
3197
+ padding-left: $de-cmt-cancel-btn-padding-left-big;
3198
+ }
3199
+ }
3200
+ .e-de-cp-whole-header {
3201
+ height: 56px;
3202
+ padding: 16px;
3203
+ padding-right: 8px;
3204
+ }
3205
+ .e-de-rp-close-icon {
3206
+ float: right;
3207
+ position: relative;
3208
+ top: $de-rp-close-icon-top-bigger;
3209
+ right: $de-rp-close-icon-right-bigger;
3210
+ }
3211
+ .e-rtl {
3212
+ .e-de-cmt-post-btn.e-btn.e-flat,
3213
+ .e-de-cmt-cancel-btn.e-btn.e-flat {
3214
+ margin-right: 12px;
3215
+ @if $skin-name == 'tailwind' {
3216
+ padding-bottom: $de-cmt-cancel-btn-padding-top-big;
3217
+ padding-right: $de-cmt-cancel-btn-padding-left-big;
3218
+ }
3219
+ }
3220
+ }
3221
+ }
3222
+ .e-de-close-icon.e-btn {
3223
+ background-color: $dialog-btn-bg-color !important;
3224
+ border-color: $dialog-btn-border-color !important;
3225
+ border-radius: $dialog-headericon-border-radius;
3226
+ color: $dialog-btn-clr;
3227
+ //height: 26px;
3228
+ //width: 26px;
3229
+ border: none;
3230
+ #{if(&, '&', '*')}:active {
3231
+ background-color: $dialog-closeicon-btn-active-color !important;
3232
+ border-color: $dialog-btn-border-color !important;
3233
+ box-shadow: none;
3234
+ }
3235
+ #{if(&, '&', '*')}:hover {
3236
+ background-color: $dialog-closeicon-btn-hover-color !important;
3237
+ box-shadow: none;
3238
+ color: $dialog-active-icon-color;
3239
+ cursor: $e-de-close-icon-cursor;
3240
+ border: none;
3241
+ }
3242
+ }
3243
+ .e-btn.e-de-close-icon:hover span {
3244
+ cursor: pointer;
3245
+ color: $dialog-active-icon-color;
3246
+ }
3247
+ // Blazor
3248
+ .e-de-para-dlg-right-sub-container-blazor {
3249
+ top: $de-para-dlg-right-sub-container-top-margin;
3250
+ }
3251
+ .e-de-rp-mu-btn {
3252
+ margin-top: 3px;
3253
+ }
3254
+ .e-de-table-dialog-row-height {
3255
+ padding-top: $de-table-row-height-padding;
3256
+ }
3257
+ .e-de-tablecell-dialog-alignment-icon {
3258
+ width: $de-table-alignment-icon-width;
3259
+ height: $de-table-alignment-icon-height;
3260
+ margin: $de-table-alignment-icon-margin;
3261
+ }
3262
+ .e-de-table-dia-indent-from-left {
3263
+ right: 45px;
3264
+ }
3265
+ .e-de-table-dia-align-div {
3266
+ border: $de-table-align-border-width solid $de-table-align-border-color;
3267
+ display: inline-block;
3268
+ height: $de-table-dia-align-height;
3269
+ margin-right: $de-table-align-margin-right;
3270
+ width: $de-table-dia-align-width;
3271
+ }
3272
+ .e-de-table-dialog-alignment-icon {
3273
+ margin: $de-table-alignment-icon-margin;
3274
+ height: $de-table-dia-align-icon-height;
3275
+ }
3276
+ .e-de-table-border-setting-genral {
3277
+ margin-right: $de-table-align-margin-right;
3278
+ }
3279
+ .e-de-table-border-clr-left-container {
3280
+ padding-right: $de-border-dlg-clr-padding-right;
3281
+ }
3282
+ .e-de-table-border-clr-heading {
3283
+ font-size: $de-border-dlg-setting-label-fontsize;
3284
+ font-weight: $de-border-dlg-border-label-fontweight;
3285
+ padding-bottom: $de-border-dlg-clr-padding-bottom;
3286
+ }
3287
+ .e-de-table-border-icon-container {
3288
+ margin-top: 4px;
3289
+ margin-right: 4px;
3290
+ }
3291
+ .e-de-table-border-preview-container {
3292
+ padding-left: $de-border-dlg-preview-padding-left;
3293
+ }
3294
+ .e-de-table-dlg-alignment-heading {
3295
+ color: $de-dlg-heading-main-header;
3296
+ display: block;
3297
+ font-size: $de-para-dlg-heading-font-size;
3298
+ font-weight: $de-par-dlg-hdr-weight;
3299
+ margin-bottom: $de-tbl-dlg-align-padding-bottom;
3300
+ @if $skin-name == 'tailwind' {
3301
+ line-height: 22px;
3302
+ }
3303
+ }
3304
+
3305
+ .e-rtl{
3306
+ .e-de-cmt-author-name {
3307
+ padding-left: 0%;
3308
+ padding-right: $de-cmt-author-nme-padding-left;
3309
+ }
3310
+ .e-de-cmt-post-btn.e-btn.e-flat,
3311
+ .e-de-cmt-cancel-btn.e-btn.e-flat{
3312
+ @if $skin-name == 'tailwind' {
3313
+ padding-bottom: $de-cmt-cancel-btn-padding-top;
3314
+ padding-right: $de-cmt-cancel-btn-padding-left;
3315
+ }
3316
+ }
3317
+ .e-de-ok-button {
3318
+ margin-right: 0;
3319
+ margin-left: $de-ok-insert-button-margin-right;
3320
+ }
3321
+ .e-de-table-dia-align-div.e-de-rtl {
3322
+ margin-left: $de-table-align-margin-right;
3323
+ margin-right: 0;
3324
+ }
3325
+ .e-de-table-border-clr-left-container {
3326
+ padding-right: 0;
3327
+ padding-left: $de-border-dlg-clr-padding-right;
3328
+ }
3329
+ .e-de-table-border-preview-container {
3330
+ padding-right: $de-border-dlg-preview-padding-left;
3331
+ padding-left: 0;
3332
+ }
3333
+ .e-de-table-border-setting-genral {
3334
+ margin-right: 0;
3335
+ margin-left: $de-table-align-margin-right;
3336
+ }
3337
+ .e-de-table-border-icon-container {
3338
+ margin-right: 0;
3339
+ margin-left: 4px;
3340
+ }
3341
+ .e-de-table-border-preview {
3342
+ width: 23px;
3343
+ }
3344
+ .e-de-table-setting-labels-heading {
3345
+ margin-left: 0;
3346
+ margin-right: $de-table-alignment-label-margin-left;
3347
+ }
3348
+ }
3349
+ .e-bigger {
3350
+ .e-de-cmt-author-name {
3351
+ padding-left: $de-cmt-author-nme-padding-left-big ;
3352
+ }
3353
+ .e-de-cmt-rply-view{
3354
+ margin-top: $de-cmt-textbox-top-margin-big;
3355
+ }
3356
+ .e-de-cmt-sub-container{
3357
+ padding: $de-cmt-sub-container-padding-big;
3358
+ }
3359
+ .e-de-cmt-sub-container.e-de-cmt-selection {
3360
+ padding-left: $de-cmt-sub-container-padding-left-big;
3361
+ }
3362
+ .e-de-cmt-sub-container:not(.e-de-cmt-selection):not(.e-de-cmt-reply):hover{
3363
+ padding-left: $de-cmt-sub-container-hover-padding-left-big;
3364
+ }
3365
+ .e-de-cmt-sub-container.e-de-cmt-reply{
3366
+ padding: 0%;
3367
+ }
3368
+ .e-de-rp-nav-btn {
3369
+ width: auto;
3370
+ }
3371
+ .e-de-rp-whole-header {
3372
+ padding: $de-rp-whole-header-padding-big;
3373
+ }
3374
+ .e-de-rp-sub-div {
3375
+ border-bottom: 1px solid $de-list-view;
3376
+ padding: $de-rp-sub-div-padding-big;
3377
+ }
3378
+ .e-de-rp-enforce {
3379
+ padding: $de-rp-enforce-padding-big;
3380
+ }
3381
+ .e-de-enforce .e-de-enforce-dlg-input:not(.e-de-enforce .e-de-enforce-dlg-input:last-child) {
3382
+ width: 300px;
3383
+ }
3384
+
3385
+ .e-rtl{
3386
+ .e-de-cmt-author-name {
3387
+ padding-left: 0%;
3388
+ padding-right: $de-cmt-author-nme-padding-left-big;
3389
+ }
3390
+ .e-de-cmt-sub-container.e-de-cmt-selection {
3391
+ padding-left: $de-cmt-sub-container-padding-big;
3392
+ padding-right: $de-cmt-sub-container-padding-left-big;
3393
+ }
3394
+ .e-de-cmt-sub-container:not(.e-de-cmt-selection):not(.e-de-cmt-reply):hover {
3395
+ padding-left: $de-cmt-sub-container-padding-big;
3396
+ padding-right: $de-cmt-sub-container-hover-padding-left-big;
3397
+ }
3398
+ .e-de-rp-close-icon {
3399
+ float: left;
3400
+ right: $de-rp-close-icon-right-bigger-rtl;
3401
+ }
3402
+ }
3403
+ }
3404
+ }