@syncfusion/ej2-dropdowns 25.2.7 → 26.1.38
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/.eslintrc.json +3 -2
- 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 +531 -224
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +524 -216
- 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 +14 -13
- package/src/auto-complete/auto-complete.js +1 -1
- package/src/combo-box/combo-box.js +15 -0
- package/src/common/interface.js +0 -1
- package/src/common/virtual-scroll.js +1 -0
- package/src/drop-down-base/drop-down-base-model.d.ts +8 -1
- package/src/drop-down-base/drop-down-base.d.ts +28 -2
- package/src/drop-down-base/drop-down-base.js +64 -9
- package/src/drop-down-list/drop-down-list.d.ts +15 -2
- package/src/drop-down-list/drop-down-list.js +129 -13
- package/src/drop-down-tree/drop-down-tree-model.d.ts +15 -15
- package/src/drop-down-tree/drop-down-tree.d.ts +17 -13
- package/src/drop-down-tree/drop-down-tree.js +67 -38
- package/src/list-box/list-box.d.ts +1 -0
- package/src/list-box/list-box.js +41 -9
- package/src/mention/mention.js +23 -8
- package/src/multi-select/interface.js +0 -1
- package/src/multi-select/multi-select.d.ts +15 -0
- package/src/multi-select/multi-select.js +135 -12
- package/styles/auto-complete/_bootstrap5.3-definition.scss +2 -0
- package/styles/auto-complete/_fluent2-definition.scss +2 -0
- package/styles/auto-complete/bootstrap-dark.css +5 -2
- package/styles/auto-complete/bootstrap.css +5 -2
- package/styles/auto-complete/bootstrap4.css +6 -2
- package/styles/auto-complete/bootstrap5-dark.css +6 -2
- package/styles/auto-complete/bootstrap5.css +6 -2
- package/styles/auto-complete/fabric-dark.css +3 -1
- package/styles/auto-complete/fabric.css +3 -1
- package/styles/auto-complete/fluent-dark.css +6 -2
- package/styles/auto-complete/fluent.css +6 -2
- package/styles/auto-complete/fluent2.css +1140 -0
- package/styles/auto-complete/fluent2.scss +4 -0
- package/styles/auto-complete/highcontrast-light.css +3 -1
- package/styles/auto-complete/highcontrast.css +3 -1
- package/styles/auto-complete/material-dark.css +16 -5
- package/styles/auto-complete/material.css +16 -5
- package/styles/auto-complete/material3-dark.css +17 -6
- package/styles/auto-complete/material3.css +17 -6
- package/styles/auto-complete/tailwind-dark.css +16 -5
- package/styles/auto-complete/tailwind.css +16 -5
- package/styles/bootstrap-dark.css +197 -228
- package/styles/bootstrap-dark.scss +28 -8
- package/styles/bootstrap.css +197 -228
- package/styles/bootstrap.scss +28 -8
- package/styles/bootstrap4.css +200 -229
- package/styles/bootstrap4.scss +28 -8
- package/styles/bootstrap5-dark.css +197 -221
- package/styles/bootstrap5-dark.scss +28 -8
- package/styles/bootstrap5.css +197 -221
- package/styles/bootstrap5.scss +28 -8
- package/styles/combo-box/_bootstrap5.3-definition.scss +2 -0
- package/styles/combo-box/_fluent2-definition.scss +2 -0
- package/styles/combo-box/bootstrap-dark.css +5 -2
- package/styles/combo-box/bootstrap.css +5 -2
- package/styles/combo-box/bootstrap4.css +6 -2
- package/styles/combo-box/bootstrap5-dark.css +6 -2
- package/styles/combo-box/bootstrap5.css +6 -2
- package/styles/combo-box/fabric-dark.css +3 -1
- package/styles/combo-box/fabric.css +3 -1
- package/styles/combo-box/fluent-dark.css +6 -2
- package/styles/combo-box/fluent.css +6 -2
- package/styles/combo-box/fluent2.css +1140 -0
- package/styles/combo-box/fluent2.scss +4 -0
- package/styles/combo-box/highcontrast-light.css +3 -1
- package/styles/combo-box/highcontrast.css +3 -1
- package/styles/combo-box/material-dark.css +16 -5
- package/styles/combo-box/material.css +16 -5
- package/styles/combo-box/material3-dark.css +17 -6
- package/styles/combo-box/material3.css +17 -6
- package/styles/combo-box/tailwind-dark.css +16 -5
- package/styles/combo-box/tailwind.css +16 -5
- package/styles/drop-down-base/_bds-definition.scss +2 -2
- package/styles/drop-down-base/_bootstrap5.3-definition.scss +117 -0
- package/styles/drop-down-base/_fluent2-definition.scss +134 -0
- package/styles/drop-down-base/_layout.scss +12 -2
- package/styles/drop-down-base/_material3-definition.scss +0 -11
- package/styles/drop-down-base/_theme.scss +2 -11
- package/styles/drop-down-base/bootstrap-dark.css +2 -1
- package/styles/drop-down-base/bootstrap.css +2 -1
- package/styles/drop-down-base/bootstrap4.css +2 -1
- package/styles/drop-down-base/bootstrap5-dark.css +2 -1
- package/styles/drop-down-base/bootstrap5.css +2 -1
- package/styles/drop-down-base/fabric-dark.css +2 -1
- package/styles/drop-down-base/fabric.css +2 -1
- package/styles/drop-down-base/fluent-dark.css +2 -1
- package/styles/drop-down-base/fluent.css +2 -1
- package/styles/drop-down-base/fluent2.css +1447 -0
- package/styles/drop-down-base/fluent2.scss +3 -0
- package/styles/drop-down-base/highcontrast-light.css +2 -1
- package/styles/drop-down-base/highcontrast.css +2 -1
- package/styles/drop-down-base/material-dark.css +2 -1
- package/styles/drop-down-base/material.css +2 -1
- package/styles/drop-down-base/material3-dark.css +9 -2
- package/styles/drop-down-base/material3.css +9 -2
- package/styles/drop-down-base/tailwind-dark.css +2 -1
- package/styles/drop-down-base/tailwind.css +2 -1
- package/styles/drop-down-list/_bootstrap5.3-definition.scss +201 -0
- package/styles/drop-down-list/_fluent2-definition.scss +134 -0
- package/styles/drop-down-list/_layout.scss +5 -3
- package/styles/drop-down-list/_material3-definition.scss +0 -8
- package/styles/drop-down-list/bootstrap-dark.css +38 -3
- package/styles/drop-down-list/bootstrap.css +38 -3
- package/styles/drop-down-list/bootstrap4.css +39 -3
- package/styles/drop-down-list/bootstrap5-dark.css +39 -3
- package/styles/drop-down-list/bootstrap5.css +39 -3
- package/styles/drop-down-list/fabric-dark.css +36 -2
- package/styles/drop-down-list/fabric.css +36 -2
- package/styles/drop-down-list/fluent-dark.css +39 -3
- package/styles/drop-down-list/fluent.css +39 -3
- package/styles/drop-down-list/fluent2.css +1684 -0
- package/styles/drop-down-list/fluent2.scss +9 -0
- package/styles/drop-down-list/highcontrast-light.css +36 -2
- package/styles/drop-down-list/highcontrast.css +36 -2
- package/styles/drop-down-list/icons/_bootstrap5.3.scss +14 -0
- package/styles/drop-down-list/icons/_fluent2.scss +14 -0
- package/styles/drop-down-list/material-dark.css +58 -7
- package/styles/drop-down-list/material.css +72 -9
- package/styles/drop-down-list/material3-dark.css +74 -10
- package/styles/drop-down-list/material3.css +74 -10
- package/styles/drop-down-list/tailwind-dark.css +49 -6
- package/styles/drop-down-list/tailwind.css +49 -6
- package/styles/drop-down-tree/_bds-definition.scss +5 -0
- package/styles/drop-down-tree/_bootstrap4-definition.scss +1 -0
- package/styles/drop-down-tree/_bootstrap5-definition.scss +5 -0
- package/styles/drop-down-tree/_bootstrap5.3-definition.scss +66 -0
- package/styles/drop-down-tree/_fluent-definition.scss +4 -0
- package/styles/drop-down-tree/_fluent2-definition.scss +75 -0
- package/styles/drop-down-tree/_layout.scss +290 -327
- package/styles/drop-down-tree/_material3-definition.scss +3 -5
- package/styles/drop-down-tree/_tailwind-definition.scss +7 -2
- package/styles/drop-down-tree/_theme.scss +24 -41
- package/styles/drop-down-tree/bootstrap-dark.css +64 -29
- package/styles/drop-down-tree/bootstrap.css +64 -29
- package/styles/drop-down-tree/bootstrap4.css +65 -30
- package/styles/drop-down-tree/bootstrap5-dark.css +64 -27
- package/styles/drop-down-tree/bootstrap5.css +64 -27
- package/styles/drop-down-tree/fabric-dark.css +64 -29
- package/styles/drop-down-tree/fabric.css +64 -29
- package/styles/drop-down-tree/fluent-dark.css +72 -35
- package/styles/drop-down-tree/fluent.css +72 -35
- package/styles/drop-down-tree/fluent2.css +1733 -0
- package/styles/drop-down-tree/fluent2.scss +9 -0
- package/styles/drop-down-tree/highcontrast-light.css +64 -29
- package/styles/drop-down-tree/highcontrast.css +64 -23
- package/styles/drop-down-tree/icons/_bootstrap5.3.scss +11 -0
- package/styles/drop-down-tree/icons/_fluent2.scss +14 -0
- package/styles/drop-down-tree/material-dark.css +81 -43
- package/styles/drop-down-tree/material.css +98 -51
- package/styles/drop-down-tree/material3-dark.css +86 -32
- package/styles/drop-down-tree/material3.css +86 -32
- package/styles/drop-down-tree/tailwind-dark.css +73 -28
- package/styles/drop-down-tree/tailwind.css +73 -28
- package/styles/fabric-dark.css +195 -227
- package/styles/fabric-dark.scss +28 -8
- package/styles/fabric.css +195 -227
- package/styles/fabric.scss +28 -8
- package/styles/fluent-dark.css +207 -236
- package/styles/fluent-dark.scss +28 -8
- package/styles/fluent.css +207 -236
- package/styles/fluent.scss +28 -8
- package/styles/fluent2.css +4772 -0
- package/styles/fluent2.scss +28 -0
- package/styles/highcontrast-light.css +198 -227
- package/styles/highcontrast-light.scss +28 -8
- package/styles/highcontrast.css +198 -221
- package/styles/highcontrast.scss +28 -8
- package/styles/list-box/_bootstrap-dark-definition.scss +0 -2
- package/styles/list-box/_bootstrap5.3-definition.scss +120 -0
- package/styles/list-box/_fabric-dark-definition.scss +0 -2
- package/styles/list-box/_fluent2-definition.scss +121 -0
- package/styles/list-box/_highcontrast-light-definition.scss +0 -2
- package/styles/list-box/_layout.scss +65 -44
- package/styles/list-box/_material-dark-definition.scss +0 -2
- package/styles/list-box/_tailwind-definition.scss +1 -1
- package/styles/list-box/_theme.scss +36 -65
- package/styles/list-box/bootstrap-dark.css +72 -112
- package/styles/list-box/bootstrap.css +72 -112
- package/styles/list-box/bootstrap4.css +72 -112
- package/styles/list-box/bootstrap5-dark.css +72 -106
- package/styles/list-box/bootstrap5.css +72 -106
- package/styles/list-box/fabric-dark.css +72 -112
- package/styles/list-box/fabric.css +72 -112
- package/styles/list-box/fluent-dark.css +72 -112
- package/styles/list-box/fluent.css +72 -112
- package/styles/list-box/fluent2.css +2029 -0
- package/styles/list-box/fluent2.scss +5 -0
- package/styles/list-box/highcontrast-light.css +72 -112
- package/styles/list-box/highcontrast.css +72 -112
- package/styles/list-box/icons/_bootstrap5.3.scss +25 -0
- package/styles/list-box/icons/_fluent2.scss +25 -0
- package/styles/list-box/material-dark.css +72 -112
- package/styles/list-box/material.css +72 -112
- package/styles/list-box/material3-dark.css +73 -113
- package/styles/list-box/material3.css +73 -113
- package/styles/list-box/tailwind-dark.css +74 -114
- package/styles/list-box/tailwind.css +74 -114
- package/styles/material-dark.css +237 -260
- package/styles/material-dark.scss +28 -8
- package/styles/material.css +254 -284
- package/styles/material.scss +28 -8
- package/styles/material3-dark.css +254 -266
- package/styles/material3-dark.scss +28 -8
- package/styles/material3.css +254 -266
- package/styles/material3.scss +28 -8
- package/styles/mention/_bootstrap5.3-definition.scss +1 -0
- package/styles/mention/_fluent2-definition.scss +1 -0
- package/styles/mention/bootstrap-dark.css +24 -0
- package/styles/mention/bootstrap.css +24 -0
- package/styles/mention/bootstrap4.css +24 -0
- package/styles/mention/bootstrap5-dark.css +24 -0
- package/styles/mention/bootstrap5.css +24 -0
- package/styles/mention/fabric-dark.css +24 -0
- package/styles/mention/fabric.css +24 -0
- package/styles/mention/fluent-dark.css +24 -0
- package/styles/mention/fluent.css +24 -0
- package/styles/mention/fluent2.css +1130 -0
- package/styles/mention/fluent2.scss +6 -0
- package/styles/mention/highcontrast-light.css +24 -0
- package/styles/mention/highcontrast.css +24 -0
- package/styles/mention/material-dark.css +24 -0
- package/styles/mention/material.css +24 -0
- package/styles/mention/material3-dark.css +25 -1
- package/styles/mention/material3.css +25 -1
- package/styles/mention/tailwind-dark.css +24 -0
- package/styles/mention/tailwind.css +24 -0
- package/styles/multi-select/_bootstrap5.3-definition.scss +230 -0
- package/styles/multi-select/_fluent2-definition.scss +236 -0
- package/styles/multi-select/_layout.scss +32 -38
- package/styles/multi-select/_material3-definition.scss +0 -15
- package/styles/multi-select/_theme.scss +0 -4
- package/styles/multi-select/bootstrap-dark.css +67 -28
- package/styles/multi-select/bootstrap.css +67 -28
- package/styles/multi-select/bootstrap4.css +70 -29
- package/styles/multi-select/bootstrap5-dark.css +67 -28
- package/styles/multi-select/bootstrap5.css +67 -28
- package/styles/multi-select/fabric-dark.css +67 -28
- package/styles/multi-select/fabric.css +67 -28
- package/styles/multi-select/fluent-dark.css +69 -29
- package/styles/multi-select/fluent.css +69 -29
- package/styles/multi-select/fluent2.css +2663 -0
- package/styles/multi-select/fluent2.scss +9 -0
- package/styles/multi-select/highcontrast-light.css +70 -28
- package/styles/multi-select/highcontrast.css +70 -28
- package/styles/multi-select/icons/_bootstrap5.3.scss +26 -0
- package/styles/multi-select/icons/_fluent2.scss +692 -0
- package/styles/multi-select/material-dark.css +88 -32
- package/styles/multi-select/material.css +102 -34
- package/styles/multi-select/material3-dark.css +109 -35
- package/styles/multi-select/material3.css +109 -35
- package/styles/multi-select/tailwind-dark.css +67 -28
- package/styles/multi-select/tailwind.css +67 -28
- package/styles/tailwind-dark.css +218 -233
- package/styles/tailwind-dark.scss +28 -8
- package/styles/tailwind.css +218 -233
- package/styles/tailwind.scss +28 -8
- package/CHANGELOG.md +0 -2200
package/styles/fluent.css
CHANGED
|
@@ -113,7 +113,8 @@
|
|
|
113
113
|
.e-mention.e-popup {
|
|
114
114
|
background: #fff;
|
|
115
115
|
border: 0;
|
|
116
|
-
box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.21);
|
|
116
|
+
-webkit-box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.21);
|
|
117
|
+
box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.21);
|
|
117
118
|
margin-top: 2px;
|
|
118
119
|
position: absolute;
|
|
119
120
|
}
|
|
@@ -422,25 +423,50 @@
|
|
|
422
423
|
/* stylelint-disable property-no-vendor-prefix */
|
|
423
424
|
/* stylelint-disable-line no-empty-source */
|
|
424
425
|
/* stylelint-disable property-no-vendor-prefix */
|
|
426
|
+
@-webkit-keyframes material-spinner-rotate {
|
|
427
|
+
0% {
|
|
428
|
+
-webkit-transform: rotate(0);
|
|
429
|
+
transform: rotate(0);
|
|
430
|
+
}
|
|
431
|
+
100% {
|
|
432
|
+
-webkit-transform: rotate(360deg);
|
|
433
|
+
transform: rotate(360deg);
|
|
434
|
+
}
|
|
435
|
+
}
|
|
425
436
|
@keyframes material-spinner-rotate {
|
|
426
437
|
0% {
|
|
438
|
+
-webkit-transform: rotate(0);
|
|
439
|
+
transform: rotate(0);
|
|
440
|
+
}
|
|
441
|
+
100% {
|
|
442
|
+
-webkit-transform: rotate(360deg);
|
|
443
|
+
transform: rotate(360deg);
|
|
444
|
+
}
|
|
445
|
+
}
|
|
446
|
+
@-webkit-keyframes fabric-spinner-rotate {
|
|
447
|
+
0% {
|
|
448
|
+
-webkit-transform: rotate(0);
|
|
427
449
|
transform: rotate(0);
|
|
428
450
|
}
|
|
429
451
|
100% {
|
|
452
|
+
-webkit-transform: rotate(360deg);
|
|
430
453
|
transform: rotate(360deg);
|
|
431
454
|
}
|
|
432
455
|
}
|
|
433
456
|
@keyframes fabric-spinner-rotate {
|
|
434
457
|
0% {
|
|
458
|
+
-webkit-transform: rotate(0);
|
|
435
459
|
transform: rotate(0);
|
|
436
460
|
}
|
|
437
461
|
100% {
|
|
462
|
+
-webkit-transform: rotate(360deg);
|
|
438
463
|
transform: rotate(360deg);
|
|
439
464
|
}
|
|
440
465
|
}
|
|
441
466
|
.e-popup.e-ddl {
|
|
442
467
|
border-radius: 4px;
|
|
443
|
-
box-shadow: none;
|
|
468
|
+
-webkit-box-shadow: none;
|
|
469
|
+
box-shadow: none;
|
|
444
470
|
margin-top: 1px;
|
|
445
471
|
}
|
|
446
472
|
.e-popup.e-ddl .e-input-group {
|
|
@@ -455,6 +481,7 @@
|
|
|
455
481
|
}
|
|
456
482
|
|
|
457
483
|
.e-popup.e-ddl .e-filter-parent .e-input-group {
|
|
484
|
+
display: -webkit-box;
|
|
458
485
|
display: -ms-flexbox;
|
|
459
486
|
display: flex;
|
|
460
487
|
width: auto;
|
|
@@ -526,11 +553,13 @@
|
|
|
526
553
|
.e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-input-group-icon:active,
|
|
527
554
|
.e-ddl.e-popup .e-input-group:not(.e-disabled) .e-back-icon:active,
|
|
528
555
|
.e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon:active {
|
|
529
|
-
box-shadow: none;
|
|
556
|
+
-webkit-box-shadow: none;
|
|
557
|
+
box-shadow: none;
|
|
530
558
|
}
|
|
531
559
|
|
|
532
560
|
.e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon {
|
|
533
561
|
background: none;
|
|
562
|
+
display: -webkit-box;
|
|
534
563
|
display: -ms-flexbox;
|
|
535
564
|
display: flex;
|
|
536
565
|
position: relative;
|
|
@@ -636,7 +665,8 @@
|
|
|
636
665
|
.e-filter-parent {
|
|
637
666
|
border: 0;
|
|
638
667
|
border-top-width: 0;
|
|
639
|
-
box-shadow: none;
|
|
668
|
+
-webkit-box-shadow: none;
|
|
669
|
+
box-shadow: none;
|
|
640
670
|
display: block;
|
|
641
671
|
padding: 8px;
|
|
642
672
|
border-bottom: 1px solid #edebe9;
|
|
@@ -708,6 +738,7 @@
|
|
|
708
738
|
.e-float-input.e-control-wrapper input.e-dropdownlist:not(:valid):first-child ~ .e-clear-icon,
|
|
709
739
|
.e-float-input.e-input-group input.e-dropdownlist:not(:valid):first-child ~ .e-clear-icon,
|
|
710
740
|
.e-float-input.e-input-group.e-control-wrapper input.e-dropdownlist:not(:valid):first-child ~ .e-clear-icon {
|
|
741
|
+
display: -webkit-box;
|
|
711
742
|
display: -ms-flexbox;
|
|
712
743
|
display: flex;
|
|
713
744
|
}
|
|
@@ -729,6 +760,7 @@
|
|
|
729
760
|
.e-float-input.e-static-clear.e-input-group input.e-dropdownlist:not(:valid):first-child ~ .e-clear-icon.e-clear-icon-hide,
|
|
730
761
|
.e-float-input.e-static-clear.e-input-group.e-control-wrapper input.e-dropdownlist:not(:valid):first-child ~ .e-clear-icon.e-clear-icon-hide {
|
|
731
762
|
cursor: pointer;
|
|
763
|
+
display: -webkit-box;
|
|
732
764
|
display: -ms-flexbox;
|
|
733
765
|
display: flex;
|
|
734
766
|
}
|
|
@@ -748,6 +780,11 @@
|
|
|
748
780
|
pointer-events: none;
|
|
749
781
|
}
|
|
750
782
|
|
|
783
|
+
.e-ddl.e-popup.e-popup-open .e-list-item.e-disabled {
|
|
784
|
+
opacity: 0.7;
|
|
785
|
+
pointer-events: none;
|
|
786
|
+
}
|
|
787
|
+
|
|
751
788
|
ejs-autocomplete,
|
|
752
789
|
ejs-combobox,
|
|
753
790
|
ejs-dropdownlist {
|
|
@@ -816,25 +853,6 @@ ejs-dropdownlist {
|
|
|
816
853
|
color: #201f1e;
|
|
817
854
|
}
|
|
818
855
|
|
|
819
|
-
/* stylelint-disable property-no-vendor-prefix */
|
|
820
|
-
/* stylelint-disable-line no-empty-source */
|
|
821
|
-
/* stylelint-disable property-no-vendor-prefix */
|
|
822
|
-
@keyframes material-spinner-rotate {
|
|
823
|
-
0% {
|
|
824
|
-
transform: rotate(0);
|
|
825
|
-
}
|
|
826
|
-
100% {
|
|
827
|
-
transform: rotate(360deg);
|
|
828
|
-
}
|
|
829
|
-
}
|
|
830
|
-
@keyframes fabric-spinner-rotate {
|
|
831
|
-
0% {
|
|
832
|
-
transform: rotate(0);
|
|
833
|
-
}
|
|
834
|
-
100% {
|
|
835
|
-
transform: rotate(360deg);
|
|
836
|
-
}
|
|
837
|
-
}
|
|
838
856
|
/*! TreeView's bootstrap5 theme wise override definitions and variables */
|
|
839
857
|
/* stylelint-disable */
|
|
840
858
|
/* stylelint-disable */
|
|
@@ -850,12 +868,20 @@ ejs-dropdownlist {
|
|
|
850
868
|
outline: none;
|
|
851
869
|
}
|
|
852
870
|
.e-ddt .e-ddt-icon::before {
|
|
853
|
-
transform: rotate(0deg);
|
|
871
|
+
-webkit-transform: rotate(0deg);
|
|
872
|
+
transform: rotate(0deg);
|
|
873
|
+
-webkit-transition: -webkit-transform 300ms ease;
|
|
874
|
+
transition: -webkit-transform 300ms ease;
|
|
854
875
|
transition: transform 300ms ease;
|
|
876
|
+
transition: transform 300ms ease, -webkit-transform 300ms ease;
|
|
855
877
|
}
|
|
856
878
|
.e-ddt.e-icon-anim .e-ddt-icon::before {
|
|
857
|
-
transform: rotate(180deg);
|
|
879
|
+
-webkit-transform: rotate(180deg);
|
|
880
|
+
transform: rotate(180deg);
|
|
881
|
+
-webkit-transition: -webkit-transform 300ms ease;
|
|
882
|
+
transition: -webkit-transform 300ms ease;
|
|
858
883
|
transition: transform 300ms ease;
|
|
884
|
+
transition: transform 300ms ease, -webkit-transform 300ms ease;
|
|
859
885
|
}
|
|
860
886
|
.e-ddt .e-ddt-hidden {
|
|
861
887
|
border: 0;
|
|
@@ -864,7 +890,8 @@ ejs-dropdownlist {
|
|
|
864
890
|
width: 0;
|
|
865
891
|
}
|
|
866
892
|
.e-ddt.e-input-group.e-control-wrapper .e-clear-icon, .e-ddt.e-float-input.e-control-wrapper .e-clear-icon {
|
|
867
|
-
box-sizing: content-box;
|
|
893
|
+
-webkit-box-sizing: content-box;
|
|
894
|
+
box-sizing: content-box;
|
|
868
895
|
min-height: 30px;
|
|
869
896
|
}
|
|
870
897
|
.e-ddt.e-input-group.e-control-wrapper .e-input-group-icon.e-ddt-icon, .e-ddt.e-float-input.e-control-wrapper .e-input-group-icon.e-ddt-icon {
|
|
@@ -895,6 +922,7 @@ ejs-dropdownlist {
|
|
|
895
922
|
padding-right: 0;
|
|
896
923
|
}
|
|
897
924
|
.e-ddt.e-input-group.e-control-wrapper.e-valid-input:hover:not(.e-disabled) .e-clear-icon, .e-ddt.e-float-input.e-control-wrapper.e-valid-input:hover:not(.e-disabled) .e-clear-icon {
|
|
925
|
+
display: -webkit-box;
|
|
898
926
|
display: -ms-flexbox;
|
|
899
927
|
display: flex;
|
|
900
928
|
}
|
|
@@ -902,20 +930,25 @@ ejs-dropdownlist {
|
|
|
902
930
|
width: 100%;
|
|
903
931
|
}
|
|
904
932
|
.e-ddt.e-show-chip .e-chips-close {
|
|
905
|
-
line-height: 20px;
|
|
906
933
|
min-height: 24px;
|
|
907
934
|
min-width: 24px;
|
|
935
|
+
line-height: 20px;
|
|
908
936
|
text-align: center;
|
|
909
937
|
}
|
|
910
938
|
.e-ddt.e-show-chip .e-chips-close::before {
|
|
911
939
|
font-size: 10px;
|
|
940
|
+
}
|
|
941
|
+
.e-ddt.e-show-chip .e-chips-close::before {
|
|
912
942
|
vertical-align: middle;
|
|
913
943
|
}
|
|
914
944
|
.e-ddt.e-show-chip .e-chips {
|
|
915
|
-
-
|
|
916
|
-
align
|
|
945
|
+
-webkit-box-align: center;
|
|
946
|
+
-ms-flex-align: center;
|
|
947
|
+
align-items: center;
|
|
917
948
|
border-radius: 0;
|
|
918
|
-
box-sizing: border-box;
|
|
949
|
+
-webkit-box-sizing: border-box;
|
|
950
|
+
box-sizing: border-box;
|
|
951
|
+
display: -webkit-inline-box;
|
|
919
952
|
display: -ms-inline-flexbox;
|
|
920
953
|
display: inline-flex;
|
|
921
954
|
float: left;
|
|
@@ -946,7 +979,8 @@ ejs-dropdownlist {
|
|
|
946
979
|
line-height: 30px;
|
|
947
980
|
}
|
|
948
981
|
.e-ddt .e-overflow.e-total-count {
|
|
949
|
-
box-sizing: border-box;
|
|
982
|
+
-webkit-box-sizing: border-box;
|
|
983
|
+
box-sizing: border-box;
|
|
950
984
|
display: inline-block;
|
|
951
985
|
overflow: hidden;
|
|
952
986
|
text-overflow: ellipsis;
|
|
@@ -993,10 +1027,12 @@ ejs-dropdownlist {
|
|
|
993
1027
|
.e-ddt .e-dropdowntree.e-chip-input,
|
|
994
1028
|
.e-ddt input[readonly].e-input.e-chip-input {
|
|
995
1029
|
width: 0;
|
|
1030
|
+
display: none;
|
|
996
1031
|
}
|
|
997
1032
|
.e-ddt.e-popup {
|
|
998
1033
|
border-radius: 2px;
|
|
999
|
-
box-shadow: 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108);
|
|
1034
|
+
-webkit-box-shadow: 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108);
|
|
1035
|
+
box-shadow: 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108);
|
|
1000
1036
|
position: absolute;
|
|
1001
1037
|
}
|
|
1002
1038
|
.e-ddt.e-popup .e-selectall-parent {
|
|
@@ -1025,14 +1061,15 @@ ejs-dropdownlist {
|
|
|
1025
1061
|
font-size: 14px;
|
|
1026
1062
|
margin: 0 12px;
|
|
1027
1063
|
}
|
|
1028
|
-
.e-ddt.e-popup .e-filter-wrap .e-input, .e-ddt.e-popup .e-filter-wrap .e-input:focus {
|
|
1029
|
-
padding: 0 20px;
|
|
1030
|
-
}
|
|
1031
1064
|
.e-ddt.e-popup .e-filter-wrap {
|
|
1032
|
-
border-bottom: 1px solid #edebe9;
|
|
1033
1065
|
border-top-width: 0;
|
|
1034
1066
|
display: block;
|
|
1035
1067
|
padding: 4px 12px;
|
|
1068
|
+
border-bottom: 1px solid #edebe9;
|
|
1069
|
+
}
|
|
1070
|
+
.e-ddt.e-popup .e-filter-wrap .e-input,
|
|
1071
|
+
.e-ddt.e-popup .e-filter-wrap .e-input:focus {
|
|
1072
|
+
padding: 0 20px;
|
|
1036
1073
|
}
|
|
1037
1074
|
.e-ddt.e-popup .e-filter-wrap .e-input-group {
|
|
1038
1075
|
margin-bottom: 0;
|
|
@@ -1048,8 +1085,8 @@ ejs-dropdownlist {
|
|
|
1048
1085
|
cursor: default;
|
|
1049
1086
|
font-family: inherit;
|
|
1050
1087
|
font-size: 14px;
|
|
1051
|
-
padding: 14px 16px;
|
|
1052
1088
|
text-align: center;
|
|
1089
|
+
padding: 14px 16px;
|
|
1053
1090
|
}
|
|
1054
1091
|
.e-ddt.e-popup .e-popup-content.e-no-data .e-treeview {
|
|
1055
1092
|
display: none;
|
|
@@ -1099,16 +1136,16 @@ ejs-dropdownlist {
|
|
|
1099
1136
|
padding: 0 8px;
|
|
1100
1137
|
}
|
|
1101
1138
|
.e-ddt.e-rtl.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
1102
|
-
margin-left: 18px;
|
|
1103
1139
|
margin-right: 4px;
|
|
1140
|
+
margin-left: 18px;
|
|
1104
1141
|
}
|
|
1105
1142
|
.e-ddt.e-rtl.e-show-clear .e-chips-wrapper .e-chips:last-child {
|
|
1106
|
-
margin-left: 18px;
|
|
1107
1143
|
margin-right: 4px;
|
|
1144
|
+
margin-left: 18px;
|
|
1108
1145
|
}
|
|
1109
1146
|
.e-ddt.e-rtl.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
1110
|
-
margin-left: 54px;
|
|
1111
1147
|
margin-right: 4px;
|
|
1148
|
+
margin-left: 54px;
|
|
1112
1149
|
}
|
|
1113
1150
|
.e-ddt.e-rtl.e-input-group.e-control-wrapper.e-show-chip .e-clear-icon,
|
|
1114
1151
|
.e-ddt.e-rtl.e-input-group.e-control-wrapper.e-show-chip .e-ddt-icon, .e-ddt.e-rtl.e-input-group.e-control-wrapper.e-show-text .e-clear-icon,
|
|
@@ -1163,23 +1200,14 @@ ejs-dropdownlist {
|
|
|
1163
1200
|
}
|
|
1164
1201
|
.e-bigger .e-ddt.e-show-chip .e-chips-close,
|
|
1165
1202
|
.e-ddt.e-bigger.e-show-chip .e-chips-close {
|
|
1166
|
-
line-height: 27px;
|
|
1167
1203
|
min-height: 32px;
|
|
1168
1204
|
min-width: 32px;
|
|
1205
|
+
line-height: 27px;
|
|
1169
1206
|
}
|
|
1170
1207
|
.e-bigger .e-ddt.e-show-chip .e-chips-close::before,
|
|
1171
1208
|
.e-ddt.e-bigger.e-show-chip .e-chips-close::before {
|
|
1172
1209
|
font-size: 12px;
|
|
1173
1210
|
}
|
|
1174
|
-
.e-bigger .e-ddt .e-overflow.e-show-text,
|
|
1175
|
-
.e-ddt.e-bigger .e-overflow.e-show-text {
|
|
1176
|
-
padding: 0 12px;
|
|
1177
|
-
line-height: 38px;
|
|
1178
|
-
}
|
|
1179
|
-
.e-bigger .e-ddt .e-overflow .e-remain,
|
|
1180
|
-
.e-ddt.e-bigger .e-overflow .e-remain {
|
|
1181
|
-
font-size: 18px;
|
|
1182
|
-
}
|
|
1183
1211
|
.e-bigger .e-ddt.e-show-chip .e-overflow .e-remain.e-wrap-count,
|
|
1184
1212
|
.e-ddt.e-bigger.e-show-chip .e-overflow .e-remain.e-wrap-count {
|
|
1185
1213
|
line-height: 38px;
|
|
@@ -1190,6 +1218,15 @@ ejs-dropdownlist {
|
|
|
1190
1218
|
line-height: 38px;
|
|
1191
1219
|
padding: 0 8px;
|
|
1192
1220
|
}
|
|
1221
|
+
.e-bigger .e-ddt .e-overflow.e-show-text,
|
|
1222
|
+
.e-ddt.e-bigger .e-overflow.e-show-text {
|
|
1223
|
+
padding: 0 12px;
|
|
1224
|
+
line-height: 38px;
|
|
1225
|
+
}
|
|
1226
|
+
.e-bigger .e-ddt .e-overflow .e-remain,
|
|
1227
|
+
.e-ddt.e-bigger .e-overflow .e-remain {
|
|
1228
|
+
font-size: 18px;
|
|
1229
|
+
}
|
|
1193
1230
|
.e-bigger .e-ddt.e-show-dd-icon .e-chips-wrapper .e-chips:last-child,
|
|
1194
1231
|
.e-ddt.e-bigger.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
1195
1232
|
margin-right: 38px;
|
|
@@ -1243,8 +1280,8 @@ ejs-dropdownlist {
|
|
|
1243
1280
|
}
|
|
1244
1281
|
.e-bigger .e-ddt.e-rtl.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child,
|
|
1245
1282
|
.e-ddt.e-bigger.e-rtl.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
1246
|
-
margin-
|
|
1247
|
-
margin-
|
|
1283
|
+
margin-right: 58px;
|
|
1284
|
+
margin-left: 4px;
|
|
1248
1285
|
}
|
|
1249
1286
|
.e-bigger .e-ddt.e-rtl.e-show-chip.e-input-group.e-show-dd-icon .e-clear-icon, .e-bigger .e-ddt.e-rtl.e-show-text.e-input-group.e-show-dd-icon .e-clear-icon,
|
|
1250
1287
|
.e-ddt.e-bigger.e-rtl.e-show-chip.e-input-group.e-show-dd-icon .e-clear-icon,
|
|
@@ -1262,12 +1299,6 @@ ejs-dropdownlist {
|
|
|
1262
1299
|
.e-ddt .e-chips > .e-chipcontent {
|
|
1263
1300
|
color: #201f1e;
|
|
1264
1301
|
}
|
|
1265
|
-
.e-ddt .e-chips:hover {
|
|
1266
|
-
background-color: #edebe9;
|
|
1267
|
-
}
|
|
1268
|
-
.e-ddt .e-chips:hover > .e-chipcontent {
|
|
1269
|
-
color: #201f1e;
|
|
1270
|
-
}
|
|
1271
1302
|
.e-ddt .e-overflow .e-remain {
|
|
1272
1303
|
color: #605e5c;
|
|
1273
1304
|
}
|
|
@@ -1291,26 +1322,8 @@ ejs-dropdownlist {
|
|
|
1291
1322
|
color: #201f1e;
|
|
1292
1323
|
}
|
|
1293
1324
|
|
|
1294
|
-
/* stylelint-disable-line no-empty-source */ /* stylelint-disable-line no-empty-source */
|
|
1295
|
-
/* stylelint-disable property-no-vendor-prefix */
|
|
1296
1325
|
/* stylelint-disable-line no-empty-source */
|
|
1297
|
-
/* stylelint-disable
|
|
1298
|
-
@keyframes material-spinner-rotate {
|
|
1299
|
-
0% {
|
|
1300
|
-
transform: rotate(0);
|
|
1301
|
-
}
|
|
1302
|
-
100% {
|
|
1303
|
-
transform: rotate(360deg);
|
|
1304
|
-
}
|
|
1305
|
-
}
|
|
1306
|
-
@keyframes fabric-spinner-rotate {
|
|
1307
|
-
0% {
|
|
1308
|
-
transform: rotate(0);
|
|
1309
|
-
}
|
|
1310
|
-
100% {
|
|
1311
|
-
transform: rotate(360deg);
|
|
1312
|
-
}
|
|
1313
|
-
}
|
|
1326
|
+
/* stylelint-disable-line no-empty-source */
|
|
1314
1327
|
.e-multi-select-wrapper .e-chips-collection .e-chips .e-chips-close.e-icon::before {
|
|
1315
1328
|
line-height: 30px;
|
|
1316
1329
|
top: 0;
|
|
@@ -1407,13 +1420,15 @@ ejs-dropdownlist {
|
|
|
1407
1420
|
}
|
|
1408
1421
|
|
|
1409
1422
|
.e-multi-select-wrapper {
|
|
1410
|
-
box-sizing: border-box;
|
|
1423
|
+
-webkit-box-sizing: border-box;
|
|
1424
|
+
box-sizing: border-box;
|
|
1411
1425
|
cursor: text;
|
|
1412
1426
|
line-height: normal;
|
|
1413
1427
|
min-height: 30px;
|
|
1414
1428
|
padding: 0 32px 0 0;
|
|
1415
1429
|
position: relative;
|
|
1416
1430
|
-webkit-user-select: none;
|
|
1431
|
+
-moz-user-select: none;
|
|
1417
1432
|
-ms-user-select: none;
|
|
1418
1433
|
user-select: none;
|
|
1419
1434
|
width: 100%;
|
|
@@ -1430,7 +1445,8 @@ ejs-dropdownlist {
|
|
|
1430
1445
|
white-space: nowrap;
|
|
1431
1446
|
}
|
|
1432
1447
|
.e-multi-select-wrapper .e-delim-view.e-delim-values.e-delim-overflow, .e-multi-select-wrapper .e-delim-view.e-delim-values.e-delim-total {
|
|
1433
|
-
box-sizing: border-box;
|
|
1448
|
+
-webkit-box-sizing: border-box;
|
|
1449
|
+
box-sizing: border-box;
|
|
1434
1450
|
display: inline-block;
|
|
1435
1451
|
overflow: hidden;
|
|
1436
1452
|
text-overflow: ellipsis;
|
|
@@ -1461,6 +1477,7 @@ ejs-dropdownlist {
|
|
|
1461
1477
|
|
|
1462
1478
|
.e-multiselect.e-control-container .e-multi-select-wrapper .e-multi-searcher,
|
|
1463
1479
|
.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-multi-searcher {
|
|
1480
|
+
display: -webkit-box;
|
|
1464
1481
|
display: -ms-flexbox;
|
|
1465
1482
|
display: flex;
|
|
1466
1483
|
float: left;
|
|
@@ -1468,6 +1485,7 @@ ejs-dropdownlist {
|
|
|
1468
1485
|
}
|
|
1469
1486
|
.e-multiselect.e-control-container .e-multi-select-wrapper.e-delimiter .e-multi-searcher,
|
|
1470
1487
|
.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper.e-delimiter .e-multi-searcher {
|
|
1488
|
+
display: -webkit-inline-box;
|
|
1471
1489
|
display: -ms-inline-flexbox;
|
|
1472
1490
|
display: inline-flex;
|
|
1473
1491
|
float: none;
|
|
@@ -1490,8 +1508,9 @@ ejs-dropdownlist {
|
|
|
1490
1508
|
}
|
|
1491
1509
|
.e-multiselect.e-control-container .e-multi-select-wrapper .e-delim-values,
|
|
1492
1510
|
.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-delim-values {
|
|
1493
|
-
-
|
|
1494
|
-
align
|
|
1511
|
+
-webkit-box-align: center;
|
|
1512
|
+
-ms-flex-align: center;
|
|
1513
|
+
align-items: center;
|
|
1495
1514
|
display: inline;
|
|
1496
1515
|
max-width: 100%;
|
|
1497
1516
|
word-break: break-word;
|
|
@@ -1500,12 +1519,15 @@ ejs-dropdownlist {
|
|
|
1500
1519
|
.e-multiselect.e-control-container .e-multi-select-wrapper .e-ddl-icon,
|
|
1501
1520
|
.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-clear-icon,
|
|
1502
1521
|
.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
1503
|
-
-
|
|
1504
|
-
align
|
|
1522
|
+
-webkit-box-align: center;
|
|
1523
|
+
-ms-flex-align: center;
|
|
1524
|
+
align-items: center;
|
|
1505
1525
|
cursor: pointer;
|
|
1506
1526
|
display: none;
|
|
1507
|
-
-
|
|
1508
|
-
|
|
1527
|
+
-webkit-box-orient: horizontal;
|
|
1528
|
+
-webkit-box-direction: normal;
|
|
1529
|
+
-ms-flex-direction: row;
|
|
1530
|
+
flex-direction: row;
|
|
1509
1531
|
margin-top: -2em;
|
|
1510
1532
|
outline: 0;
|
|
1511
1533
|
padding: 0;
|
|
@@ -1519,6 +1541,7 @@ ejs-dropdownlist {
|
|
|
1519
1541
|
.e-multiselect.e-control-container .e-multi-select-wrapper .e-ddl-icon,
|
|
1520
1542
|
.e-multiselect.e-control-container.e-input-group :not(.e-disabled).e-multi-select-wrapper:hover .e-clear-icon,
|
|
1521
1543
|
.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
1544
|
+
display: -webkit-box;
|
|
1522
1545
|
display: -ms-flexbox;
|
|
1523
1546
|
display: flex;
|
|
1524
1547
|
}
|
|
@@ -1594,8 +1617,10 @@ ejs-dropdownlist {
|
|
|
1594
1617
|
}
|
|
1595
1618
|
|
|
1596
1619
|
.e-multi-select-wrapper .e-chips {
|
|
1597
|
-
-
|
|
1598
|
-
align
|
|
1620
|
+
-webkit-box-align: center;
|
|
1621
|
+
-ms-flex-align: center;
|
|
1622
|
+
align-items: center;
|
|
1623
|
+
display: -webkit-inline-box;
|
|
1599
1624
|
display: -ms-inline-flexbox;
|
|
1600
1625
|
display: inline-flex;
|
|
1601
1626
|
float: left;
|
|
@@ -1638,6 +1663,7 @@ ejs-dropdownlist {
|
|
|
1638
1663
|
.e-multi-select-wrapper .e-chips-close {
|
|
1639
1664
|
-ms-flex-item-align: center;
|
|
1640
1665
|
align-self: center;
|
|
1666
|
+
display: -webkit-box;
|
|
1641
1667
|
display: -ms-flexbox;
|
|
1642
1668
|
display: flex;
|
|
1643
1669
|
float: right;
|
|
@@ -1843,7 +1869,9 @@ ejs-dropdownlist {
|
|
|
1843
1869
|
.e-multi-select-wrapper .e-chips.e-mob-chip.e-chip-selected {
|
|
1844
1870
|
-ms-flex-item-align: center;
|
|
1845
1871
|
align-self: center;
|
|
1846
|
-
box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.21);
|
|
1872
|
+
-webkit-box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.21);
|
|
1873
|
+
box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.21);
|
|
1874
|
+
display: -webkit-inline-box;
|
|
1847
1875
|
display: -ms-inline-flexbox;
|
|
1848
1876
|
display: inline-flex;
|
|
1849
1877
|
padding: 0 0 0 16px;
|
|
@@ -2205,8 +2233,9 @@ ejs-multiselect {
|
|
|
2205
2233
|
|
|
2206
2234
|
.e-multiselect.e-outline .e-multi-select-wrapper .e-chips-close.e-close-hooker,
|
|
2207
2235
|
.e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
|
|
2208
|
-
-
|
|
2209
|
-
align
|
|
2236
|
+
-webkit-box-align: normal;
|
|
2237
|
+
-ms-flex-align: normal;
|
|
2238
|
+
align-items: normal;
|
|
2210
2239
|
}
|
|
2211
2240
|
|
|
2212
2241
|
.e-filled.e-multiselect:not(.e-float-input) .e-multi-select-wrapper {
|
|
@@ -2269,7 +2298,10 @@ ejs-multiselect {
|
|
|
2269
2298
|
.e-bigger.e-multiselect.e-filled.e-float-input .e-multi-select-wrapper .e-chips,
|
|
2270
2299
|
.e-bigger .e-multiselect.e-filled.e-float-input .e-multi-select-wrapper .e-chips,
|
|
2271
2300
|
.e-small.e-filled:not(.e-float-input) .e-multi-select-wrapper .e-chips,
|
|
2272
|
-
.e-small .e-filled:not(.e-float-input) .e-multi-select-wrapper .e-chips
|
|
2301
|
+
.e-small .e-filled:not(.e-float-input) .e-multi-select-wrapper .e-chips,
|
|
2302
|
+
.e-multiselect.e-filled.e-float-input .e-multi-select-wrapper.e-mob-wrapper .e-chips.e-mob-chip,
|
|
2303
|
+
.e-small .e-filled:not(.e-float-input) .e-multi-select-wrapper .e-chips,
|
|
2304
|
+
.e-small.e-filled:not(.e-float-input) .e-multi-select-wrapper .e-chips {
|
|
2273
2305
|
height: 24px;
|
|
2274
2306
|
}
|
|
2275
2307
|
|
|
@@ -2278,10 +2310,6 @@ ejs-multiselect {
|
|
|
2278
2310
|
height: 32px;
|
|
2279
2311
|
}
|
|
2280
2312
|
|
|
2281
|
-
.e-multiselect.e-filled.e-float-input .e-multi-select-wrapper.e-mob-wrapper .e-chips.e-mob-chip {
|
|
2282
|
-
height: 24px;
|
|
2283
|
-
}
|
|
2284
|
-
|
|
2285
2313
|
.e-filled.e-float-input .e-multi-select-wrapper .e-chips,
|
|
2286
2314
|
.e-bigger.e-small.e-filled.e-float-input .e-multi-select-wrapper .e-chips,
|
|
2287
2315
|
.e-bigger.e-small .e-filled.e-float-input .e-multi-select-wrapper .e-chips,
|
|
@@ -2337,11 +2365,6 @@ ejs-multiselect {
|
|
|
2337
2365
|
margin: 4px 0 0 4px;
|
|
2338
2366
|
}
|
|
2339
2367
|
|
|
2340
|
-
.e-small .e-filled:not(.e-float-input) .e-multi-select-wrapper .e-chips,
|
|
2341
|
-
.e-small.e-filled:not(.e-float-input) .e-multi-select-wrapper .e-chips {
|
|
2342
|
-
height: 24px;
|
|
2343
|
-
}
|
|
2344
|
-
|
|
2345
2368
|
.e-filled.e-multiselect:not(.e-float-input) .e-multi-select-wrapper .e-chips > .e-chipcontent,
|
|
2346
2369
|
.e-bigger.e-small.e-filled.e-multiselect:not(.e-float-input) .e-multi-select-wrapper .e-chips > .e-chipcontent,
|
|
2347
2370
|
.e-bigger.e-small .e-filled.e-multiselect:not(.e-float-input) .e-multi-select-wrapper .e-chips > .e-chipcontent,
|
|
@@ -2446,7 +2469,8 @@ ejs-multiselect {
|
|
|
2446
2469
|
}
|
|
2447
2470
|
|
|
2448
2471
|
.e-multiselect {
|
|
2449
|
-
box-sizing: border-box;
|
|
2472
|
+
-webkit-box-sizing: border-box;
|
|
2473
|
+
box-sizing: border-box;
|
|
2450
2474
|
}
|
|
2451
2475
|
|
|
2452
2476
|
/* stylelint-disable property-no-vendor-prefix */
|
|
@@ -2507,8 +2531,10 @@ ejs-multiselect {
|
|
|
2507
2531
|
}
|
|
2508
2532
|
|
|
2509
2533
|
.e-popup.e-multi-select-list-wrapper {
|
|
2510
|
-
box-shadow: 0 6.4px 14.4px 0 rgba(0, 0, 0, 0.132), 0 1.2px 3.6px 0 rgba(0, 0, 0, 0.108);
|
|
2511
|
-
|
|
2534
|
+
-webkit-box-shadow: 0 6.4px 14.4px 0 rgba(0, 0, 0, 0.132), 0 1.2px 3.6px 0 rgba(0, 0, 0, 0.108);
|
|
2535
|
+
box-shadow: 0 6.4px 14.4px 0 rgba(0, 0, 0, 0.132), 0 1.2px 3.6px 0 rgba(0, 0, 0, 0.108);
|
|
2536
|
+
-webkit-box-sizing: content-box;
|
|
2537
|
+
box-sizing: content-box;
|
|
2512
2538
|
overflow: initial;
|
|
2513
2539
|
}
|
|
2514
2540
|
|
|
@@ -2533,7 +2559,8 @@ ejs-multiselect {
|
|
|
2533
2559
|
.e-popup.e-multi-select-list-wrapper .e-list-item.e-active:first-child:not(.e-item-focus),
|
|
2534
2560
|
.e-popup.e-multi-select-list-wrapper .e-list-item.e-active:last-child:not(.e-item-focus),
|
|
2535
2561
|
.e-popup.e-multi-select-list-wrapper.e-checkbox .e-dropdownbase .e-list-item.e-active.e-hover:not(.e-item-focus) {
|
|
2536
|
-
box-shadow: none;
|
|
2562
|
+
-webkit-box-shadow: none;
|
|
2563
|
+
box-shadow: none;
|
|
2537
2564
|
}
|
|
2538
2565
|
|
|
2539
2566
|
.e-popup.e-multi-select-list-wrapper.e-multiselect-group.e-checkbox .e-list-group-item.e-active {
|
|
@@ -2558,7 +2585,8 @@ ejs-multiselect {
|
|
|
2558
2585
|
|
|
2559
2586
|
.e-popup.e-multi-select-list-wrapper.e-multiselect-group.e-checkbox .e-list-group-item.e-active.e-hover {
|
|
2560
2587
|
background-color: #f3f2f1;
|
|
2561
|
-
box-shadow: none;
|
|
2588
|
+
-webkit-box-shadow: none;
|
|
2589
|
+
box-shadow: none;
|
|
2562
2590
|
}
|
|
2563
2591
|
|
|
2564
2592
|
.e-popup.e-multi-select-list-wrapper .e-list-item.e-active:first-child {
|
|
@@ -2582,7 +2610,8 @@ ejs-multiselect {
|
|
|
2582
2610
|
|
|
2583
2611
|
.e-popup.e-multi-select-list-wrapper.e-multiselect-group .e-list-group-item.e-active.e-item-focus {
|
|
2584
2612
|
background-color: #edebe9;
|
|
2585
|
-
box-shadow: none;
|
|
2613
|
+
-webkit-box-shadow: none;
|
|
2614
|
+
box-shadow: none;
|
|
2586
2615
|
color: #201f1e;
|
|
2587
2616
|
border: 0 solid transparent;
|
|
2588
2617
|
}
|
|
@@ -2705,11 +2734,13 @@ ejs-multiselect {
|
|
|
2705
2734
|
.e-listbox-container,
|
|
2706
2735
|
.e-listboxtool-wrapper {
|
|
2707
2736
|
-webkit-overflow-scrolling: touch;
|
|
2708
|
-
box-sizing: border-box;
|
|
2737
|
+
-webkit-box-sizing: border-box;
|
|
2738
|
+
box-sizing: border-box;
|
|
2709
2739
|
cursor: pointer;
|
|
2710
2740
|
display: block;
|
|
2711
2741
|
position: relative;
|
|
2712
2742
|
-webkit-user-select: none;
|
|
2743
|
+
-moz-user-select: none;
|
|
2713
2744
|
-ms-user-select: none;
|
|
2714
2745
|
user-select: none;
|
|
2715
2746
|
width: 100%;
|
|
@@ -2717,7 +2748,8 @@ ejs-multiselect {
|
|
|
2717
2748
|
.e-listbox-wrapper *,
|
|
2718
2749
|
.e-listbox-container *,
|
|
2719
2750
|
.e-listboxtool-wrapper * {
|
|
2720
|
-
box-sizing: border-box;
|
|
2751
|
+
-webkit-box-sizing: border-box;
|
|
2752
|
+
box-sizing: border-box;
|
|
2721
2753
|
}
|
|
2722
2754
|
.e-listbox-wrapper.e-listboxtool-container .e-list-wrap,
|
|
2723
2755
|
.e-listbox-container.e-listboxtool-container .e-list-wrap,
|
|
@@ -2782,9 +2814,11 @@ ejs-multiselect {
|
|
|
2782
2814
|
margin: 0;
|
|
2783
2815
|
padding: 0;
|
|
2784
2816
|
}
|
|
2785
|
-
.e-listbox-wrapper .e-list-header .e-text.header,
|
|
2817
|
+
.e-listbox-wrapper .e-list-header .e-text.header, .e-listbox-wrapper .e-list-header .e-headertemplate-text.nested-header,
|
|
2786
2818
|
.e-listbox-container .e-list-header .e-text.header,
|
|
2787
|
-
.e-
|
|
2819
|
+
.e-listbox-container .e-list-header .e-headertemplate-text.nested-header,
|
|
2820
|
+
.e-listboxtool-wrapper .e-list-header .e-text.header,
|
|
2821
|
+
.e-listboxtool-wrapper .e-list-header .e-headertemplate-text.nested-header {
|
|
2788
2822
|
display: none;
|
|
2789
2823
|
}
|
|
2790
2824
|
.e-listbox-wrapper .e-icon-back,
|
|
@@ -2792,17 +2826,14 @@ ejs-multiselect {
|
|
|
2792
2826
|
.e-listboxtool-wrapper .e-icon-back {
|
|
2793
2827
|
margin-top: 2px;
|
|
2794
2828
|
}
|
|
2795
|
-
.e-listbox-wrapper .e-list-header .e-headertemplate-text.nested-header,
|
|
2796
|
-
.e-listbox-container .e-list-header .e-headertemplate-text.nested-header,
|
|
2797
|
-
.e-listboxtool-wrapper .e-list-header .e-headertemplate-text.nested-header {
|
|
2798
|
-
display: none;
|
|
2799
|
-
}
|
|
2800
2829
|
.e-listbox-wrapper .e-list-header,
|
|
2801
2830
|
.e-listbox-container .e-list-header,
|
|
2802
2831
|
.e-listboxtool-wrapper .e-list-header {
|
|
2803
|
-
-
|
|
2804
|
-
align
|
|
2832
|
+
-webkit-box-align: center;
|
|
2833
|
+
-ms-flex-align: center;
|
|
2834
|
+
align-items: center;
|
|
2805
2835
|
border-bottom: 1px solid;
|
|
2836
|
+
display: -webkit-box;
|
|
2806
2837
|
display: -ms-flexbox;
|
|
2807
2838
|
display: flex;
|
|
2808
2839
|
font-weight: 600;
|
|
@@ -2844,7 +2875,8 @@ ejs-multiselect {
|
|
|
2844
2875
|
position: absolute;
|
|
2845
2876
|
right: 0%;
|
|
2846
2877
|
top: 50%;
|
|
2847
|
-
transform: translateY(-50%);
|
|
2878
|
+
-webkit-transform: translateY(-50%);
|
|
2879
|
+
transform: translateY(-50%);
|
|
2848
2880
|
}
|
|
2849
2881
|
.e-listbox-wrapper .e-text-content,
|
|
2850
2882
|
.e-listbox-container .e-text-content,
|
|
@@ -2900,18 +2932,12 @@ ejs-multiselect {
|
|
|
2900
2932
|
white-space: nowrap;
|
|
2901
2933
|
width: 100%;
|
|
2902
2934
|
}
|
|
2903
|
-
.e-listbox-wrapper .e-list-icon + .e-list-text,
|
|
2935
|
+
.e-listbox-wrapper .e-list-icon + .e-list-text, .e-listbox-wrapper .e-icon-wrapper .e-list-text, .e-listbox-wrapper .e-icon-wrapper.e-text-content.e-checkbox .e-list-text,
|
|
2904
2936
|
.e-listbox-container .e-list-icon + .e-list-text,
|
|
2905
|
-
.e-listboxtool-wrapper .e-list-icon + .e-list-text {
|
|
2906
|
-
width: calc(100% - 60px);
|
|
2907
|
-
}
|
|
2908
|
-
.e-listbox-wrapper .e-icon-wrapper .e-list-text,
|
|
2909
2937
|
.e-listbox-container .e-icon-wrapper .e-list-text,
|
|
2910
|
-
.e-listboxtool-wrapper .e-icon-wrapper .e-list-text {
|
|
2911
|
-
width: calc(100% - 60px);
|
|
2912
|
-
}
|
|
2913
|
-
.e-listbox-wrapper .e-icon-wrapper.e-text-content.e-checkbox .e-list-text,
|
|
2914
2938
|
.e-listbox-container .e-icon-wrapper.e-text-content.e-checkbox .e-list-text,
|
|
2939
|
+
.e-listboxtool-wrapper .e-list-icon + .e-list-text,
|
|
2940
|
+
.e-listboxtool-wrapper .e-icon-wrapper .e-list-text,
|
|
2915
2941
|
.e-listboxtool-wrapper .e-icon-wrapper.e-text-content.e-checkbox .e-list-text {
|
|
2916
2942
|
width: calc(100% - 60px);
|
|
2917
2943
|
}
|
|
@@ -2957,7 +2983,8 @@ ejs-multiselect {
|
|
|
2957
2983
|
left: 0%;
|
|
2958
2984
|
right: initial;
|
|
2959
2985
|
top: 50%;
|
|
2960
|
-
transform: translateY(-50%) rotate(180deg);
|
|
2986
|
+
-webkit-transform: translateY(-50%) rotate(180deg);
|
|
2987
|
+
transform: translateY(-50%) rotate(180deg);
|
|
2961
2988
|
}
|
|
2962
2989
|
.e-listbox-wrapper.e-rtl .e-list-header .e-text,
|
|
2963
2990
|
.e-listbox-container.e-rtl .e-list-header .e-text,
|
|
@@ -2967,7 +2994,8 @@ ejs-multiselect {
|
|
|
2967
2994
|
.e-listbox-wrapper.e-rtl .e-but-back,
|
|
2968
2995
|
.e-listbox-container.e-rtl .e-but-back,
|
|
2969
2996
|
.e-listboxtool-wrapper.e-rtl .e-but-back {
|
|
2970
|
-
transform: rotate(180deg);
|
|
2997
|
+
-webkit-transform: rotate(180deg);
|
|
2998
|
+
transform: rotate(180deg);
|
|
2971
2999
|
}
|
|
2972
3000
|
.e-listbox-wrapper.e-rtl .e-icon-back,
|
|
2973
3001
|
.e-listbox-container.e-rtl .e-icon-back,
|
|
@@ -2975,8 +3003,11 @@ ejs-multiselect {
|
|
|
2975
3003
|
margin-top: -2px;
|
|
2976
3004
|
}
|
|
2977
3005
|
.e-listbox-wrapper.e-rtl .e-checkbox .e-checkbox-left,
|
|
3006
|
+
.e-listbox-wrapper.e-rtl .e-checkbox-wrapper,
|
|
2978
3007
|
.e-listbox-container.e-rtl .e-checkbox .e-checkbox-left,
|
|
2979
|
-
.e-
|
|
3008
|
+
.e-listbox-container.e-rtl .e-checkbox-wrapper,
|
|
3009
|
+
.e-listboxtool-wrapper.e-rtl .e-checkbox .e-checkbox-left,
|
|
3010
|
+
.e-listboxtool-wrapper.e-rtl .e-checkbox-wrapper {
|
|
2980
3011
|
margin: -2px 0 0 8px;
|
|
2981
3012
|
}
|
|
2982
3013
|
.e-listbox-wrapper.e-rtl .e-checkbox .e-checkbox-right,
|
|
@@ -2984,11 +3015,6 @@ ejs-multiselect {
|
|
|
2984
3015
|
.e-listboxtool-wrapper.e-rtl .e-checkbox .e-checkbox-right {
|
|
2985
3016
|
margin: -2px 8px 0 0;
|
|
2986
3017
|
}
|
|
2987
|
-
.e-listbox-wrapper.e-rtl .e-checkbox-wrapper,
|
|
2988
|
-
.e-listbox-container.e-rtl .e-checkbox-wrapper,
|
|
2989
|
-
.e-listboxtool-wrapper.e-rtl .e-checkbox-wrapper {
|
|
2990
|
-
margin: -2px 0 0 8px;
|
|
2991
|
-
}
|
|
2992
3018
|
.e-listbox-wrapper .e-checkbox-wrapper,
|
|
2993
3019
|
.e-listbox-container .e-checkbox-wrapper,
|
|
2994
3020
|
.e-listboxtool-wrapper .e-checkbox-wrapper {
|
|
@@ -3033,10 +3059,7 @@ ejs-listbox {
|
|
|
3033
3059
|
display: block;
|
|
3034
3060
|
}
|
|
3035
3061
|
|
|
3036
|
-
.e-listbox-wrapper:not(.e-listbox-container)
|
|
3037
|
-
overflow: auto;
|
|
3038
|
-
}
|
|
3039
|
-
|
|
3062
|
+
.e-listbox-wrapper:not(.e-listbox-container),
|
|
3040
3063
|
.e-listbox-wrapper.e-filter-list .e-list-parent {
|
|
3041
3064
|
overflow: auto;
|
|
3042
3065
|
}
|
|
@@ -3051,6 +3074,7 @@ ejs-listbox {
|
|
|
3051
3074
|
.e-listbox-container.e-sortableclone .e-list-item,
|
|
3052
3075
|
.e-listboxtool-wrapper.e-sortableclone .e-list-item {
|
|
3053
3076
|
list-style-type: none;
|
|
3077
|
+
height: 38px !important; /* stylelint-disable-line declaration-no-important */
|
|
3054
3078
|
}
|
|
3055
3079
|
.e-listbox-wrapper.e-sortableclone .e-ripple,
|
|
3056
3080
|
.e-listbox-container.e-sortableclone .e-ripple,
|
|
@@ -3065,18 +3089,21 @@ ejs-listbox {
|
|
|
3065
3089
|
.e-listbox-wrapper.e-sortableclone .e-list-badge,
|
|
3066
3090
|
.e-listbox-container.e-sortableclone .e-list-badge,
|
|
3067
3091
|
.e-listboxtool-wrapper.e-sortableclone .e-list-badge {
|
|
3068
|
-
-
|
|
3069
|
-
align
|
|
3092
|
+
-webkit-box-align: center;
|
|
3093
|
+
-ms-flex-align: center;
|
|
3094
|
+
align-items: center;
|
|
3070
3095
|
background-color: #0078d4;
|
|
3071
3096
|
border: 1px solid #fff;
|
|
3072
3097
|
border-radius: 50%;
|
|
3073
3098
|
color: #fff;
|
|
3099
|
+
display: -webkit-box;
|
|
3074
3100
|
display: -ms-flexbox;
|
|
3075
3101
|
display: flex;
|
|
3076
3102
|
font-size: 12px;
|
|
3077
3103
|
height: 22px;
|
|
3078
|
-
-
|
|
3079
|
-
|
|
3104
|
+
-webkit-box-pack: center;
|
|
3105
|
+
-ms-flex-pack: center;
|
|
3106
|
+
justify-content: center;
|
|
3080
3107
|
position: absolute;
|
|
3081
3108
|
right: -10px;
|
|
3082
3109
|
top: -10px;
|
|
@@ -3090,12 +3117,14 @@ ejs-listbox {
|
|
|
3090
3117
|
.e-listboxtool-wrapper,
|
|
3091
3118
|
.e-listboxtool-container {
|
|
3092
3119
|
cursor: pointer;
|
|
3120
|
+
display: -webkit-box;
|
|
3093
3121
|
display: -ms-flexbox;
|
|
3094
3122
|
display: flex;
|
|
3095
3123
|
}
|
|
3096
3124
|
.e-listboxtool-wrapper *,
|
|
3097
3125
|
.e-listboxtool-container * {
|
|
3098
|
-
box-sizing: border-box;
|
|
3126
|
+
-webkit-box-sizing: border-box;
|
|
3127
|
+
box-sizing: border-box;
|
|
3099
3128
|
}
|
|
3100
3129
|
.e-listboxtool-wrapper.e-disabled,
|
|
3101
3130
|
.e-listboxtool-container.e-disabled {
|
|
@@ -3103,9 +3132,12 @@ ejs-listbox {
|
|
|
3103
3132
|
pointer-events: none;
|
|
3104
3133
|
}
|
|
3105
3134
|
.e-listboxtool-wrapper .e-listbox-wrapper,
|
|
3106
|
-
.e-listboxtool-
|
|
3107
|
-
|
|
3108
|
-
|
|
3135
|
+
.e-listboxtool-wrapper .e-list-wrap,
|
|
3136
|
+
.e-listboxtool-container .e-listbox-wrapper,
|
|
3137
|
+
.e-listboxtool-container .e-list-wrap {
|
|
3138
|
+
-webkit-box-flex: 1;
|
|
3139
|
+
-ms-flex: 1;
|
|
3140
|
+
flex: 1;
|
|
3109
3141
|
}
|
|
3110
3142
|
.e-listboxtool-wrapper.e-right .e-listbox-tool,
|
|
3111
3143
|
.e-listboxtool-container.e-right .e-listbox-tool {
|
|
@@ -3211,22 +3243,22 @@ ejs-listbox {
|
|
|
3211
3243
|
.e-listbox-wrapper.e-bigger .e-list-header,
|
|
3212
3244
|
.e-bigger .e-listbox-container .e-list-header,
|
|
3213
3245
|
.e-listbox-container.e-bigger .e-list-header {
|
|
3214
|
-
-
|
|
3215
|
-
align
|
|
3246
|
+
-webkit-box-align: center;
|
|
3247
|
+
-ms-flex-align: center;
|
|
3248
|
+
align-items: center;
|
|
3249
|
+
display: -webkit-box;
|
|
3216
3250
|
display: -ms-flexbox;
|
|
3217
3251
|
display: flex;
|
|
3218
3252
|
font-weight: 600;
|
|
3219
3253
|
height: 22px;
|
|
3220
3254
|
}
|
|
3221
3255
|
.e-bigger .e-listbox-wrapper .e-list-header .e-text.header,
|
|
3222
|
-
.e-listbox-wrapper.e-bigger .e-list-header .e-text.header,
|
|
3223
|
-
.e-bigger .e-listbox-container .e-list-header .e-text.header,
|
|
3224
|
-
.e-listbox-container.e-bigger .e-list-header .e-text.header {
|
|
3225
|
-
display: none;
|
|
3226
|
-
}
|
|
3227
3256
|
.e-bigger .e-listbox-wrapper .e-list-header .e-headertemplate-text.nested-header,
|
|
3257
|
+
.e-listbox-wrapper.e-bigger .e-list-header .e-text.header,
|
|
3228
3258
|
.e-listbox-wrapper.e-bigger .e-list-header .e-headertemplate-text.nested-header,
|
|
3259
|
+
.e-bigger .e-listbox-container .e-list-header .e-text.header,
|
|
3229
3260
|
.e-bigger .e-listbox-container .e-list-header .e-headertemplate-text.nested-header,
|
|
3261
|
+
.e-listbox-container.e-bigger .e-list-header .e-text.header,
|
|
3230
3262
|
.e-listbox-container.e-bigger .e-list-header .e-headertemplate-text.nested-header {
|
|
3231
3263
|
display: none;
|
|
3232
3264
|
}
|
|
@@ -3249,15 +3281,15 @@ ejs-listbox {
|
|
|
3249
3281
|
height: calc(100% - 64px) !important; /* stylelint-disable-line declaration-no-important */
|
|
3250
3282
|
}
|
|
3251
3283
|
|
|
3252
|
-
.e-bigger .e-listbox-container.e-filter-list .e-list-parent
|
|
3284
|
+
.e-bigger .e-listbox-container.e-filter-list .e-list-parent,
|
|
3285
|
+
.e-bigger .e-listbox-container .e-selectall-parent + .e-list-parent,
|
|
3286
|
+
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-parent,
|
|
3287
|
+
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
3253
3288
|
height: 100%;
|
|
3254
3289
|
}
|
|
3255
3290
|
|
|
3256
3291
|
.e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
3257
|
-
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent
|
|
3258
|
-
height: calc(100% - 48px) !important; /* stylelint-disable-line declaration-no-important */
|
|
3259
|
-
}
|
|
3260
|
-
|
|
3292
|
+
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
3261
3293
|
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
3262
3294
|
height: calc(100% - 48px) !important; /* stylelint-disable-line declaration-no-important */
|
|
3263
3295
|
}
|
|
@@ -3266,23 +3298,11 @@ ejs-listbox {
|
|
|
3266
3298
|
height: calc(100% - 56px) !important; /* stylelint-disable-line declaration-no-important */
|
|
3267
3299
|
}
|
|
3268
3300
|
|
|
3269
|
-
.e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
|
|
3270
|
-
height: calc(100% - 64px) !important; /* stylelint-disable-line declaration-no-important */
|
|
3271
|
-
}
|
|
3272
|
-
|
|
3273
|
-
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
3274
|
-
height: 100%;
|
|
3275
|
-
}
|
|
3276
|
-
|
|
3277
3301
|
.e-bigger .e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
3278
3302
|
.e-bigger .e-listbox-container .e-selectall-parent + .e-list-wrap {
|
|
3279
3303
|
height: calc(100% - 48px) !important; /* stylelint-disable-line declaration-no-important */
|
|
3280
3304
|
}
|
|
3281
3305
|
|
|
3282
|
-
.e-bigger .e-listbox-container .e-selectall-parent + .e-list-parent {
|
|
3283
|
-
height: 100%;
|
|
3284
|
-
}
|
|
3285
|
-
|
|
3286
3306
|
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
3287
3307
|
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
3288
3308
|
height: calc(100% - 59px) !important; /* stylelint-disable-line declaration-no-important */
|
|
@@ -3296,10 +3316,6 @@ ejs-listbox {
|
|
|
3296
3316
|
height: calc(100% - 113px) !important; /* stylelint-disable-line declaration-no-important */
|
|
3297
3317
|
}
|
|
3298
3318
|
|
|
3299
|
-
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
3300
|
-
height: 100%;
|
|
3301
|
-
}
|
|
3302
|
-
|
|
3303
3319
|
.e-listbox-wrapper,
|
|
3304
3320
|
.e-listbox-container:not(.e-listboxtool-container):not(.e-sortableclone),
|
|
3305
3321
|
.e-listboxtool-container.e-listbox-container .e-ul {
|
|
@@ -3339,12 +3355,6 @@ ejs-listbox {
|
|
|
3339
3355
|
height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
|
|
3340
3356
|
}
|
|
3341
3357
|
|
|
3342
|
-
.e-listbox-wrapper .e-icons,
|
|
3343
|
-
.e-listbox-container .e-icons,
|
|
3344
|
-
.e-listboxtool-wrapper .e-icons {
|
|
3345
|
-
color: #605e5c;
|
|
3346
|
-
}
|
|
3347
|
-
|
|
3348
3358
|
.e-listbox-wrapper .e-list-item,
|
|
3349
3359
|
.e-listbox-container .e-list-item,
|
|
3350
3360
|
.e-listboxtool-wrapper .e-list-item {
|
|
@@ -3366,13 +3376,6 @@ ejs-listbox {
|
|
|
3366
3376
|
color: #201f1e;
|
|
3367
3377
|
}
|
|
3368
3378
|
|
|
3369
|
-
.e-listbox-wrapper .e-list-item.e-selected,
|
|
3370
|
-
.e-listbox-container .e-list-item.e-selected,
|
|
3371
|
-
.e-listboxtool-wrapper .e-list-item.e-selected {
|
|
3372
|
-
background-color: #edebe9;
|
|
3373
|
-
color: #201f1e;
|
|
3374
|
-
}
|
|
3375
|
-
|
|
3376
3379
|
.e-listbox-wrapper .e-list-item.e-selected.e-checklist,
|
|
3377
3380
|
.e-listbox-container .e-list-item.e-selected.e-checklist,
|
|
3378
3381
|
.e-listboxtool-wrapper .e-list-item.e-selected.e-checklist {
|
|
@@ -3380,11 +3383,13 @@ ejs-listbox {
|
|
|
3380
3383
|
color: #201f1e;
|
|
3381
3384
|
}
|
|
3382
3385
|
|
|
3383
|
-
.e-listbox-wrapper .e-list-item.e-focused, .e-listbox-wrapper .e-list-item.e-focused.e-selected.e-checklist,
|
|
3386
|
+
.e-listbox-wrapper .e-list-item.e-focused, .e-listbox-wrapper .e-list-item.e-focused.e-selected.e-checklist, .e-listbox-wrapper .e-list-item.e-selected,
|
|
3384
3387
|
.e-listbox-container .e-list-item.e-focused,
|
|
3385
3388
|
.e-listbox-container .e-list-item.e-focused.e-selected.e-checklist,
|
|
3389
|
+
.e-listbox-container .e-list-item.e-selected,
|
|
3386
3390
|
.e-listboxtool-wrapper .e-list-item.e-focused,
|
|
3387
|
-
.e-listboxtool-wrapper .e-list-item.e-focused.e-selected.e-checklist
|
|
3391
|
+
.e-listboxtool-wrapper .e-list-item.e-focused.e-selected.e-checklist,
|
|
3392
|
+
.e-listboxtool-wrapper .e-list-item.e-selected {
|
|
3388
3393
|
background-color: #edebe9;
|
|
3389
3394
|
color: #201f1e;
|
|
3390
3395
|
}
|
|
@@ -3474,8 +3479,8 @@ ejs-listbox {
|
|
|
3474
3479
|
height: 40px;
|
|
3475
3480
|
left: 0;
|
|
3476
3481
|
position: absolute;
|
|
3477
|
-
top: 0;
|
|
3478
3482
|
width: 40px;
|
|
3483
|
+
left: 0;
|
|
3479
3484
|
}
|
|
3480
3485
|
.e-listbox-wrapper.e-list-template .e-list-wrapper.e-list-avatar:not(.e-list-badge),
|
|
3481
3486
|
.e-listbox-container.e-list-template .e-list-wrapper.e-list-avatar:not(.e-list-badge),
|
|
@@ -3493,18 +3498,15 @@ ejs-listbox {
|
|
|
3493
3498
|
.e-listbox-container.e-list-template .e-list-wrapper.e-list-avatar-right:not(.e-list-badge) .e-avatar,
|
|
3494
3499
|
.e-listboxtool-wrapper.e-list-template .e-list-wrapper.e-list-avatar-right:not(.e-list-badge) .e-avatar {
|
|
3495
3500
|
height: 40px;
|
|
3501
|
+
left: 0;
|
|
3496
3502
|
position: absolute;
|
|
3497
|
-
right: 0;
|
|
3498
|
-
top: 0;
|
|
3499
3503
|
width: 40px;
|
|
3504
|
+
right: 0;
|
|
3500
3505
|
}
|
|
3501
|
-
.e-listbox-wrapper.e-list-template .e-list-wrapper.e-list-multi-line.e-list-avatar .e-avatar,
|
|
3506
|
+
.e-listbox-wrapper.e-list-template .e-list-wrapper.e-list-multi-line.e-list-avatar .e-avatar, .e-listbox-wrapper.e-list-template .e-list-wrapper.e-list-multi-line.e-list-avatar-right:not(.e-list-badge) .e-avatar,
|
|
3502
3507
|
.e-listbox-container.e-list-template .e-list-wrapper.e-list-multi-line.e-list-avatar .e-avatar,
|
|
3503
|
-
.e-listboxtool-wrapper.e-list-template .e-list-wrapper.e-list-multi-line.e-list-avatar .e-avatar {
|
|
3504
|
-
top: 0;
|
|
3505
|
-
}
|
|
3506
|
-
.e-listbox-wrapper.e-list-template .e-list-wrapper.e-list-multi-line.e-list-avatar-right:not(.e-list-badge) .e-avatar,
|
|
3507
3508
|
.e-listbox-container.e-list-template .e-list-wrapper.e-list-multi-line.e-list-avatar-right:not(.e-list-badge) .e-avatar,
|
|
3509
|
+
.e-listboxtool-wrapper.e-list-template .e-list-wrapper.e-list-multi-line.e-list-avatar .e-avatar,
|
|
3508
3510
|
.e-listboxtool-wrapper.e-list-template .e-list-wrapper.e-list-multi-line.e-list-avatar-right:not(.e-list-badge) .e-avatar {
|
|
3509
3511
|
top: 0;
|
|
3510
3512
|
}
|
|
@@ -3518,7 +3520,8 @@ ejs-listbox {
|
|
|
3518
3520
|
position: absolute;
|
|
3519
3521
|
right: 12px;
|
|
3520
3522
|
top: 50%;
|
|
3521
|
-
transform: translateY(-50%);
|
|
3523
|
+
-webkit-transform: translateY(-50%);
|
|
3524
|
+
transform: translateY(-50%);
|
|
3522
3525
|
width: 32px;
|
|
3523
3526
|
}
|
|
3524
3527
|
.e-listbox-wrapper.e-list-template .e-list-wrapper.e-list-badge.e-list-avatar,
|
|
@@ -3543,23 +3546,17 @@ ejs-listbox {
|
|
|
3543
3546
|
text-overflow: ellipsis;
|
|
3544
3547
|
white-space: nowrap;
|
|
3545
3548
|
}
|
|
3546
|
-
.e-listbox-wrapper.e-list-template .e-list-item.e-list-item:hover .e-list-item-header,
|
|
3549
|
+
.e-listbox-wrapper.e-list-template .e-list-item.e-list-item:hover .e-list-item-header, .e-listbox-wrapper.e-list-template .e-list-item.e-list-item:hover .e-list-content,
|
|
3547
3550
|
.e-listbox-container.e-list-template .e-list-item.e-list-item:hover .e-list-item-header,
|
|
3548
|
-
.e-listboxtool-wrapper.e-list-template .e-list-item.e-list-item:hover .e-list-item-header {
|
|
3549
|
-
color: #201f1e;
|
|
3550
|
-
}
|
|
3551
|
-
.e-listbox-wrapper.e-list-template .e-list-item.e-list-item:hover .e-list-content,
|
|
3552
3551
|
.e-listbox-container.e-list-template .e-list-item.e-list-item:hover .e-list-content,
|
|
3552
|
+
.e-listboxtool-wrapper.e-list-template .e-list-item.e-list-item:hover .e-list-item-header,
|
|
3553
3553
|
.e-listboxtool-wrapper.e-list-template .e-list-item.e-list-item:hover .e-list-content {
|
|
3554
3554
|
color: #201f1e;
|
|
3555
3555
|
}
|
|
3556
|
-
.e-listbox-wrapper.e-list-template .e-list-item.e-selected .e-list-item-header,
|
|
3556
|
+
.e-listbox-wrapper.e-list-template .e-list-item.e-selected .e-list-item-header, .e-listbox-wrapper.e-list-template .e-list-item.e-selected .e-list-content,
|
|
3557
3557
|
.e-listbox-container.e-list-template .e-list-item.e-selected .e-list-item-header,
|
|
3558
|
-
.e-listboxtool-wrapper.e-list-template .e-list-item.e-selected .e-list-item-header {
|
|
3559
|
-
color: #201f1e;
|
|
3560
|
-
}
|
|
3561
|
-
.e-listbox-wrapper.e-list-template .e-list-item.e-selected .e-list-content,
|
|
3562
3558
|
.e-listbox-container.e-list-template .e-list-item.e-selected .e-list-content,
|
|
3559
|
+
.e-listboxtool-wrapper.e-list-template .e-list-item.e-selected .e-list-item-header,
|
|
3563
3560
|
.e-listboxtool-wrapper.e-list-template .e-list-item.e-selected .e-list-content {
|
|
3564
3561
|
color: #201f1e;
|
|
3565
3562
|
}
|
|
@@ -3606,15 +3603,7 @@ ejs-listbox {
|
|
|
3606
3603
|
padding-right: 16px;
|
|
3607
3604
|
}
|
|
3608
3605
|
|
|
3609
|
-
.e-listbox-container.e-filter-list .e-list-parent {
|
|
3610
|
-
height: 100%;
|
|
3611
|
-
}
|
|
3612
|
-
|
|
3613
|
-
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
3614
|
-
height: 100%;
|
|
3615
|
-
}
|
|
3616
|
-
|
|
3617
|
-
.e-listbox-container .e-selectall-parent + .e-list-parent {
|
|
3606
|
+
.e-listbox-container.e-filter-list .e-list-parent, .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent, .e-listbox-container .e-selectall-parent + .e-list-parent {
|
|
3618
3607
|
height: 100%;
|
|
3619
3608
|
}
|
|
3620
3609
|
|
|
@@ -3630,22 +3619,4 @@ ejs-listbox {
|
|
|
3630
3619
|
height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
|
|
3631
3620
|
}
|
|
3632
3621
|
|
|
3633
|
-
/* stylelint-disable-line no-empty-source */
|
|
3634
|
-
/* stylelint-disable property-no-vendor-prefix */
|
|
3635
|
-
@keyframes material-spinner-rotate {
|
|
3636
|
-
0% {
|
|
3637
|
-
transform: rotate(0);
|
|
3638
|
-
}
|
|
3639
|
-
100% {
|
|
3640
|
-
transform: rotate(360deg);
|
|
3641
|
-
}
|
|
3642
|
-
}
|
|
3643
|
-
@keyframes fabric-spinner-rotate {
|
|
3644
|
-
0% {
|
|
3645
|
-
transform: rotate(0);
|
|
3646
|
-
}
|
|
3647
|
-
100% {
|
|
3648
|
-
transform: rotate(360deg);
|
|
3649
|
-
}
|
|
3650
|
-
}
|
|
3651
3622
|
/* stylelint-disable-line no-empty-source */
|