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

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