@syncfusion/ej2-angular-pivotview 20.2.38-ngcc → 20.2.38

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (210) hide show
  1. package/esm2020/public_api.mjs +3 -0
  2. package/esm2020/src/index.mjs +8 -0
  3. package/esm2020/src/pivotfieldlist/pivotfieldlist-all.module.mjs +23 -0
  4. package/esm2020/src/pivotfieldlist/pivotfieldlist.component.mjs +66 -0
  5. package/esm2020/src/pivotfieldlist/pivotfieldlist.module.mjs +25 -0
  6. package/esm2020/src/pivotview/pivotview-all.module.mjs +62 -0
  7. package/esm2020/src/pivotview/pivotview.component.mjs +150 -0
  8. package/esm2020/src/pivotview/pivotview.module.mjs +25 -0
  9. package/esm2020/syncfusion-ej2-angular-pivotview.mjs +5 -0
  10. package/fesm2015/syncfusion-ej2-angular-pivotview.mjs +337 -0
  11. package/fesm2015/syncfusion-ej2-angular-pivotview.mjs.map +1 -0
  12. package/fesm2020/syncfusion-ej2-angular-pivotview.mjs +337 -0
  13. package/fesm2020/syncfusion-ej2-angular-pivotview.mjs.map +1 -0
  14. package/package.json +27 -13
  15. package/schematics/utils/lib-details.ts +2 -2
  16. package/src/pivotfieldlist/pivotfieldlist-all.module.d.ts +6 -0
  17. package/src/pivotfieldlist/pivotfieldlist.component.d.ts +3 -0
  18. package/src/pivotfieldlist/pivotfieldlist.module.d.ts +6 -0
  19. package/src/pivotview/pivotview-all.module.d.ts +6 -0
  20. package/src/pivotview/pivotview.component.d.ts +3 -0
  21. package/src/pivotview/pivotview.module.d.ts +6 -0
  22. package/styles/bootstrap-dark.css +212 -1
  23. package/styles/bootstrap.css +212 -1
  24. package/styles/bootstrap4.css +208 -2
  25. package/styles/bootstrap5-dark.css +214 -1
  26. package/styles/bootstrap5.css +214 -1
  27. package/styles/fabric-dark.css +212 -1
  28. package/styles/fabric.css +212 -1
  29. package/styles/fluent-dark.css +214 -1
  30. package/styles/fluent.css +214 -1
  31. package/styles/highcontrast-light.css +212 -1
  32. package/styles/highcontrast.css +212 -1
  33. package/styles/material-dark.css +212 -1
  34. package/styles/material.css +212 -1
  35. package/styles/pivotfieldlist/_all.scss +2 -0
  36. package/styles/pivotfieldlist/_bootstrap-dark-definition.scss +233 -0
  37. package/styles/pivotfieldlist/_bootstrap-definition.scss +186 -0
  38. package/styles/pivotfieldlist/_bootstrap4-definition.scss +186 -0
  39. package/styles/pivotfieldlist/_bootstrap5-dark-definition.scss +1 -0
  40. package/styles/pivotfieldlist/_bootstrap5-definition.scss +190 -0
  41. package/styles/pivotfieldlist/_fabric-dark-definition.scss +192 -0
  42. package/styles/pivotfieldlist/_fabric-definition.scss +186 -0
  43. package/styles/pivotfieldlist/_fluent-dark-definition.scss +1 -0
  44. package/styles/pivotfieldlist/_fluent-definition.scss +191 -0
  45. package/styles/pivotfieldlist/_fusionnew-definition.scss +189 -0
  46. package/styles/pivotfieldlist/_highcontrast-definition.scss +187 -0
  47. package/styles/pivotfieldlist/_highcontrast-light-definition.scss +187 -0
  48. package/styles/pivotfieldlist/_layout.scss +1852 -0
  49. package/styles/pivotfieldlist/_material-dark-definition.scss +187 -0
  50. package/styles/pivotfieldlist/_material-definition.scss +187 -0
  51. package/styles/pivotfieldlist/_material3-definition.scss +190 -0
  52. package/styles/pivotfieldlist/_tailwind-dark-definition.scss +1 -0
  53. package/styles/pivotfieldlist/_tailwind-definition.scss +190 -0
  54. package/styles/pivotfieldlist/_theme.scss +1862 -0
  55. package/styles/pivotfieldlist/bootstrap-dark.css +130 -1
  56. package/styles/pivotfieldlist/bootstrap-dark.scss +4 -1
  57. package/styles/pivotfieldlist/bootstrap.css +130 -1
  58. package/styles/pivotfieldlist/bootstrap.scss +4 -1
  59. package/styles/pivotfieldlist/bootstrap4.css +125 -1
  60. package/styles/pivotfieldlist/bootstrap4.scss +4 -1
  61. package/styles/pivotfieldlist/bootstrap5-dark.css +134 -1
  62. package/styles/pivotfieldlist/bootstrap5-dark.scss +4 -1
  63. package/styles/pivotfieldlist/bootstrap5.css +134 -1
  64. package/styles/pivotfieldlist/bootstrap5.scss +4 -1
  65. package/styles/pivotfieldlist/fabric-dark.css +130 -1
  66. package/styles/pivotfieldlist/fabric-dark.scss +4 -1
  67. package/styles/pivotfieldlist/fabric.css +130 -1
  68. package/styles/pivotfieldlist/fabric.scss +4 -1
  69. package/styles/pivotfieldlist/fluent-dark.css +132 -1
  70. package/styles/pivotfieldlist/fluent-dark.scss +4 -1
  71. package/styles/pivotfieldlist/fluent.css +132 -1
  72. package/styles/pivotfieldlist/fluent.scss +4 -1
  73. package/styles/pivotfieldlist/highcontrast-light.css +130 -1
  74. package/styles/pivotfieldlist/highcontrast-light.scss +4 -1
  75. package/styles/pivotfieldlist/highcontrast.css +130 -1
  76. package/styles/pivotfieldlist/highcontrast.scss +4 -1
  77. package/styles/pivotfieldlist/icons/_bootstrap-dark.scss +358 -0
  78. package/styles/pivotfieldlist/icons/_bootstrap.scss +359 -0
  79. package/styles/pivotfieldlist/icons/_bootstrap4.scss +359 -0
  80. package/styles/pivotfieldlist/icons/_bootstrap5-dark.scss +1 -0
  81. package/styles/pivotfieldlist/icons/_bootstrap5.scss +357 -0
  82. package/styles/pivotfieldlist/icons/_fabric-dark.scss +358 -0
  83. package/styles/pivotfieldlist/icons/_fabric.scss +358 -0
  84. package/styles/pivotfieldlist/icons/_fluent-dark.scss +1 -0
  85. package/styles/pivotfieldlist/icons/_fluent.scss +357 -0
  86. package/styles/pivotfieldlist/icons/_fusionnew.scss +352 -0
  87. package/styles/pivotfieldlist/icons/_highcontrast-light.scss +357 -0
  88. package/styles/pivotfieldlist/icons/_highcontrast.scss +357 -0
  89. package/styles/pivotfieldlist/icons/_material-dark.scss +358 -0
  90. package/styles/pivotfieldlist/icons/_material.scss +357 -0
  91. package/styles/pivotfieldlist/icons/_material3.scss +352 -0
  92. package/styles/pivotfieldlist/icons/_tailwind-dark.scss +356 -0
  93. package/styles/pivotfieldlist/icons/_tailwind.scss +356 -0
  94. package/styles/pivotfieldlist/material-dark.css +130 -1
  95. package/styles/pivotfieldlist/material-dark.scss +4 -1
  96. package/styles/pivotfieldlist/material.css +130 -1
  97. package/styles/pivotfieldlist/material.scss +4 -1
  98. package/styles/pivotfieldlist/tailwind-dark.css +132 -1
  99. package/styles/pivotfieldlist/tailwind-dark.scss +4 -1
  100. package/styles/pivotfieldlist/tailwind.css +132 -1
  101. package/styles/pivotfieldlist/tailwind.scss +4 -1
  102. package/styles/pivotview/_all.scss +2 -0
  103. package/styles/pivotview/_bootstrap-dark-definition.scss +131 -0
  104. package/styles/pivotview/_bootstrap-definition.scss +128 -0
  105. package/styles/pivotview/_bootstrap4-definition.scss +128 -0
  106. package/styles/pivotview/_bootstrap5-dark-definition.scss +1 -0
  107. package/styles/pivotview/_bootstrap5-definition.scss +131 -0
  108. package/styles/pivotview/_fabric-dark-definition.scss +130 -0
  109. package/styles/pivotview/_fabric-definition.scss +127 -0
  110. package/styles/pivotview/_fluent-dark-definition.scss +1 -0
  111. package/styles/pivotview/_fluent-definition.scss +131 -0
  112. package/styles/pivotview/_fusionnew-definition.scss +131 -0
  113. package/styles/pivotview/_highcontrast-definition.scss +126 -0
  114. package/styles/pivotview/_highcontrast-light-definition.scss +127 -0
  115. package/styles/pivotview/_layout.scss +1073 -0
  116. package/styles/pivotview/_material-dark-definition.scss +132 -0
  117. package/styles/pivotview/_material-definition.scss +128 -0
  118. package/styles/pivotview/_material3-definition.scss +131 -0
  119. package/styles/pivotview/_tailwind-dark-definition.scss +1 -0
  120. package/styles/pivotview/_tailwind-definition.scss +130 -0
  121. package/styles/pivotview/_theme.scss +1583 -0
  122. package/styles/pivotview/bootstrap-dark.css +82 -0
  123. package/styles/pivotview/bootstrap-dark.scss +5 -1
  124. package/styles/pivotview/bootstrap.css +82 -0
  125. package/styles/pivotview/bootstrap.scss +5 -1
  126. package/styles/pivotview/bootstrap4.css +83 -1
  127. package/styles/pivotview/bootstrap4.scss +5 -1
  128. package/styles/pivotview/bootstrap5-dark.css +80 -0
  129. package/styles/pivotview/bootstrap5-dark.scss +4 -1
  130. package/styles/pivotview/bootstrap5.css +80 -0
  131. package/styles/pivotview/bootstrap5.scss +5 -1
  132. package/styles/pivotview/fabric-dark.css +82 -0
  133. package/styles/pivotview/fabric-dark.scss +5 -1
  134. package/styles/pivotview/fabric.css +82 -0
  135. package/styles/pivotview/fabric.scss +5 -1
  136. package/styles/pivotview/fluent-dark.css +82 -0
  137. package/styles/pivotview/fluent-dark.scss +4 -1
  138. package/styles/pivotview/fluent.css +82 -0
  139. package/styles/pivotview/fluent.scss +5 -1
  140. package/styles/pivotview/highcontrast-light.css +82 -0
  141. package/styles/pivotview/highcontrast-light.scss +5 -1
  142. package/styles/pivotview/highcontrast.css +82 -0
  143. package/styles/pivotview/highcontrast.scss +5 -1
  144. package/styles/pivotview/icons/_bootstrap-dark.scss +184 -0
  145. package/styles/pivotview/icons/_bootstrap.scss +184 -0
  146. package/styles/pivotview/icons/_bootstrap4.scss +184 -0
  147. package/styles/pivotview/icons/_bootstrap5-dark.scss +1 -0
  148. package/styles/pivotview/icons/_bootstrap5.scss +183 -0
  149. package/styles/pivotview/icons/_fabric-dark.scss +184 -0
  150. package/styles/pivotview/icons/_fabric.scss +184 -0
  151. package/styles/pivotview/icons/_fluent-dark.scss +1 -0
  152. package/styles/pivotview/icons/_fluent.scss +183 -0
  153. package/styles/pivotview/icons/_fusionnew.scss +183 -0
  154. package/styles/pivotview/icons/_highcontrast-light.scss +183 -0
  155. package/styles/pivotview/icons/_highcontrast.scss +183 -0
  156. package/styles/pivotview/icons/_material-dark.scss +184 -0
  157. package/styles/pivotview/icons/_material.scss +184 -0
  158. package/styles/pivotview/icons/_material3.scss +183 -0
  159. package/styles/pivotview/icons/_tailwind-dark.scss +183 -0
  160. package/styles/pivotview/icons/_tailwind.scss +183 -0
  161. package/styles/pivotview/material-dark.css +82 -0
  162. package/styles/pivotview/material-dark.scss +5 -1
  163. package/styles/pivotview/material.css +82 -0
  164. package/styles/pivotview/material.scss +5 -1
  165. package/styles/pivotview/tailwind-dark.css +80 -0
  166. package/styles/pivotview/tailwind-dark.scss +4 -1
  167. package/styles/pivotview/tailwind.css +80 -0
  168. package/styles/pivotview/tailwind.scss +5 -1
  169. package/styles/tailwind-dark.css +212 -1
  170. package/styles/tailwind.css +212 -1
  171. package/syncfusion-ej2-angular-pivotview.d.ts +5 -0
  172. package/@syncfusion/ej2-angular-pivotview.es5.js +0 -425
  173. package/@syncfusion/ej2-angular-pivotview.es5.js.map +0 -1
  174. package/@syncfusion/ej2-angular-pivotview.js +0 -395
  175. package/@syncfusion/ej2-angular-pivotview.js.map +0 -1
  176. package/CHANGELOG.md +0 -674
  177. package/dist/ej2-angular-pivotview.umd.js +0 -666
  178. package/dist/ej2-angular-pivotview.umd.js.map +0 -1
  179. package/dist/ej2-angular-pivotview.umd.min.js +0 -11
  180. package/dist/ej2-angular-pivotview.umd.min.js.map +0 -1
  181. package/ej2-angular-pivotview.d.ts +0 -6
  182. package/ej2-angular-pivotview.metadata.json +0 -1
  183. package/postinstall/tagchange.js +0 -18
  184. package/schematics/collection.json +0 -20
  185. package/schematics/generators/pivotview-default/index.d.ts +0 -3
  186. package/schematics/generators/pivotview-default/index.js +0 -8
  187. package/schematics/generators/pivotview-default/sample-details.d.ts +0 -5
  188. package/schematics/generators/pivotview-default/sample-details.js +0 -7
  189. package/schematics/generators/pivotview-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -4
  190. package/schematics/generators/pivotview-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -4
  191. package/schematics/generators/pivotview-default/schema.d.ts +0 -3
  192. package/schematics/generators/pivotview-default/schema.js +0 -2
  193. package/schematics/generators/pivotview-default/schema.json +0 -125
  194. package/schematics/generators/pivotview-fieldlist/index.d.ts +0 -3
  195. package/schematics/generators/pivotview-fieldlist/index.js +0 -8
  196. package/schematics/generators/pivotview-fieldlist/sample-details.d.ts +0 -5
  197. package/schematics/generators/pivotview-fieldlist/sample-details.js +0 -7
  198. package/schematics/generators/pivotview-fieldlist/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -4
  199. package/schematics/generators/pivotview-fieldlist/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -4
  200. package/schematics/generators/pivotview-fieldlist/schema.d.ts +0 -3
  201. package/schematics/generators/pivotview-fieldlist/schema.js +0 -2
  202. package/schematics/generators/pivotview-fieldlist/schema.json +0 -125
  203. package/schematics/ng-add/index.d.ts +0 -3
  204. package/schematics/ng-add/index.js +0 -9
  205. package/schematics/ng-add/schema.d.ts +0 -13
  206. package/schematics/ng-add/schema.js +0 -2
  207. package/schematics/ng-add/schema.json +0 -34
  208. package/schematics/tsconfig.json +0 -25
  209. package/schematics/utils/lib-details.d.ts +0 -4
  210. package/schematics/utils/lib-details.js +0 -6
