@syncfusion/ej2-dropdowns 28.1.38 → 28.1.41
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.
- package/dist/ej2-dropdowns.min.js +2 -2
- package/dist/ej2-dropdowns.umd.min.js +2 -2
- package/dist/ej2-dropdowns.umd.min.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es2015.js +84 -33
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +85 -33
- package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
- package/dist/global/ej2-dropdowns.min.js +2 -2
- package/dist/global/ej2-dropdowns.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +8 -8
- package/src/combo-box/combo-box.js +2 -2
- package/src/common/interface.d.ts +1 -0
- package/src/common/virtual-scroll.js +1 -0
- package/src/drop-down-base/drop-down-base.js +3 -1
- package/src/drop-down-list/drop-down-list.d.ts +1 -0
- package/src/drop-down-list/drop-down-list.js +19 -4
- package/src/drop-down-tree/drop-down-tree.d.ts +1 -0
- package/src/drop-down-tree/drop-down-tree.js +13 -9
- package/src/list-box/list-box.js +1 -1
- package/src/mention/mention.js +3 -1
- package/src/multi-select/multi-select.d.ts +4 -2
- package/src/multi-select/multi-select.js +43 -15
- package/styles/bds-lite.css +8 -0
- package/styles/bds.css +8 -0
- package/styles/bootstrap-dark-lite.css +8 -0
- package/styles/bootstrap-dark.css +8 -0
- package/styles/bootstrap-lite.css +8 -0
- package/styles/bootstrap.css +8 -0
- package/styles/bootstrap4-lite.css +8 -0
- package/styles/bootstrap4.css +8 -0
- package/styles/bootstrap5-dark-lite.css +8 -0
- package/styles/bootstrap5-dark.css +8 -0
- package/styles/bootstrap5-lite.css +8 -0
- package/styles/bootstrap5.3-lite.css +8 -0
- package/styles/bootstrap5.3.css +8 -0
- package/styles/bootstrap5.css +8 -0
- package/styles/drop-down-list/_layout.scss +8 -0
- package/styles/drop-down-list/bds.css +8 -0
- package/styles/drop-down-list/bootstrap-dark.css +8 -0
- package/styles/drop-down-list/bootstrap.css +8 -0
- package/styles/drop-down-list/bootstrap4.css +8 -0
- package/styles/drop-down-list/bootstrap5-dark.css +8 -0
- package/styles/drop-down-list/bootstrap5.3.css +8 -0
- package/styles/drop-down-list/bootstrap5.css +8 -0
- package/styles/drop-down-list/fabric-dark.css +8 -0
- package/styles/drop-down-list/fabric.css +8 -0
- package/styles/drop-down-list/fluent-dark.css +8 -0
- package/styles/drop-down-list/fluent.css +8 -0
- package/styles/drop-down-list/fluent2.css +8 -0
- package/styles/drop-down-list/highcontrast-light.css +8 -0
- package/styles/drop-down-list/highcontrast.css +8 -0
- package/styles/drop-down-list/material-dark.css +8 -0
- package/styles/drop-down-list/material.css +8 -0
- package/styles/drop-down-list/material3-dark.css +8 -0
- package/styles/drop-down-list/material3.css +8 -0
- package/styles/drop-down-list/tailwind-dark.css +8 -0
- package/styles/drop-down-list/tailwind.css +8 -0
- package/styles/drop-down-list/tailwind3.css +8 -0
- package/styles/fabric-dark-lite.css +8 -0
- package/styles/fabric-dark.css +8 -0
- package/styles/fabric-lite.css +8 -0
- package/styles/fabric.css +8 -0
- package/styles/fluent-dark-lite.css +8 -0
- package/styles/fluent-dark.css +8 -0
- package/styles/fluent-lite.css +8 -0
- package/styles/fluent.css +8 -0
- package/styles/fluent2-lite.css +8 -0
- package/styles/fluent2.css +8 -0
- package/styles/highcontrast-light-lite.css +8 -0
- package/styles/highcontrast-light.css +8 -0
- package/styles/highcontrast-lite.css +8 -0
- package/styles/highcontrast.css +8 -0
- package/styles/material-dark-lite.css +8 -0
- package/styles/material-dark.css +8 -0
- package/styles/material-lite.css +8 -0
- package/styles/material.css +8 -0
- package/styles/material3-dark-lite.css +8 -0
- package/styles/material3-dark.css +8 -0
- package/styles/material3-lite.css +8 -0
- package/styles/material3.css +8 -0
- package/styles/tailwind-dark-lite.css +8 -0
- package/styles/tailwind-dark.css +8 -0
- package/styles/tailwind-lite.css +8 -0
- package/styles/tailwind.css +8 -0
- package/styles/tailwind3-lite.css +8 -0
- package/styles/tailwind3.css +8 -0
|
@@ -503,6 +503,14 @@
|
|
|
503
503
|
content: "";
|
|
504
504
|
}
|
|
505
505
|
|
|
506
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
507
|
+
position: relative;
|
|
508
|
+
}
|
|
509
|
+
|
|
510
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
511
|
+
content: "";
|
|
512
|
+
}
|
|
513
|
+
|
|
506
514
|
.e-ddl-device-filter .e-filter-parent {
|
|
507
515
|
background-color: #212529;
|
|
508
516
|
}
|
|
@@ -592,6 +592,14 @@
|
|
|
592
592
|
content: "";
|
|
593
593
|
}
|
|
594
594
|
|
|
595
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
596
|
+
position: relative;
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
600
|
+
content: "";
|
|
601
|
+
}
|
|
602
|
+
|
|
595
603
|
.e-ddl-device-filter .e-filter-parent {
|
|
596
604
|
background-color: #212529;
|
|
597
605
|
}
|
|
@@ -503,6 +503,14 @@
|
|
|
503
503
|
content: "";
|
|
504
504
|
}
|
|
505
505
|
|
|
506
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
507
|
+
position: relative;
|
|
508
|
+
}
|
|
509
|
+
|
|
510
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
511
|
+
content: "";
|
|
512
|
+
}
|
|
513
|
+
|
|
506
514
|
.e-ddl-device-filter .e-filter-parent {
|
|
507
515
|
background-color: #fff;
|
|
508
516
|
}
|
|
@@ -507,6 +507,14 @@
|
|
|
507
507
|
content: "";
|
|
508
508
|
}
|
|
509
509
|
|
|
510
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
511
|
+
position: relative;
|
|
512
|
+
}
|
|
513
|
+
|
|
514
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
515
|
+
content: "";
|
|
516
|
+
}
|
|
517
|
+
|
|
510
518
|
.e-ddl-device-filter .e-filter-parent {
|
|
511
519
|
background-color: var(--color-sf-content-bg-color);
|
|
512
520
|
}
|
package/styles/bootstrap5.3.css
CHANGED
|
@@ -596,6 +596,14 @@
|
|
|
596
596
|
content: "";
|
|
597
597
|
}
|
|
598
598
|
|
|
599
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
600
|
+
position: relative;
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
604
|
+
content: "";
|
|
605
|
+
}
|
|
606
|
+
|
|
599
607
|
.e-ddl-device-filter .e-filter-parent {
|
|
600
608
|
background-color: var(--color-sf-content-bg-color);
|
|
601
609
|
}
|
package/styles/bootstrap5.css
CHANGED
|
@@ -592,6 +592,14 @@
|
|
|
592
592
|
content: "";
|
|
593
593
|
}
|
|
594
594
|
|
|
595
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
596
|
+
position: relative;
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
600
|
+
content: "";
|
|
601
|
+
}
|
|
602
|
+
|
|
595
603
|
.e-ddl-device-filter .e-filter-parent {
|
|
596
604
|
background-color: #fff;
|
|
597
605
|
}
|
|
@@ -35,6 +35,14 @@
|
|
|
35
35
|
content: '';
|
|
36
36
|
}
|
|
37
37
|
|
|
38
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
39
|
+
position: relative;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
43
|
+
content: '';
|
|
44
|
+
}
|
|
45
|
+
|
|
38
46
|
.e-ddl-device-filter .e-filter-parent {
|
|
39
47
|
background-color: $ddl-filter-background-color;
|
|
40
48
|
}
|
|
@@ -330,6 +330,14 @@
|
|
|
330
330
|
content: "";
|
|
331
331
|
}
|
|
332
332
|
|
|
333
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
334
|
+
position: relative;
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
338
|
+
content: "";
|
|
339
|
+
}
|
|
340
|
+
|
|
333
341
|
.e-ddl-device-filter .e-filter-parent {
|
|
334
342
|
background-color: var(--color-sf-bg-primary-alt);
|
|
335
343
|
}
|
|
@@ -149,6 +149,14 @@
|
|
|
149
149
|
content: "";
|
|
150
150
|
}
|
|
151
151
|
|
|
152
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
153
|
+
position: relative;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
157
|
+
content: "";
|
|
158
|
+
}
|
|
159
|
+
|
|
152
160
|
.e-ddl-device-filter .e-filter-parent {
|
|
153
161
|
background-color: #6e6e6e;
|
|
154
162
|
}
|
|
@@ -149,6 +149,14 @@
|
|
|
149
149
|
content: "";
|
|
150
150
|
}
|
|
151
151
|
|
|
152
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
153
|
+
position: relative;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
157
|
+
content: "";
|
|
158
|
+
}
|
|
159
|
+
|
|
152
160
|
.e-ddl-device-filter .e-filter-parent {
|
|
153
161
|
background-color: #fff;
|
|
154
162
|
}
|
|
@@ -183,6 +183,14 @@
|
|
|
183
183
|
content: "";
|
|
184
184
|
}
|
|
185
185
|
|
|
186
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
187
|
+
position: relative;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
191
|
+
content: "";
|
|
192
|
+
}
|
|
193
|
+
|
|
186
194
|
.e-ddl-device-filter .e-filter-parent {
|
|
187
195
|
background-color: #fff;
|
|
188
196
|
}
|
|
@@ -200,6 +200,14 @@
|
|
|
200
200
|
content: "";
|
|
201
201
|
}
|
|
202
202
|
|
|
203
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
204
|
+
position: relative;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
208
|
+
content: "";
|
|
209
|
+
}
|
|
210
|
+
|
|
203
211
|
.e-ddl-device-filter .e-filter-parent {
|
|
204
212
|
background-color: #212529;
|
|
205
213
|
}
|
|
@@ -204,6 +204,14 @@
|
|
|
204
204
|
content: "";
|
|
205
205
|
}
|
|
206
206
|
|
|
207
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
208
|
+
position: relative;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
212
|
+
content: "";
|
|
213
|
+
}
|
|
214
|
+
|
|
207
215
|
.e-ddl-device-filter .e-filter-parent {
|
|
208
216
|
background-color: var(--color-sf-content-bg-color);
|
|
209
217
|
}
|
|
@@ -200,6 +200,14 @@
|
|
|
200
200
|
content: "";
|
|
201
201
|
}
|
|
202
202
|
|
|
203
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
204
|
+
position: relative;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
208
|
+
content: "";
|
|
209
|
+
}
|
|
210
|
+
|
|
203
211
|
.e-ddl-device-filter .e-filter-parent {
|
|
204
212
|
background-color: #fff;
|
|
205
213
|
}
|
|
@@ -125,6 +125,14 @@
|
|
|
125
125
|
content: "";
|
|
126
126
|
}
|
|
127
127
|
|
|
128
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
129
|
+
position: relative;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
133
|
+
content: "";
|
|
134
|
+
}
|
|
135
|
+
|
|
128
136
|
.e-ddl-device-filter .e-filter-parent {
|
|
129
137
|
background-color: #201f1f;
|
|
130
138
|
}
|
|
@@ -125,6 +125,14 @@
|
|
|
125
125
|
content: "";
|
|
126
126
|
}
|
|
127
127
|
|
|
128
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
129
|
+
position: relative;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
133
|
+
content: "";
|
|
134
|
+
}
|
|
135
|
+
|
|
128
136
|
.e-ddl-device-filter .e-filter-parent {
|
|
129
137
|
background-color: #fff;
|
|
130
138
|
}
|
|
@@ -193,6 +193,14 @@
|
|
|
193
193
|
content: "";
|
|
194
194
|
}
|
|
195
195
|
|
|
196
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
197
|
+
position: relative;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
201
|
+
content: "";
|
|
202
|
+
}
|
|
203
|
+
|
|
196
204
|
.e-ddl-device-filter .e-filter-parent {
|
|
197
205
|
background-color: #252423;
|
|
198
206
|
}
|
|
@@ -193,6 +193,14 @@
|
|
|
193
193
|
content: "";
|
|
194
194
|
}
|
|
195
195
|
|
|
196
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
197
|
+
position: relative;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
201
|
+
content: "";
|
|
202
|
+
}
|
|
203
|
+
|
|
196
204
|
.e-ddl-device-filter .e-filter-parent {
|
|
197
205
|
background-color: #fff;
|
|
198
206
|
}
|
|
@@ -370,6 +370,14 @@
|
|
|
370
370
|
content: "";
|
|
371
371
|
}
|
|
372
372
|
|
|
373
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
374
|
+
position: relative;
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
378
|
+
content: "";
|
|
379
|
+
}
|
|
380
|
+
|
|
373
381
|
.e-ddl-device-filter .e-filter-parent {
|
|
374
382
|
background-color: var(--color-sf-flyout-bg-color);
|
|
375
383
|
}
|
|
@@ -142,6 +142,14 @@
|
|
|
142
142
|
content: "";
|
|
143
143
|
}
|
|
144
144
|
|
|
145
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
146
|
+
position: relative;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
150
|
+
content: "";
|
|
151
|
+
}
|
|
152
|
+
|
|
145
153
|
.e-ddl-device-filter .e-filter-parent {
|
|
146
154
|
background-color: #fff;
|
|
147
155
|
}
|
|
@@ -146,6 +146,14 @@
|
|
|
146
146
|
content: "";
|
|
147
147
|
}
|
|
148
148
|
|
|
149
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
150
|
+
position: relative;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
154
|
+
content: "";
|
|
155
|
+
}
|
|
156
|
+
|
|
149
157
|
.e-ddl-device-filter .e-filter-parent {
|
|
150
158
|
background-color: #000;
|
|
151
159
|
}
|
|
@@ -188,6 +188,14 @@
|
|
|
188
188
|
content: "";
|
|
189
189
|
}
|
|
190
190
|
|
|
191
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
192
|
+
position: relative;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
196
|
+
content: "";
|
|
197
|
+
}
|
|
198
|
+
|
|
191
199
|
.e-ddl-device-filter .e-filter-parent {
|
|
192
200
|
background-color: #f5f5f5;
|
|
193
201
|
}
|
|
@@ -212,6 +212,14 @@
|
|
|
212
212
|
content: "";
|
|
213
213
|
}
|
|
214
214
|
|
|
215
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
216
|
+
position: relative;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
220
|
+
content: "";
|
|
221
|
+
}
|
|
222
|
+
|
|
215
223
|
.e-ddl-device-filter .e-filter-parent {
|
|
216
224
|
background-color: #f5f5f5;
|
|
217
225
|
}
|
|
@@ -225,6 +225,14 @@
|
|
|
225
225
|
content: "";
|
|
226
226
|
}
|
|
227
227
|
|
|
228
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
229
|
+
position: relative;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
233
|
+
content: "";
|
|
234
|
+
}
|
|
235
|
+
|
|
228
236
|
.e-ddl-device-filter .e-filter-parent {
|
|
229
237
|
background-color: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.11), rgba(var(--color-sf-primary), 0.11)), rgba(var(--color-sf-surface));
|
|
230
238
|
}
|
|
@@ -227,6 +227,14 @@
|
|
|
227
227
|
content: "";
|
|
228
228
|
}
|
|
229
229
|
|
|
230
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
231
|
+
position: relative;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
235
|
+
content: "";
|
|
236
|
+
}
|
|
237
|
+
|
|
230
238
|
.e-ddl-device-filter .e-filter-parent {
|
|
231
239
|
background-color: linear-gradient(0deg, rgba(var(--color-sf-surface), 1), rgba(var(--color-sf-surface), 1)), rgba(var(--color-sf-surface));
|
|
232
240
|
}
|
|
@@ -180,6 +180,14 @@
|
|
|
180
180
|
content: "";
|
|
181
181
|
}
|
|
182
182
|
|
|
183
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
184
|
+
position: relative;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
188
|
+
content: "";
|
|
189
|
+
}
|
|
190
|
+
|
|
183
191
|
.e-ddl-device-filter .e-filter-parent {
|
|
184
192
|
background-color: #374151;
|
|
185
193
|
}
|
|
@@ -180,6 +180,14 @@
|
|
|
180
180
|
content: "";
|
|
181
181
|
}
|
|
182
182
|
|
|
183
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
184
|
+
position: relative;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
188
|
+
content: "";
|
|
189
|
+
}
|
|
190
|
+
|
|
183
191
|
.e-ddl-device-filter .e-filter-parent {
|
|
184
192
|
background-color: #fff;
|
|
185
193
|
}
|
|
@@ -212,6 +212,14 @@
|
|
|
212
212
|
content: "";
|
|
213
213
|
}
|
|
214
214
|
|
|
215
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
216
|
+
position: relative;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
220
|
+
content: "";
|
|
221
|
+
}
|
|
222
|
+
|
|
215
223
|
.e-ddl-device-filter .e-filter-parent {
|
|
216
224
|
background-color: var(--color-sf-content-bg-color);
|
|
217
225
|
}
|
|
@@ -422,6 +422,14 @@
|
|
|
422
422
|
content: "";
|
|
423
423
|
}
|
|
424
424
|
|
|
425
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
426
|
+
position: relative;
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
430
|
+
content: "";
|
|
431
|
+
}
|
|
432
|
+
|
|
425
433
|
.e-ddl-device-filter .e-filter-parent {
|
|
426
434
|
background-color: #201f1f;
|
|
427
435
|
}
|
package/styles/fabric-dark.css
CHANGED
|
@@ -497,6 +497,14 @@
|
|
|
497
497
|
content: "";
|
|
498
498
|
}
|
|
499
499
|
|
|
500
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
501
|
+
position: relative;
|
|
502
|
+
}
|
|
503
|
+
|
|
504
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
505
|
+
content: "";
|
|
506
|
+
}
|
|
507
|
+
|
|
500
508
|
.e-ddl-device-filter .e-filter-parent {
|
|
501
509
|
background-color: #201f1f;
|
|
502
510
|
}
|
package/styles/fabric-lite.css
CHANGED
|
@@ -422,6 +422,14 @@
|
|
|
422
422
|
content: "";
|
|
423
423
|
}
|
|
424
424
|
|
|
425
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
426
|
+
position: relative;
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
430
|
+
content: "";
|
|
431
|
+
}
|
|
432
|
+
|
|
425
433
|
.e-ddl-device-filter .e-filter-parent {
|
|
426
434
|
background-color: #fff;
|
|
427
435
|
}
|
package/styles/fabric.css
CHANGED
|
@@ -497,6 +497,14 @@
|
|
|
497
497
|
content: "";
|
|
498
498
|
}
|
|
499
499
|
|
|
500
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
501
|
+
position: relative;
|
|
502
|
+
}
|
|
503
|
+
|
|
504
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
505
|
+
content: "";
|
|
506
|
+
}
|
|
507
|
+
|
|
500
508
|
.e-ddl-device-filter .e-filter-parent {
|
|
501
509
|
background-color: #fff;
|
|
502
510
|
}
|
|
@@ -500,6 +500,14 @@
|
|
|
500
500
|
content: "";
|
|
501
501
|
}
|
|
502
502
|
|
|
503
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
504
|
+
position: relative;
|
|
505
|
+
}
|
|
506
|
+
|
|
507
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
508
|
+
content: "";
|
|
509
|
+
}
|
|
510
|
+
|
|
503
511
|
.e-ddl-device-filter .e-filter-parent {
|
|
504
512
|
background-color: #252423;
|
|
505
513
|
}
|
package/styles/fluent-dark.css
CHANGED
|
@@ -601,6 +601,14 @@
|
|
|
601
601
|
content: "";
|
|
602
602
|
}
|
|
603
603
|
|
|
604
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
605
|
+
position: relative;
|
|
606
|
+
}
|
|
607
|
+
|
|
608
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
609
|
+
content: "";
|
|
610
|
+
}
|
|
611
|
+
|
|
604
612
|
.e-ddl-device-filter .e-filter-parent {
|
|
605
613
|
background-color: #252423;
|
|
606
614
|
}
|
package/styles/fluent-lite.css
CHANGED
|
@@ -500,6 +500,14 @@
|
|
|
500
500
|
content: "";
|
|
501
501
|
}
|
|
502
502
|
|
|
503
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
504
|
+
position: relative;
|
|
505
|
+
}
|
|
506
|
+
|
|
507
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
508
|
+
content: "";
|
|
509
|
+
}
|
|
510
|
+
|
|
503
511
|
.e-ddl-device-filter .e-filter-parent {
|
|
504
512
|
background-color: #fff;
|
|
505
513
|
}
|
package/styles/fluent.css
CHANGED
|
@@ -601,6 +601,14 @@
|
|
|
601
601
|
content: "";
|
|
602
602
|
}
|
|
603
603
|
|
|
604
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
605
|
+
position: relative;
|
|
606
|
+
}
|
|
607
|
+
|
|
608
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
609
|
+
content: "";
|
|
610
|
+
}
|
|
611
|
+
|
|
604
612
|
.e-ddl-device-filter .e-filter-parent {
|
|
605
613
|
background-color: #fff;
|
|
606
614
|
}
|
package/styles/fluent2-lite.css
CHANGED
|
@@ -669,6 +669,14 @@
|
|
|
669
669
|
content: "";
|
|
670
670
|
}
|
|
671
671
|
|
|
672
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
673
|
+
position: relative;
|
|
674
|
+
}
|
|
675
|
+
|
|
676
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
677
|
+
content: "";
|
|
678
|
+
}
|
|
679
|
+
|
|
672
680
|
.e-ddl-device-filter .e-filter-parent {
|
|
673
681
|
background-color: var(--color-sf-flyout-bg-color);
|
|
674
682
|
}
|
package/styles/fluent2.css
CHANGED
|
@@ -761,6 +761,14 @@
|
|
|
761
761
|
content: "";
|
|
762
762
|
}
|
|
763
763
|
|
|
764
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
765
|
+
position: relative;
|
|
766
|
+
}
|
|
767
|
+
|
|
768
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
769
|
+
content: "";
|
|
770
|
+
}
|
|
771
|
+
|
|
764
772
|
.e-ddl-device-filter .e-filter-parent {
|
|
765
773
|
background-color: var(--color-sf-flyout-bg-color);
|
|
766
774
|
}
|
|
@@ -439,6 +439,14 @@
|
|
|
439
439
|
content: "";
|
|
440
440
|
}
|
|
441
441
|
|
|
442
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
443
|
+
position: relative;
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
447
|
+
content: "";
|
|
448
|
+
}
|
|
449
|
+
|
|
442
450
|
.e-ddl-device-filter .e-filter-parent {
|
|
443
451
|
background-color: #fff;
|
|
444
452
|
}
|
|
@@ -514,6 +514,14 @@
|
|
|
514
514
|
content: "";
|
|
515
515
|
}
|
|
516
516
|
|
|
517
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
518
|
+
position: relative;
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
522
|
+
content: "";
|
|
523
|
+
}
|
|
524
|
+
|
|
517
525
|
.e-ddl-device-filter .e-filter-parent {
|
|
518
526
|
background-color: #fff;
|
|
519
527
|
}
|
|
@@ -443,6 +443,14 @@
|
|
|
443
443
|
content: "";
|
|
444
444
|
}
|
|
445
445
|
|
|
446
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
447
|
+
position: relative;
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
451
|
+
content: "";
|
|
452
|
+
}
|
|
453
|
+
|
|
446
454
|
.e-ddl-device-filter .e-filter-parent {
|
|
447
455
|
background-color: #000;
|
|
448
456
|
}
|
package/styles/highcontrast.css
CHANGED
|
@@ -518,6 +518,14 @@
|
|
|
518
518
|
content: "";
|
|
519
519
|
}
|
|
520
520
|
|
|
521
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
522
|
+
position: relative;
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
526
|
+
content: "";
|
|
527
|
+
}
|
|
528
|
+
|
|
521
529
|
.e-ddl-device-filter .e-filter-parent {
|
|
522
530
|
background-color: #000;
|
|
523
531
|
}
|