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

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