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

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