@syncfusion/ej2-dropdowns 23.1.36 → 23.1.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.
- package/CHANGELOG.md +10 -0
- package/dist/ej2-dropdowns.min.js +3 -3
- package/dist/ej2-dropdowns.umd.min.js +3 -3
- package/dist/ej2-dropdowns.umd.min.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es2015.js +36 -6
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +36 -6
- package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
- package/dist/global/ej2-dropdowns.min.js +3 -3
- package/dist/global/ej2-dropdowns.min.js.map +1 -1
- package/dist/global/index.d.ts +2 -2
- package/package.json +9 -9
- package/src/common/virtual-scroll.d.ts +1 -0
- package/src/common/virtual-scroll.js +3 -0
- package/src/drop-down-list/drop-down-list.d.ts +1 -0
- package/src/drop-down-list/drop-down-list.js +31 -5
- package/src/multi-select/multi-select.js +2 -1
- package/styles/bootstrap-dark.css +82 -8
- package/styles/bootstrap.css +82 -8
- package/styles/bootstrap4.css +83 -9
- package/styles/bootstrap5-dark.css +83 -9
- package/styles/bootstrap5.css +83 -9
- package/styles/fabric-dark.css +83 -9
- package/styles/fabric.css +83 -9
- package/styles/fluent-dark.css +82 -8
- package/styles/fluent.css +82 -8
- package/styles/highcontrast-light.css +82 -8
- package/styles/highcontrast.css +82 -8
- package/styles/list-box/_bootstrap-dark-definition.scss +6 -2
- package/styles/list-box/_bootstrap-definition.scss +7 -3
- package/styles/list-box/_bootstrap4-definition.scss +8 -4
- package/styles/list-box/_bootstrap5-definition.scss +6 -4
- package/styles/list-box/_fabric-dark-definition.scss +6 -2
- package/styles/list-box/_fabric-definition.scss +6 -2
- package/styles/list-box/_fluent-definition.scss +8 -6
- package/styles/list-box/_highcontrast-definition.scss +6 -2
- package/styles/list-box/_highcontrast-light-definition.scss +6 -2
- package/styles/list-box/_material-dark-definition.scss +8 -4
- package/styles/list-box/_material-definition.scss +8 -4
- package/styles/list-box/_material3-definition.scss +8 -6
- package/styles/list-box/_tailwind-definition.scss +8 -6
- package/styles/list-box/_theme.scss +72 -7
- package/styles/list-box/bootstrap-dark.css +70 -7
- package/styles/list-box/bootstrap.css +70 -7
- package/styles/list-box/bootstrap4.css +71 -8
- package/styles/list-box/bootstrap5-dark.css +71 -8
- package/styles/list-box/bootstrap5.css +71 -8
- package/styles/list-box/fabric-dark.css +70 -7
- package/styles/list-box/fabric.css +70 -7
- package/styles/list-box/fluent-dark.css +70 -7
- package/styles/list-box/fluent.css +70 -7
- package/styles/list-box/highcontrast-light.css +70 -7
- package/styles/list-box/highcontrast.css +70 -7
- package/styles/list-box/material-dark.css +71 -8
- package/styles/list-box/material.css +71 -8
- package/styles/list-box/material3-dark.css +71 -8
- package/styles/list-box/material3.css +71 -8
- package/styles/list-box/tailwind-dark.css +71 -8
- package/styles/list-box/tailwind.css +71 -8
- package/styles/material-dark.css +83 -9
- package/styles/material.css +83 -9
- package/styles/material3-dark.css +81 -8
- package/styles/material3.css +81 -8
- package/styles/multi-select/_bootstrap-dark-definition.scss +2 -0
- package/styles/multi-select/_bootstrap-definition.scss +2 -0
- package/styles/multi-select/_bootstrap4-definition.scss +2 -0
- package/styles/multi-select/_bootstrap5-definition.scss +2 -0
- package/styles/multi-select/_fabric-dark-definition.scss +3 -1
- package/styles/multi-select/_fabric-definition.scss +3 -1
- package/styles/multi-select/_fluent-definition.scss +2 -0
- package/styles/multi-select/_highcontrast-definition.scss +2 -0
- package/styles/multi-select/_highcontrast-light-definition.scss +2 -0
- package/styles/multi-select/_layout.scss +12 -1
- package/styles/multi-select/_material-dark-definition.scss +2 -0
- package/styles/multi-select/_material-definition.scss +2 -0
- package/styles/multi-select/_tailwind-definition.scss +2 -0
- package/styles/multi-select/bootstrap-dark.css +12 -1
- package/styles/multi-select/bootstrap.css +12 -1
- package/styles/multi-select/bootstrap4.css +12 -1
- package/styles/multi-select/bootstrap5-dark.css +12 -1
- package/styles/multi-select/bootstrap5.css +12 -1
- package/styles/multi-select/fabric-dark.css +13 -2
- package/styles/multi-select/fabric.css +13 -2
- package/styles/multi-select/fluent-dark.css +12 -1
- package/styles/multi-select/fluent.css +12 -1
- package/styles/multi-select/highcontrast-light.css +12 -1
- package/styles/multi-select/highcontrast.css +12 -1
- package/styles/multi-select/material-dark.css +12 -1
- package/styles/multi-select/material.css +12 -1
- package/styles/multi-select/material3-dark.css +10 -0
- package/styles/multi-select/material3.css +10 -0
- package/styles/multi-select/tailwind-dark.css +12 -1
- package/styles/multi-select/tailwind.css +12 -1
- package/styles/tailwind-dark.css +83 -9
- package/styles/tailwind.css +83 -9
|
@@ -220,8 +220,9 @@
|
|
|
220
220
|
padding: 0 0 0 48px;
|
|
221
221
|
}
|
|
222
222
|
|
|
223
|
-
.e-bigger .e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon
|
|
224
|
-
|
|
223
|
+
.e-bigger .e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon,
|
|
224
|
+
.e-bigger.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
225
|
+
margin-top: -3.15em;
|
|
225
226
|
}
|
|
226
227
|
|
|
227
228
|
.e-popup.e-multi-select-list-wrapper .e-list-item.e-disabled,
|
|
@@ -767,11 +768,21 @@ ejs-multiselect {
|
|
|
767
768
|
margin-top: -3em;
|
|
768
769
|
}
|
|
769
770
|
|
|
771
|
+
.e-small.e-multiselect.e-control-container .e-multi-select-wrapper .e-ddl-icon,
|
|
772
|
+
.e-small.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
773
|
+
margin-top: -2.5em;
|
|
774
|
+
}
|
|
775
|
+
|
|
770
776
|
.e-bigger.e-small.e-multi-select-list-wrapper .e-selectall-parent,
|
|
771
777
|
.e-bigger.e-small .e-multi-select-list-wrapper .e-selectall-parent {
|
|
772
778
|
line-height: 40px;
|
|
773
779
|
}
|
|
774
780
|
|
|
781
|
+
.e-bigger.e-small.e-multiselect.e-control-container .e-multi-select-wrapper .e-ddl-icon,
|
|
782
|
+
.e-bigger.e-small.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
783
|
+
margin-top: -2.85em;
|
|
784
|
+
}
|
|
785
|
+
|
|
775
786
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips-close {
|
|
776
787
|
height: 26px;
|
|
777
788
|
width: auto;
|
|
@@ -290,7 +290,8 @@
|
|
|
290
290
|
padding: 0 0 0 48px;
|
|
291
291
|
}
|
|
292
292
|
|
|
293
|
-
.e-bigger .e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon
|
|
293
|
+
.e-bigger .e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon,
|
|
294
|
+
.e-bigger.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
294
295
|
margin-top: -1.68em;
|
|
295
296
|
}
|
|
296
297
|
|
|
@@ -884,11 +885,21 @@ ejs-multiselect {
|
|
|
884
885
|
width: 12px;
|
|
885
886
|
}
|
|
886
887
|
|
|
888
|
+
.e-small.e-multiselect.e-control-container .e-multi-select-wrapper .e-ddl-icon,
|
|
889
|
+
.e-small.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
890
|
+
margin-top: -1.6em;
|
|
891
|
+
}
|
|
892
|
+
|
|
887
893
|
.e-bigger.e-small.e-multi-select-list-wrapper .e-selectall-parent,
|
|
888
894
|
.e-bigger.e-small .e-multi-select-list-wrapper .e-selectall-parent {
|
|
889
895
|
line-height: 40px;
|
|
890
896
|
}
|
|
891
897
|
|
|
898
|
+
.e-bigger.e-small.e-multiselect.e-control-container .e-multi-select-wrapper .e-ddl-icon,
|
|
899
|
+
.e-bigger.e-small.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
900
|
+
margin-top: -1.68em;
|
|
901
|
+
}
|
|
902
|
+
|
|
892
903
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips-close {
|
|
893
904
|
height: 14px;
|
|
894
905
|
width: 14px;
|
|
@@ -290,7 +290,8 @@
|
|
|
290
290
|
padding: 0 0 0 48px;
|
|
291
291
|
}
|
|
292
292
|
|
|
293
|
-
.e-bigger .e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon
|
|
293
|
+
.e-bigger .e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon,
|
|
294
|
+
.e-bigger.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
294
295
|
margin-top: -1.68em;
|
|
295
296
|
}
|
|
296
297
|
|
|
@@ -884,11 +885,21 @@ ejs-multiselect {
|
|
|
884
885
|
width: 12px;
|
|
885
886
|
}
|
|
886
887
|
|
|
888
|
+
.e-small.e-multiselect.e-control-container .e-multi-select-wrapper .e-ddl-icon,
|
|
889
|
+
.e-small.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
890
|
+
margin-top: -1.6em;
|
|
891
|
+
}
|
|
892
|
+
|
|
887
893
|
.e-bigger.e-small.e-multi-select-list-wrapper .e-selectall-parent,
|
|
888
894
|
.e-bigger.e-small .e-multi-select-list-wrapper .e-selectall-parent {
|
|
889
895
|
line-height: 40px;
|
|
890
896
|
}
|
|
891
897
|
|
|
898
|
+
.e-bigger.e-small.e-multiselect.e-control-container .e-multi-select-wrapper .e-ddl-icon,
|
|
899
|
+
.e-bigger.e-small.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
900
|
+
margin-top: -1.68em;
|
|
901
|
+
}
|
|
902
|
+
|
|
892
903
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips-close {
|
|
893
904
|
height: 14px;
|
|
894
905
|
width: 14px;
|
|
@@ -314,7 +314,8 @@
|
|
|
314
314
|
padding: 0 0 0 48px;
|
|
315
315
|
}
|
|
316
316
|
|
|
317
|
-
.e-bigger .e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon
|
|
317
|
+
.e-bigger .e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon,
|
|
318
|
+
.e-bigger.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
318
319
|
margin-top: -2.8em;
|
|
319
320
|
}
|
|
320
321
|
|
|
@@ -875,11 +876,21 @@ ejs-multiselect {
|
|
|
875
876
|
margin-top: -2.9em;
|
|
876
877
|
}
|
|
877
878
|
|
|
879
|
+
.e-small.e-multiselect.e-control-container .e-multi-select-wrapper .e-ddl-icon,
|
|
880
|
+
.e-small.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
881
|
+
margin-top: -2.5em;
|
|
882
|
+
}
|
|
883
|
+
|
|
878
884
|
.e-bigger.e-small.e-multi-select-list-wrapper .e-selectall-parent,
|
|
879
885
|
.e-bigger.e-small .e-multi-select-list-wrapper .e-selectall-parent {
|
|
880
886
|
line-height: 40px;
|
|
881
887
|
}
|
|
882
888
|
|
|
889
|
+
.e-bigger.e-small.e-multiselect.e-control-container .e-multi-select-wrapper .e-ddl-icon,
|
|
890
|
+
.e-bigger.e-small.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
891
|
+
margin-top: -2.85em;
|
|
892
|
+
}
|
|
893
|
+
|
|
883
894
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips-close {
|
|
884
895
|
height: 26px;
|
|
885
896
|
width: 26px;
|
|
@@ -316,7 +316,8 @@
|
|
|
316
316
|
padding: 0 0 0 48px;
|
|
317
317
|
}
|
|
318
318
|
|
|
319
|
-
.e-bigger .e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon
|
|
319
|
+
.e-bigger .e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon,
|
|
320
|
+
.e-bigger.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
320
321
|
margin-top: -3.1em;
|
|
321
322
|
}
|
|
322
323
|
|
|
@@ -877,11 +878,21 @@ ejs-multiselect {
|
|
|
877
878
|
margin-top: -3.2em;
|
|
878
879
|
}
|
|
879
880
|
|
|
881
|
+
.e-small.e-multiselect.e-control-container .e-multi-select-wrapper .e-ddl-icon,
|
|
882
|
+
.e-small.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
883
|
+
margin-top: -2.5em;
|
|
884
|
+
}
|
|
885
|
+
|
|
880
886
|
.e-bigger.e-small.e-multi-select-list-wrapper .e-selectall-parent,
|
|
881
887
|
.e-bigger.e-small .e-multi-select-list-wrapper .e-selectall-parent {
|
|
882
888
|
line-height: 40px;
|
|
883
889
|
}
|
|
884
890
|
|
|
891
|
+
.e-bigger.e-small.e-multiselect.e-control-container .e-multi-select-wrapper .e-ddl-icon,
|
|
892
|
+
.e-bigger.e-small.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
893
|
+
margin-top: -2.85em;
|
|
894
|
+
}
|
|
895
|
+
|
|
885
896
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips-close {
|
|
886
897
|
height: 26px;
|
|
887
898
|
width: auto;
|
|
@@ -765,7 +765,8 @@
|
|
|
765
765
|
padding: 0 0 0 48px;
|
|
766
766
|
}
|
|
767
767
|
|
|
768
|
-
.e-bigger .e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon
|
|
768
|
+
.e-bigger .e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon,
|
|
769
|
+
.e-bigger.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
769
770
|
margin-top: -2.5em;
|
|
770
771
|
}
|
|
771
772
|
|
|
@@ -1336,11 +1337,21 @@ ejs-multiselect {
|
|
|
1336
1337
|
margin-top: -2.5em;
|
|
1337
1338
|
}
|
|
1338
1339
|
|
|
1340
|
+
.e-small.e-multiselect.e-control-container .e-multi-select-wrapper .e-ddl-icon,
|
|
1341
|
+
.e-small.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
1342
|
+
margin-top: -1.8em;
|
|
1343
|
+
}
|
|
1344
|
+
|
|
1339
1345
|
.e-bigger.e-small.e-multi-select-list-wrapper .e-selectall-parent,
|
|
1340
1346
|
.e-bigger.e-small .e-multi-select-list-wrapper .e-selectall-parent {
|
|
1341
1347
|
line-height: 40px;
|
|
1342
1348
|
}
|
|
1343
1349
|
|
|
1350
|
+
.e-bigger.e-small.e-multiselect.e-control-container .e-multi-select-wrapper .e-ddl-icon,
|
|
1351
|
+
.e-bigger.e-small.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
1352
|
+
margin-top: -2em;
|
|
1353
|
+
}
|
|
1354
|
+
|
|
1344
1355
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips-close {
|
|
1345
1356
|
height: 16px;
|
|
1346
1357
|
width: 16px;
|
|
@@ -773,7 +773,8 @@
|
|
|
773
773
|
padding: 0 0 0 48px;
|
|
774
774
|
}
|
|
775
775
|
|
|
776
|
-
.e-bigger .e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon
|
|
776
|
+
.e-bigger .e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon,
|
|
777
|
+
.e-bigger.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
777
778
|
margin-top: -2.5em;
|
|
778
779
|
}
|
|
779
780
|
|
|
@@ -1344,11 +1345,21 @@ ejs-multiselect {
|
|
|
1344
1345
|
margin-top: -2.5em;
|
|
1345
1346
|
}
|
|
1346
1347
|
|
|
1348
|
+
.e-small.e-multiselect.e-control-container .e-multi-select-wrapper .e-ddl-icon,
|
|
1349
|
+
.e-small.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
1350
|
+
margin-top: -1.8em;
|
|
1351
|
+
}
|
|
1352
|
+
|
|
1347
1353
|
.e-bigger.e-small.e-multi-select-list-wrapper .e-selectall-parent,
|
|
1348
1354
|
.e-bigger.e-small .e-multi-select-list-wrapper .e-selectall-parent {
|
|
1349
1355
|
line-height: 40px;
|
|
1350
1356
|
}
|
|
1351
1357
|
|
|
1358
|
+
.e-bigger.e-small.e-multiselect.e-control-container .e-multi-select-wrapper .e-ddl-icon,
|
|
1359
|
+
.e-bigger.e-small.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
1360
|
+
margin-top: -2em;
|
|
1361
|
+
}
|
|
1362
|
+
|
|
1352
1363
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips-close {
|
|
1353
1364
|
height: 16px;
|
|
1354
1365
|
width: 16px;
|
|
@@ -1458,6 +1458,11 @@ ejs-multiselect {
|
|
|
1458
1458
|
margin-top: -1.4em;
|
|
1459
1459
|
}
|
|
1460
1460
|
|
|
1461
|
+
.e-small.e-multiselect.e-control-container .e-multi-select-wrapper .e-ddl-icon,
|
|
1462
|
+
.e-small.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
1463
|
+
margin-top: -1.4em;
|
|
1464
|
+
}
|
|
1465
|
+
|
|
1461
1466
|
.e-bigger.e-small.e-multi-select-list-wrapper .e-selectall-parent,
|
|
1462
1467
|
.e-bigger.e-small .e-multi-select-list-wrapper .e-selectall-parent {
|
|
1463
1468
|
line-height: 40px;
|
|
@@ -1469,6 +1474,11 @@ ejs-multiselect {
|
|
|
1469
1474
|
top: 100%;
|
|
1470
1475
|
}
|
|
1471
1476
|
|
|
1477
|
+
.e-bigger.e-small.e-multiselect.e-control-container .e-multi-select-wrapper .e-ddl-icon,
|
|
1478
|
+
.e-bigger.e-small.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
1479
|
+
margin-top: -1.7em;
|
|
1480
|
+
}
|
|
1481
|
+
|
|
1472
1482
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips-close {
|
|
1473
1483
|
height: 16px;
|
|
1474
1484
|
width: 16px;
|
|
@@ -1514,6 +1514,11 @@ ejs-multiselect {
|
|
|
1514
1514
|
margin-top: -1.4em;
|
|
1515
1515
|
}
|
|
1516
1516
|
|
|
1517
|
+
.e-small.e-multiselect.e-control-container .e-multi-select-wrapper .e-ddl-icon,
|
|
1518
|
+
.e-small.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
1519
|
+
margin-top: -1.4em;
|
|
1520
|
+
}
|
|
1521
|
+
|
|
1517
1522
|
.e-bigger.e-small.e-multi-select-list-wrapper .e-selectall-parent,
|
|
1518
1523
|
.e-bigger.e-small .e-multi-select-list-wrapper .e-selectall-parent {
|
|
1519
1524
|
line-height: 40px;
|
|
@@ -1525,6 +1530,11 @@ ejs-multiselect {
|
|
|
1525
1530
|
top: 100%;
|
|
1526
1531
|
}
|
|
1527
1532
|
|
|
1533
|
+
.e-bigger.e-small.e-multiselect.e-control-container .e-multi-select-wrapper .e-ddl-icon,
|
|
1534
|
+
.e-bigger.e-small.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
1535
|
+
margin-top: -1.7em;
|
|
1536
|
+
}
|
|
1537
|
+
|
|
1528
1538
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips-close {
|
|
1529
1539
|
height: 16px;
|
|
1530
1540
|
width: 16px;
|
|
@@ -271,7 +271,8 @@
|
|
|
271
271
|
padding: 0 0 0 48px;
|
|
272
272
|
}
|
|
273
273
|
|
|
274
|
-
.e-bigger .e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon
|
|
274
|
+
.e-bigger .e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon,
|
|
275
|
+
.e-bigger.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
275
276
|
margin-top: -1.3em;
|
|
276
277
|
}
|
|
277
278
|
|
|
@@ -848,6 +849,11 @@ ejs-multiselect {
|
|
|
848
849
|
width: 28px;
|
|
849
850
|
}
|
|
850
851
|
|
|
852
|
+
.e-small.e-multiselect.e-control-container .e-multi-select-wrapper .e-ddl-icon,
|
|
853
|
+
.e-small.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
854
|
+
margin-top: -1.3em;
|
|
855
|
+
}
|
|
856
|
+
|
|
851
857
|
.e-bigger.e-small.e-multi-select-list-wrapper .e-selectall-parent,
|
|
852
858
|
.e-bigger.e-small .e-multi-select-list-wrapper .e-selectall-parent {
|
|
853
859
|
line-height: 32px;
|
|
@@ -855,6 +861,11 @@ ejs-multiselect {
|
|
|
855
861
|
text-indent: 14px;
|
|
856
862
|
}
|
|
857
863
|
|
|
864
|
+
.e-bigger.e-small.e-multiselect.e-control-container .e-multi-select-wrapper .e-ddl-icon,
|
|
865
|
+
.e-bigger.e-small.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
866
|
+
margin-top: -1.3em;
|
|
867
|
+
}
|
|
868
|
+
|
|
858
869
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips-close {
|
|
859
870
|
height: 18px;
|
|
860
871
|
width: 18px;
|
|
@@ -271,7 +271,8 @@
|
|
|
271
271
|
padding: 0 0 0 48px;
|
|
272
272
|
}
|
|
273
273
|
|
|
274
|
-
.e-bigger .e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon
|
|
274
|
+
.e-bigger .e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon,
|
|
275
|
+
.e-bigger.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
275
276
|
margin-top: -1.3em;
|
|
276
277
|
}
|
|
277
278
|
|
|
@@ -848,6 +849,11 @@ ejs-multiselect {
|
|
|
848
849
|
width: 28px;
|
|
849
850
|
}
|
|
850
851
|
|
|
852
|
+
.e-small.e-multiselect.e-control-container .e-multi-select-wrapper .e-ddl-icon,
|
|
853
|
+
.e-small.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
854
|
+
margin-top: -1.3em;
|
|
855
|
+
}
|
|
856
|
+
|
|
851
857
|
.e-bigger.e-small.e-multi-select-list-wrapper .e-selectall-parent,
|
|
852
858
|
.e-bigger.e-small .e-multi-select-list-wrapper .e-selectall-parent {
|
|
853
859
|
line-height: 32px;
|
|
@@ -855,6 +861,11 @@ ejs-multiselect {
|
|
|
855
861
|
text-indent: 14px;
|
|
856
862
|
}
|
|
857
863
|
|
|
864
|
+
.e-bigger.e-small.e-multiselect.e-control-container .e-multi-select-wrapper .e-ddl-icon,
|
|
865
|
+
.e-bigger.e-small.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
866
|
+
margin-top: -1.3em;
|
|
867
|
+
}
|
|
868
|
+
|
|
858
869
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips-close {
|
|
859
870
|
height: 18px;
|
|
860
871
|
width: 18px;
|
package/styles/tailwind-dark.css
CHANGED
|
@@ -1527,7 +1527,8 @@ ejs-dropdownlist {
|
|
|
1527
1527
|
padding: 0 0 0 48px;
|
|
1528
1528
|
}
|
|
1529
1529
|
|
|
1530
|
-
.e-bigger .e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon
|
|
1530
|
+
.e-bigger .e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon,
|
|
1531
|
+
.e-bigger.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
1531
1532
|
margin-top: -1.3em;
|
|
1532
1533
|
}
|
|
1533
1534
|
|
|
@@ -2104,6 +2105,11 @@ ejs-multiselect {
|
|
|
2104
2105
|
width: 28px;
|
|
2105
2106
|
}
|
|
2106
2107
|
|
|
2108
|
+
.e-small.e-multiselect.e-control-container .e-multi-select-wrapper .e-ddl-icon,
|
|
2109
|
+
.e-small.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
2110
|
+
margin-top: -1.3em;
|
|
2111
|
+
}
|
|
2112
|
+
|
|
2107
2113
|
.e-bigger.e-small.e-multi-select-list-wrapper .e-selectall-parent,
|
|
2108
2114
|
.e-bigger.e-small .e-multi-select-list-wrapper .e-selectall-parent {
|
|
2109
2115
|
line-height: 32px;
|
|
@@ -2111,6 +2117,11 @@ ejs-multiselect {
|
|
|
2111
2117
|
text-indent: 14px;
|
|
2112
2118
|
}
|
|
2113
2119
|
|
|
2120
|
+
.e-bigger.e-small.e-multiselect.e-control-container .e-multi-select-wrapper .e-ddl-icon,
|
|
2121
|
+
.e-bigger.e-small.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
2122
|
+
margin-top: -1.3em;
|
|
2123
|
+
}
|
|
2124
|
+
|
|
2114
2125
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips-close {
|
|
2115
2126
|
height: 18px;
|
|
2116
2127
|
width: 18px;
|
|
@@ -3148,27 +3159,66 @@ ejs-listbox {
|
|
|
3148
3159
|
}
|
|
3149
3160
|
.e-small .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
3150
3161
|
.e-small .e-listbox-container.e-filter-list .e-list-parent {
|
|
3151
|
-
height: calc(100% - 45px);
|
|
3162
|
+
height: calc(100% - 45px) !important; /* stylelint-disable-line declaration-no-important */
|
|
3163
|
+
}
|
|
3164
|
+
|
|
3165
|
+
.e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
|
|
3166
|
+
height: calc(100% - 58px) !important; /* stylelint-disable-line declaration-no-important */
|
|
3167
|
+
}
|
|
3168
|
+
|
|
3169
|
+
.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
3170
|
+
height: calc(100% - 58px) !important; /* stylelint-disable-line declaration-no-important */
|
|
3152
3171
|
}
|
|
3153
3172
|
|
|
3154
|
-
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
3155
3173
|
.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
3156
|
-
height:
|
|
3174
|
+
height: 100%;
|
|
3157
3175
|
}
|
|
3158
3176
|
|
|
3159
3177
|
.e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
3160
3178
|
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
3161
|
-
height: calc(100% -
|
|
3179
|
+
height: calc(100% - 47px) !important; /* stylelint-disable-line declaration-no-important */
|
|
3180
|
+
}
|
|
3181
|
+
|
|
3182
|
+
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
3183
|
+
height: calc(100% - 47px) !important; /* stylelint-disable-line declaration-no-important */
|
|
3184
|
+
}
|
|
3185
|
+
|
|
3186
|
+
.e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
|
|
3187
|
+
height: calc(100% - 50px) !important; /* stylelint-disable-line declaration-no-important */
|
|
3188
|
+
}
|
|
3189
|
+
|
|
3190
|
+
.e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
|
|
3191
|
+
height: calc(100% - 58px) !important; /* stylelint-disable-line declaration-no-important */
|
|
3192
|
+
}
|
|
3193
|
+
|
|
3194
|
+
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
3195
|
+
height: 100%;
|
|
3162
3196
|
}
|
|
3163
3197
|
|
|
3164
3198
|
.e-bigger .e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
3199
|
+
.e-bigger .e-listbox-container .e-selectall-parent + .e-list-wrap {
|
|
3200
|
+
height: calc(100% - 48px) !important; /* stylelint-disable-line declaration-no-important */
|
|
3201
|
+
}
|
|
3202
|
+
|
|
3165
3203
|
.e-bigger .e-listbox-container .e-selectall-parent + .e-list-parent {
|
|
3166
|
-
height:
|
|
3204
|
+
height: 100%;
|
|
3167
3205
|
}
|
|
3168
3206
|
|
|
3169
3207
|
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
3208
|
+
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
3209
|
+
height: calc(100% - 53px) !important; /* stylelint-disable-line declaration-no-important */
|
|
3210
|
+
}
|
|
3211
|
+
|
|
3212
|
+
.e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-selectall-parent + .e-hidden-select + .e-listbox + .e-list-parent {
|
|
3213
|
+
height: calc(100% - 87.5px) !important; /* stylelint-disable-line declaration-no-important */
|
|
3214
|
+
}
|
|
3215
|
+
|
|
3216
|
+
.e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-selectall-parent + .e-hidden-select + .e-listbox + .e-list-parent {
|
|
3217
|
+
height: calc(100% - 106px) !important; /* stylelint-disable-line declaration-no-important */
|
|
3218
|
+
}
|
|
3219
|
+
|
|
3170
3220
|
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
3171
|
-
height:
|
|
3221
|
+
height: 100%;
|
|
3172
3222
|
}
|
|
3173
3223
|
|
|
3174
3224
|
.e-listbox-wrapper,
|
|
@@ -3205,13 +3255,13 @@ ejs-listbox {
|
|
|
3205
3255
|
.e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
3206
3256
|
.e-listbox-container.e-filter-list .e-list-parent,
|
|
3207
3257
|
.e-listboxtool-wrapper.e-filter-list .e-list-parent {
|
|
3208
|
-
height: calc(100% -
|
|
3258
|
+
height: calc(100% - 50px);
|
|
3209
3259
|
}
|
|
3210
3260
|
|
|
3211
3261
|
.e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
3212
3262
|
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
3213
3263
|
.e-listboxtool-wrapper.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
3214
|
-
height: calc(100% -
|
|
3264
|
+
height: calc(100% - 38px) !important; /* stylelint-disable-line declaration-no-important */
|
|
3215
3265
|
}
|
|
3216
3266
|
|
|
3217
3267
|
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
@@ -3487,6 +3537,30 @@ ejs-listbox {
|
|
|
3487
3537
|
padding-right: 16px;
|
|
3488
3538
|
}
|
|
3489
3539
|
|
|
3540
|
+
.e-listbox-container.e-filter-list .e-list-parent {
|
|
3541
|
+
height: 100%;
|
|
3542
|
+
}
|
|
3543
|
+
|
|
3544
|
+
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
3545
|
+
height: 100%;
|
|
3546
|
+
}
|
|
3547
|
+
|
|
3548
|
+
.e-listbox-container .e-selectall-parent + .e-list-parent {
|
|
3549
|
+
height: 100%;
|
|
3550
|
+
}
|
|
3551
|
+
|
|
3552
|
+
.e-listbox-container.e-filter-list .e-list-wrap {
|
|
3553
|
+
height: calc(100% - 50px) !important; /* stylelint-disable-line declaration-no-important */
|
|
3554
|
+
}
|
|
3555
|
+
|
|
3556
|
+
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-wrap {
|
|
3557
|
+
height: calc(100% - 38px) !important; /* stylelint-disable-line declaration-no-important */
|
|
3558
|
+
}
|
|
3559
|
+
|
|
3560
|
+
.e-listbox-container .e-selectall-parent + .e-list-wrap {
|
|
3561
|
+
height: calc(100% - 38px) !important; /* stylelint-disable-line declaration-no-important */
|
|
3562
|
+
}
|
|
3563
|
+
|
|
3490
3564
|
/* stylelint-disable-line no-empty-source */
|
|
3491
3565
|
/* stylelint-disable property-no-vendor-prefix */
|
|
3492
3566
|
@keyframes material-spinner-rotate {
|
package/styles/tailwind.css
CHANGED
|
@@ -1527,7 +1527,8 @@ ejs-dropdownlist {
|
|
|
1527
1527
|
padding: 0 0 0 48px;
|
|
1528
1528
|
}
|
|
1529
1529
|
|
|
1530
|
-
.e-bigger .e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon
|
|
1530
|
+
.e-bigger .e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon,
|
|
1531
|
+
.e-bigger.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
1531
1532
|
margin-top: -1.3em;
|
|
1532
1533
|
}
|
|
1533
1534
|
|
|
@@ -2104,6 +2105,11 @@ ejs-multiselect {
|
|
|
2104
2105
|
width: 28px;
|
|
2105
2106
|
}
|
|
2106
2107
|
|
|
2108
|
+
.e-small.e-multiselect.e-control-container .e-multi-select-wrapper .e-ddl-icon,
|
|
2109
|
+
.e-small.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
2110
|
+
margin-top: -1.3em;
|
|
2111
|
+
}
|
|
2112
|
+
|
|
2107
2113
|
.e-bigger.e-small.e-multi-select-list-wrapper .e-selectall-parent,
|
|
2108
2114
|
.e-bigger.e-small .e-multi-select-list-wrapper .e-selectall-parent {
|
|
2109
2115
|
line-height: 32px;
|
|
@@ -2111,6 +2117,11 @@ ejs-multiselect {
|
|
|
2111
2117
|
text-indent: 14px;
|
|
2112
2118
|
}
|
|
2113
2119
|
|
|
2120
|
+
.e-bigger.e-small.e-multiselect.e-control-container .e-multi-select-wrapper .e-ddl-icon,
|
|
2121
|
+
.e-bigger.e-small.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
2122
|
+
margin-top: -1.3em;
|
|
2123
|
+
}
|
|
2124
|
+
|
|
2114
2125
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips-close {
|
|
2115
2126
|
height: 18px;
|
|
2116
2127
|
width: 18px;
|
|
@@ -3148,27 +3159,66 @@ ejs-listbox {
|
|
|
3148
3159
|
}
|
|
3149
3160
|
.e-small .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
3150
3161
|
.e-small .e-listbox-container.e-filter-list .e-list-parent {
|
|
3151
|
-
height: calc(100% - 45px);
|
|
3162
|
+
height: calc(100% - 45px) !important; /* stylelint-disable-line declaration-no-important */
|
|
3163
|
+
}
|
|
3164
|
+
|
|
3165
|
+
.e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
|
|
3166
|
+
height: calc(100% - 58px) !important; /* stylelint-disable-line declaration-no-important */
|
|
3167
|
+
}
|
|
3168
|
+
|
|
3169
|
+
.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
3170
|
+
height: calc(100% - 58px) !important; /* stylelint-disable-line declaration-no-important */
|
|
3152
3171
|
}
|
|
3153
3172
|
|
|
3154
|
-
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
3155
3173
|
.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
3156
|
-
height:
|
|
3174
|
+
height: 100%;
|
|
3157
3175
|
}
|
|
3158
3176
|
|
|
3159
3177
|
.e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
3160
3178
|
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
3161
|
-
height: calc(100% -
|
|
3179
|
+
height: calc(100% - 47px) !important; /* stylelint-disable-line declaration-no-important */
|
|
3180
|
+
}
|
|
3181
|
+
|
|
3182
|
+
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
3183
|
+
height: calc(100% - 47px) !important; /* stylelint-disable-line declaration-no-important */
|
|
3184
|
+
}
|
|
3185
|
+
|
|
3186
|
+
.e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
|
|
3187
|
+
height: calc(100% - 50px) !important; /* stylelint-disable-line declaration-no-important */
|
|
3188
|
+
}
|
|
3189
|
+
|
|
3190
|
+
.e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
|
|
3191
|
+
height: calc(100% - 58px) !important; /* stylelint-disable-line declaration-no-important */
|
|
3192
|
+
}
|
|
3193
|
+
|
|
3194
|
+
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
3195
|
+
height: 100%;
|
|
3162
3196
|
}
|
|
3163
3197
|
|
|
3164
3198
|
.e-bigger .e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
3199
|
+
.e-bigger .e-listbox-container .e-selectall-parent + .e-list-wrap {
|
|
3200
|
+
height: calc(100% - 48px) !important; /* stylelint-disable-line declaration-no-important */
|
|
3201
|
+
}
|
|
3202
|
+
|
|
3165
3203
|
.e-bigger .e-listbox-container .e-selectall-parent + .e-list-parent {
|
|
3166
|
-
height:
|
|
3204
|
+
height: 100%;
|
|
3167
3205
|
}
|
|
3168
3206
|
|
|
3169
3207
|
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
3208
|
+
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
3209
|
+
height: calc(100% - 53px) !important; /* stylelint-disable-line declaration-no-important */
|
|
3210
|
+
}
|
|
3211
|
+
|
|
3212
|
+
.e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-selectall-parent + .e-hidden-select + .e-listbox + .e-list-parent {
|
|
3213
|
+
height: calc(100% - 87.5px) !important; /* stylelint-disable-line declaration-no-important */
|
|
3214
|
+
}
|
|
3215
|
+
|
|
3216
|
+
.e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-selectall-parent + .e-hidden-select + .e-listbox + .e-list-parent {
|
|
3217
|
+
height: calc(100% - 106px) !important; /* stylelint-disable-line declaration-no-important */
|
|
3218
|
+
}
|
|
3219
|
+
|
|
3170
3220
|
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
3171
|
-
height:
|
|
3221
|
+
height: 100%;
|
|
3172
3222
|
}
|
|
3173
3223
|
|
|
3174
3224
|
.e-listbox-wrapper,
|
|
@@ -3205,13 +3255,13 @@ ejs-listbox {
|
|
|
3205
3255
|
.e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
3206
3256
|
.e-listbox-container.e-filter-list .e-list-parent,
|
|
3207
3257
|
.e-listboxtool-wrapper.e-filter-list .e-list-parent {
|
|
3208
|
-
height: calc(100% -
|
|
3258
|
+
height: calc(100% - 50px);
|
|
3209
3259
|
}
|
|
3210
3260
|
|
|
3211
3261
|
.e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
3212
3262
|
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
3213
3263
|
.e-listboxtool-wrapper.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
3214
|
-
height: calc(100% -
|
|
3264
|
+
height: calc(100% - 38px) !important; /* stylelint-disable-line declaration-no-important */
|
|
3215
3265
|
}
|
|
3216
3266
|
|
|
3217
3267
|
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
@@ -3487,6 +3537,30 @@ ejs-listbox {
|
|
|
3487
3537
|
padding-right: 16px;
|
|
3488
3538
|
}
|
|
3489
3539
|
|
|
3540
|
+
.e-listbox-container.e-filter-list .e-list-parent {
|
|
3541
|
+
height: 100%;
|
|
3542
|
+
}
|
|
3543
|
+
|
|
3544
|
+
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
3545
|
+
height: 100%;
|
|
3546
|
+
}
|
|
3547
|
+
|
|
3548
|
+
.e-listbox-container .e-selectall-parent + .e-list-parent {
|
|
3549
|
+
height: 100%;
|
|
3550
|
+
}
|
|
3551
|
+
|
|
3552
|
+
.e-listbox-container.e-filter-list .e-list-wrap {
|
|
3553
|
+
height: calc(100% - 50px) !important; /* stylelint-disable-line declaration-no-important */
|
|
3554
|
+
}
|
|
3555
|
+
|
|
3556
|
+
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-wrap {
|
|
3557
|
+
height: calc(100% - 38px) !important; /* stylelint-disable-line declaration-no-important */
|
|
3558
|
+
}
|
|
3559
|
+
|
|
3560
|
+
.e-listbox-container .e-selectall-parent + .e-list-wrap {
|
|
3561
|
+
height: calc(100% - 38px) !important; /* stylelint-disable-line declaration-no-important */
|
|
3562
|
+
}
|
|
3563
|
+
|
|
3490
3564
|
/* stylelint-disable-line no-empty-source */
|
|
3491
3565
|
/* stylelint-disable property-no-vendor-prefix */
|
|
3492
3566
|
@keyframes material-spinner-rotate {
|