@@ -0,0 +1,1852 @@
1
+ @include export-module('field-list-layout') {
2
+
3
+ /*! field-list theme */
4
+
5
+ .e-pivotfieldlist {
6
+ .e-disable {
7
+ display: none;
8
+ }
9
+
10
+ .e-hide {
11
+ visibility: hidden;
12
+ }
13
+ }
14
+
15
+ .e-pivot-formatting-dialog {
16
+ /* stylelint-disable */
17
+ max-height: 480px !important;
18
+ width: $format-dialog-width !important;
19
+ /* stylelint-enable */
20
+ .e-format-table tr:nth-child(odd) {
21
+ td {
22
+ padding-bottom: 4px;
23
+ }
24
+ }
25
+
26
+ .e-format-delete-icon {
27
+ font-weight: normal;
28
+ @if ($field-list-skin == 'bootstrap4') {
29
+ /* stylelint-disable */
30
+ color: $black;
31
+ /* stylelint-enable */
32
+ opacity: .5;
33
+ }
34
+
35
+ &:hover {
36
+ font-weight: 600;
37
+ @if ($field-list-skin == 'bootstrap4') {
38
+ opacity: 1;
39
+ }
40
+ }
41
+ }
42
+
43
+ .e-format-table tr:nth-child(even) {
44
+ td {
45
+ padding-bottom: 14px;
46
+ padding-right: 18px;
47
+ white-space: nowrap;
48
+
49
+ @if ($skin-name == 'bootstrap5') {
50
+ padding-right: 8px;
51
+ }
52
+
53
+ }
54
+ }
55
+
56
+ .e-format-value-span {
57
+ vertical-align: bottom;
58
+ }
59
+
60
+ .e-format-value1,
61
+ .e-format-value2,
62
+ .e-format-value-span {
63
+ margin-right: 10px;
64
+ }
65
+
66
+ .e-format-font-color-picker {
67
+ margin-left: 0;
68
+ margin-right: 16px;
69
+ }
70
+
71
+ .e-format-inner-div {
72
+ padding-left: 14px;
73
+ padding-top: 14px;
74
+ width: 579px;
75
+ }
76
+
77
+ .e-format-outer-div {
78
+ background-color: $format-outer-fill-color;
79
+ border: 1px solid $format-outer-border-color;
80
+ border-radius: $format-outer-border-radius;
81
+ margin-bottom: 14px;
82
+ }
83
+
84
+ .e-format-condition-button {
85
+ float: left;
86
+ }
87
+
88
+ .e-split-colorpicker {
89
+ @if ($field-list-skin == 'bootstrap4') {
90
+ /* stylelint-disable */
91
+ background-color: $format-label-font-color !important;
92
+ color: $field-list-default-bg-color !important;
93
+ /* stylelint-enable */
94
+ }
95
+ }
96
+
97
+ .e-format-delete-button {
98
+ background-color: transparent;
99
+ border-color: transparent;
100
+ float: right;
101
+ padding-right: 12px;
102
+ padding-top: 12px;
103
+
104
+ @if($skin-name == 'bootstrap5') {
105
+ /* stylelint-disable */
106
+ color: $field-list-default-font-color !important;
107
+ /* stylelint-enable */
108
+ }
109
+
110
+ }
111
+
112
+
113
+
114
+ .e-format-delete-button:hover,
115
+ .e-format-delete-button:focus,
116
+ .e-format-delete-button:active {
117
+ background-color: transparent;
118
+ border-color: transparent;
119
+ box-shadow: 0 0 0 transparent;
120
+
121
+ .e-format-delete-icon {
122
+ font-weight: 600;
123
+ @if ($field-list-skin == 'bootstrap4') {
124
+ opacity: 1;
125
+ }
126
+ }
127
+ }
128
+
129
+ .e-format-delete-icon {
130
+ font-size: 10px;
131
+ }
132
+
133
+ .e-format-label,
134
+ .e-format-value-label {
135
+ color: $format-label-font-color;
136
+ font-size: $format-label-font-size;
137
+ font-weight: $format-label-font-weight;
138
+ opacity: $format-label-font-opacity;
139
+ }
140
+
141
+ .e-format-value-preview {
142
+ border: 1px solid $format-preview-border-color;
143
+ border-radius: $field-list-default-border-radius;
144
+ height: $format-preview-height;
145
+ /* stylelint-disable */
146
+ margin: 0 !important;
147
+ /* stylelint-enable */
148
+ padding-left: 6px;
149
+ padding-top: 6px;
150
+ width: $format-preview-width;
151
+ }
152
+
153
+ .e-format-color-picker .e-split-btn-wrapper .e-split-btn .e-selected-color {
154
+ background: none;
155
+ margin: 0 2px;
156
+ width: 14px;
157
+ @if ($skin-name == 'bootstrap5') {
158
+ /* stylelint-disable */
159
+ color: $field-list-default-font-color !important;
160
+ &:hover {
161
+ color: $field-list-active-color !important;
162
+ }
163
+ /* stylelint-enable */
164
+ }
165
+ }
166
+
167
+ .e-format-color-picker {
168
+ .e-split-btn-wrapper .e-split-btn {
169
+ pointer-events: none;
170
+
171
+ .e-selected-color {
172
+ background: none;
173
+ margin: 0 2px;
174
+ width: 14px;
175
+ }
176
+ }
177
+ }
178
+
179
+ .e-format-color-picker .e-split-btn-wrapper .e-btn.e-icon-btn {
180
+ @if ($field-list-skin == 'bootstrap4') {
181
+ padding: 4px 5px;
182
+ }
183
+ }
184
+
185
+ .e-split-preview,
186
+ .e-tip-transparent {
187
+ border: 1px solid $format-preview-border-color;
188
+ /* stylelint-disable */
189
+ border-radius: 0 !important;
190
+ /* stylelint-enable */
191
+ height: 40%;
192
+ left: -3px;
193
+ position: absolute;
194
+ top: 16px;
195
+ width: 150%;
196
+ }
197
+
198
+ &.e-device {
199
+ /* stylelint-disable */
200
+ min-width: 320px !important;
201
+ width: 100% !important;
202
+ .e-format-inner-div {
203
+ width: 100% !important;
204
+ }
205
+ /* stylelint-enable */
206
+
207
+ .e-format-value1,
208
+ .e-format-value2,
209
+ .e-format-value-span {
210
+ margin-right: 2px;
211
+ }
212
+
213
+ .e-format-color-picker {
214
+ width: 33%;
215
+ }
216
+
217
+ .e-format-delete-button {
218
+ font-size: 12px;
219
+ padding-right: 16px;
220
+ padding-top: 16px;
221
+ }
222
+
223
+ .e-format-apply-button,
224
+ .e-format-cancel-button {
225
+ max-width: 40%;
226
+ overflow: hidden;
227
+ text-overflow: ellipsis;
228
+ white-space: nowrap;
229
+ }
230
+
231
+ .e-format-font-color-picker {
232
+ @if ($skin-name == 'tailwind') {
233
+ margin-right: 30px;
234
+ }
235
+
236
+ }
237
+ }
238
+
239
+ &.e-rtl {
240
+ .e-format-font-color-picker {
241
+ margin-left: 16px;
242
+ margin-right: 0;
243
+ }
244
+
245
+ .e-format-condition-button {
246
+ float: right;
247
+
248
+ .e-add-icon {
249
+ margin-left: auto;
250
+ }
251
+ }
252
+
253
+ .e-format-inner-div {
254
+ padding-left: 0;
255
+ padding-right: 14px;
256
+ }
257
+
258
+ .e-format-delete-button {
259
+ float: left;
260
+ padding-left: 12px;
261
+ }
262
+
263
+ &.e-device {
264
+ .e-format-font-color-picker {
265
+ margin-right: 0;
266
+ }
267
+ }
268
+ }
269
+ }
270
+
271
+ .e-bigger.e-pivot-formatting-dialog,
272
+ .e-bigger .e-pivot-formatting-dialog {
273
+ /* stylelint-disable */
274
+ width: $format-dialog-bigger-width !important;
275
+ /* stylelint-enable */
276
+
277
+ .e-format-label,
278
+ .e-format-value-label {
279
+ font-size: $format-label-bigger-font-size;
280
+ }
281
+
282
+ /* stylelint-disable */
283
+ .e-format-value1, .e-format-value2 {
284
+ margin-bottom: 3px !important;
285
+ }
286
+ /* stylelint-enable */
287
+
288
+ .e-format-inner-div {
289
+ padding-left: 16px;
290
+ padding-top: 16px;
291
+ width: 656px;
292
+ }
293
+
294
+ .e-format-outer-div {
295
+ margin-bottom: 16px;
296
+ }
297
+
298
+ .e-format-table tr:nth-child(odd) td {
299
+ padding-bottom: 12px;
300
+ }
301
+
302
+ .e-format-table tr:nth-child(even) td {
303
+ padding-bottom: 16px;
304
+ padding-right: 20px;
305
+
306
+ @if ($skin-name == 'bootstrap5') {
307
+ padding-right: 12px;
308
+ }
309
+
310
+ }
311
+
312
+ .e-format-font-color-picker {
313
+ margin-left: 0;
314
+ margin-right: 20px;
315
+
316
+ }
317
+
318
+ .e-format-color-picker .e-split-btn-wrapper .e-btn.e-icon-btn {
319
+ @if ($field-list-skin == 'bootstrap4') {
320
+ padding: 4px 8px;
321
+ }
322
+ }
323
+
324
+ &.e-device {
325
+ /* stylelint-disable */
326
+ min-width: 320px !important;
327
+ width: 100% !important;
328
+ /* stylelint-enable */
329
+
330
+ .e-format-color-picker {
331
+ width: 33%;
332
+ }
333
+
334
+ .e-format-delete-button {
335
+ font-size: 12px;
336
+ padding-right: 16px;
337
+ padding-top: 16px;
338
+ }
339
+ }
340
+
341
+ &.e-rtl {
342
+ .e-format-font-color-picker {
343
+ margin-left: 20px;
344
+ margin-right: 0;
345
+ @if ($skin-name == 'tailwind') {
346
+ margin-left: 6px;
347
+ }
348
+ }
349
+ }
350
+ }
351
+
352
+ .e-pivot-calc-dialog-div {
353
+ /* stylelint-disable */
354
+ max-height: 550px !important;
355
+ /* stylelint-enable */
356
+ min-width: 290px;
357
+
358
+ .e-dlg-header-content,
359
+ .e-footer-content {
360
+ border: 0;
361
+ }
362
+
363
+ .e-dlg-content {
364
+ padding-bottom: $pivot-dialog-content-padding;
365
+ @if ($skin-name == 'FluentUI') {
366
+ /* stylelint-disable */
367
+ padding-top: 1px !important;
368
+ /* stylelint-enable */
369
+ }
370
+ }
371
+
372
+ .e-pivot-all-field-title,
373
+ .e-pivot-field-name-title,
374
+ .e-pivot-formula-title,
375
+ .e-olap-hierarchy-title,
376
+ .e-olap-format-title,
377
+ .e-olap-member-title {
378
+ color: $field-list-default-header-font-color;
379
+ font-size: $field-list-header-font-size;
380
+ margin-bottom: 4px;
381
+ margin-top: 12px;
382
+ overflow: hidden;
383
+ padding: $pivot-calculated-header-padding 0;
384
+ padding-bottom: 0;
385
+ text-overflow: ellipsis;
386
+ white-space: nowrap;
387
+ @if($skin-name == 'bootstrap5') {
388
+ padding-bottom: 4px;
389
+ }
390
+ @if ($skin-name == 'tailwind') {
391
+ padding: 0;
392
+ }
393
+
394
+ @if ($skin-name == 'FluentUI') {
395
+ font-weight: 600;
396
+ }
397
+ }
398
+
399
+ .e-treeview {
400
+ .e-sibling {
401
+ display: none;
402
+ }
403
+
404
+ .e-list-selected {
405
+ opacity: .5;
406
+ }
407
+ }
408
+
409
+ .e-treeview ul {
410
+ overflow: hidden;
411
+
412
+ li {
413
+ padding: 0;
414
+
415
+ .e-list-text {
416
+ font-family: $field-list-font-family;
417
+ }
418
+
419
+ &:not(.e-active) {
420
+ .e-list-icon {
421
+ color: $field-list-tree-icon-color;
422
+ }
423
+ }
424
+
425
+ .e-list-icon {
426
+ @if ($skin-name != 'bootstrap5') {
427
+ color: $field-list-tree-icon-color;
428
+ }
429
+ /* stylelint-disable */
430
+ float: right !important;
431
+ margin: 0;
432
+ margin-right: 12px !important;
433
+ /* stylelint-enable */
434
+ }
435
+ }
436
+
437
+ .e-fullrow {
438
+ cursor: default;
439
+ }
440
+
441
+ .e-list-item .e-text-content {
442
+ height: 36px;
443
+ margin-left: -10px;
444
+ padding: 0;
445
+ }
446
+ }
447
+
448
+ .e-treeview .e-list-item div.e-icons {
449
+ cursor: pointer;
450
+ font-size: $field-list-icon-size;
451
+ height: 24px;
452
+ opacity: $pivot-calculated-icon-opacity;
453
+ padding: 2px 4px 4px;
454
+ pointer-events: auto;
455
+ width: 24px;
456
+
457
+ @if ($skin-name == 'tailwind') or ($skin-name == 'bootstrap5') or ($skin-name == 'FluentUI') {
458
+ height: 20px;
459
+ width: 20px;
460
+ }
461
+ }
462
+
463
+ .e-treeview .e-list-item div.e-icons.e-format {
464
+ float: right;
465
+ font-size: 20px;
466
+ margin-right: 12px;
467
+ padding-top: $field-list-calc-expand-icon-padding;
468
+ }
469
+
470
+ .e-treeview .e-list-item div.e-iconspace {
471
+ cursor: pointer;
472
+ display: inline-block;
473
+ font-size: 12px;
474
+ height: 24px;
475
+ opacity: $pivot-calculated-icon-opacity;
476
+ padding: 2px 4px 4px;
477
+ pointer-events: auto;
478
+ width: 24px;
479
+ @if ($skin-name == 'tailwind') {
480
+ height: 20px;
481
+ width: 20px;
482
+ }
483
+ }
484
+
485
+ .e-treeview .e-list-item {
486
+ &:not(.e-active) {
487
+ span.e-icons {
488
+ color: $field-list-drag-icon-color;
489
+ }
490
+ }
491
+
492
+ span.e-icons {
493
+ @if ($skin-name != 'bootstrap5') {
494
+ color: $field-list-drag-icon-color;
495
+ }
496
+ cursor: move;
497
+ display: inline-block;
498
+ font-size: $field-list-icon-size;
499
+ height: 24px;
500
+ margin-right: 4px;
501
+ pointer-events: auto;
502
+ width: 24px;
503
+ @if ($skin-name == 'bootstrap5') {
504
+ height: 20px;
505
+ padding: 5px 8px 12px 5px;
506
+ width: 20px;
507
+ }
508
+ @if ($skin-name != 'tailwind') {
509
+ padding: 8px 8px 8px 12px;
510
+ }
511
+ @if ($skin-name == 'tailwind') {
512
+ /* stylelint-disable */
513
+ height: 20px;
514
+ margin-top: 0;
515
+ padding: 0 5px;
516
+ position: relative;
517
+ bottom:1px;
518
+ width: 20px;
519
+ /* stylelint-enable */
520
+ }
521
+ @if ($skin-name == 'FluentUI') {
522
+ position: relative;
523
+ top: .65px;
524
+ }
525
+ }
526
+ @if ($skin-name == 'tailwind') {
527
+ &.e-active {
528
+ span.e-icons {
529
+ color: $field-list-tree-icon-color;
530
+ }
531
+ }
532
+ }
533
+ }
534
+
535
+ .e-dlg-header {
536
+ font-size: 18px;
537
+ font-weight: 500;
538
+ opacity: $pivot-calculated-header-opacity;
539
+ overflow: hidden;
540
+ text-overflow: ellipsis;
541
+ white-space: nowrap;
542
+ width: 74%;
543
+ }
544
+
545
+ .e-contextmenu {
546
+ background-color: $pivot-formula-background;
547
+ border-radius: $field-list-default-border-radius;
548
+ }
549
+
550
+ .e-contextmenu .e-menu-item {
551
+ color: $pivot-text-area-background;
552
+ font-size: 14px;
553
+ height: 48px;
554
+ opacity: .87;
555
+ }
556
+
557
+ &.e-rtl {
558
+ .e-treeview .e-list-item div.e-icons {
559
+ font-size: 14px;
560
+ height: 24px;
561
+ margin-bottom: 10px;
562
+ padding: 5px;
563
+ width: 24px;
564
+
565
+ @if ($skin-name == 'tailwind') {
566
+ float: left;
567
+ margin-left: 12px;
568
+ margin-right: 0;
569
+ padding-top: 0;
570
+ }
571
+ }
572
+
573
+ .e-treeview .e-list-item div.e-edit.e-icons,
574
+ .e-treeview .e-list-item div.e-edited.e-icons,
575
+ .e-treeview .e-list-item div.e-remove-report.e-icons {
576
+ margin-right: 0;
577
+ transform: rotate(0deg);
578
+ }
579
+
580
+ .e-treeview ul {
581
+ margin-right: 0;
582
+
583
+ li {
584
+ margin-left: 0;
585
+ margin-right: $field-list-treeview-padding-size;
586
+
587
+ .e-text-content {
588
+ padding: 0 24px 0 0;
589
+ }
590
+ }
591
+ }
592
+ }
593
+
594
+ /* stylelint-disable */
595
+ .e-pivot-calc-input.e-empty-field::-webkit-input-placeholder {
596
+ color: $error-font-color !important;
597
+ font-weight: 600 !important;
598
+ }
599
+
600
+ .e-pivot-calc-input.e-empty-field:-moz-placeholder {
601
+ color: $error-font-color !important;
602
+ font-weight: 600 !important;
603
+ }
604
+
605
+ .e-pivot-calc-input.e-empty-field::-moz-placeholder {
606
+ color: $error-font-color !important;
607
+ font-weight: 600 !important;
608
+ }
609
+
610
+ .e-pivot-calc-input.e-empty-field:-ms-input-placeholder {
611
+ color: $error-font-color !important;
612
+ font-weight: 600 !important;
613
+ }
614
+ /* stylelint-enable */
615
+
616
+ .e-pivot-formula {
617
+ background-color: $pivot-formula-background;
618
+ border: 1px solid $pivot-formula-border;
619
+ border-radius: $field-list-default-border-radius;
620
+ color: $field-list-default-formula-font-color;
621
+ font-size: $field-list-calc-formula-font-size;
622
+ height: 70px;
623
+ // opacity: .38;
624
+ padding: $pivot-calculated-formula-font-padding;
625
+ resize: none;
626
+ width: 100%;
627
+
628
+ &.e-copy-drop {
629
+ cursor: copy;
630
+ }
631
+ }
632
+
633
+ .e-list-parent .e-list-text {
634
+ margin-bottom: 8px;
635
+ min-width: 100px;
636
+ overflow: hidden;
637
+ text-overflow: ellipsis;
638
+ white-space: nowrap;
639
+ width: 65%;
640
+ }
641
+
642
+ .e-pivot-treeview-outer {
643
+ background-color: $pivot-formula-background;
644
+ border: 1px solid $pivot-formula-border;
645
+ border-radius: $field-list-default-border-radius;
646
+ height: 120px;
647
+ overflow: auto;
648
+ }
649
+
650
+ /* stylelint-disable */
651
+ &.e-olap-calc-dialog-div {
652
+ min-width: 575px;
653
+
654
+ .e-pivot-calc-outer-div {
655
+ display: flex;
656
+
657
+ .e-olap-field-tree-div {
658
+ height: $olap-tree-wrapper-height;
659
+ width: 50%;
660
+
661
+ .e-pivot-treeview-outer {
662
+ height: 100%;
663
+ margin-top: 0;
664
+ overflow: hidden;
665
+
666
+ .e-pivot-treeview-outer-div {
667
+ display: inline-block;
668
+ height: $olap-tree-outer-div-height;
669
+ overflow: auto;
670
+ width: 310px;
671
+ }
672
+
673
+ .e-treeview {
674
+ display: inline-table;
675
+ height: 100%;
676
+ width: 100%;
677
+
678
+ ul {
679
+ .e-fullrow {
680
+ cursor: move;
681
+ }
682
+
683
+ .e-list-text {
684
+ margin-bottom: 0;
685
+ overflow: unset;
686
+ width: 100%;
687
+ }
688
+
689
+ .e-calcfieldmember .e-list-text{
690
+ width: 150px;
691
+ overflow: hidden;
692
+ text-overflow: ellipsis;
693
+ }
694
+
695
+ .e-list-item .e-text-content {
696
+ height: 30px;
697
+ margin: 0;
698
+ padding: 0 0 0 24px;
699
+ }
700
+
701
+ .e-remove-report.e-list-icon {
702
+ cursor: pointer;
703
+ font-size: 13px;
704
+ margin-top: 3px;
705
+ @if($skin-name == 'tailwind') {
706
+ margin-top: 10px;
707
+ }
708
+ }
709
+
710
+ .e-list-icon {
711
+ cursor: auto;
712
+ font-size: $field-list-icon-size;
713
+ width: auto;
714
+
715
+ &.e-edit {
716
+ cursor: pointer;
717
+ padding: 7px !important;
718
+ }
719
+
720
+ &.e-edited {
721
+ cursor: pointer;
722
+ padding: 7px !important;
723
+ }
724
+ }
725
+
726
+ .e-list-item div.e-icons {
727
+ padding: 0;
728
+ height: auto;
729
+ float: none !important
730
+ }
731
+
732
+ li {
733
+ margin-left: 0;
734
+ margin-right: 0;
735
+ }
736
+ }
737
+
738
+ &.e-rtl {
739
+ ul {
740
+ .e-list-icon {
741
+ transform: rotateX(0deg) rotateY(180deg);
742
+ }
743
+
744
+ .e-list-item .e-text-content {
745
+ padding: 0 24px 0 0;
746
+ }
747
+
748
+ li {
749
+ margin-left: 0;
750
+ margin-right: 0;
751
+ }
752
+ }
753
+ }
754
+ }
755
+
756
+ .e-treeview ul:first-child {
757
+ padding-left: 10px;
758
+ padding-right: 10px;
759
+ }
760
+
761
+ .e-pivot-all-field-title {
762
+ color: $field-list-default-header-font-color;
763
+ flex: auto;
764
+ margin-top: 0;
765
+ padding-bottom: $pivot-calculated-header-padding;
766
+ padding-left: $field-list-header-padding;
767
+ padding-right: $field-list-header-padding;
768
+ }
769
+
770
+ .e-pivot-all-field-title-container {
771
+ background-color: $field-list-header-background-color;
772
+ color: $field-list-default-header-font-color;
773
+ display: flex;
774
+ font-size: $field-list-header-font-size;
775
+ @if ($skin-name == 'tailwind') {
776
+ height: 30px;
777
+ }
778
+
779
+ .e-info {
780
+ padding: 7px !important;
781
+
782
+ &:hover {
783
+ color: $field-list-active-color;
784
+ }
785
+ }
786
+ }
787
+ }
788
+ }
789
+
790
+ .e-olap-calculated-div {
791
+ flex: auto;
792
+ margin-left: 18px;
793
+
794
+ .e-pivot-formula {
795
+ height: 100px;
796
+ }
797
+
798
+ .e-olap-calc-custom-format-div {
799
+ margin-top: 15px;
800
+ }
801
+
802
+ .e-pivot-formula-title,
803
+ .e-pivot-field-name-title,
804
+ .e-olap-hierarchy-title,
805
+ .e-olap-format-title,
806
+ .e-olap-member-title {
807
+ padding-left: 0;
808
+ padding-right: 0;
809
+ }
810
+
811
+ .e-pivot-field-name-title {
812
+ margin-top: 0;
813
+ padding-top: 0;
814
+ }
815
+ }
816
+ }
817
+
818
+ &.e-dialog {
819
+ max-height: 700px !important;
820
+
821
+ .e-calc-clear-btn {
822
+ float: left;
823
+ margin: 0;
824
+ }
825
+ }
826
+
827
+ &.e-rtl {
828
+ .e-pivot-calc-outer-div {
829
+ .e-olap-calculated-div {
830
+ margin-left: 0;
831
+ margin-right: 18px;
832
+ }
833
+ }
834
+
835
+ &.e-dialog {
836
+ .e-calc-clear-btn {
837
+ float: right;
838
+ }
839
+ }
840
+ }
841
+ }
842
+ /* stylelint-enable */
843
+ }
844
+
845
+ .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
846
+ @if ($skin-name == 'FluentUI') {
847
+ margin-right: 6px;
848
+ }
849
+ }
850
+
851
+ .e-bigger.e-pivot-calc-dialog-div,
852
+ .e-bigger .e-pivot-calc-dialog-div {
853
+ /* stylelint-disable */
854
+ max-height: 600px !important;
855
+ min-width: 401px !important;
856
+ /* stylelint-enable */
857
+
858
+ .e-pivot-all-field-title,
859
+ .e-pivot-field-name-title,
860
+ .e-pivot-formula-title,
861
+ .e-olap-hierarchy-title,
862
+ .e-olap-format-title,
863
+ .e-olap-member-title {
864
+ font-size: $field-list-bigger-header-font-size;
865
+ padding: $pivot-calculated-bigger-header-padding 0;
866
+ padding-bottom: 0;
867
+
868
+ @if ($skin-name == 'FluentUI') {
869
+ font-weight: 600;
870
+ margin-top: 16px;
871
+ }
872
+ @if ($skin-name == 'bootstrap5') or ($skin-name == 'tailwind') {
873
+ padding-bottom: 4px;
874
+ padding-top: 16px;
875
+ }
876
+ }
877
+
878
+ .e-treeview ul {
879
+ li {
880
+ padding: 2px 0;
881
+ }
882
+ }
883
+
884
+ .e-treeview .e-list-item div.e-icons {
885
+ font-size: $field-list-bigger-icon-size;
886
+ @if($skin-name == 'tailwind') or ($skin-name == 'FluentUI') or ($skin-name == 'bootstrap5') {
887
+ padding-top: 12px;
888
+ }
889
+ }
890
+
891
+ .e-treeview .e-list-item span.e-icons {
892
+ font-size: $field-list-bigger-icon-size;
893
+ @if ($skin-name == 'FluentUI') or ($skin-name == 'bootstrap5') {
894
+ position: relative;
895
+ top: 3px;
896
+ }
897
+
898
+ @if ($skin-name == 'tailwind') {
899
+ position: relative;
900
+ top: 1px;
901
+ }
902
+ }
903
+
904
+ .e-pivot-formula {
905
+ font-size: $field-list-calc-bigger-formula-font-size;
906
+ }
907
+
908
+ .e-footer-content {
909
+ padding-right: $pivot-dialog-footer-paddingright;
910
+ padding-top: $pivot-dialog-footer-padding;
911
+ }
912
+
913
+ /* stylelint-disable */
914
+ &.e-olap-calc-dialog-div {
915
+ max-height: 750px !important;
916
+ min-width: 580px !important;
917
+
918
+ .e-pivot-calc-outer-div {
919
+ .e-olap-field-tree-div {
920
+ height: $olap-bigger-tree-wrapper-height;
921
+ width : $olap-bigger-tree-width;
922
+
923
+ .e-pivot-treeview-outer {
924
+ .e-pivot-treeview-outer-div {
925
+ height: $olap-bigger-tree-outer-div-height;
926
+ width:$olap-bigger-tree-outer-div-width;
927
+ }
928
+
929
+ .e-pivot-all-field-title {
930
+ padding-bottom: $pivot-calculated-bigger-header-padding;
931
+ }
932
+
933
+ .e-pivot-all-field-title-container {
934
+ font-size: $field-list-bigger-header-font-size;
935
+ @if ($skin-name == 'tailwind') {
936
+ height: 34px;
937
+ }
938
+ }
939
+
940
+ .e-treeview ul {
941
+ .e-list-icon {
942
+ font-size: $field-list-bigger-icon-size;
943
+ }
944
+ }
945
+ }
946
+ }
947
+
948
+ .e-olap-calculated-div {
949
+ margin-left: 24px;
950
+ }
951
+ }
952
+
953
+ &.e-rtl {
954
+ .e-pivot-calc-outer-div {
955
+ .e-olap-calculated-div {
956
+ margin-left: 0;
957
+ margin-right: 24px;
958
+ }
959
+ }
960
+ }
961
+ }
962
+ }
963
+
964
+ .e-pivotfieldlist-container {
965
+ .e-adaptive-field-list-dialog,
966
+ .e-member-editor-dialog {
967
+ max-width: 400px !important;
968
+ min-width: 320px !important;
969
+
970
+ .e-member-prompt {
971
+ padding: 25px $field-list-editor-search-padding-size;
972
+ text-align: center;
973
+ width: 100%;
974
+ }
975
+ /* stylelint-enable */
976
+
977
+ .e-editor-search-container {
978
+ display: flex;
979
+ padding: 0 $field-list-editor-search-padding-size 10px;
980
+
981
+ .e-clear-icon-hide {
982
+ display: inline-block;
983
+ visibility: hidden;
984
+ }
985
+ }
986
+
987
+ @if ($field-list-skin == 'bootstrap4') {
988
+ &:not(.e-excel-filter) {
989
+ .e-editor-search-container {
990
+ padding: 5px $field-list-editor-search-padding-size 10px;
991
+ }
992
+ }
993
+ }
994
+
995
+ .e-member-editor-container-outer-div {
996
+ display: inline-block;
997
+ height: $field-list-member-filter-list-height;
998
+ max-width: 400px;
999
+ overflow: auto;
1000
+ width: 100%;
1001
+ }
1002
+
1003
+ .e-member-editor-container {
1004
+ display: inline-table;
1005
+ width: 100%;
1006
+
1007
+ &.e-rtl {
1008
+ ul {
1009
+ .e-list-icon {
1010
+ transform: rotateX(0deg) rotateY(180deg);
1011
+ }
1012
+ }
1013
+ }
1014
+ }
1015
+
1016
+ .e-member-editor-container ul {
1017
+ /* stylelint-disable */
1018
+ margin-left: $field-list-member-filter-list-padding-size;
1019
+ overflow: auto !important;
1020
+ /* stylelint-enable */
1021
+
1022
+ li {
1023
+ .e-list-text {
1024
+ font-family: $field-list-font-family;
1025
+ }
1026
+
1027
+ .e-list-icon {
1028
+ margin: 0;
1029
+ }
1030
+ }
1031
+ }
1032
+
1033
+ /* stylelint-disable */
1034
+ .e-disable {
1035
+ display: none !important;
1036
+ }
1037
+ /* stylelint-enable */
1038
+
1039
+ &.e-rtl {
1040
+ .e-member-editor-outer-container {
1041
+ ul {
1042
+ margin-left: 0;
1043
+ margin-right: $field-list-member-filter-list-padding-size;
1044
+ }
1045
+ }
1046
+ }
1047
+
1048
+ &.e-olap-editor-dialog {
1049
+ .e-member-editor-outer-container {
1050
+ .e-member-editor-container ul {
1051
+ margin-left: 0;
1052
+ }
1053
+
1054
+ .e-treeview ul:first-child {
1055
+ padding-left: 10px;
1056
+ padding-right: 10px;
1057
+ }
1058
+
1059
+ .e-editor-search-container {
1060
+ display: flex;
1061
+ }
1062
+ }
1063
+
1064
+ /* stylelint-disable */
1065
+ &.e-rtl {
1066
+ .e-member-editor-outer-container {
1067
+ ul {
1068
+ margin-right: 0;
1069
+ }
1070
+ }
1071
+ }
1072
+ }
1073
+ }
1074
+
1075
+ .e-member-editor-dialog {
1076
+ .e-toolbar .e-toolbar-items {
1077
+ margin-left: $field-list-filter-toolbar-items-margin;
1078
+ }
1079
+
1080
+ .e-clear-filter-button {
1081
+ float: left;
1082
+ margin: 0;
1083
+
1084
+ @if ($skin-name == 'FluentUI') {
1085
+ margin-left: 0;
1086
+ margin-right: 0;
1087
+ }
1088
+
1089
+ &.e-disable {
1090
+ display: none;
1091
+ }
1092
+ }
1093
+
1094
+ .e-editor-label-container {
1095
+ background-color: $field-list-editor-label-fill;
1096
+ opacity: $field-list-editor-label-excel-opacity;
1097
+ padding: $field-list-editor-label-padding-size;
1098
+
1099
+ .e-editor-label {
1100
+ color: $field-list-editor-label-color;
1101
+ font: $field-list-editor-label-font;
1102
+ opacity: $field-list-editor-label-opacity;
1103
+ overflow: hidden;
1104
+ text-overflow: ellipsis;
1105
+ white-space: nowrap;
1106
+ }
1107
+ }
1108
+
1109
+ .e-filter-sort {
1110
+ box-shadow: none;
1111
+ margin-left: $field-list-sort-wrapper-padding-size;
1112
+
1113
+ .e-member-sort {
1114
+ @if ($field-list-skin == 'bootstrap4') {
1115
+ background-color: $content-bg;
1116
+ border-color: $gray-400;
1117
+ color: $gray-700;
1118
+ }
1119
+
1120
+ &:hover {
1121
+ @if ($field-list-skin == 'bootstrap4') {
1122
+ background-color: $gray-600 !important;
1123
+ border-color: $gray-600 !important;
1124
+ color: $white !important;
1125
+ }
1126
+ }
1127
+
1128
+ &.e-active {
1129
+ @if ($field-list-skin == 'bootstrap4') {
1130
+ background-color: $field-list-sort-select-background-color;
1131
+ border-color: $field-list-sort-select-border-color;
1132
+ color: $field-list-sort-select-color;
1133
+ outline: none;
1134
+ }
1135
+ }
1136
+
1137
+ .e-sort-ascend-icon,
1138
+ .e-sort-descend-icon {
1139
+ font-size: 16px;
1140
+ }
1141
+
1142
+ &:focus {
1143
+ @if ($field-list-skin == 'bootstrap4') {
1144
+ background-color: $gray-600 !important;
1145
+ border-color: $gray-600 !important;
1146
+ color: $white !important;
1147
+ }
1148
+
1149
+ &.e-active {
1150
+ @if ($field-list-skin == 'bootstrap4') {
1151
+ background-color: $field-list-sort-select-background-color;
1152
+ border-color: $field-list-sort-select-border-color;
1153
+ color: $field-list-sort-select-color;
1154
+ outline: none;
1155
+ }
1156
+ }
1157
+ }
1158
+ }
1159
+ }
1160
+
1161
+ .e-select-all-container ul {
1162
+ margin-left: $field-list-member-filter-list-padding-size;
1163
+ overflow: hidden;
1164
+
1165
+ li {
1166
+ .e-list-text {
1167
+ font-family: $field-list-font-family;
1168
+ }
1169
+
1170
+ .e-list-icon {
1171
+ margin: 0;
1172
+ }
1173
+ }
1174
+ }
1175
+
1176
+ .e-filter-tab-container {
1177
+ border: 0;
1178
+ /* stylelint-enable */
1179
+
1180
+ .e-tab-header {
1181
+ .e-toolbar-item .e-icon-left + .e-tab-text {
1182
+ margin: 0 0 0 6px;
1183
+ }
1184
+
1185
+ .e-text-wrap {
1186
+ .e-tab-icon {
1187
+ height: 14px;
1188
+ min-width: 14px;
1189
+ width: 14px;
1190
+ @if ($field-list-skin == 'bootstrap4') or ($skin-name == 'bootstrap5') or ($skin-name == 'tailwind') {
1191
+ height: auto;
1192
+ }
1193
+
1194
+ &::before {
1195
+ font-size: 14px;
1196
+ }
1197
+ }
1198
+ }
1199
+ }
1200
+
1201
+ &.e-rtl {
1202
+ .e-tab-header {
1203
+ .e-toolbar-item .e-icon-left + .e-tab-text {
1204
+ margin: 0 6px 0 0;
1205
+ }
1206
+ }
1207
+ }
1208
+ }
1209
+
1210
+ .e-excelfilter {
1211
+ padding-top: 20px;
1212
+
1213
+ @if ($skin-name == 'tailwind') {
1214
+ padding-top: 12px;
1215
+ }
1216
+
1217
+ .e-member-editor-container-outer-div {
1218
+ height: $field-list-excel-member-filter-height;
1219
+ }
1220
+ }
1221
+
1222
+ .e-label-filter,
1223
+ .e-value-filter {
1224
+ height: $field-list-excel-filter-height;
1225
+ overflow: auto;
1226
+ padding: 20px;
1227
+ padding-bottom: 0;
1228
+
1229
+ /* stylelint-disable */
1230
+ .e-filter-text-div {
1231
+ color: $field-list-button-icon-color !important;
1232
+ font-size: 13px;
1233
+ font-weight: 500;
1234
+ @if ($skin-name == 'tailwind') {
1235
+ padding: 4px;
1236
+ }
1237
+
1238
+ }
1239
+ /* stylelint-enable */
1240
+
1241
+ .e-filter-option-container-1,
1242
+ .e-filter-option-container-2,
1243
+ .e-separator-div {
1244
+ padding-top: 20px;
1245
+ }
1246
+
1247
+ .e-between-text-div {
1248
+ padding: 8px 0;
1249
+ }
1250
+
1251
+ .e-disable {
1252
+ display: none;
1253
+ }
1254
+
1255
+ @if ($skin-name == 'tailwind') {
1256
+ padding-top: 0;
1257
+ }
1258
+
1259
+ }
1260
+
1261
+ &.e-excel-filter {
1262
+ .e-editor-label-container {
1263
+ opacity: $field-list-editor-label-excel-opacity;
1264
+ padding: $field-list-editor-label-excel-padding-size;
1265
+ }
1266
+ }
1267
+
1268
+ &.e-rtl {
1269
+ .e-toolbar .e-toolbar-items {
1270
+ margin-left: 0;
1271
+ margin-right: $field-list-filter-toolbar-items-margin;
1272
+ }
1273
+
1274
+ .e-member-editor-outer-container {
1275
+ .e-editor-search-container {
1276
+ .e-filter-sort {
1277
+ margin-left: 0;
1278
+ margin-right: $field-list-sort-wrapper-padding-size;
1279
+ }
1280
+ }
1281
+ }
1282
+
1283
+ .e-footer-content {
1284
+ .e-clear-filter-button {
1285
+ float: right;
1286
+ }
1287
+ }
1288
+ }
1289
+
1290
+ &.e-olap-editor-dialog {
1291
+ .e-member-editor-outer-container {
1292
+ .e-select-all-container ul {
1293
+ margin-left: 0;
1294
+ }
1295
+
1296
+ .e-editor-search-container {
1297
+ .e-level-drop {
1298
+ margin: 0 5px;
1299
+
1300
+ .e-caret {
1301
+ font-size: $field-list-icon-size;
1302
+ }
1303
+
1304
+ li .e-disabled {
1305
+ opacity: .5;
1306
+ pointer-events: none;
1307
+ }
1308
+ }
1309
+ }
1310
+ }
1311
+
1312
+ /* stylelint-disable */
1313
+ &.e-rtl {
1314
+ .e-member-editor-outer-container {
1315
+ .e-editor-search-container {
1316
+ .e-filter-sort {
1317
+ margin-left: 0;
1318
+ margin-right: $field-list-sort-wrapper-padding-size;
1319
+ }
1320
+ }
1321
+ }
1322
+ }
1323
+ }
1324
+ }
1325
+
1326
+ .e-adaptive-field-list-dialog {
1327
+ ul {
1328
+ min-height: 170px;
1329
+ overflow: auto;
1330
+ }
1331
+ .e-member-editor-container ul {
1332
+ li {
1333
+ .e-calc-measure-icon,
1334
+ .e-calc-dimension-icon,
1335
+ .e-attributeCDB-icon,
1336
+ .e-hierarchyCDB-icon,
1337
+ .e-level-members,
1338
+ .e-namedSetCDB-icon,
1339
+ .e-measure-icon,
1340
+ .e-kpiGoal-icon,
1341
+ .e-kpiStatus-icon,
1342
+ .e-kpiTrend-icon,
1343
+ .e-kpiValue-icon {
1344
+ margin-left: 10px;
1345
+ }
1346
+ }
1347
+ }
1348
+
1349
+ &.e-olap-editor-dialog {
1350
+ &.e-rtl {
1351
+ .e-member-editor-outer-container {
1352
+ ul li {
1353
+ .e-calc-measure-icon,
1354
+ .e-calc-dimension-icon,
1355
+ .e-attributeCDB-icon,
1356
+ .e-hierarchyCDB-icon,
1357
+ .e-level-members,
1358
+ .e-namedSetCDB-icon,
1359
+ .e-measure-icon,
1360
+ .e-kpiGoal-icon,
1361
+ .e-kpiStatus-icon,
1362
+ .e-kpiTrend-icon,
1363
+ .e-kpiValue-icon {
1364
+ margin-left: 0;
1365
+ margin-right: 10px;
1366
+ }
1367
+ }
1368
+ }
1369
+ }
1370
+ }
1371
+ }
1372
+
1373
+ .e-value-field-settings {
1374
+ max-width: 400px !important;
1375
+ min-width: 300px !important;
1376
+
1377
+ .e-dlg-content {
1378
+ overflow: auto;
1379
+ }
1380
+
1381
+ .e-value-field-div-content {
1382
+ padding: 0 $field-list-editor-search-padding-size 10px;
1383
+
1384
+ .e-field-option-container {
1385
+ .e-field-name-text-container {
1386
+ display: flex;
1387
+
1388
+ .e-field-name-title,
1389
+ .e-field-name-content {
1390
+ font-size: 13px;
1391
+ font-weight: 500;
1392
+ }
1393
+
1394
+ .e-field-name-title {
1395
+ flex: none;
1396
+ }
1397
+
1398
+ .e-field-name-content {
1399
+ flex: auto;
1400
+ width: 100%;
1401
+ }
1402
+ }
1403
+
1404
+ .e-caption-input-container,
1405
+ .e-type-option-container,
1406
+ .e-base-field-option-container,
1407
+ .e-base-item-option-container {
1408
+ padding-top: $field-list-editor-search-padding-size;
1409
+
1410
+ .e-base-field-option-text,
1411
+ .e-base-item-option-text,
1412
+ .e-type-option-text {
1413
+ font-size: 13px;
1414
+ font-weight: 500;
1415
+ width: 100%;
1416
+
1417
+ @if ($skin-name == 'tailwind') {
1418
+ padding-bottom: 4px;
1419
+ }
1420
+
1421
+ }
1422
+
1423
+ .e-caption-input-text {
1424
+ font-size: 13px;
1425
+ }
1426
+ }
1427
+ }
1428
+ }
1429
+ }
1430
+
1431
+ .e-adaptive-field-list-dialog,
1432
+ .e-member-editor-dialog,
1433
+ .e-value-field-settings {
1434
+ border-radius: $field-list-default-border-radius;
1435
+ width: auto !important;
1436
+
1437
+ .e-dlg-header-content,
1438
+ .e-footer-content {
1439
+ border-radius: $field-list-default-border-radius;
1440
+ }
1441
+
1442
+ .e-dlg-header-content {
1443
+ border: 0;
1444
+ font-weight: normal;
1445
+ }
1446
+
1447
+ .e-footer-content {
1448
+ border-top: $field-list-border-size $field-list-border-type $field-list-default-border-color;
1449
+ border-top-left-radius: 0;
1450
+ border-top-right-radius: 0;
1451
+
1452
+ @if ($skin-name != 'FluentUI') {
1453
+ padding-top: $field-list-editor-dialog-footer-padding;
1454
+ }
1455
+
1456
+ @if ($skin-name == 'FluentUI') {
1457
+ border-top: 0;
1458
+ }
1459
+ }
1460
+
1461
+ .e-dlg-content {
1462
+ overflow: hidden;
1463
+ padding: 0 !important;
1464
+ @if ($skin-name == 'FluentUI') {
1465
+ padding-top: 1px;
1466
+ }
1467
+
1468
+ @if ($skin-name == 'tailwind') {
1469
+ padding: 12px 0 0 0 !important;
1470
+ }
1471
+
1472
+
1473
+ .e-empty-field::-webkit-input-placeholder {
1474
+ color: $error-font-color !important;
1475
+ font-weight: 600 !important;
1476
+ }
1477
+
1478
+ .e-empty-field:-moz-placeholder {
1479
+ color: $error-font-color !important;
1480
+ font-weight: 600 !important;
1481
+ }
1482
+
1483
+ .e-empty-field::-moz-placeholder {
1484
+ color: $error-font-color !important;
1485
+ font-weight: 600 !important;
1486
+ }
1487
+
1488
+ .e-empty-field:-ms-input-placeholder {
1489
+ color: $error-font-color !important;
1490
+ font-weight: 600 !important;
1491
+ }
1492
+ /* stylelint-enable */
1493
+ }
1494
+ }
1495
+
1496
+ .e-adaptive-field-list-dialog {
1497
+ .e-dlg-content {
1498
+ .e-member-editor-outer-container {
1499
+ .e-member-editor-container-outer-div {
1500
+ height: $field-list-member-field-list-height;
1501
+ }
1502
+ }
1503
+ }
1504
+ }
1505
+ }
1506
+
1507
+ .e-field-list-tree.e-drag-item.e-treeview,
1508
+ .e-pivot-calc.e-drag-item.e-treeview {
1509
+ background-color: $field-list-drag-clone-bg-color;
1510
+ border: $field-list-border-size $field-list-border-type $field-list-default-border-color;
1511
+ border-radius: $field-list-drag-clone-border-radius;
1512
+ box-shadow: $field-list-drag-clone-shadow-color;
1513
+ height: $field-list-drag-clone-height;
1514
+ line-height: $field-list-drag-clone-line-height;
1515
+ min-width: 100px;
1516
+ padding: 5px 10px;
1517
+ @if ($field-list-skin == 'bootstrap4') {
1518
+ border: 0;
1519
+ padding: 6px 10px;
1520
+ }
1521
+ @if ($skin-name == 'tailwind') or ($skin-name == 'bootstrap5') {
1522
+ line-height: normal;
1523
+ padding: 0 10px;
1524
+ }
1525
+
1526
+ .e-text-content {
1527
+ height: 100%;
1528
+ padding: 0;
1529
+ text-align: center;
1530
+ width: 100%;
1531
+ @if ($field-list-skin == 'bootstrap4') {
1532
+ box-shadow: none;
1533
+ }
1534
+
1535
+ .e-list-text {
1536
+ color: $field-list-drag-clone-text-color;
1537
+ font-size: $field-list-drag-clone-font-size;
1538
+ line-height: 1em;
1539
+ width: 100%;
1540
+ // @if ($field-list-skin == 'bootstrap4') {
1541
+ // line-height: 0;
1542
+ // }
1543
+ @if ($skin-name == 'tailwind') or ($skin-name == 'bootstrap5') {
1544
+ display: inline;
1545
+ line-height: normal;
1546
+ vertical-align: sub;
1547
+ }
1548
+ }
1549
+ }
1550
+
1551
+ .e-text-content>.e-icons,
1552
+ .e-checkbox-wrapper,
1553
+ .e-list-icon {
1554
+ display: none;
1555
+ }
1556
+
1557
+ &.e-rtl {
1558
+ .e-text-content {
1559
+ padding-right: 0;
1560
+ }
1561
+ }
1562
+
1563
+ &.e-drag-restrict {
1564
+ .e-text-content {
1565
+ padding-left: 24px;
1566
+
1567
+ .e-list-text {
1568
+ padding: 0;
1569
+ }
1570
+ }
1571
+
1572
+ /* stylelint-disable */
1573
+ .e-no-drop {
1574
+ display: inline-block !important;
1575
+ line-height: 0em;
1576
+ @if ($field-list-skin == 'bootstrap4') {
1577
+ color: $field-list-drag-clone-text-color;
1578
+ opacity: 0.7;
1579
+ }
1580
+
1581
+ &::before {
1582
+ float: left;
1583
+ font-size: $field-list-drag-clone-font-size;
1584
+ padding: 5px 0;
1585
+ }
1586
+ }
1587
+ /* stylelint-enable */
1588
+
1589
+ &.e-rtl {
1590
+ .e-text-content {
1591
+ padding-left: 0;
1592
+ padding-right: 24px;
1593
+
1594
+ .e-icons {
1595
+ transform: rotateY(180deg);
1596
+ }
1597
+ }
1598
+ }
1599
+ }
1600
+ }
1601
+
1602
+ .e-bigger .e-field-list-tree.e-drag-item.e-treeview,
1603
+ .e-bigger .e-pivot-calc.e-drag-item.e-treeview,
1604
+ .e-bigger.e-field-list-tree.e-drag-item.e-treeview,
1605
+ .e-bigger.e-pivot-calc.e-drag-item.e-treeview {
1606
+ height: $field-list-bigger-button-height;
1607
+ padding: 6px 12px;
1608
+ @if ($field-list-skin == 'bootstrap4') {
1609
+ padding: 9px 10px;
1610
+ }
1611
+
1612
+ .e-text-content {
1613
+ .e-list-text {
1614
+ line-height: 1.5em;
1615
+ // @if ($field-list-skin == 'bootstrap4') {
1616
+ // line-height: 0;
1617
+ // }
1618
+ }
1619
+ }
1620
+
1621
+ &.e-drag-restrict {
1622
+ .e-no-drop {
1623
+ &::before {
1624
+ padding: 4px;
1625
+ }
1626
+ }
1627
+ }
1628
+ }
1629
+
1630
+ /* stylelint-disable */
1631
+ .e-button-drag-clone {
1632
+ background-color: $field-list-drag-clone-bg-color !important;
1633
+ border: $field-list-border-size $field-list-border-type $field-list-drag-default-border-color;
1634
+ border-radius: $field-list-drag-clone-border-radius;
1635
+ box-shadow: $field-list-drag-clone-shadow-color;
1636
+ color: $field-list-drag-clone-text-color;
1637
+ font-size: $field-list-drag-clone-font-size;
1638
+ font-family: $field-list-font-family;
1639
+ height: $field-list-drag-clone-height;
1640
+ line-height: $field-list-drag-clone-line-height;
1641
+ min-width: 100px;
1642
+ overflow: hidden;
1643
+ padding: 5px 10px;
1644
+ text-align: center;
1645
+ width: auto;
1646
+ z-index: 100000;
1647
+ @if ($field-list-skin == 'bootstrap4') {
1648
+ border: 0;
1649
+ padding: 6px 10px;
1650
+ }
1651
+ @if ($skin-name == 'tailwind') or ($skin-name == 'bootstrap5') or ($skin-name == 'FluentUI') {
1652
+ line-height: normal;
1653
+ padding: 0 10px;
1654
+ }
1655
+
1656
+ .e-text-content {
1657
+ width: 100%;
1658
+ @if ($skin-name == 'tailwind') or ($skin-name == 'bootstrap5') or ($skin-name == 'FluentUI') {
1659
+ display: inline;
1660
+ vertical-align: sub;
1661
+ }
1662
+ }
1663
+ }
1664
+
1665
+ .e-bigger .e-button-drag-clone,
1666
+ .e-bigger.e-button-drag-clone {
1667
+ height: $field-list-bigger-button-height !important;
1668
+ line-height: 1.5em;
1669
+ padding: 6px 12px;
1670
+ @if ($field-list-skin == 'bootstrap4') {
1671
+ border: 0;
1672
+ padding: 7px 12px;
1673
+ }
1674
+ @if ($skin-name == 'tailwind') or ($skin-name == 'bootstrap5') or ($skin-name == 'FluentUI') {
1675
+ line-height: normal;
1676
+ padding: 0 12px;
1677
+ }
1678
+ }
1679
+
1680
+ .e-pivot-error-dialog {
1681
+ max-width: 400px !important;
1682
+ width: auto !important;
1683
+ }
1684
+ /* stylelint-enable */
1685
+
1686
+ .e-bigger .e-pivotfieldlist-container,
1687
+ .e-bigger.e-pivotfieldlist-container {
1688
+
1689
+ .e-adaptive-field-list-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div ,
1690
+ .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div {
1691
+ height: $field-list-member-filter-list-bigger-height;
1692
+ }
1693
+
1694
+ /* stylelint-disable */
1695
+ .e-member-editor-dialog {
1696
+ .e-editor-search-container {
1697
+ .e-sort-ascend-icon,
1698
+ .e-sort-descend-icon {
1699
+ font-size: 18px;
1700
+ }
1701
+
1702
+ .e-level-drop {
1703
+ .e-caret {
1704
+ font-size: $field-list-bigger-icon-size !important;
1705
+ }
1706
+ }
1707
+ }
1708
+
1709
+ .e-member-editor-outer-container ul {
1710
+ @if ($field-list-skin == 'bootstrap4') {
1711
+ margin-left: -30px;
1712
+ }
1713
+
1714
+ li {
1715
+ .e-calc-measure-icon,
1716
+ .e-calc-dimension-icon,
1717
+ .e-attributeCDB-icon,
1718
+ .e-hierarchyCDB-icon,
1719
+ .e-level-members,
1720
+ .e-namedSetCDB-icon,
1721
+ .e-measure-icon,
1722
+ .e-kpiGoal-icon,
1723
+ .e-kpiStatus-icon,
1724
+ .e-kpiTrend-icon,
1725
+ .e-kpiValue-icon {
1726
+ margin-left: 10px;
1727
+ }
1728
+ }
1729
+ }
1730
+
1731
+ &.e-rtl {
1732
+ .e-member-editor-outer-container ul {
1733
+ @if ($field-list-skin == 'bootstrap4') {
1734
+ margin-right: -30px;
1735
+ }
1736
+
1737
+ li {
1738
+ .e-calc-measure-icon,
1739
+ .e-calc-dimension-icon,
1740
+ .e-attributeCDB-icon,
1741
+ .e-hierarchyCDB-icon,
1742
+ .e-level-members,
1743
+ .e-namedSetCDB-icon,
1744
+ .e-measure-icon,
1745
+ .e-kpiGoal-icon,
1746
+ .e-kpiStatus-icon,
1747
+ .e-kpiTrend-icon,
1748
+ .e-kpiValue-icon {
1749
+ margin-left: 10px;
1750
+ }
1751
+ }
1752
+ }
1753
+ }
1754
+ }
1755
+ /* stylelint-enable */
1756
+
1757
+ .e-member-editor-dialog {
1758
+ .e-filter-tab-container {
1759
+ .e-tab-header {
1760
+ .e-toolbar-item .e-icon-left + .e-tab-text {
1761
+ margin: 0 0 0 6px;
1762
+ }
1763
+ }
1764
+
1765
+ &.e-rtl {
1766
+ .e-tab-header {
1767
+ .e-toolbar-item .e-icon-left + .e-tab-text {
1768
+ margin: 0 6px 0 0;
1769
+ }
1770
+ }
1771
+ }
1772
+ }
1773
+
1774
+ /* stylelint-disable */
1775
+ .e-excelfilter {
1776
+
1777
+ @if ($skin-name == 'tailwind') {
1778
+ padding-top: 16px;
1779
+ }
1780
+
1781
+ .e-member-editor-container-outer-div {
1782
+ height: $field-list-excel-member-filter-bigger-height !important;
1783
+ }
1784
+ }
1785
+
1786
+ .e-label-filter,
1787
+ .e-value-filter {
1788
+ height: $field-list-excel-filter-bigger-height;
1789
+
1790
+ .e-filter-text-div {
1791
+ font-size: 14px;
1792
+ }
1793
+
1794
+ .e-filter-option-container-1,
1795
+ .e-filter-option-container-2,
1796
+ .e-separator-div {
1797
+ padding-top: 24px;
1798
+ }
1799
+
1800
+ .e-between-text-div {
1801
+ padding: 10px 0;
1802
+ }
1803
+ }
1804
+
1805
+ &.e-excel-filter {
1806
+ min-width: $field-list-bigger-excel-dialog-min-width !important;
1807
+ }
1808
+ }
1809
+
1810
+ .e-adaptive-field-list-dialog,
1811
+ .e-member-editor-dialog,
1812
+ .e-value-field-settings {
1813
+ .e-dlg-header-content {
1814
+ .e-clear-filter-button.e-small {
1815
+ font-size: 14px;
1816
+ top: 0;
1817
+ }
1818
+ }
1819
+ }
1820
+
1821
+ .e-value-field-settings {
1822
+ .e-value-field-div-content {
1823
+ padding: 0 $field-list-editor-search-padding-size 10px;
1824
+ }
1825
+ }
1826
+
1827
+ .e-value-field-settings {
1828
+ .e-field-name-text-container {
1829
+ display: flex;
1830
+
1831
+ .e-field-name-title,
1832
+ .e-field-name-content {
1833
+ font-size: 14px;
1834
+ }
1835
+ }
1836
+
1837
+ .e-caption-input-container,
1838
+ .e-type-option-container,
1839
+ .e-base-field-option-container,
1840
+ .e-base-item-option-container {
1841
+ padding-top: 24px;
1842
+
1843
+ .e-base-field-option-text,
1844
+ .e-base-item-option-text,
1845
+ .e-type-option-text,
1846
+ .e-caption-input-text {
1847
+ font-size: 14px;
1848
+ }
1849
+ }
1850
+ }
1851
+ }
1852
+ }