@syncfusion/ej2-dropdowns 20.3.47 → 20.3.49
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 +22 -0
- 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 +29 -4
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +29 -4
- 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 +9 -9
- package/src/drop-down-base/drop-down-base.js +2 -1
- package/src/drop-down-list/drop-down-list.d.ts +1 -0
- package/src/drop-down-list/drop-down-list.js +10 -1
- package/src/list-box/list-box.js +1 -1
- package/src/mention/mention-model.d.ts +1 -1
- package/src/mention/mention.d.ts +1 -0
- package/src/mention/mention.js +15 -1
- package/src/multi-select/multi-select.js +2 -1
- package/styles/bootstrap-dark.css +8 -0
- package/styles/bootstrap.css +8 -0
- package/styles/bootstrap4.css +20 -11
- package/styles/bootstrap5-dark.css +8 -0
- package/styles/bootstrap5.css +8 -0
- package/styles/fabric-dark.css +16 -8
- package/styles/fabric.css +16 -8
- package/styles/fluent-dark.css +9 -1
- package/styles/fluent.css +9 -1
- package/styles/highcontrast-light.css +8 -0
- package/styles/highcontrast.css +17 -9
- package/styles/material-dark.css +8 -0
- package/styles/material.css +8 -0
- package/styles/multi-select/_bootstrap-dark-definition.scss +6 -0
- package/styles/multi-select/_bootstrap-definition.scss +6 -0
- package/styles/multi-select/_bootstrap4-definition.scss +14 -7
- package/styles/multi-select/_bootstrap5-definition.scss +7 -0
- package/styles/multi-select/_fabric-dark-definition.scss +10 -4
- package/styles/multi-select/_fabric-definition.scss +10 -4
- package/styles/multi-select/_fluent-definition.scss +8 -1
- package/styles/multi-select/_fusionnew-definition.scss +7 -0
- package/styles/multi-select/_highcontrast-definition.scss +11 -5
- package/styles/multi-select/_highcontrast-light-definition.scss +6 -0
- package/styles/multi-select/_layout.scss +12 -5
- package/styles/multi-select/_material-dark-definition.scss +6 -0
- package/styles/multi-select/_material-definition.scss +6 -0
- package/styles/multi-select/_material3-definition.scss +7 -0
- package/styles/multi-select/_tailwind-definition.scss +7 -0
- package/styles/multi-select/_theme.scss +4 -0
- package/styles/multi-select/bootstrap-dark.css +8 -0
- package/styles/multi-select/bootstrap.css +8 -0
- package/styles/multi-select/bootstrap4.css +20 -11
- package/styles/multi-select/bootstrap5-dark.css +8 -0
- package/styles/multi-select/bootstrap5.css +8 -0
- package/styles/multi-select/fabric-dark.css +16 -8
- package/styles/multi-select/fabric.css +16 -8
- package/styles/multi-select/fluent-dark.css +9 -1
- package/styles/multi-select/fluent.css +9 -1
- package/styles/multi-select/highcontrast-light.css +8 -0
- package/styles/multi-select/highcontrast.css +17 -9
- package/styles/multi-select/material-dark.css +8 -0
- package/styles/multi-select/material.css +8 -0
- package/styles/multi-select/tailwind-dark.css +8 -0
- package/styles/multi-select/tailwind.css +8 -0
- package/styles/tailwind-dark.css +8 -0
- package/styles/tailwind.css +8 -0
- package/.eslintrc.json +0 -244
- package/tslint.json +0 -111
|
@@ -35,8 +35,11 @@ $ddl-chip-padding: 0 4px 0 8px !default;
|
|
|
35
35
|
$ddl-chip-close-top: 0 !default;
|
|
36
36
|
$ddl-chip-close-left: 0 !default;
|
|
37
37
|
$ddl-chip-close-margin: 0 0 0 !default;
|
|
38
|
+
$ddl-chip-close-rtl-margin: 0 0 0 !default;
|
|
38
39
|
$ddl-chip-close-square: 16px !default;
|
|
40
|
+
$ddl-chip-close-width: 16px !default;
|
|
39
41
|
$ddl-chip-hooker-square: 24px !default;
|
|
42
|
+
$ddl-chip-hooker-width: 24px !default;
|
|
40
43
|
$ddl-chip-close-font: 16px !default;
|
|
41
44
|
$ddl-chip-height: 24px !default;
|
|
42
45
|
$ddl-chip-mobile-height: 28px !default;
|
|
@@ -135,12 +138,14 @@ $ddl-select-all-height-bigger-small: 40px !default;
|
|
|
135
138
|
$ddl-small-chip-height: 20px !default;
|
|
136
139
|
$ddl-chip-small-font-size: 12px !default;
|
|
137
140
|
$ddl-small-chip-close-square: 14px !default;
|
|
141
|
+
$ddl-small-chip-close-width: 14px !default;
|
|
138
142
|
$ddl-small-chip-close-font: 14px !default;
|
|
139
143
|
$ddl-control-small-height: 24px !default;
|
|
140
144
|
$ddl-small-input-height: 26px !default;
|
|
141
145
|
$ddl-delim-small-font-size: 12px !default;
|
|
142
146
|
$ddl-small-closer-margin-top: -2.5em !default;
|
|
143
147
|
$ddl-chip-close-hooker-small-left: 6px !default;
|
|
148
|
+
$ddl-chip-close-hooker-small-bigger-left: 6px !default;
|
|
144
149
|
$ddl-delimviewheight-small: 26px !default;
|
|
145
150
|
|
|
146
151
|
// Touch Small size
|
|
@@ -148,6 +153,7 @@ $ddl-select-all-height-bigger-small: 40px !default;
|
|
|
148
153
|
$ddl-bigger-small-chip-height: 24px !default;
|
|
149
154
|
$ddl-chip-bigger-small-font-size: 13px !default;
|
|
150
155
|
$ddl-bigger-small-chip-close-square: 16px !default;
|
|
156
|
+
$ddl-bigger-small-chip-close-width: 16px !default;
|
|
151
157
|
$ddl-bigger-small-chip-close-font: 16px !default;
|
|
152
158
|
$ddl-control-bigger-small-height: 28px !default;
|
|
153
159
|
$ddl-bigger-small-input-height: 34px !default;
|
|
@@ -34,8 +34,11 @@ $ddl-chip-padding: 0 4px 0 8px !default;
|
|
|
34
34
|
$ddl-chip-close-top: 0 !default;
|
|
35
35
|
$ddl-chip-close-left: 0 !default;
|
|
36
36
|
$ddl-chip-close-margin: 0 0 0 !default;
|
|
37
|
+
$ddl-chip-close-rtl-margin: 0 0 0 !default;
|
|
37
38
|
$ddl-chip-close-square: 16px !default;
|
|
39
|
+
$ddl-chip-close-width: 16px !default;
|
|
38
40
|
$ddl-chip-hooker-square: 24px !default;
|
|
41
|
+
$ddl-chip-hooker-width: 24px !default;
|
|
39
42
|
$ddl-chip-close-font: 16px !default;
|
|
40
43
|
$ddl-chip-height: 24px !default;
|
|
41
44
|
$ddl-chip-mobile-height: 28px !default;
|
|
@@ -138,12 +141,14 @@ $ddl-select-all-height-small: 26px !default;
|
|
|
138
141
|
$ddl-small-chip-height: 20px !default;
|
|
139
142
|
$ddl-chip-small-font-size: 12px !default;
|
|
140
143
|
$ddl-small-chip-close-square: 14px !default;
|
|
144
|
+
$ddl-small-chip-close-width: 14px !default;
|
|
141
145
|
$ddl-small-chip-close-font: 14px !default;
|
|
142
146
|
$ddl-control-small-height: 24px !default;
|
|
143
147
|
$ddl-small-input-height: 26px !default;
|
|
144
148
|
$ddl-delim-small-font-size: 12px !default;
|
|
145
149
|
$ddl-small-closer-margin-top: -2.5em !default;
|
|
146
150
|
$ddl-chip-close-hooker-small-left: 6px !default;
|
|
151
|
+
$ddl-chip-close-hooker-small-bigger-left: 6px !default;
|
|
147
152
|
$ddl-delimviewheight-small: 26px !default;
|
|
148
153
|
$ddl-multiselect-filled-input-min-height-small: 32px !default;
|
|
149
154
|
$ddl-multiselect-filled-float-input-min-height-small: 22px !default;
|
|
@@ -160,6 +165,7 @@ $ddl-select-all-height-bigger-small: 40px !default;
|
|
|
160
165
|
$ddl-bigger-small-chip-height: 22px !default;
|
|
161
166
|
$ddl-chip-bigger-small-font-size: 13px !default;
|
|
162
167
|
$ddl-bigger-small-chip-close-square: 16px !default;
|
|
168
|
+
$ddl-bigger-small-chip-close-width: 16px !default;
|
|
163
169
|
$ddl-bigger-small-chip-close-font: 16px !default;
|
|
164
170
|
$ddl-control-bigger-small-height: 28px !default;
|
|
165
171
|
$ddl-bigger-small-input-height: 28px !default;
|
|
@@ -20,8 +20,11 @@ $ddl-chip-padding: 0 6px 0 8px !default;
|
|
|
20
20
|
$ddl-chip-close-top: 0 !default;
|
|
21
21
|
$ddl-chip-close-left: 0 !default;
|
|
22
22
|
$ddl-chip-close-margin: 0 0 0 !default;
|
|
23
|
+
$ddl-chip-close-rtl-margin: 0 0 0 !default;
|
|
23
24
|
$ddl-chip-close-square: 14px !default;
|
|
25
|
+
$ddl-chip-close-width: 14px !default;
|
|
24
26
|
$ddl-chip-hooker-square: 24px !default;
|
|
27
|
+
$ddl-chip-hooker-width: 24px !default;
|
|
25
28
|
$ddl-chip-close-font: 14px !default;
|
|
26
29
|
$ddl-chip-height: 24px !default;
|
|
27
30
|
$ddl-chip-mobile-height: 30px !default;
|
|
@@ -122,12 +125,14 @@ $ddl-select-all-height-small: 26px !default;
|
|
|
122
125
|
$ddl-small-chip-height: 20px !default;
|
|
123
126
|
$ddl-chip-small-font-size: 12px !default;
|
|
124
127
|
$ddl-small-chip-close-square: 12px !default;
|
|
128
|
+
$ddl-small-chip-close-width: 12px !default;
|
|
125
129
|
$ddl-small-chip-close-font: 12px !default;
|
|
126
130
|
$ddl-control-small-height: 24px !default;
|
|
127
131
|
$ddl-small-input-height: 24px !default;
|
|
128
132
|
$ddl-delim-small-font-size: 12px !default;
|
|
129
133
|
$ddl-small-closer-margin-top: -2em !default;
|
|
130
134
|
$ddl-chip-close-hooker-small-left: 0 !default;
|
|
135
|
+
$ddl-chip-close-hooker-small-bigger-left: 0 !default;
|
|
131
136
|
$ddl-delimviewheight-small: 24px !default;
|
|
132
137
|
$ddl-multiselect-filled-input-min-height-small: 32px !default;
|
|
133
138
|
$ddl-multiselect-filled-float-input-min-height-small: 22px !default;
|
|
@@ -140,12 +145,14 @@ $ddl-multiselect-filled-float-input-min-height-bigger: 36px !default;
|
|
|
140
145
|
$ddl-multiselect-filled-floatlabel-fontsize-bigger: 12px !default;
|
|
141
146
|
$ddl-bigger-chip-close-font: 14px !default;
|
|
142
147
|
$ddl-bigger-chip-close-square: 14px !default;
|
|
148
|
+
$ddl-bigger-chip-close-width: 14px !default;
|
|
143
149
|
|
|
144
150
|
// Touch Small size
|
|
145
151
|
$ddl-select-all-height-bigger-small: 40px !default;
|
|
146
152
|
$ddl-bigger-small-chip-height: 26px !default;
|
|
147
153
|
$ddl-chip-bigger-small-font-size: 13px !default;
|
|
148
154
|
$ddl-bigger-small-chip-close-square: 14px !default;
|
|
155
|
+
$ddl-bigger-small-chip-close-width: 14px !default;
|
|
149
156
|
$ddl-bigger-small-chip-close-font: 14px !default;
|
|
150
157
|
$ddl-control-bigger-small-height: 28px !default;
|
|
151
158
|
$ddl-bigger-small-input-height: 32px !default;
|
|
@@ -19,8 +19,11 @@ $ddl-chip-padding: 0 4px 0 8px !default;
|
|
|
19
19
|
$ddl-chip-close-top: 0 !default;
|
|
20
20
|
$ddl-chip-close-left: 0 !default;
|
|
21
21
|
$ddl-chip-close-margin: 0 0 0 !default;
|
|
22
|
+
$ddl-chip-close-rtl-margin: 0 0 0 !default;
|
|
22
23
|
$ddl-chip-close-square: $text-base !default;
|
|
24
|
+
$ddl-chip-close-width: $text-base !default;
|
|
23
25
|
$ddl-chip-hooker-square: 28px !default;
|
|
26
|
+
$ddl-chip-hooker-width: 28px !default;
|
|
24
27
|
$ddl-chip-close-font: $text-base !default;
|
|
25
28
|
$ddl-chip-height: 22px !default;
|
|
26
29
|
$ddl-chip-mobile-height: 30px !default;
|
|
@@ -127,6 +130,7 @@ $ddl-small-clear-icon-width: 28px !default;
|
|
|
127
130
|
$ddl-bigger-small-clear-icon-height: 32px !default;
|
|
128
131
|
$ddl-bigger-small-clear-icon-width: 32px !default;
|
|
129
132
|
$ddl-bigger-chip-close-square: $text-xl !default;
|
|
133
|
+
$ddl-bigger-chip-close-width: $text-xl !default;
|
|
130
134
|
$ddl-bigger-chip-close-font: $text-xl !default;
|
|
131
135
|
|
|
132
136
|
// Small size
|
|
@@ -134,12 +138,14 @@ $ddl-select-all-height-small: 24px !default;
|
|
|
134
138
|
$ddl-small-chip-height: 18px !default;
|
|
135
139
|
$ddl-chip-small-font-size: 12px !default;
|
|
136
140
|
$ddl-small-chip-close-square: $text-sm !default;
|
|
141
|
+
$ddl-small-chip-close-width: $text-sm !default;
|
|
137
142
|
$ddl-small-chip-close-font: $text-sm !default;
|
|
138
143
|
$ddl-control-small-height: 24px !default;
|
|
139
144
|
$ddl-small-input-height: 24px !default;
|
|
140
145
|
$ddl-delim-small-font-size: 12px !default;
|
|
141
146
|
$ddl-small-closer-margin-top: -1.65em !default;
|
|
142
147
|
$ddl-chip-close-hooker-small-left: 6px !default;
|
|
148
|
+
$ddl-chip-close-hooker-small-bigger-left: 6px !default;
|
|
143
149
|
$ddl-delimviewheight-small: 24px !default;
|
|
144
150
|
$ddl-multiselect-filled-input-min-height-small: 32px !default;
|
|
145
151
|
$ddl-multiselect-filled-float-input-min-height-small: 22px !default;
|
|
@@ -155,6 +161,7 @@ $ddl-multiselect-filled-floatlabel-fontsize-bigger: 12px !default;
|
|
|
155
161
|
$ddl-select-all-height-bigger-small: 32px !default;
|
|
156
162
|
$ddl-bigger-small-chip-height: 26px !default;
|
|
157
163
|
$ddl-bigger-small-chip-close-square: $text-lg !default;
|
|
164
|
+
$ddl-bigger-small-chip-close-width: $text-lg !default;
|
|
158
165
|
$ddl-bigger-small-chip-close-font: $text-lg !default;
|
|
159
166
|
$ddl-control-bigger-small-height: 28px !default;
|
|
160
167
|
$ddl-bigger-small-input-height: 32px !default;
|
|
@@ -311,6 +311,10 @@ e-ddl.e-popup.e-multi-select-list-wrapper.e-multiselct-group.e-checkbox .e-list-
|
|
|
311
311
|
left: $ddl-chip-close-hooker-small-left;
|
|
312
312
|
}
|
|
313
313
|
|
|
314
|
+
.e-small.e-bigger .e-multi-select-wrapper .e-close-hooker::before {
|
|
315
|
+
left: $ddl-chip-close-hooker-small-bigger-left;
|
|
316
|
+
}
|
|
317
|
+
|
|
314
318
|
.e-small .e-multi-select-wrapper .e-down-icon .e-close-hooker::before {
|
|
315
319
|
@if $ddl-multiselect-skin-name == 'FluentUI' {
|
|
316
320
|
left: $ddl-small-down-icon-left;
|
|
@@ -322,6 +322,10 @@
|
|
|
322
322
|
width: 30px;
|
|
323
323
|
}
|
|
324
324
|
|
|
325
|
+
.e-rtl .e-multi-select-wrapper .e-chips-close {
|
|
326
|
+
margin: 0 0 0;
|
|
327
|
+
}
|
|
328
|
+
|
|
325
329
|
.e-multi-select-wrapper .e-mob-chip.e-chips .e-chips-close {
|
|
326
330
|
margin: 1px 0 0;
|
|
327
331
|
}
|
|
@@ -1217,6 +1221,10 @@ ejs-multiselect {
|
|
|
1217
1221
|
left: 8px;
|
|
1218
1222
|
}
|
|
1219
1223
|
|
|
1224
|
+
.e-small.e-bigger .e-multi-select-wrapper .e-close-hooker::before {
|
|
1225
|
+
left: 8px;
|
|
1226
|
+
}
|
|
1227
|
+
|
|
1220
1228
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips {
|
|
1221
1229
|
height: 28px;
|
|
1222
1230
|
}
|
|
@@ -320,6 +320,10 @@
|
|
|
320
320
|
width: 30px;
|
|
321
321
|
}
|
|
322
322
|
|
|
323
|
+
.e-rtl .e-multi-select-wrapper .e-chips-close {
|
|
324
|
+
margin: 0 0 0;
|
|
325
|
+
}
|
|
326
|
+
|
|
323
327
|
.e-multi-select-wrapper .e-mob-chip.e-chips .e-chips-close {
|
|
324
328
|
margin: 1px 0 0;
|
|
325
329
|
}
|
|
@@ -1215,6 +1219,10 @@ ejs-multiselect {
|
|
|
1215
1219
|
left: 8px;
|
|
1216
1220
|
}
|
|
1217
1221
|
|
|
1222
|
+
.e-small.e-bigger .e-multi-select-wrapper .e-close-hooker::before {
|
|
1223
|
+
left: 8px;
|
|
1224
|
+
}
|
|
1225
|
+
|
|
1218
1226
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips {
|
|
1219
1227
|
height: 28px;
|
|
1220
1228
|
}
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
|
|
70
70
|
.e-bigger .e-multi-select-wrapper .e-chips-close {
|
|
71
71
|
height: 30px;
|
|
72
|
-
width:
|
|
72
|
+
width: auto;
|
|
73
73
|
}
|
|
74
74
|
|
|
75
75
|
.e-popup.e-multi-select-list-wrapper .e-list-item.e-active.e-item-focus.e-hover {
|
|
@@ -132,7 +132,7 @@
|
|
|
132
132
|
.e-multi-select-wrapper .e-chips .e-chips-close::before {
|
|
133
133
|
content: "\e745";
|
|
134
134
|
cursor: pointer;
|
|
135
|
-
left:
|
|
135
|
+
left: 0;
|
|
136
136
|
position: relative;
|
|
137
137
|
top: 8px;
|
|
138
138
|
}
|
|
@@ -141,7 +141,7 @@
|
|
|
141
141
|
content: "\e745";
|
|
142
142
|
cursor: pointer;
|
|
143
143
|
height: 10px;
|
|
144
|
-
left:
|
|
144
|
+
left: 0;
|
|
145
145
|
position: relative;
|
|
146
146
|
top: 10px;
|
|
147
147
|
}
|
|
@@ -397,8 +397,12 @@
|
|
|
397
397
|
float: right;
|
|
398
398
|
font-family: "e-icons";
|
|
399
399
|
height: 24px;
|
|
400
|
-
margin:
|
|
401
|
-
width:
|
|
400
|
+
margin: 10px 10px 10px 0;
|
|
401
|
+
width: auto;
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
.e-rtl .e-multi-select-wrapper .e-chips-close {
|
|
405
|
+
margin: 8px 0 8px 20px;
|
|
402
406
|
}
|
|
403
407
|
|
|
404
408
|
.e-multi-select-wrapper .e-mob-chip.e-chips .e-chips-close {
|
|
@@ -413,7 +417,7 @@
|
|
|
413
417
|
position: absolute;
|
|
414
418
|
right: 0;
|
|
415
419
|
top: 100%;
|
|
416
|
-
width:
|
|
420
|
+
width: auto;
|
|
417
421
|
}
|
|
418
422
|
|
|
419
423
|
.e-multiselect .e-down-icon .e-chips-close.e-close-hooker,
|
|
@@ -830,7 +834,7 @@ ejs-multiselect {
|
|
|
830
834
|
|
|
831
835
|
.e-small .e-multi-select-wrapper .e-chips-close {
|
|
832
836
|
height: 18px;
|
|
833
|
-
width:
|
|
837
|
+
width: auto;
|
|
834
838
|
}
|
|
835
839
|
|
|
836
840
|
.e-small .e-multi-select-wrapper {
|
|
@@ -863,7 +867,8 @@ ejs-multiselect {
|
|
|
863
867
|
|
|
864
868
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips-close {
|
|
865
869
|
height: 24px;
|
|
866
|
-
width:
|
|
870
|
+
width: auto;
|
|
871
|
+
margin: 3px 10px 10px 0;
|
|
867
872
|
}
|
|
868
873
|
|
|
869
874
|
.e-bigger.e-small .e-multi-select-wrapper {
|
|
@@ -882,7 +887,7 @@ ejs-multiselect {
|
|
|
882
887
|
|
|
883
888
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips-close.e-close-hooker,
|
|
884
889
|
.e-bigger.e-small .e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
|
|
885
|
-
margin-top: -2.
|
|
890
|
+
margin-top: -2.5em;
|
|
886
891
|
right: 0;
|
|
887
892
|
}
|
|
888
893
|
|
|
@@ -1326,7 +1331,7 @@ ejs-multiselect {
|
|
|
1326
1331
|
}
|
|
1327
1332
|
|
|
1328
1333
|
.e-small .e-multi-select-wrapper .e-chips .e-chips-close::before {
|
|
1329
|
-
left:
|
|
1334
|
+
left: 0;
|
|
1330
1335
|
top: 5px;
|
|
1331
1336
|
font-size: 8px;
|
|
1332
1337
|
}
|
|
@@ -1335,6 +1340,10 @@ ejs-multiselect {
|
|
|
1335
1340
|
left: 4px;
|
|
1336
1341
|
}
|
|
1337
1342
|
|
|
1343
|
+
.e-small.e-bigger .e-multi-select-wrapper .e-close-hooker::before {
|
|
1344
|
+
left: 4px;
|
|
1345
|
+
}
|
|
1346
|
+
|
|
1338
1347
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips {
|
|
1339
1348
|
height: 30px;
|
|
1340
1349
|
}
|
|
@@ -1344,7 +1353,7 @@ ejs-multiselect {
|
|
|
1344
1353
|
}
|
|
1345
1354
|
|
|
1346
1355
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips .e-chips-close::before {
|
|
1347
|
-
left:
|
|
1356
|
+
left: 0;
|
|
1348
1357
|
top: 11px;
|
|
1349
1358
|
font-size: 10px;
|
|
1350
1359
|
}
|
|
@@ -363,6 +363,10 @@
|
|
|
363
363
|
width: 14px;
|
|
364
364
|
}
|
|
365
365
|
|
|
366
|
+
.e-rtl .e-multi-select-wrapper .e-chips-close {
|
|
367
|
+
margin: 0 0 0;
|
|
368
|
+
}
|
|
369
|
+
|
|
366
370
|
.e-multi-select-wrapper .e-mob-chip.e-chips .e-chips-close {
|
|
367
371
|
margin: 3px 0 0;
|
|
368
372
|
}
|
|
@@ -1297,6 +1301,10 @@ ejs-multiselect {
|
|
|
1297
1301
|
left: 0;
|
|
1298
1302
|
}
|
|
1299
1303
|
|
|
1304
|
+
.e-small.e-bigger .e-multi-select-wrapper .e-close-hooker::before {
|
|
1305
|
+
left: 0;
|
|
1306
|
+
}
|
|
1307
|
+
|
|
1300
1308
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips {
|
|
1301
1309
|
height: 26px;
|
|
1302
1310
|
}
|
|
@@ -363,6 +363,10 @@
|
|
|
363
363
|
width: 14px;
|
|
364
364
|
}
|
|
365
365
|
|
|
366
|
+
.e-rtl .e-multi-select-wrapper .e-chips-close {
|
|
367
|
+
margin: 0 0 0;
|
|
368
|
+
}
|
|
369
|
+
|
|
366
370
|
.e-multi-select-wrapper .e-mob-chip.e-chips .e-chips-close {
|
|
367
371
|
margin: 3px 0 0;
|
|
368
372
|
}
|
|
@@ -1297,6 +1301,10 @@ ejs-multiselect {
|
|
|
1297
1301
|
left: 0;
|
|
1298
1302
|
}
|
|
1299
1303
|
|
|
1304
|
+
.e-small.e-bigger .e-multi-select-wrapper .e-close-hooker::before {
|
|
1305
|
+
left: 0;
|
|
1306
|
+
}
|
|
1307
|
+
|
|
1300
1308
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips {
|
|
1301
1309
|
height: 26px;
|
|
1302
1310
|
}
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
.e-multi-select-wrapper .e-chips .e-chips-close::before {
|
|
57
57
|
content: "\e7a7";
|
|
58
58
|
cursor: pointer;
|
|
59
|
-
left:
|
|
59
|
+
left: 0;
|
|
60
60
|
position: relative;
|
|
61
61
|
top: 8px;
|
|
62
62
|
}
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
.e-multi-select-wrapper .e-close-hooker::before {
|
|
65
65
|
content: "\e7a7";
|
|
66
66
|
cursor: pointer;
|
|
67
|
-
left:
|
|
67
|
+
left: 0;
|
|
68
68
|
position: relative;
|
|
69
69
|
top: 10px;
|
|
70
70
|
}
|
|
@@ -311,8 +311,12 @@
|
|
|
311
311
|
float: right;
|
|
312
312
|
font-family: "e-icons";
|
|
313
313
|
height: 26px;
|
|
314
|
-
margin:
|
|
315
|
-
width:
|
|
314
|
+
margin: 8px 8px 8px 8px;
|
|
315
|
+
width: auto;
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
.e-rtl .e-multi-select-wrapper .e-chips-close {
|
|
319
|
+
margin: 8px 0 8px 20px;
|
|
316
320
|
}
|
|
317
321
|
|
|
318
322
|
.e-multi-select-wrapper .e-mob-chip.e-chips .e-chips-close {
|
|
@@ -327,7 +331,7 @@
|
|
|
327
331
|
position: absolute;
|
|
328
332
|
right: 0;
|
|
329
333
|
top: 100%;
|
|
330
|
-
width:
|
|
334
|
+
width: auto;
|
|
331
335
|
}
|
|
332
336
|
|
|
333
337
|
.e-multiselect .e-down-icon .e-chips-close.e-close-hooker,
|
|
@@ -741,7 +745,7 @@ ejs-multiselect {
|
|
|
741
745
|
|
|
742
746
|
.e-small .e-multi-select-wrapper .e-chips-close {
|
|
743
747
|
height: 22px;
|
|
744
|
-
width:
|
|
748
|
+
width: auto;
|
|
745
749
|
}
|
|
746
750
|
|
|
747
751
|
.e-small .e-multi-select-wrapper {
|
|
@@ -760,7 +764,7 @@ ejs-multiselect {
|
|
|
760
764
|
|
|
761
765
|
.e-small .e-multi-select-wrapper .e-chips-close.e-close-hooker,
|
|
762
766
|
.e-small .e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
|
|
763
|
-
margin-top: -
|
|
767
|
+
margin-top: -3em;
|
|
764
768
|
}
|
|
765
769
|
|
|
766
770
|
.e-bigger.e-small.e-multi-select-list-wrapper .e-selectall-parent,
|
|
@@ -770,7 +774,7 @@ ejs-multiselect {
|
|
|
770
774
|
|
|
771
775
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips-close {
|
|
772
776
|
height: 26px;
|
|
773
|
-
width:
|
|
777
|
+
width: auto;
|
|
774
778
|
}
|
|
775
779
|
|
|
776
780
|
.e-bigger.e-small .e-multi-select-wrapper {
|
|
@@ -1218,6 +1222,10 @@ ejs-multiselect {
|
|
|
1218
1222
|
left: 7px;
|
|
1219
1223
|
}
|
|
1220
1224
|
|
|
1225
|
+
.e-small.e-bigger .e-multi-select-wrapper .e-close-hooker::before {
|
|
1226
|
+
left: -35px;
|
|
1227
|
+
}
|
|
1228
|
+
|
|
1221
1229
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips {
|
|
1222
1230
|
height: 26px;
|
|
1223
1231
|
}
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
.e-multi-select-wrapper .e-chips .e-chips-close::before {
|
|
57
57
|
content: "\e7a7";
|
|
58
58
|
cursor: pointer;
|
|
59
|
-
left:
|
|
59
|
+
left: 0;
|
|
60
60
|
position: relative;
|
|
61
61
|
top: 8px;
|
|
62
62
|
}
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
.e-multi-select-wrapper .e-close-hooker::before {
|
|
65
65
|
content: "\e7a7";
|
|
66
66
|
cursor: pointer;
|
|
67
|
-
left:
|
|
67
|
+
left: 0;
|
|
68
68
|
position: relative;
|
|
69
69
|
top: 10px;
|
|
70
70
|
}
|
|
@@ -311,8 +311,12 @@
|
|
|
311
311
|
float: right;
|
|
312
312
|
font-family: "e-icons";
|
|
313
313
|
height: 26px;
|
|
314
|
-
margin:
|
|
315
|
-
width:
|
|
314
|
+
margin: 8px 8px 8px 8px;
|
|
315
|
+
width: auto;
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
.e-rtl .e-multi-select-wrapper .e-chips-close {
|
|
319
|
+
margin: 8px 0 8px 20px;
|
|
316
320
|
}
|
|
317
321
|
|
|
318
322
|
.e-multi-select-wrapper .e-mob-chip.e-chips .e-chips-close {
|
|
@@ -327,7 +331,7 @@
|
|
|
327
331
|
position: absolute;
|
|
328
332
|
right: 0;
|
|
329
333
|
top: 100%;
|
|
330
|
-
width:
|
|
334
|
+
width: auto;
|
|
331
335
|
}
|
|
332
336
|
|
|
333
337
|
.e-multiselect .e-down-icon .e-chips-close.e-close-hooker,
|
|
@@ -741,7 +745,7 @@ ejs-multiselect {
|
|
|
741
745
|
|
|
742
746
|
.e-small .e-multi-select-wrapper .e-chips-close {
|
|
743
747
|
height: 22px;
|
|
744
|
-
width:
|
|
748
|
+
width: auto;
|
|
745
749
|
}
|
|
746
750
|
|
|
747
751
|
.e-small .e-multi-select-wrapper {
|
|
@@ -760,7 +764,7 @@ ejs-multiselect {
|
|
|
760
764
|
|
|
761
765
|
.e-small .e-multi-select-wrapper .e-chips-close.e-close-hooker,
|
|
762
766
|
.e-small .e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
|
|
763
|
-
margin-top: -
|
|
767
|
+
margin-top: -3em;
|
|
764
768
|
}
|
|
765
769
|
|
|
766
770
|
.e-bigger.e-small.e-multi-select-list-wrapper .e-selectall-parent,
|
|
@@ -770,7 +774,7 @@ ejs-multiselect {
|
|
|
770
774
|
|
|
771
775
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips-close {
|
|
772
776
|
height: 26px;
|
|
773
|
-
width:
|
|
777
|
+
width: auto;
|
|
774
778
|
}
|
|
775
779
|
|
|
776
780
|
.e-bigger.e-small .e-multi-select-wrapper {
|
|
@@ -1218,6 +1222,10 @@ ejs-multiselect {
|
|
|
1218
1222
|
left: 7px;
|
|
1219
1223
|
}
|
|
1220
1224
|
|
|
1225
|
+
.e-small.e-bigger .e-multi-select-wrapper .e-close-hooker::before {
|
|
1226
|
+
left: -35px;
|
|
1227
|
+
}
|
|
1228
|
+
|
|
1221
1229
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips {
|
|
1222
1230
|
height: 26px;
|
|
1223
1231
|
}
|
|
@@ -385,6 +385,10 @@
|
|
|
385
385
|
width: 14px;
|
|
386
386
|
}
|
|
387
387
|
|
|
388
|
+
.e-rtl .e-multi-select-wrapper .e-chips-close {
|
|
389
|
+
margin: 0 0 0;
|
|
390
|
+
}
|
|
391
|
+
|
|
388
392
|
.e-multi-select-wrapper .e-mob-chip.e-chips .e-chips-close {
|
|
389
393
|
margin: 3px 0 0;
|
|
390
394
|
}
|
|
@@ -1346,7 +1350,7 @@ ejs-multiselect {
|
|
|
1346
1350
|
}
|
|
1347
1351
|
|
|
1348
1352
|
.e-small .e-multi-select-wrapper .e-chips .e-chips-close::before {
|
|
1349
|
-
left:
|
|
1353
|
+
left: 0;
|
|
1350
1354
|
top: 2px;
|
|
1351
1355
|
font-size: 8px;
|
|
1352
1356
|
}
|
|
@@ -1355,6 +1359,10 @@ ejs-multiselect {
|
|
|
1355
1359
|
left: 0;
|
|
1356
1360
|
}
|
|
1357
1361
|
|
|
1362
|
+
.e-small.e-bigger .e-multi-select-wrapper .e-close-hooker::before {
|
|
1363
|
+
left: 0;
|
|
1364
|
+
}
|
|
1365
|
+
|
|
1358
1366
|
.e-small .e-multi-select-wrapper .e-down-icon .e-close-hooker::before {
|
|
1359
1367
|
left: -2px;
|
|
1360
1368
|
}
|
|
@@ -385,6 +385,10 @@
|
|
|
385
385
|
width: 14px;
|
|
386
386
|
}
|
|
387
387
|
|
|
388
|
+
.e-rtl .e-multi-select-wrapper .e-chips-close {
|
|
389
|
+
margin: 0 0 0;
|
|
390
|
+
}
|
|
391
|
+
|
|
388
392
|
.e-multi-select-wrapper .e-mob-chip.e-chips .e-chips-close {
|
|
389
393
|
margin: 3px 0 0;
|
|
390
394
|
}
|
|
@@ -1346,7 +1350,7 @@ ejs-multiselect {
|
|
|
1346
1350
|
}
|
|
1347
1351
|
|
|
1348
1352
|
.e-small .e-multi-select-wrapper .e-chips .e-chips-close::before {
|
|
1349
|
-
left:
|
|
1353
|
+
left: 0;
|
|
1350
1354
|
top: 2px;
|
|
1351
1355
|
font-size: 8px;
|
|
1352
1356
|
}
|
|
@@ -1355,6 +1359,10 @@ ejs-multiselect {
|
|
|
1355
1359
|
left: 0;
|
|
1356
1360
|
}
|
|
1357
1361
|
|
|
1362
|
+
.e-small.e-bigger .e-multi-select-wrapper .e-close-hooker::before {
|
|
1363
|
+
left: 0;
|
|
1364
|
+
}
|
|
1365
|
+
|
|
1358
1366
|
.e-small .e-multi-select-wrapper .e-down-icon .e-close-hooker::before {
|
|
1359
1367
|
left: -2px;
|
|
1360
1368
|
}
|
|
@@ -409,6 +409,10 @@
|
|
|
409
409
|
width: 26px;
|
|
410
410
|
}
|
|
411
411
|
|
|
412
|
+
.e-rtl .e-multi-select-wrapper .e-chips-close {
|
|
413
|
+
margin: 0;
|
|
414
|
+
}
|
|
415
|
+
|
|
412
416
|
.e-multi-select-wrapper .e-mob-chip.e-chips .e-chips-close {
|
|
413
417
|
margin: 3px 0 0;
|
|
414
418
|
}
|
|
@@ -1327,6 +1331,10 @@ e-ddl.e-popup.e-multi-select-list-wrapper.e-multiselct-group.e-checkbox .e-list-
|
|
|
1327
1331
|
left: 7px;
|
|
1328
1332
|
}
|
|
1329
1333
|
|
|
1334
|
+
.e-small.e-bigger .e-multi-select-wrapper .e-close-hooker::before {
|
|
1335
|
+
left: 7px;
|
|
1336
|
+
}
|
|
1337
|
+
|
|
1330
1338
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips {
|
|
1331
1339
|
height: 26px;
|
|
1332
1340
|
}
|
|
@@ -152,7 +152,7 @@
|
|
|
152
152
|
.e-multi-select-wrapper .e-chips .e-chips-close::before {
|
|
153
153
|
content: "\e7a7";
|
|
154
154
|
cursor: pointer;
|
|
155
|
-
left:
|
|
155
|
+
left: 0;
|
|
156
156
|
position: relative;
|
|
157
157
|
top: 8px;
|
|
158
158
|
}
|
|
@@ -160,7 +160,7 @@
|
|
|
160
160
|
.e-multi-select-wrapper .e-close-hooker::before {
|
|
161
161
|
content: "\e7a7";
|
|
162
162
|
cursor: pointer;
|
|
163
|
-
left:
|
|
163
|
+
left: 0;
|
|
164
164
|
position: relative;
|
|
165
165
|
top: 10px;
|
|
166
166
|
}
|
|
@@ -407,8 +407,12 @@
|
|
|
407
407
|
float: right;
|
|
408
408
|
font-family: "e-icons";
|
|
409
409
|
height: 26px;
|
|
410
|
-
margin: 0;
|
|
411
|
-
width:
|
|
410
|
+
margin: 10px 10px 10px 0;
|
|
411
|
+
width: auto;
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
.e-rtl .e-multi-select-wrapper .e-chips-close {
|
|
415
|
+
margin: 8px 0 8px 20px;
|
|
412
416
|
}
|
|
413
417
|
|
|
414
418
|
.e-multi-select-wrapper .e-mob-chip.e-chips .e-chips-close {
|
|
@@ -423,7 +427,7 @@
|
|
|
423
427
|
position: absolute;
|
|
424
428
|
right: 0;
|
|
425
429
|
top: 100%;
|
|
426
|
-
width:
|
|
430
|
+
width: auto;
|
|
427
431
|
}
|
|
428
432
|
|
|
429
433
|
.e-multiselect .e-down-icon .e-chips-close.e-close-hooker,
|
|
@@ -844,7 +848,7 @@ ejs-multiselect {
|
|
|
844
848
|
|
|
845
849
|
.e-small .e-multi-select-wrapper .e-chips-close {
|
|
846
850
|
height: 22px;
|
|
847
|
-
width:
|
|
851
|
+
width: auto;
|
|
848
852
|
}
|
|
849
853
|
|
|
850
854
|
.e-small .e-multi-select-wrapper {
|
|
@@ -863,7 +867,7 @@ ejs-multiselect {
|
|
|
863
867
|
|
|
864
868
|
.e-small .e-multi-select-wrapper .e-chips-close.e-close-hooker,
|
|
865
869
|
.e-small .e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
|
|
866
|
-
margin-top: -
|
|
870
|
+
margin-top: -3.2em;
|
|
867
871
|
}
|
|
868
872
|
|
|
869
873
|
.e-bigger.e-small.e-multi-select-list-wrapper .e-selectall-parent,
|
|
@@ -873,7 +877,7 @@ ejs-multiselect {
|
|
|
873
877
|
|
|
874
878
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips-close {
|
|
875
879
|
height: 26px;
|
|
876
|
-
width:
|
|
880
|
+
width: auto;
|
|
877
881
|
}
|
|
878
882
|
|
|
879
883
|
.e-bigger.e-small .e-multi-select-wrapper {
|
|
@@ -892,7 +896,7 @@ ejs-multiselect {
|
|
|
892
896
|
|
|
893
897
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips-close.e-close-hooker,
|
|
894
898
|
.e-bigger.e-small .e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
|
|
895
|
-
margin-top: -3.
|
|
899
|
+
margin-top: -3.4em;
|
|
896
900
|
right: 0;
|
|
897
901
|
}
|
|
898
902
|
|
|
@@ -1329,6 +1333,10 @@ e-ddl.e-popup.e-multi-select-list-wrapper.e-multiselct-group.e-checkbox .e-list-
|
|
|
1329
1333
|
left: 7px;
|
|
1330
1334
|
}
|
|
1331
1335
|
|
|
1336
|
+
.e-small.e-bigger .e-multi-select-wrapper .e-close-hooker::before {
|
|
1337
|
+
left: -35px;
|
|
1338
|
+
}
|
|
1339
|
+
|
|
1332
1340
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips {
|
|
1333
1341
|
height: 26px;
|
|
1334
1342
|
}
|