@syncfusion/ej2-dropdowns 20.1.59 → 20.2.36
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 +1 -61
- 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 +106 -100
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +69 -63
- 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/helpers/e2e/autocomplete.js +59 -43
- package/helpers/e2e/combobox.js +62 -46
- package/helpers/e2e/dropdownlist.js +71 -55
- package/helpers/e2e/index.js +11 -9
- package/helpers/e2e/listboxHelper.js +55 -38
- package/helpers/e2e/multiselect.js +104 -88
- package/package.json +11 -11
- package/src/common/incremental-search.js +1 -1
- package/src/drop-down-base/drop-down-base-model.d.ts +1 -1
- package/src/drop-down-base/drop-down-base.d.ts +5 -1
- package/src/drop-down-base/drop-down-base.js +3 -5
- package/src/drop-down-list/drop-down-list.js +12 -14
- package/src/drop-down-tree/drop-down-tree-model.d.ts +2 -2
- package/src/drop-down-tree/drop-down-tree.js +5 -5
- package/src/list-box/list-box.d.ts +1 -0
- package/src/list-box/list-box.js +22 -13
- package/src/multi-select/multi-select-model.d.ts +1 -1
- package/src/multi-select/multi-select.d.ts +2 -1
- package/src/multi-select/multi-select.js +26 -25
- package/styles/auto-complete/_fusionnew-definition.scss +2 -0
- package/styles/auto-complete/_material3-definition.scss +2 -0
- package/styles/bootstrap-dark.css +38 -2
- package/styles/bootstrap.css +38 -2
- package/styles/bootstrap4.css +38 -2
- package/styles/bootstrap5-dark.css +38 -2
- package/styles/bootstrap5.css +38 -2
- package/styles/combo-box/_fusionnew-definition.scss +2 -0
- package/styles/combo-box/_material3-definition.scss +2 -0
- package/styles/drop-down-base/_fusionnew-definition.scss +111 -0
- package/styles/drop-down-base/_material3-definition.scss +111 -0
- package/styles/drop-down-list/_fusionnew-definition.scss +201 -0
- package/styles/drop-down-list/_material3-definition.scss +201 -0
- package/styles/drop-down-list/icons/_fusionnew.scss +14 -0
- package/styles/drop-down-list/icons/_material3.scss +14 -0
- package/styles/drop-down-tree/_fusionnew-definition.scss +60 -0
- package/styles/drop-down-tree/_material3-definition.scss +60 -0
- package/styles/drop-down-tree/icons/_fusionnew.scss +11 -0
- package/styles/drop-down-tree/icons/_material3.scss +11 -0
- package/styles/fabric-dark.css +38 -2
- package/styles/fabric.css +38 -2
- package/styles/fluent-dark.css +38 -2
- package/styles/fluent.css +38 -2
- package/styles/highcontrast-light.css +38 -2
- package/styles/highcontrast.css +38 -2
- package/styles/list-box/_bootstrap-dark-definition.scss +5 -1
- package/styles/list-box/_bootstrap-definition.scss +5 -1
- package/styles/list-box/_bootstrap4-definition.scss +5 -1
- package/styles/list-box/_bootstrap5-definition.scss +7 -0
- package/styles/list-box/_fabric-dark-definition.scss +5 -1
- package/styles/list-box/_fabric-definition.scss +5 -1
- package/styles/list-box/_fluent-definition.scss +7 -0
- package/styles/list-box/_fusionnew-definition.scss +113 -0
- package/styles/list-box/_highcontrast-definition.scss +5 -1
- package/styles/list-box/_highcontrast-light-definition.scss +5 -1
- package/styles/list-box/_layout.scss +36 -1
- package/styles/list-box/_material-dark-definition.scss +6 -2
- package/styles/list-box/_material-definition.scss +6 -2
- package/styles/list-box/_material3-definition.scss +119 -0
- package/styles/list-box/_tailwind-definition.scss +6 -0
- package/styles/list-box/_theme.scss +19 -0
- package/styles/list-box/bootstrap-dark.css +28 -2
- package/styles/list-box/bootstrap.css +38 -2
- package/styles/list-box/bootstrap4.css +38 -2
- package/styles/list-box/bootstrap5-dark.css +38 -2
- package/styles/list-box/bootstrap5.css +38 -2
- package/styles/list-box/fabric-dark.css +28 -2
- package/styles/list-box/fabric.css +38 -2
- package/styles/list-box/fluent-dark.css +38 -2
- package/styles/list-box/fluent.css +38 -2
- package/styles/list-box/highcontrast-light.css +28 -2
- package/styles/list-box/highcontrast.css +38 -2
- package/styles/list-box/icons/_fusionnew.scss +25 -0
- package/styles/list-box/icons/_material3.scss +25 -0
- package/styles/list-box/material-dark.css +30 -4
- package/styles/list-box/material.css +40 -4
- package/styles/list-box/tailwind-dark.css +38 -2
- package/styles/list-box/tailwind.css +38 -2
- package/styles/material-dark.css +40 -4
- package/styles/material.css +40 -4
- package/styles/multi-select/_fusionnew-definition.scss +219 -0
- package/styles/multi-select/_material3-definition.scss +219 -0
- package/styles/multi-select/icons/_fusionnew.scss +27 -0
- package/styles/multi-select/icons/_material3.scss +27 -0
- package/styles/tailwind-dark.css +38 -2
- package/styles/tailwind.css +38 -2
|
@@ -281,8 +281,8 @@
|
|
|
281
281
|
text-indent: 0;
|
|
282
282
|
vertical-align: middle;
|
|
283
283
|
}
|
|
284
|
-
.e-listbox-wrapper.e-right .e-checkbox-wrapper,
|
|
285
|
-
.e-listbox-container.e-right .e-checkbox-wrapper {
|
|
284
|
+
.e-listbox-wrapper.e-checkbox-right .e-checkbox-wrapper,
|
|
285
|
+
.e-listbox-container.e-checkbox-right .e-checkbox-wrapper {
|
|
286
286
|
position: absolute;
|
|
287
287
|
right: 0;
|
|
288
288
|
top: 30%;
|
|
@@ -401,6 +401,12 @@ ejs-listbox {
|
|
|
401
401
|
list-style-type: none;
|
|
402
402
|
margin-bottom: 10px;
|
|
403
403
|
}
|
|
404
|
+
.e-listboxtool-wrapper.e-checkbox-right .e-checkbox-wrapper,
|
|
405
|
+
.e-listboxtool-container.e-checkbox-right .e-checkbox-wrapper {
|
|
406
|
+
position: absolute;
|
|
407
|
+
right: 0;
|
|
408
|
+
top: 30%;
|
|
409
|
+
}
|
|
404
410
|
|
|
405
411
|
.e-rtl.e-listboxtool-wrapper.e-right .e-listbox-tool,
|
|
406
412
|
.e-rtl.e-listboxtool-container.e-right .e-listbox-tool {
|
|
@@ -505,7 +511,17 @@ ejs-listbox {
|
|
|
505
511
|
|
|
506
512
|
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
507
513
|
.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
508
|
-
height: calc(100% -
|
|
514
|
+
height: calc(100% - 50px);
|
|
515
|
+
}
|
|
516
|
+
|
|
517
|
+
.e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
518
|
+
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
519
|
+
height: calc(100% - 98px);
|
|
520
|
+
}
|
|
521
|
+
|
|
522
|
+
.e-bigger .e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
523
|
+
.e-bigger .e-listbox-container .e-selectall-parent + .e-list-parent {
|
|
524
|
+
height: calc(100% - 48px);
|
|
509
525
|
}
|
|
510
526
|
|
|
511
527
|
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
@@ -534,7 +550,17 @@ ejs-listbox {
|
|
|
534
550
|
|
|
535
551
|
.e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
536
552
|
.e-listbox-container.e-filter-list .e-list-parent {
|
|
537
|
-
height: calc(100% -
|
|
553
|
+
height: calc(100% - 43px);
|
|
554
|
+
}
|
|
555
|
+
|
|
556
|
+
.e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
557
|
+
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
558
|
+
height: calc(100% - 79px);
|
|
559
|
+
}
|
|
560
|
+
|
|
561
|
+
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
562
|
+
.e-listbox-container .e-selectall-parent + .e-list-parent {
|
|
563
|
+
height: calc(100% - 36px);
|
|
538
564
|
}
|
|
539
565
|
|
|
540
566
|
.e-listbox-wrapper .e-icons,
|
|
@@ -51,6 +51,10 @@
|
|
|
51
51
|
.e-listbox-container * {
|
|
52
52
|
box-sizing: border-box;
|
|
53
53
|
}
|
|
54
|
+
.e-listbox-wrapper.e-listboxtool-container .e-list-wrap,
|
|
55
|
+
.e-listbox-container.e-listboxtool-container .e-list-wrap {
|
|
56
|
+
width: 86% !important;
|
|
57
|
+
}
|
|
54
58
|
.e-listbox-wrapper:focus,
|
|
55
59
|
.e-listbox-container:focus {
|
|
56
60
|
outline: none;
|
|
@@ -281,8 +285,8 @@
|
|
|
281
285
|
text-indent: 0;
|
|
282
286
|
vertical-align: middle;
|
|
283
287
|
}
|
|
284
|
-
.e-listbox-wrapper.e-right .e-checkbox-wrapper,
|
|
285
|
-
.e-listbox-container.e-right .e-checkbox-wrapper {
|
|
288
|
+
.e-listbox-wrapper.e-checkbox-right .e-checkbox-wrapper,
|
|
289
|
+
.e-listbox-container.e-checkbox-right .e-checkbox-wrapper {
|
|
286
290
|
position: absolute;
|
|
287
291
|
right: 0;
|
|
288
292
|
top: 30%;
|
|
@@ -401,6 +405,12 @@ ejs-listbox {
|
|
|
401
405
|
list-style-type: none;
|
|
402
406
|
margin-bottom: 10px;
|
|
403
407
|
}
|
|
408
|
+
.e-listboxtool-wrapper.e-checkbox-right .e-checkbox-wrapper,
|
|
409
|
+
.e-listboxtool-container.e-checkbox-right .e-checkbox-wrapper {
|
|
410
|
+
position: absolute;
|
|
411
|
+
right: 0;
|
|
412
|
+
top: 30%;
|
|
413
|
+
}
|
|
404
414
|
|
|
405
415
|
.e-rtl.e-listboxtool-wrapper.e-right .e-listbox-tool,
|
|
406
416
|
.e-rtl.e-listboxtool-container.e-right .e-listbox-tool {
|
|
@@ -411,6 +421,12 @@ ejs-listbox {
|
|
|
411
421
|
margin-left: 15px;
|
|
412
422
|
}
|
|
413
423
|
|
|
424
|
+
.e-bigger .e-listbox-wrapper.e-listboxtool-container .e-list-wrap,
|
|
425
|
+
.e-listbox-wrapper.e-bigger.e-listboxtool-container .e-list-wrap,
|
|
426
|
+
.e-bigger .e-listbox-container.e-listboxtool-container .e-list-wrap,
|
|
427
|
+
.e-listbox-container.e-bigger.e-listboxtool-container .e-list-wrap {
|
|
428
|
+
width: 85% !important;
|
|
429
|
+
}
|
|
414
430
|
.e-bigger .e-listbox-wrapper .e-list-item,
|
|
415
431
|
.e-listbox-wrapper.e-bigger .e-list-item,
|
|
416
432
|
.e-bigger .e-listbox-container .e-list-item,
|
|
@@ -505,7 +521,17 @@ ejs-listbox {
|
|
|
505
521
|
|
|
506
522
|
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
507
523
|
.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
508
|
-
height: calc(100% -
|
|
524
|
+
height: calc(100% - 50px);
|
|
525
|
+
}
|
|
526
|
+
|
|
527
|
+
.e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
528
|
+
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
529
|
+
height: calc(100% - 98px);
|
|
530
|
+
}
|
|
531
|
+
|
|
532
|
+
.e-bigger .e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
533
|
+
.e-bigger .e-listbox-container .e-selectall-parent + .e-list-parent {
|
|
534
|
+
height: calc(100% - 48px);
|
|
509
535
|
}
|
|
510
536
|
|
|
511
537
|
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
@@ -534,7 +560,17 @@ ejs-listbox {
|
|
|
534
560
|
|
|
535
561
|
.e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
536
562
|
.e-listbox-container.e-filter-list .e-list-parent {
|
|
537
|
-
height: calc(100% -
|
|
563
|
+
height: calc(100% - 43px);
|
|
564
|
+
}
|
|
565
|
+
|
|
566
|
+
.e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
567
|
+
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
568
|
+
height: calc(100% - 79px);
|
|
569
|
+
}
|
|
570
|
+
|
|
571
|
+
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
572
|
+
.e-listbox-container .e-selectall-parent + .e-list-parent {
|
|
573
|
+
height: calc(100% - 36px);
|
|
538
574
|
}
|
|
539
575
|
|
|
540
576
|
.e-listbox-wrapper .e-icons,
|
|
@@ -87,6 +87,10 @@
|
|
|
87
87
|
.e-listbox-container * {
|
|
88
88
|
box-sizing: border-box;
|
|
89
89
|
}
|
|
90
|
+
.e-listbox-wrapper.e-listboxtool-container .e-list-wrap,
|
|
91
|
+
.e-listbox-container.e-listboxtool-container .e-list-wrap {
|
|
92
|
+
width: 84% !important;
|
|
93
|
+
}
|
|
90
94
|
.e-listbox-wrapper:focus,
|
|
91
95
|
.e-listbox-container:focus {
|
|
92
96
|
outline: none;
|
|
@@ -317,8 +321,8 @@
|
|
|
317
321
|
text-indent: 0;
|
|
318
322
|
vertical-align: middle;
|
|
319
323
|
}
|
|
320
|
-
.e-listbox-wrapper.e-right .e-checkbox-wrapper,
|
|
321
|
-
.e-listbox-container.e-right .e-checkbox-wrapper {
|
|
324
|
+
.e-listbox-wrapper.e-checkbox-right .e-checkbox-wrapper,
|
|
325
|
+
.e-listbox-container.e-checkbox-right .e-checkbox-wrapper {
|
|
322
326
|
position: absolute;
|
|
323
327
|
right: 0;
|
|
324
328
|
top: 30%;
|
|
@@ -437,6 +441,12 @@ ejs-listbox {
|
|
|
437
441
|
list-style-type: none;
|
|
438
442
|
margin-bottom: 10px;
|
|
439
443
|
}
|
|
444
|
+
.e-listboxtool-wrapper.e-checkbox-right .e-checkbox-wrapper,
|
|
445
|
+
.e-listboxtool-container.e-checkbox-right .e-checkbox-wrapper {
|
|
446
|
+
position: absolute;
|
|
447
|
+
right: 0;
|
|
448
|
+
top: 30%;
|
|
449
|
+
}
|
|
440
450
|
|
|
441
451
|
.e-rtl.e-listboxtool-wrapper.e-right .e-listbox-tool,
|
|
442
452
|
.e-rtl.e-listboxtool-container.e-right .e-listbox-tool {
|
|
@@ -447,6 +457,12 @@ ejs-listbox {
|
|
|
447
457
|
margin-left: 15px;
|
|
448
458
|
}
|
|
449
459
|
|
|
460
|
+
.e-bigger .e-listbox-wrapper.e-listboxtool-container .e-list-wrap,
|
|
461
|
+
.e-listbox-wrapper.e-bigger.e-listboxtool-container .e-list-wrap,
|
|
462
|
+
.e-bigger .e-listbox-container.e-listboxtool-container .e-list-wrap,
|
|
463
|
+
.e-listbox-container.e-bigger.e-listboxtool-container .e-list-wrap {
|
|
464
|
+
width: 80% !important;
|
|
465
|
+
}
|
|
450
466
|
.e-bigger .e-listbox-wrapper .e-list-item,
|
|
451
467
|
.e-listbox-wrapper.e-bigger .e-list-item,
|
|
452
468
|
.e-bigger .e-listbox-container .e-list-item,
|
|
@@ -544,6 +560,16 @@ ejs-listbox {
|
|
|
544
560
|
height: calc(100% - 55px);
|
|
545
561
|
}
|
|
546
562
|
|
|
563
|
+
.e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
564
|
+
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
565
|
+
height: calc(100% - 94px);
|
|
566
|
+
}
|
|
567
|
+
|
|
568
|
+
.e-bigger .e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
569
|
+
.e-bigger .e-listbox-container .e-selectall-parent + .e-list-parent {
|
|
570
|
+
height: calc(100% - 48px);
|
|
571
|
+
}
|
|
572
|
+
|
|
547
573
|
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
548
574
|
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
549
575
|
height: calc(100% - 45px);
|
|
@@ -583,6 +609,16 @@ ejs-listbox {
|
|
|
583
609
|
height: calc(100% - 47px);
|
|
584
610
|
}
|
|
585
611
|
|
|
612
|
+
.e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
613
|
+
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
614
|
+
height: calc(100% - 76px);
|
|
615
|
+
}
|
|
616
|
+
|
|
617
|
+
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
618
|
+
.e-listbox-container .e-selectall-parent + .e-list-parent {
|
|
619
|
+
height: calc(100% - 38px);
|
|
620
|
+
}
|
|
621
|
+
|
|
586
622
|
.e-listbox-wrapper .e-icons,
|
|
587
623
|
.e-listbox-container .e-icons {
|
|
588
624
|
color: #d1d5db;
|
|
@@ -87,6 +87,10 @@
|
|
|
87
87
|
.e-listbox-container * {
|
|
88
88
|
box-sizing: border-box;
|
|
89
89
|
}
|
|
90
|
+
.e-listbox-wrapper.e-listboxtool-container .e-list-wrap,
|
|
91
|
+
.e-listbox-container.e-listboxtool-container .e-list-wrap {
|
|
92
|
+
width: 84% !important;
|
|
93
|
+
}
|
|
90
94
|
.e-listbox-wrapper:focus,
|
|
91
95
|
.e-listbox-container:focus {
|
|
92
96
|
outline: none;
|
|
@@ -317,8 +321,8 @@
|
|
|
317
321
|
text-indent: 0;
|
|
318
322
|
vertical-align: middle;
|
|
319
323
|
}
|
|
320
|
-
.e-listbox-wrapper.e-right .e-checkbox-wrapper,
|
|
321
|
-
.e-listbox-container.e-right .e-checkbox-wrapper {
|
|
324
|
+
.e-listbox-wrapper.e-checkbox-right .e-checkbox-wrapper,
|
|
325
|
+
.e-listbox-container.e-checkbox-right .e-checkbox-wrapper {
|
|
322
326
|
position: absolute;
|
|
323
327
|
right: 0;
|
|
324
328
|
top: 30%;
|
|
@@ -437,6 +441,12 @@ ejs-listbox {
|
|
|
437
441
|
list-style-type: none;
|
|
438
442
|
margin-bottom: 10px;
|
|
439
443
|
}
|
|
444
|
+
.e-listboxtool-wrapper.e-checkbox-right .e-checkbox-wrapper,
|
|
445
|
+
.e-listboxtool-container.e-checkbox-right .e-checkbox-wrapper {
|
|
446
|
+
position: absolute;
|
|
447
|
+
right: 0;
|
|
448
|
+
top: 30%;
|
|
449
|
+
}
|
|
440
450
|
|
|
441
451
|
.e-rtl.e-listboxtool-wrapper.e-right .e-listbox-tool,
|
|
442
452
|
.e-rtl.e-listboxtool-container.e-right .e-listbox-tool {
|
|
@@ -447,6 +457,12 @@ ejs-listbox {
|
|
|
447
457
|
margin-left: 15px;
|
|
448
458
|
}
|
|
449
459
|
|
|
460
|
+
.e-bigger .e-listbox-wrapper.e-listboxtool-container .e-list-wrap,
|
|
461
|
+
.e-listbox-wrapper.e-bigger.e-listboxtool-container .e-list-wrap,
|
|
462
|
+
.e-bigger .e-listbox-container.e-listboxtool-container .e-list-wrap,
|
|
463
|
+
.e-listbox-container.e-bigger.e-listboxtool-container .e-list-wrap {
|
|
464
|
+
width: 80% !important;
|
|
465
|
+
}
|
|
450
466
|
.e-bigger .e-listbox-wrapper .e-list-item,
|
|
451
467
|
.e-listbox-wrapper.e-bigger .e-list-item,
|
|
452
468
|
.e-bigger .e-listbox-container .e-list-item,
|
|
@@ -544,6 +560,16 @@ ejs-listbox {
|
|
|
544
560
|
height: calc(100% - 55px);
|
|
545
561
|
}
|
|
546
562
|
|
|
563
|
+
.e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
564
|
+
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
565
|
+
height: calc(100% - 94px);
|
|
566
|
+
}
|
|
567
|
+
|
|
568
|
+
.e-bigger .e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
569
|
+
.e-bigger .e-listbox-container .e-selectall-parent + .e-list-parent {
|
|
570
|
+
height: calc(100% - 48px);
|
|
571
|
+
}
|
|
572
|
+
|
|
547
573
|
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
548
574
|
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
549
575
|
height: calc(100% - 45px);
|
|
@@ -583,6 +609,16 @@ ejs-listbox {
|
|
|
583
609
|
height: calc(100% - 47px);
|
|
584
610
|
}
|
|
585
611
|
|
|
612
|
+
.e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
613
|
+
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
614
|
+
height: calc(100% - 76px);
|
|
615
|
+
}
|
|
616
|
+
|
|
617
|
+
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
618
|
+
.e-listbox-container .e-selectall-parent + .e-list-parent {
|
|
619
|
+
height: calc(100% - 38px);
|
|
620
|
+
}
|
|
621
|
+
|
|
586
622
|
.e-listbox-wrapper .e-icons,
|
|
587
623
|
.e-listbox-container .e-icons {
|
|
588
624
|
color: #6b7280;
|
package/styles/material-dark.css
CHANGED
|
@@ -3842,6 +3842,10 @@ ejs-multiselect {
|
|
|
3842
3842
|
.e-listbox-container * {
|
|
3843
3843
|
box-sizing: border-box;
|
|
3844
3844
|
}
|
|
3845
|
+
.e-listbox-wrapper.e-listboxtool-container .e-list-wrap,
|
|
3846
|
+
.e-listbox-container.e-listboxtool-container .e-list-wrap {
|
|
3847
|
+
width: 86% !important;
|
|
3848
|
+
}
|
|
3845
3849
|
.e-listbox-wrapper:focus,
|
|
3846
3850
|
.e-listbox-container:focus {
|
|
3847
3851
|
outline: none;
|
|
@@ -4072,8 +4076,8 @@ ejs-multiselect {
|
|
|
4072
4076
|
text-indent: 0;
|
|
4073
4077
|
vertical-align: middle;
|
|
4074
4078
|
}
|
|
4075
|
-
.e-listbox-wrapper.e-right .e-checkbox-wrapper,
|
|
4076
|
-
.e-listbox-container.e-right .e-checkbox-wrapper {
|
|
4079
|
+
.e-listbox-wrapper.e-checkbox-right .e-checkbox-wrapper,
|
|
4080
|
+
.e-listbox-container.e-checkbox-right .e-checkbox-wrapper {
|
|
4077
4081
|
position: absolute;
|
|
4078
4082
|
right: 0;
|
|
4079
4083
|
top: 30%;
|
|
@@ -4192,6 +4196,12 @@ ejs-listbox {
|
|
|
4192
4196
|
list-style-type: none;
|
|
4193
4197
|
margin-bottom: 10px;
|
|
4194
4198
|
}
|
|
4199
|
+
.e-listboxtool-wrapper.e-checkbox-right .e-checkbox-wrapper,
|
|
4200
|
+
.e-listboxtool-container.e-checkbox-right .e-checkbox-wrapper {
|
|
4201
|
+
position: absolute;
|
|
4202
|
+
right: 0;
|
|
4203
|
+
top: 30%;
|
|
4204
|
+
}
|
|
4195
4205
|
|
|
4196
4206
|
.e-rtl.e-listboxtool-wrapper.e-right .e-listbox-tool,
|
|
4197
4207
|
.e-rtl.e-listboxtool-container.e-right .e-listbox-tool {
|
|
@@ -4202,6 +4212,12 @@ ejs-listbox {
|
|
|
4202
4212
|
margin-left: 15px;
|
|
4203
4213
|
}
|
|
4204
4214
|
|
|
4215
|
+
.e-bigger .e-listbox-wrapper.e-listboxtool-container .e-list-wrap,
|
|
4216
|
+
.e-listbox-wrapper.e-bigger.e-listboxtool-container .e-list-wrap,
|
|
4217
|
+
.e-bigger .e-listbox-container.e-listboxtool-container .e-list-wrap,
|
|
4218
|
+
.e-listbox-container.e-bigger.e-listboxtool-container .e-list-wrap {
|
|
4219
|
+
width: 85% !important;
|
|
4220
|
+
}
|
|
4205
4221
|
.e-bigger .e-listbox-wrapper .e-list-item,
|
|
4206
4222
|
.e-listbox-wrapper.e-bigger .e-list-item,
|
|
4207
4223
|
.e-bigger .e-listbox-container .e-list-item,
|
|
@@ -4296,7 +4312,17 @@ ejs-listbox {
|
|
|
4296
4312
|
|
|
4297
4313
|
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
4298
4314
|
.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
4299
|
-
height: calc(100% -
|
|
4315
|
+
height: calc(100% - 50px);
|
|
4316
|
+
}
|
|
4317
|
+
|
|
4318
|
+
.e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
4319
|
+
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
4320
|
+
height: calc(100% - 98px);
|
|
4321
|
+
}
|
|
4322
|
+
|
|
4323
|
+
.e-bigger .e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
4324
|
+
.e-bigger .e-listbox-container .e-selectall-parent + .e-list-parent {
|
|
4325
|
+
height: calc(100% - 48px);
|
|
4300
4326
|
}
|
|
4301
4327
|
|
|
4302
4328
|
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
@@ -4325,7 +4351,17 @@ ejs-listbox {
|
|
|
4325
4351
|
|
|
4326
4352
|
.e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
4327
4353
|
.e-listbox-container.e-filter-list .e-list-parent {
|
|
4328
|
-
height: calc(100% -
|
|
4354
|
+
height: calc(100% - 43px);
|
|
4355
|
+
}
|
|
4356
|
+
|
|
4357
|
+
.e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
4358
|
+
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
4359
|
+
height: calc(100% - 79px);
|
|
4360
|
+
}
|
|
4361
|
+
|
|
4362
|
+
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
4363
|
+
.e-listbox-container .e-selectall-parent + .e-list-parent {
|
|
4364
|
+
height: calc(100% - 36px);
|
|
4329
4365
|
}
|
|
4330
4366
|
|
|
4331
4367
|
.e-listbox-wrapper .e-icons,
|
package/styles/material.css
CHANGED
|
@@ -3899,6 +3899,10 @@ ejs-multiselect {
|
|
|
3899
3899
|
.e-listbox-container * {
|
|
3900
3900
|
box-sizing: border-box;
|
|
3901
3901
|
}
|
|
3902
|
+
.e-listbox-wrapper.e-listboxtool-container .e-list-wrap,
|
|
3903
|
+
.e-listbox-container.e-listboxtool-container .e-list-wrap {
|
|
3904
|
+
width: 86% !important;
|
|
3905
|
+
}
|
|
3902
3906
|
.e-listbox-wrapper:focus,
|
|
3903
3907
|
.e-listbox-container:focus {
|
|
3904
3908
|
outline: none;
|
|
@@ -4129,8 +4133,8 @@ ejs-multiselect {
|
|
|
4129
4133
|
text-indent: 0;
|
|
4130
4134
|
vertical-align: middle;
|
|
4131
4135
|
}
|
|
4132
|
-
.e-listbox-wrapper.e-right .e-checkbox-wrapper,
|
|
4133
|
-
.e-listbox-container.e-right .e-checkbox-wrapper {
|
|
4136
|
+
.e-listbox-wrapper.e-checkbox-right .e-checkbox-wrapper,
|
|
4137
|
+
.e-listbox-container.e-checkbox-right .e-checkbox-wrapper {
|
|
4134
4138
|
position: absolute;
|
|
4135
4139
|
right: 0;
|
|
4136
4140
|
top: 30%;
|
|
@@ -4249,6 +4253,12 @@ ejs-listbox {
|
|
|
4249
4253
|
list-style-type: none;
|
|
4250
4254
|
margin-bottom: 10px;
|
|
4251
4255
|
}
|
|
4256
|
+
.e-listboxtool-wrapper.e-checkbox-right .e-checkbox-wrapper,
|
|
4257
|
+
.e-listboxtool-container.e-checkbox-right .e-checkbox-wrapper {
|
|
4258
|
+
position: absolute;
|
|
4259
|
+
right: 0;
|
|
4260
|
+
top: 30%;
|
|
4261
|
+
}
|
|
4252
4262
|
|
|
4253
4263
|
.e-rtl.e-listboxtool-wrapper.e-right .e-listbox-tool,
|
|
4254
4264
|
.e-rtl.e-listboxtool-container.e-right .e-listbox-tool {
|
|
@@ -4259,6 +4269,12 @@ ejs-listbox {
|
|
|
4259
4269
|
margin-left: 15px;
|
|
4260
4270
|
}
|
|
4261
4271
|
|
|
4272
|
+
.e-bigger .e-listbox-wrapper.e-listboxtool-container .e-list-wrap,
|
|
4273
|
+
.e-listbox-wrapper.e-bigger.e-listboxtool-container .e-list-wrap,
|
|
4274
|
+
.e-bigger .e-listbox-container.e-listboxtool-container .e-list-wrap,
|
|
4275
|
+
.e-listbox-container.e-bigger.e-listboxtool-container .e-list-wrap {
|
|
4276
|
+
width: 85% !important;
|
|
4277
|
+
}
|
|
4262
4278
|
.e-bigger .e-listbox-wrapper .e-list-item,
|
|
4263
4279
|
.e-listbox-wrapper.e-bigger .e-list-item,
|
|
4264
4280
|
.e-bigger .e-listbox-container .e-list-item,
|
|
@@ -4353,7 +4369,17 @@ ejs-listbox {
|
|
|
4353
4369
|
|
|
4354
4370
|
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
4355
4371
|
.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
4356
|
-
height: calc(100% -
|
|
4372
|
+
height: calc(100% - 50px);
|
|
4373
|
+
}
|
|
4374
|
+
|
|
4375
|
+
.e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
4376
|
+
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
4377
|
+
height: calc(100% - 98px);
|
|
4378
|
+
}
|
|
4379
|
+
|
|
4380
|
+
.e-bigger .e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
4381
|
+
.e-bigger .e-listbox-container .e-selectall-parent + .e-list-parent {
|
|
4382
|
+
height: calc(100% - 48px);
|
|
4357
4383
|
}
|
|
4358
4384
|
|
|
4359
4385
|
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
@@ -4382,7 +4408,17 @@ ejs-listbox {
|
|
|
4382
4408
|
|
|
4383
4409
|
.e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
4384
4410
|
.e-listbox-container.e-filter-list .e-list-parent {
|
|
4385
|
-
height: calc(100% -
|
|
4411
|
+
height: calc(100% - 43px);
|
|
4412
|
+
}
|
|
4413
|
+
|
|
4414
|
+
.e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
4415
|
+
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
4416
|
+
height: calc(100% - 79px);
|
|
4417
|
+
}
|
|
4418
|
+
|
|
4419
|
+
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
4420
|
+
.e-listbox-container .e-selectall-parent + .e-list-parent {
|
|
4421
|
+
height: calc(100% - 36px);
|
|
4386
4422
|
}
|
|
4387
4423
|
|
|
4388
4424
|
.e-listbox-wrapper .e-icons,
|
|
@@ -0,0 +1,219 @@
|
|
|
1
|
+
$ddl-chip-mobile-close-font: 16px !default;
|
|
2
|
+
$ddl-multiselect-skin-name: $skin-name !default;
|
|
3
|
+
$ddl-delim-font-size: $text-sm !default;
|
|
4
|
+
$ddl-rtl-wrapper: 0 2px 0 32px !default;
|
|
5
|
+
$ddl-chip-mobile-bg: $primary !default;
|
|
6
|
+
$ddl-search-wrapper-width: calc(100% - 32px) !default;
|
|
7
|
+
$ddl-bigger-search-wrapper-width: calc(100% - 38px) !default;
|
|
8
|
+
$ddl-bigger-small-search-wrapper-width: calc(100% - 32px) !default;
|
|
9
|
+
$ddl-small-search-wrapper-width: calc(100% - 30px) !default;
|
|
10
|
+
$ddl-popup-shadow-value: $shadow-lg !default;
|
|
11
|
+
$ddl-remains-padding-left: 8px !default;
|
|
12
|
+
$ddl-chip-margin: 3px !default;
|
|
13
|
+
$ddl-chip-margin-bigger: 3px !default;
|
|
14
|
+
$ddl-chip-radius: 4px !default;
|
|
15
|
+
$ddl-chip-content-padding: 0 6px 0 0 !default;
|
|
16
|
+
$ddl-chip-mobile-content-padding: 8px 4px 8px 0 !default;
|
|
17
|
+
$ddl-chip-bigger-content-padding: 7px 8px 7px 4px !default;
|
|
18
|
+
$ddl-rtl-chip-mobile-content-padding: 8px 0 8px 4px !default;
|
|
19
|
+
$ddl-chip-padding: 0 6px 0 8px !default;
|
|
20
|
+
$ddl-chip-close-top: 0 !default;
|
|
21
|
+
$ddl-chip-close-left: 0 !default;
|
|
22
|
+
$ddl-chip-close-margin: 0 0 0 !default;
|
|
23
|
+
$ddl-chip-close-square: 14px !default;
|
|
24
|
+
$ddl-chip-hooker-square: 24px !default;
|
|
25
|
+
$ddl-chip-close-font: 14px !default;
|
|
26
|
+
$ddl-chip-height: 24px !default;
|
|
27
|
+
$ddl-chip-mobile-height: 30px !default;
|
|
28
|
+
$ddl-chip-collection-top: 0 !default;
|
|
29
|
+
$ddl-input-height: 30px !default;
|
|
30
|
+
$ddl-input-bigger-height: 36px !default;
|
|
31
|
+
$ddl-input-mob-height: 30px !default;
|
|
32
|
+
$ddl-control-height: 30px !default;
|
|
33
|
+
$ddl-control-bigger-height: 36px !default;
|
|
34
|
+
$ddl-delimviewheight: 28px !default;
|
|
35
|
+
$ddl-delimviewheight-bigger: 36px !default;
|
|
36
|
+
$ddl-delimview-bigger-padding-left: 12px !default;
|
|
37
|
+
$ddl-closer-hooker-font: $text-sm !default;
|
|
38
|
+
$ddl-chip-font-family: $font-family !default;
|
|
39
|
+
$ddl-closer-margin-top: -2em !default;
|
|
40
|
+
$ddl-closer-margin-top-bigger: -2.25em !default;
|
|
41
|
+
$ddl-icon-margin-top: -2.1em !default;
|
|
42
|
+
$ddl-clear-margin-top: -2em !default;
|
|
43
|
+
$ddl-icon-margin-top-bigger: -2.25em !default;
|
|
44
|
+
$ddl-chip-mobile-radius: 2px !default;
|
|
45
|
+
$ddl-chip-sel-mobile-height: 40px !default;
|
|
46
|
+
$ddl-chip-selected-padding: 12px 4px 11px 0 !default;
|
|
47
|
+
$ddl-chip-mobile-close-margin: 3px 0 0 !default;
|
|
48
|
+
$ddl-chip-close-mob-margin: 8px 0 0 !default;
|
|
49
|
+
$ddl-closer-hooker-top: 100% !default;
|
|
50
|
+
$ddl-chip-hooker-right: 5px !default;
|
|
51
|
+
$ddl-chip-mob-left: 0 !default;
|
|
52
|
+
$ddl-chip-mob-padding: 0 0 0 16px !default;
|
|
53
|
+
$ddl-chip-font-size: $text-sm !default;
|
|
54
|
+
$ddl-chip-bigger-font-size: $text-base !default;
|
|
55
|
+
$ddl-chip-small-font-size: $text-xs !default;
|
|
56
|
+
$ddl-rtl-chip-close-left: 0 !default;
|
|
57
|
+
$ddl-rtl-chip-content-padding: 5px 4px !default;
|
|
58
|
+
$ddl-rtl-mob-chip-content-padding: 8px 4px !default;
|
|
59
|
+
$ddl-rtl-mob-chip-content-margin: 4px !default;
|
|
60
|
+
$ddl-rtl-mob-sel-chip-content-padding: 12px 4px !default;
|
|
61
|
+
$ddl-rtl-chip-padding: 0 8px 0 4px !default;
|
|
62
|
+
$ddl-rtl-mob-sel-chip-padding: 0 8px 0 4px !default;
|
|
63
|
+
$ddl-rtl-mob-chip-padding: 0 4px 0 8px !default;
|
|
64
|
+
$ddl-rtl-hooker-left: -4px !default;
|
|
65
|
+
$ddl-chip-close-mob-top: 0 !default;
|
|
66
|
+
$ddl-chip-close-mobile-top: 0 !default;
|
|
67
|
+
$ddl-control-placholder-padding: 0 32px 0 0 !default;
|
|
68
|
+
$ddl-overall-close-top: 6px !default;
|
|
69
|
+
$ddl-overall-close-left: 6px !default;
|
|
70
|
+
$ddl-sel-chip-close-mobile-top: 0 !default;
|
|
71
|
+
$ddl-sel-chip-close-mobile-left: 12px !default;
|
|
72
|
+
$ddl-chip-sel-mobile-close-height: 40px !default;
|
|
73
|
+
$ddl-chip-sel-mobile-close-margin: 0 0 0 0 !default;
|
|
74
|
+
$ddl-input-text-indent: 8px !default;
|
|
75
|
+
$ddl-rtl-chip-sel-close-left: -12px !default;
|
|
76
|
+
$ddl-popup-active-focus-border-width: 0 !default;
|
|
77
|
+
$ddl-popup-active-focus-shadow-item: none !default;
|
|
78
|
+
$ddl-popup-active-border-width: 0 !default;
|
|
79
|
+
$ddl-delim-text-indent: 8px !default;
|
|
80
|
+
$ddl-popup-normal-border-width: 0 !default;
|
|
81
|
+
$ddl-check-right: 12px !default;
|
|
82
|
+
$ddl-check-left: 12px !default;
|
|
83
|
+
$ddl-bigger-select-all-height: 48px !default;
|
|
84
|
+
$ddl-select-all-height: 36px !default;
|
|
85
|
+
$ddl-back-icon-margin: 2.5px 10px 0 -52px !default;
|
|
86
|
+
$ddl-back-icon-padding: 0 8px !default;
|
|
87
|
+
$ddl-filterbar-padding: 0 !default;
|
|
88
|
+
$ddl-bigger-filterbar-padding: 0 !default;
|
|
89
|
+
$ddl-delimviewheight-check-bigger: 34px !default;
|
|
90
|
+
$ddl-popup-reorder-border: $border-light !default;
|
|
91
|
+
$ddl-check-right-margin: 8px !default;
|
|
92
|
+
$ddl-bigger-check-right-margin: 12px !default;
|
|
93
|
+
$ddl-selectall-font-size: 14px !default;
|
|
94
|
+
$ddl-bigger-selectall-font-size: $text-base !default;
|
|
95
|
+
$ddl-close-icon-left: 40px !default;
|
|
96
|
+
$ddl-close-down-icon-left: 40px !default;
|
|
97
|
+
$ddl-check-icon-top: 0 !default;
|
|
98
|
+
$ddl-bigger-check-right: 16px !default;
|
|
99
|
+
$ddl-delim-text-padding-right: 6px !default;
|
|
100
|
+
$ddl-list-rtl-padding-right: 15px !default;
|
|
101
|
+
$ddl-close-rtl-icon-left: 19px !default;
|
|
102
|
+
$ddl-chip-close-rtl-small-left: 20px !default;
|
|
103
|
+
$ddl-chip-close-rtl-bigger-left: 32px !default;
|
|
104
|
+
$ddl-chip-close-rtl-small-bigger-left: 25px !default;
|
|
105
|
+
$ddl-chip-close-rtl-left: 25px !default;
|
|
106
|
+
$ddl-multiselect-group-list-item-rtl-padding-right: 25px !default;
|
|
107
|
+
$ddl-bigger-multiselect-group-list-item-rtl-padding-right: 25px !default;
|
|
108
|
+
$ddl-multiselect-group-list-group-item-padding-left: 16px !default;
|
|
109
|
+
$ddl-multiselect-group-checkbox-wrapper-padding-left: 0 !default;
|
|
110
|
+
$ddl-bigger-multiselect-group-checkbox-wrapper-padding-left: $ddl-multiselect-group-checkbox-wrapper-padding-left !default;
|
|
111
|
+
$ddl-multiselect-group-list-group-item-rtl-padding-right: 16px !default;
|
|
112
|
+
$ddl-multiselect-label-position: 15px !default;
|
|
113
|
+
$ddl-multiselect-filled-floatlabel-fontsize: 14px !default;
|
|
114
|
+
$ddl-multiselect-filled-float-input-min-height: 28px !default;
|
|
115
|
+
$ddl-multiselect-filled-input-min-height: 39px !default;
|
|
116
|
+
$ddl-multiselect-filled-float-input-chip-clear-icon-size: 12px !default;
|
|
117
|
+
$ddl-multiselect-filled-chip-clear-icon-size: 14px !default;
|
|
118
|
+
$multiselect-disable-font-color: $content-text-color-alt1 !default;
|
|
119
|
+
// Small size
|
|
120
|
+
$ddl-select-all-height-small: 26px !default;
|
|
121
|
+
$ddl-small-chip-height: 20px !default;
|
|
122
|
+
$ddl-chip-small-font-size: 12px !default;
|
|
123
|
+
$ddl-small-chip-close-square: 12px !default;
|
|
124
|
+
$ddl-small-chip-close-font: 12px !default;
|
|
125
|
+
$ddl-control-small-height: 24px !default;
|
|
126
|
+
$ddl-small-input-height: 24px !default;
|
|
127
|
+
$ddl-delim-small-font-size: 12px !default;
|
|
128
|
+
$ddl-small-closer-margin-top: -2em !default;
|
|
129
|
+
$ddl-chip-close-hooker-small-left: 0 !default;
|
|
130
|
+
$ddl-delimviewheight-small: 24px !default;
|
|
131
|
+
$ddl-multiselect-filled-input-min-height-small: 32px !default;
|
|
132
|
+
$ddl-multiselect-filled-float-input-min-height-small: 22px !default;
|
|
133
|
+
$ddl-multiselect-filled-floatlabel-fontsize-small: 10px !default;
|
|
134
|
+
$ddl-multiselect-filled-chip-clear-icon-size-small: 10px !default;
|
|
135
|
+
|
|
136
|
+
// Touch
|
|
137
|
+
$ddl-multiselect-filled-input-min-height-bigger: 52px !default;
|
|
138
|
+
$ddl-multiselect-filled-float-input-min-height-bigger: 36px !default;
|
|
139
|
+
$ddl-multiselect-filled-floatlabel-fontsize-bigger: 12px !default;
|
|
140
|
+
$ddl-bigger-chip-close-font: 14px !default;
|
|
141
|
+
$ddl-bigger-chip-close-square: 14px !default;
|
|
142
|
+
|
|
143
|
+
// Touch Small size
|
|
144
|
+
$ddl-select-all-height-bigger-small: 40px !default;
|
|
145
|
+
$ddl-bigger-small-chip-height: 26px !default;
|
|
146
|
+
$ddl-chip-bigger-small-font-size: 13px !default;
|
|
147
|
+
$ddl-bigger-small-chip-close-square: 14px !default;
|
|
148
|
+
$ddl-bigger-small-chip-close-font: 14px !default;
|
|
149
|
+
$ddl-control-bigger-small-height: 28px !default;
|
|
150
|
+
$ddl-bigger-small-input-height: 32px !default;
|
|
151
|
+
$ddl-delim-bigger-small-font-size: 13px !default;
|
|
152
|
+
$ddl-delimviewheight-bigger-small: 28px !default;
|
|
153
|
+
$ddl-closer-margin-top-bigger-small: -2em !default;
|
|
154
|
+
|
|
155
|
+
// color
|
|
156
|
+
|
|
157
|
+
$ddl-list-box-shadow-color: rgba(0, 0, 0, .21) !default;
|
|
158
|
+
$ddl-chip-selected-shadow-value: 0 2px 3px 1px $ddl-list-box-shadow-color !default;
|
|
159
|
+
$ddl-chip-mobile-font: $content-text-color !default;
|
|
160
|
+
$ddl-chip-bg-color: $secondary-bg-color !default;
|
|
161
|
+
$ddl-chip-hover-bg-color: $secondary-bg-color-hover !default;
|
|
162
|
+
$ddl-chip-hover-font-color: $secondary-text-color !default;
|
|
163
|
+
$ddl-sel-hover-chip-bg-color: $secondary-bg-color-pressed !default;
|
|
164
|
+
$ddl-sel-chip-hover-font-color: $secondary-text-color !default;
|
|
165
|
+
$ddl-chip-font-color: $secondary-text-color !default;
|
|
166
|
+
$ddl-chip-close: $secondary-text-color !default;
|
|
167
|
+
$ddl-sel-chip-font-color: $content-text-color !default;
|
|
168
|
+
$ddl-sel-chip-close: $content-text-color !default;
|
|
169
|
+
$ddl-sel-chip-color: $content-text-color !default;
|
|
170
|
+
$ddl-sel-chip-bg-color: $content-bg-color-alt5 !default;
|
|
171
|
+
$ddl-remains-font-color: $content-text-color !default;
|
|
172
|
+
$ddl-popup-active-focus-bg-color: $content-bg-color-selected !default;
|
|
173
|
+
$ddl-popup-active-focus-font-color: $content-text-color-selected !default;
|
|
174
|
+
$ddl-popup-active-focus-border-color: transparent !default;
|
|
175
|
+
$ddl-input-placeholder: $placeholder-text-color !default;
|
|
176
|
+
$ddl-popup-active-border-color: $border-selected !default;
|
|
177
|
+
$ddl-multi-list-default-font-color: $content-text-color !default;
|
|
178
|
+
$ddl-multi-list-hover-bg-color: $content-bg-color-hover !default;
|
|
179
|
+
$ddl-delim-font-color: $content-text-color !default;
|
|
180
|
+
$ddl-close-icon-color: $content-text-color !default;
|
|
181
|
+
$ddl-close-down-icon-left: 35px !default;
|
|
182
|
+
|
|
183
|
+
@include export-module('multiselect-bootstrap5') {
|
|
184
|
+
.e-multi-select-wrapper .e-chips-collection .e-chips .e-chips-close.e-icon::before {
|
|
185
|
+
line-height: 30px;
|
|
186
|
+
top: 0;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.e-multiselect .e-input-group-icon.e-ddl-icon {
|
|
190
|
+
border-radius: 0 2px 2px 0;
|
|
191
|
+
border-right-width: 0;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
.e-multiselect.e-rtl .e-input-group-icon.e-ddl-icon {
|
|
195
|
+
border-left-width: 0;
|
|
196
|
+
border-radius: 4px 0 0 4px;
|
|
197
|
+
border-right-width: 1px;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
|
|
201
|
+
height: 32px;
|
|
202
|
+
width: 32px;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.e-bigger .e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
|
|
206
|
+
height: $ddl-chip-hooker-square;
|
|
207
|
+
width: $ddl-chip-hooker-square;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
.e-multi-select-wrapper .e-searcher input[type='text'] {
|
|
211
|
+
color: $content-text-color;
|
|
212
|
+
height: 100%;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.e-multiselect .e-input-group-icon.e-ddl-icon {
|
|
216
|
+
border-left-width: 0;
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
|