@syncfusion/ej2-vue-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-vue-dropdowns.umd.min.js +2 -2
- package/dist/global/ej2-vue-dropdowns.min.js +3 -3
- package/package.json +7 -7
- 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.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.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
|
@@ -2942,6 +2942,11 @@ ejs-multiselect {
|
|
|
2942
2942
|
margin-top: -1.4em;
|
|
2943
2943
|
}
|
|
2944
2944
|
|
|
2945
|
+
.e-small.e-multiselect.e-control-container .e-multi-select-wrapper .e-ddl-icon,
|
|
2946
|
+
.e-small.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
2947
|
+
margin-top: -1.4em;
|
|
2948
|
+
}
|
|
2949
|
+
|
|
2945
2950
|
.e-bigger.e-small.e-multi-select-list-wrapper .e-selectall-parent,
|
|
2946
2951
|
.e-bigger.e-small .e-multi-select-list-wrapper .e-selectall-parent {
|
|
2947
2952
|
line-height: 40px;
|
|
@@ -2953,6 +2958,11 @@ ejs-multiselect {
|
|
|
2953
2958
|
top: 100%;
|
|
2954
2959
|
}
|
|
2955
2960
|
|
|
2961
|
+
.e-bigger.e-small.e-multiselect.e-control-container .e-multi-select-wrapper .e-ddl-icon,
|
|
2962
|
+
.e-bigger.e-small.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
2963
|
+
margin-top: -1.7em;
|
|
2964
|
+
}
|
|
2965
|
+
|
|
2956
2966
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips-close {
|
|
2957
2967
|
height: 16px;
|
|
2958
2968
|
width: 16px;
|
|
@@ -4630,27 +4640,66 @@ ejs-listbox {
|
|
|
4630
4640
|
}
|
|
4631
4641
|
.e-small .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
4632
4642
|
.e-small .e-listbox-container.e-filter-list .e-list-parent {
|
|
4633
|
-
height: calc(100% - 35px);
|
|
4643
|
+
height: calc(100% - 35px) !important; /* stylelint-disable-line declaration-no-important */
|
|
4644
|
+
}
|
|
4645
|
+
|
|
4646
|
+
.e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
|
|
4647
|
+
height: calc(100% - 44px) !important; /* stylelint-disable-line declaration-no-important */
|
|
4648
|
+
}
|
|
4649
|
+
|
|
4650
|
+
.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
4651
|
+
height: calc(100% - 44px) !important; /* stylelint-disable-line declaration-no-important */
|
|
4634
4652
|
}
|
|
4635
4653
|
|
|
4636
|
-
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
4637
4654
|
.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
4638
|
-
height:
|
|
4655
|
+
height: 100%;
|
|
4639
4656
|
}
|
|
4640
4657
|
|
|
4641
4658
|
.e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
4642
4659
|
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
4643
|
-
height: calc(100% -
|
|
4660
|
+
height: calc(100% - 48px) !important; /* stylelint-disable-line declaration-no-important */
|
|
4661
|
+
}
|
|
4662
|
+
|
|
4663
|
+
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
4664
|
+
height: calc(100% - 48px) !important; /* stylelint-disable-line declaration-no-important */
|
|
4665
|
+
}
|
|
4666
|
+
|
|
4667
|
+
.e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
|
|
4668
|
+
height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
|
|
4669
|
+
}
|
|
4670
|
+
|
|
4671
|
+
.e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
|
|
4672
|
+
height: calc(100% - 44px) !important; /* stylelint-disable-line declaration-no-important */
|
|
4673
|
+
}
|
|
4674
|
+
|
|
4675
|
+
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
4676
|
+
height: 100%;
|
|
4644
4677
|
}
|
|
4645
4678
|
|
|
4646
4679
|
.e-bigger .e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
4680
|
+
.e-bigger .e-listbox-container .e-selectall-parent + .e-list-wrap {
|
|
4681
|
+
height: calc(100% - 48px) !important; /* stylelint-disable-line declaration-no-important */
|
|
4682
|
+
}
|
|
4683
|
+
|
|
4647
4684
|
.e-bigger .e-listbox-container .e-selectall-parent + .e-list-parent {
|
|
4648
|
-
height:
|
|
4685
|
+
height: 100%;
|
|
4649
4686
|
}
|
|
4650
4687
|
|
|
4651
4688
|
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
4689
|
+
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
4690
|
+
height: calc(100% - 37px) !important; /* stylelint-disable-line declaration-no-important */
|
|
4691
|
+
}
|
|
4692
|
+
|
|
4693
|
+
.e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-selectall-parent + .e-hidden-select + .e-listbox + .e-list-parent {
|
|
4694
|
+
height: calc(100% - 76px) !important; /* stylelint-disable-line declaration-no-important */
|
|
4695
|
+
}
|
|
4696
|
+
|
|
4697
|
+
.e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-selectall-parent + .e-hidden-select + .e-listbox + .e-list-parent {
|
|
4698
|
+
height: calc(100% - 92px) !important; /* stylelint-disable-line declaration-no-important */
|
|
4699
|
+
}
|
|
4700
|
+
|
|
4652
4701
|
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
4653
|
-
height:
|
|
4702
|
+
height: 100%;
|
|
4654
4703
|
}
|
|
4655
4704
|
|
|
4656
4705
|
.e-listbox-wrapper,
|
|
@@ -4677,13 +4726,13 @@ ejs-listbox {
|
|
|
4677
4726
|
.e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
4678
4727
|
.e-listbox-container.e-filter-list .e-list-parent,
|
|
4679
4728
|
.e-listboxtool-wrapper.e-filter-list .e-list-parent {
|
|
4680
|
-
height: calc(100% -
|
|
4729
|
+
height: calc(100% - 36px);
|
|
4681
4730
|
}
|
|
4682
4731
|
|
|
4683
4732
|
.e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
4684
4733
|
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
4685
4734
|
.e-listboxtool-wrapper.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
4686
|
-
height: calc(100% -
|
|
4735
|
+
height: calc(100% - 40px) !important; /* stylelint-disable-line declaration-no-important */
|
|
4687
4736
|
}
|
|
4688
4737
|
|
|
4689
4738
|
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
@@ -4959,6 +5008,30 @@ ejs-listbox {
|
|
|
4959
5008
|
padding-right: 16px;
|
|
4960
5009
|
}
|
|
4961
5010
|
|
|
5011
|
+
.e-listbox-container.e-filter-list .e-list-parent {
|
|
5012
|
+
height: 100%;
|
|
5013
|
+
}
|
|
5014
|
+
|
|
5015
|
+
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
5016
|
+
height: 100%;
|
|
5017
|
+
}
|
|
5018
|
+
|
|
5019
|
+
.e-listbox-container .e-selectall-parent + .e-list-parent {
|
|
5020
|
+
height: 100%;
|
|
5021
|
+
}
|
|
5022
|
+
|
|
5023
|
+
.e-listbox-container.e-filter-list .e-list-wrap {
|
|
5024
|
+
height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
|
|
5025
|
+
}
|
|
5026
|
+
|
|
5027
|
+
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-wrap {
|
|
5028
|
+
height: calc(100% - 40px) !important; /* stylelint-disable-line declaration-no-important */
|
|
5029
|
+
}
|
|
5030
|
+
|
|
5031
|
+
.e-listbox-container .e-selectall-parent + .e-list-wrap {
|
|
5032
|
+
height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
|
|
5033
|
+
}
|
|
5034
|
+
|
|
4962
5035
|
:root {
|
|
4963
5036
|
--color-sf-black: 0, 0, 0;
|
|
4964
5037
|
--color-sf-white: 255, 255, 255;
|
package/styles/material3.css
CHANGED
|
@@ -3278,6 +3278,11 @@ ejs-multiselect {
|
|
|
3278
3278
|
margin-top: -1.4em;
|
|
3279
3279
|
}
|
|
3280
3280
|
|
|
3281
|
+
.e-small.e-multiselect.e-control-container .e-multi-select-wrapper .e-ddl-icon,
|
|
3282
|
+
.e-small.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
3283
|
+
margin-top: -1.4em;
|
|
3284
|
+
}
|
|
3285
|
+
|
|
3281
3286
|
.e-bigger.e-small.e-multi-select-list-wrapper .e-selectall-parent,
|
|
3282
3287
|
.e-bigger.e-small .e-multi-select-list-wrapper .e-selectall-parent {
|
|
3283
3288
|
line-height: 40px;
|
|
@@ -3289,6 +3294,11 @@ ejs-multiselect {
|
|
|
3289
3294
|
top: 100%;
|
|
3290
3295
|
}
|
|
3291
3296
|
|
|
3297
|
+
.e-bigger.e-small.e-multiselect.e-control-container .e-multi-select-wrapper .e-ddl-icon,
|
|
3298
|
+
.e-bigger.e-small.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
3299
|
+
margin-top: -1.7em;
|
|
3300
|
+
}
|
|
3301
|
+
|
|
3292
3302
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips-close {
|
|
3293
3303
|
height: 16px;
|
|
3294
3304
|
width: 16px;
|
|
@@ -5022,27 +5032,66 @@ ejs-listbox {
|
|
|
5022
5032
|
}
|
|
5023
5033
|
.e-small .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
5024
5034
|
.e-small .e-listbox-container.e-filter-list .e-list-parent {
|
|
5025
|
-
height: calc(100% - 35px);
|
|
5035
|
+
height: calc(100% - 35px) !important; /* stylelint-disable-line declaration-no-important */
|
|
5036
|
+
}
|
|
5037
|
+
|
|
5038
|
+
.e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
|
|
5039
|
+
height: calc(100% - 44px) !important; /* stylelint-disable-line declaration-no-important */
|
|
5040
|
+
}
|
|
5041
|
+
|
|
5042
|
+
.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
5043
|
+
height: calc(100% - 44px) !important; /* stylelint-disable-line declaration-no-important */
|
|
5026
5044
|
}
|
|
5027
5045
|
|
|
5028
|
-
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
5029
5046
|
.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
5030
|
-
height:
|
|
5047
|
+
height: 100%;
|
|
5031
5048
|
}
|
|
5032
5049
|
|
|
5033
5050
|
.e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
5034
5051
|
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
5035
|
-
height: calc(100% -
|
|
5052
|
+
height: calc(100% - 48px) !important; /* stylelint-disable-line declaration-no-important */
|
|
5053
|
+
}
|
|
5054
|
+
|
|
5055
|
+
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
5056
|
+
height: calc(100% - 48px) !important; /* stylelint-disable-line declaration-no-important */
|
|
5057
|
+
}
|
|
5058
|
+
|
|
5059
|
+
.e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
|
|
5060
|
+
height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
|
|
5061
|
+
}
|
|
5062
|
+
|
|
5063
|
+
.e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
|
|
5064
|
+
height: calc(100% - 44px) !important; /* stylelint-disable-line declaration-no-important */
|
|
5065
|
+
}
|
|
5066
|
+
|
|
5067
|
+
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
5068
|
+
height: 100%;
|
|
5036
5069
|
}
|
|
5037
5070
|
|
|
5038
5071
|
.e-bigger .e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
5072
|
+
.e-bigger .e-listbox-container .e-selectall-parent + .e-list-wrap {
|
|
5073
|
+
height: calc(100% - 48px) !important; /* stylelint-disable-line declaration-no-important */
|
|
5074
|
+
}
|
|
5075
|
+
|
|
5039
5076
|
.e-bigger .e-listbox-container .e-selectall-parent + .e-list-parent {
|
|
5040
|
-
height:
|
|
5077
|
+
height: 100%;
|
|
5041
5078
|
}
|
|
5042
5079
|
|
|
5043
5080
|
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
5081
|
+
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
5082
|
+
height: calc(100% - 37px) !important; /* stylelint-disable-line declaration-no-important */
|
|
5083
|
+
}
|
|
5084
|
+
|
|
5085
|
+
.e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-selectall-parent + .e-hidden-select + .e-listbox + .e-list-parent {
|
|
5086
|
+
height: calc(100% - 76px) !important; /* stylelint-disable-line declaration-no-important */
|
|
5087
|
+
}
|
|
5088
|
+
|
|
5089
|
+
.e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-selectall-parent + .e-hidden-select + .e-listbox + .e-list-parent {
|
|
5090
|
+
height: calc(100% - 92px) !important; /* stylelint-disable-line declaration-no-important */
|
|
5091
|
+
}
|
|
5092
|
+
|
|
5044
5093
|
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
5045
|
-
height:
|
|
5094
|
+
height: 100%;
|
|
5046
5095
|
}
|
|
5047
5096
|
|
|
5048
5097
|
.e-listbox-wrapper,
|
|
@@ -5069,13 +5118,13 @@ ejs-listbox {
|
|
|
5069
5118
|
.e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
5070
5119
|
.e-listbox-container.e-filter-list .e-list-parent,
|
|
5071
5120
|
.e-listboxtool-wrapper.e-filter-list .e-list-parent {
|
|
5072
|
-
height: calc(100% -
|
|
5121
|
+
height: calc(100% - 36px);
|
|
5073
5122
|
}
|
|
5074
5123
|
|
|
5075
5124
|
.e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
5076
5125
|
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
5077
5126
|
.e-listboxtool-wrapper.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
5078
|
-
height: calc(100% -
|
|
5127
|
+
height: calc(100% - 40px) !important; /* stylelint-disable-line declaration-no-important */
|
|
5079
5128
|
}
|
|
5080
5129
|
|
|
5081
5130
|
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
@@ -5351,6 +5400,30 @@ ejs-listbox {
|
|
|
5351
5400
|
padding-right: 16px;
|
|
5352
5401
|
}
|
|
5353
5402
|
|
|
5403
|
+
.e-listbox-container.e-filter-list .e-list-parent {
|
|
5404
|
+
height: 100%;
|
|
5405
|
+
}
|
|
5406
|
+
|
|
5407
|
+
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
5408
|
+
height: 100%;
|
|
5409
|
+
}
|
|
5410
|
+
|
|
5411
|
+
.e-listbox-container .e-selectall-parent + .e-list-parent {
|
|
5412
|
+
height: 100%;
|
|
5413
|
+
}
|
|
5414
|
+
|
|
5415
|
+
.e-listbox-container.e-filter-list .e-list-wrap {
|
|
5416
|
+
height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
|
|
5417
|
+
}
|
|
5418
|
+
|
|
5419
|
+
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-wrap {
|
|
5420
|
+
height: calc(100% - 40px) !important; /* stylelint-disable-line declaration-no-important */
|
|
5421
|
+
}
|
|
5422
|
+
|
|
5423
|
+
.e-listbox-container .e-selectall-parent + .e-list-wrap {
|
|
5424
|
+
height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
|
|
5425
|
+
}
|
|
5426
|
+
|
|
5354
5427
|
:root {
|
|
5355
5428
|
--color-sf-black: 0, 0, 0;
|
|
5356
5429
|
--color-sf-white: 255, 255, 255;
|
|
@@ -227,7 +227,8 @@
|
|
|
227
227
|
padding: 0 0 0 48px;
|
|
228
228
|
}
|
|
229
229
|
|
|
230
|
-
.e-bigger .e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon
|
|
230
|
+
.e-bigger .e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon,
|
|
231
|
+
.e-bigger.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
231
232
|
margin-top: -2.7em;
|
|
232
233
|
}
|
|
233
234
|
|
|
@@ -766,11 +767,21 @@ ejs-multiselect {
|
|
|
766
767
|
margin-top: -3.5em;
|
|
767
768
|
}
|
|
768
769
|
|
|
770
|
+
.e-small.e-multiselect.e-control-container .e-multi-select-wrapper .e-ddl-icon,
|
|
771
|
+
.e-small.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
772
|
+
margin-top: -2.6em;
|
|
773
|
+
}
|
|
774
|
+
|
|
769
775
|
.e-bigger.e-small.e-multi-select-list-wrapper .e-selectall-parent,
|
|
770
776
|
.e-bigger.e-small .e-multi-select-list-wrapper .e-selectall-parent {
|
|
771
777
|
line-height: 34px;
|
|
772
778
|
}
|
|
773
779
|
|
|
780
|
+
.e-bigger.e-small.e-multiselect.e-control-container .e-multi-select-wrapper .e-ddl-icon,
|
|
781
|
+
.e-bigger.e-small.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
782
|
+
margin-top: -2.85em;
|
|
783
|
+
}
|
|
784
|
+
|
|
774
785
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips-close {
|
|
775
786
|
height: 30px;
|
|
776
787
|
width: 30px;
|
|
@@ -225,7 +225,8 @@
|
|
|
225
225
|
padding: 0 0 0 48px;
|
|
226
226
|
}
|
|
227
227
|
|
|
228
|
-
.e-bigger .e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon
|
|
228
|
+
.e-bigger .e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon,
|
|
229
|
+
.e-bigger.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
229
230
|
margin-top: -2.7em;
|
|
230
231
|
}
|
|
231
232
|
|
|
@@ -764,11 +765,21 @@ ejs-multiselect {
|
|
|
764
765
|
margin-top: -3.5em;
|
|
765
766
|
}
|
|
766
767
|
|
|
768
|
+
.e-small.e-multiselect.e-control-container .e-multi-select-wrapper .e-ddl-icon,
|
|
769
|
+
.e-small.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
770
|
+
margin-top: -2.6em;
|
|
771
|
+
}
|
|
772
|
+
|
|
767
773
|
.e-bigger.e-small.e-multi-select-list-wrapper .e-selectall-parent,
|
|
768
774
|
.e-bigger.e-small .e-multi-select-list-wrapper .e-selectall-parent {
|
|
769
775
|
line-height: 34px;
|
|
770
776
|
}
|
|
771
777
|
|
|
778
|
+
.e-bigger.e-small.e-multiselect.e-control-container .e-multi-select-wrapper .e-ddl-icon,
|
|
779
|
+
.e-bigger.e-small.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
780
|
+
margin-top: -2.85em;
|
|
781
|
+
}
|
|
782
|
+
|
|
772
783
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips-close {
|
|
773
784
|
height: 30px;
|
|
774
785
|
width: 30px;
|
|
@@ -294,7 +294,8 @@
|
|
|
294
294
|
padding: 0 0 0 48px;
|
|
295
295
|
}
|
|
296
296
|
|
|
297
|
-
.e-bigger .e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon
|
|
297
|
+
.e-bigger .e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon,
|
|
298
|
+
.e-bigger.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
298
299
|
margin-top: -2.25em;
|
|
299
300
|
}
|
|
300
301
|
|
|
@@ -848,6 +849,11 @@ ejs-multiselect {
|
|
|
848
849
|
margin-top: -2.4em;
|
|
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.85em;
|
|
855
|
+
}
|
|
856
|
+
|
|
851
857
|
.e-small .e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
852
858
|
padding: 0 8px 0 8px;
|
|
853
859
|
}
|
|
@@ -857,6 +863,11 @@ ejs-multiselect {
|
|
|
857
863
|
line-height: 34px;
|
|
858
864
|
}
|
|
859
865
|
|
|
866
|
+
.e-bigger.e-small.e-multiselect.e-control-container .e-multi-select-wrapper .e-ddl-icon,
|
|
867
|
+
.e-bigger.e-small.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
868
|
+
margin-top: -2.85em;
|
|
869
|
+
}
|
|
870
|
+
|
|
860
871
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips-close {
|
|
861
872
|
height: 24px;
|
|
862
873
|
width: auto;
|
|
@@ -263,7 +263,8 @@
|
|
|
263
263
|
padding: 0 0 0 48px;
|
|
264
264
|
}
|
|
265
265
|
|
|
266
|
-
.e-bigger .e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon
|
|
266
|
+
.e-bigger .e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon,
|
|
267
|
+
.e-bigger.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
267
268
|
margin-top: -2.25em;
|
|
268
269
|
}
|
|
269
270
|
|
|
@@ -846,11 +847,21 @@ ejs-multiselect {
|
|
|
846
847
|
margin-top: -2em;
|
|
847
848
|
}
|
|
848
849
|
|
|
850
|
+
.e-small.e-multiselect.e-control-container .e-multi-select-wrapper .e-ddl-icon,
|
|
851
|
+
.e-small.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
852
|
+
margin-top: -2em;
|
|
853
|
+
}
|
|
854
|
+
|
|
849
855
|
.e-bigger.e-small.e-multi-select-list-wrapper .e-selectall-parent,
|
|
850
856
|
.e-bigger.e-small .e-multi-select-list-wrapper .e-selectall-parent {
|
|
851
857
|
line-height: 40px;
|
|
852
858
|
}
|
|
853
859
|
|
|
860
|
+
.e-bigger.e-small.e-multiselect.e-control-container .e-multi-select-wrapper .e-ddl-icon,
|
|
861
|
+
.e-bigger.e-small.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
862
|
+
margin-top: -2.65em;
|
|
863
|
+
}
|
|
864
|
+
|
|
854
865
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips-close {
|
|
855
866
|
height: 14px;
|
|
856
867
|
width: 14px;
|
|
@@ -263,7 +263,8 @@
|
|
|
263
263
|
padding: 0 0 0 48px;
|
|
264
264
|
}
|
|
265
265
|
|
|
266
|
-
.e-bigger .e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon
|
|
266
|
+
.e-bigger .e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon,
|
|
267
|
+
.e-bigger.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
267
268
|
margin-top: -2.25em;
|
|
268
269
|
}
|
|
269
270
|
|
|
@@ -846,11 +847,21 @@ ejs-multiselect {
|
|
|
846
847
|
margin-top: -2em;
|
|
847
848
|
}
|
|
848
849
|
|
|
850
|
+
.e-small.e-multiselect.e-control-container .e-multi-select-wrapper .e-ddl-icon,
|
|
851
|
+
.e-small.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
852
|
+
margin-top: -2em;
|
|
853
|
+
}
|
|
854
|
+
|
|
849
855
|
.e-bigger.e-small.e-multi-select-list-wrapper .e-selectall-parent,
|
|
850
856
|
.e-bigger.e-small .e-multi-select-list-wrapper .e-selectall-parent {
|
|
851
857
|
line-height: 40px;
|
|
852
858
|
}
|
|
853
859
|
|
|
860
|
+
.e-bigger.e-small.e-multiselect.e-control-container .e-multi-select-wrapper .e-ddl-icon,
|
|
861
|
+
.e-bigger.e-small.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
862
|
+
margin-top: -2.65em;
|
|
863
|
+
}
|
|
864
|
+
|
|
854
865
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips-close {
|
|
855
866
|
height: 14px;
|
|
856
867
|
width: 14px;
|
|
@@ -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;
|
|
@@ -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;
|