@syncfusion/ej2-dropdowns 25.2.7 → 26.1.35
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 +505 -224
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +498 -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 +52 -38
- package/src/list-box/list-box.js +30 -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 +196 -228
- package/styles/bootstrap-dark.scss +28 -8
- package/styles/bootstrap.css +196 -228
- package/styles/bootstrap.scss +28 -8
- package/styles/bootstrap4.css +199 -229
- package/styles/bootstrap4.scss +28 -8
- package/styles/bootstrap5-dark.css +196 -221
- package/styles/bootstrap5-dark.scss +28 -8
- package/styles/bootstrap5.css +196 -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 +289 -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 +63 -29
- package/styles/drop-down-tree/bootstrap.css +63 -29
- package/styles/drop-down-tree/bootstrap4.css +64 -30
- package/styles/drop-down-tree/bootstrap5-dark.css +63 -27
- package/styles/drop-down-tree/bootstrap5.css +63 -27
- package/styles/drop-down-tree/fabric-dark.css +63 -29
- package/styles/drop-down-tree/fabric.css +63 -29
- package/styles/drop-down-tree/fluent-dark.css +71 -35
- package/styles/drop-down-tree/fluent.css +71 -35
- package/styles/drop-down-tree/fluent2.css +1732 -0
- package/styles/drop-down-tree/fluent2.scss +9 -0
- package/styles/drop-down-tree/highcontrast-light.css +63 -29
- package/styles/drop-down-tree/highcontrast.css +63 -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 +80 -43
- package/styles/drop-down-tree/material.css +97 -51
- package/styles/drop-down-tree/material3-dark.css +85 -32
- package/styles/drop-down-tree/material3.css +85 -32
- package/styles/drop-down-tree/tailwind-dark.css +72 -28
- package/styles/drop-down-tree/tailwind.css +72 -28
- package/styles/fabric-dark.css +194 -227
- package/styles/fabric-dark.scss +28 -8
- package/styles/fabric.css +194 -227
- package/styles/fabric.scss +28 -8
- package/styles/fluent-dark.css +206 -236
- package/styles/fluent-dark.scss +28 -8
- package/styles/fluent.css +206 -236
- package/styles/fluent.scss +28 -8
- package/styles/fluent2.css +4771 -0
- package/styles/fluent2.scss +28 -0
- package/styles/highcontrast-light.css +197 -227
- package/styles/highcontrast-light.scss +28 -8
- package/styles/highcontrast.css +197 -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 +236 -260
- package/styles/material-dark.scss +28 -8
- package/styles/material.css +253 -284
- package/styles/material.scss +28 -8
- package/styles/material3-dark.css +253 -266
- package/styles/material3-dark.scss +28 -8
- package/styles/material3.css +253 -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 +217 -233
- package/styles/tailwind-dark.scss +28 -8
- package/styles/tailwind.css +217 -233
- package/styles/tailwind.scss +28 -8
- package/CHANGELOG.md +0 -2200
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
--color-sf-on-warning: 99, 52, 0;
|
|
45
45
|
--color-sf-on-warning-container: 255, 220, 193;
|
|
46
46
|
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
47
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #
|
|
47
|
+
--color-sf-shadow-focus-ring1: 0 0 0 1px #000, 0 0 0 3px #fff;
|
|
48
48
|
--color-sf-success-text: 0, 0, 0;
|
|
49
49
|
--color-sf-warning-text: 0, 0, 0;
|
|
50
50
|
--color-sf-info-text: 0, 0, 0;
|
|
@@ -54,35 +54,79 @@
|
|
|
54
54
|
}
|
|
55
55
|
|
|
56
56
|
/* stylelint-disable property-no-vendor-prefix */
|
|
57
|
+
@-webkit-keyframes e-input-ripple {
|
|
58
|
+
100% {
|
|
59
|
+
opacity: 0;
|
|
60
|
+
-webkit-transform: scale(4);
|
|
61
|
+
transform: scale(4);
|
|
62
|
+
}
|
|
63
|
+
}
|
|
57
64
|
@keyframes e-input-ripple {
|
|
58
65
|
100% {
|
|
59
66
|
opacity: 0;
|
|
60
|
-
transform: scale(4);
|
|
67
|
+
-webkit-transform: scale(4);
|
|
68
|
+
transform: scale(4);
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
@-webkit-keyframes slideTopUp {
|
|
72
|
+
from {
|
|
73
|
+
-webkit-transform: translate3d(0, 0, 0) scale(1);
|
|
74
|
+
transform: translate3d(0, 0, 0) scale(1);
|
|
75
|
+
}
|
|
76
|
+
to {
|
|
77
|
+
-webkit-transform: translate3d(0, 0, 0) scale(1);
|
|
78
|
+
transform: translate3d(0, 0, 0) scale(1);
|
|
61
79
|
}
|
|
62
80
|
}
|
|
63
81
|
@keyframes slideTopUp {
|
|
64
82
|
from {
|
|
65
|
-
transform: translate3d(0, 0, 0) scale(1);
|
|
83
|
+
-webkit-transform: translate3d(0, 0, 0) scale(1);
|
|
84
|
+
transform: translate3d(0, 0, 0) scale(1);
|
|
66
85
|
}
|
|
67
86
|
to {
|
|
68
|
-
transform: translate3d(0, 0, 0) scale(1);
|
|
87
|
+
-webkit-transform: translate3d(0, 0, 0) scale(1);
|
|
88
|
+
transform: translate3d(0, 0, 0) scale(1);
|
|
69
89
|
}
|
|
70
90
|
}
|
|
71
91
|
/* stylelint-disable-line no-empty-source */
|
|
72
92
|
/* stylelint-disable property-no-vendor-prefix */
|
|
93
|
+
@-webkit-keyframes material-spinner-rotate {
|
|
94
|
+
0% {
|
|
95
|
+
-webkit-transform: rotate(0deg);
|
|
96
|
+
transform: rotate(0deg);
|
|
97
|
+
}
|
|
98
|
+
100% {
|
|
99
|
+
-webkit-transform: rotate(360deg);
|
|
100
|
+
transform: rotate(360deg);
|
|
101
|
+
}
|
|
102
|
+
}
|
|
73
103
|
@keyframes material-spinner-rotate {
|
|
74
104
|
0% {
|
|
105
|
+
-webkit-transform: rotate(0deg);
|
|
106
|
+
transform: rotate(0deg);
|
|
107
|
+
}
|
|
108
|
+
100% {
|
|
109
|
+
-webkit-transform: rotate(360deg);
|
|
110
|
+
transform: rotate(360deg);
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
@-webkit-keyframes fabric-spinner-rotate {
|
|
114
|
+
0% {
|
|
115
|
+
-webkit-transform: rotate(0deg);
|
|
75
116
|
transform: rotate(0deg);
|
|
76
117
|
}
|
|
77
118
|
100% {
|
|
119
|
+
-webkit-transform: rotate(360deg);
|
|
78
120
|
transform: rotate(360deg);
|
|
79
121
|
}
|
|
80
122
|
}
|
|
81
123
|
@keyframes fabric-spinner-rotate {
|
|
82
124
|
0% {
|
|
125
|
+
-webkit-transform: rotate(0deg);
|
|
83
126
|
transform: rotate(0deg);
|
|
84
127
|
}
|
|
85
128
|
100% {
|
|
129
|
+
-webkit-transform: rotate(360deg);
|
|
86
130
|
transform: rotate(360deg);
|
|
87
131
|
}
|
|
88
132
|
}
|
|
@@ -330,6 +374,8 @@
|
|
|
330
374
|
.e-multiselect.e-input-group.e-outline .e-multi-select-wrapper .e-input-group-icon.e-ddl-icon,
|
|
331
375
|
.e-multiselect.e-outline.e-input-group.e-control-wrapper .e-multi-select-wrapper .e-input-group-icon.e-ddl-icon {
|
|
332
376
|
margin: 7px 12px 9px 0;
|
|
377
|
+
min-height: -webkit-fit-content;
|
|
378
|
+
min-height: -moz-fit-content;
|
|
333
379
|
min-height: fit-content;
|
|
334
380
|
}
|
|
335
381
|
|
|
@@ -586,6 +632,8 @@
|
|
|
586
632
|
.e-multiselect.e-input-group.e-filled .e-multi-select-wrapper .e-input-group-icon.e-ddl-icon,
|
|
587
633
|
.e-multiselect.e-filled.e-input-group.e-control-wrapper .e-multi-select-wrapper .e-input-group-icon.e-ddl-icon {
|
|
588
634
|
margin: 10px 0 9px;
|
|
635
|
+
min-height: -webkit-fit-content;
|
|
636
|
+
min-height: -moz-fit-content;
|
|
589
637
|
min-height: fit-content;
|
|
590
638
|
}
|
|
591
639
|
|
|
@@ -612,6 +660,8 @@
|
|
|
612
660
|
.e-small.e-multiselect.e-input-group.e-float-input.e-filled .e-multi-select-wrapper .e-input-group-icon.e-ddl-icon,
|
|
613
661
|
.e-small .e-multiselect.e-filled.e-input-group.e-float-input.e-control-wrapper .e-multi-select-wrapper .e-input-group-icon.e-ddl-icon {
|
|
614
662
|
margin: 0 12px 4px 0;
|
|
663
|
+
min-width: -webkit-fit-content;
|
|
664
|
+
min-width: -moz-fit-content;
|
|
615
665
|
min-width: fit-content;
|
|
616
666
|
}
|
|
617
667
|
|
|
@@ -685,13 +735,15 @@
|
|
|
685
735
|
}
|
|
686
736
|
|
|
687
737
|
.e-multi-select-wrapper {
|
|
688
|
-
box-sizing: border-box;
|
|
738
|
+
-webkit-box-sizing: border-box;
|
|
739
|
+
box-sizing: border-box;
|
|
689
740
|
cursor: text;
|
|
690
741
|
line-height: normal;
|
|
691
742
|
min-height: 30px;
|
|
692
743
|
padding: 4px 32px 0 0;
|
|
693
744
|
position: relative;
|
|
694
745
|
-webkit-user-select: none;
|
|
746
|
+
-moz-user-select: none;
|
|
695
747
|
-ms-user-select: none;
|
|
696
748
|
user-select: none;
|
|
697
749
|
width: 100%;
|
|
@@ -708,7 +760,8 @@
|
|
|
708
760
|
white-space: nowrap;
|
|
709
761
|
}
|
|
710
762
|
.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 {
|
|
711
|
-
box-sizing: border-box;
|
|
763
|
+
-webkit-box-sizing: border-box;
|
|
764
|
+
box-sizing: border-box;
|
|
712
765
|
display: inline-block;
|
|
713
766
|
overflow: hidden;
|
|
714
767
|
text-overflow: ellipsis;
|
|
@@ -739,6 +792,7 @@
|
|
|
739
792
|
|
|
740
793
|
.e-multiselect.e-control-container .e-multi-select-wrapper .e-multi-searcher,
|
|
741
794
|
.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-multi-searcher {
|
|
795
|
+
display: -webkit-box;
|
|
742
796
|
display: -ms-flexbox;
|
|
743
797
|
display: flex;
|
|
744
798
|
float: left;
|
|
@@ -746,6 +800,7 @@
|
|
|
746
800
|
}
|
|
747
801
|
.e-multiselect.e-control-container .e-multi-select-wrapper.e-delimiter .e-multi-searcher,
|
|
748
802
|
.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper.e-delimiter .e-multi-searcher {
|
|
803
|
+
display: -webkit-inline-box;
|
|
749
804
|
display: -ms-inline-flexbox;
|
|
750
805
|
display: inline-flex;
|
|
751
806
|
float: none;
|
|
@@ -768,8 +823,9 @@
|
|
|
768
823
|
}
|
|
769
824
|
.e-multiselect.e-control-container .e-multi-select-wrapper .e-delim-values,
|
|
770
825
|
.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-delim-values {
|
|
771
|
-
-
|
|
772
|
-
align
|
|
826
|
+
-webkit-box-align: center;
|
|
827
|
+
-ms-flex-align: center;
|
|
828
|
+
align-items: center;
|
|
773
829
|
display: inline;
|
|
774
830
|
max-width: 100%;
|
|
775
831
|
word-break: break-word;
|
|
@@ -778,12 +834,15 @@
|
|
|
778
834
|
.e-multiselect.e-control-container .e-multi-select-wrapper .e-ddl-icon,
|
|
779
835
|
.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-clear-icon,
|
|
780
836
|
.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
781
|
-
-
|
|
782
|
-
align
|
|
837
|
+
-webkit-box-align: center;
|
|
838
|
+
-ms-flex-align: center;
|
|
839
|
+
align-items: center;
|
|
783
840
|
cursor: pointer;
|
|
784
841
|
display: none;
|
|
785
|
-
-
|
|
786
|
-
|
|
842
|
+
-webkit-box-orient: horizontal;
|
|
843
|
+
-webkit-box-direction: normal;
|
|
844
|
+
-ms-flex-direction: row;
|
|
845
|
+
flex-direction: row;
|
|
787
846
|
margin-top: -2em;
|
|
788
847
|
outline: 0;
|
|
789
848
|
padding: 0;
|
|
@@ -795,6 +854,7 @@
|
|
|
795
854
|
.e-multiselect.e-control-container .e-multi-select-wrapper .e-ddl-icon,
|
|
796
855
|
.e-multiselect.e-control-container.e-input-group :not(.e-disabled).e-multi-select-wrapper:hover .e-clear-icon,
|
|
797
856
|
.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
857
|
+
display: -webkit-box;
|
|
798
858
|
display: -ms-flexbox;
|
|
799
859
|
display: flex;
|
|
800
860
|
}
|
|
@@ -869,8 +929,10 @@
|
|
|
869
929
|
}
|
|
870
930
|
|
|
871
931
|
.e-multi-select-wrapper .e-chips {
|
|
872
|
-
-
|
|
873
|
-
align
|
|
932
|
+
-webkit-box-align: center;
|
|
933
|
+
-ms-flex-align: center;
|
|
934
|
+
align-items: center;
|
|
935
|
+
display: -webkit-inline-box;
|
|
874
936
|
display: -ms-inline-flexbox;
|
|
875
937
|
display: inline-flex;
|
|
876
938
|
float: left;
|
|
@@ -913,6 +975,7 @@
|
|
|
913
975
|
.e-multi-select-wrapper .e-chips-close {
|
|
914
976
|
-ms-flex-item-align: center;
|
|
915
977
|
align-self: center;
|
|
978
|
+
display: -webkit-box;
|
|
916
979
|
display: -ms-flexbox;
|
|
917
980
|
display: flex;
|
|
918
981
|
float: right;
|
|
@@ -1144,7 +1207,9 @@
|
|
|
1144
1207
|
.e-multi-select-wrapper .e-chips.e-mob-chip.e-chip-selected {
|
|
1145
1208
|
-ms-flex-item-align: center;
|
|
1146
1209
|
align-self: center;
|
|
1147
|
-
box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.21);
|
|
1210
|
+
-webkit-box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.21);
|
|
1211
|
+
box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.21);
|
|
1212
|
+
display: -webkit-inline-box;
|
|
1148
1213
|
display: -ms-inline-flexbox;
|
|
1149
1214
|
display: inline-flex;
|
|
1150
1215
|
padding: 0 0 0 16px;
|
|
@@ -1360,13 +1425,21 @@
|
|
|
1360
1425
|
}
|
|
1361
1426
|
|
|
1362
1427
|
.e-multiselect .e-ddl-icon::before {
|
|
1363
|
-
transform: rotate(0deg);
|
|
1428
|
+
-webkit-transform: rotate(0deg);
|
|
1429
|
+
transform: rotate(0deg);
|
|
1430
|
+
-webkit-transition: -webkit-transform 300ms ease;
|
|
1431
|
+
transition: -webkit-transform 300ms ease;
|
|
1364
1432
|
transition: transform 300ms ease;
|
|
1433
|
+
transition: transform 300ms ease, -webkit-transform 300ms ease;
|
|
1365
1434
|
}
|
|
1366
1435
|
|
|
1367
1436
|
.e-multiselect.e-icon-anim .e-ddl-icon::before {
|
|
1368
|
-
transform: rotate(180deg);
|
|
1437
|
+
-webkit-transform: rotate(180deg);
|
|
1438
|
+
transform: rotate(180deg);
|
|
1439
|
+
-webkit-transition: -webkit-transform 300ms ease;
|
|
1440
|
+
transition: -webkit-transform 300ms ease;
|
|
1369
1441
|
transition: transform 300ms ease;
|
|
1442
|
+
transition: transform 300ms ease, -webkit-transform 300ms ease;
|
|
1370
1443
|
}
|
|
1371
1444
|
|
|
1372
1445
|
.e-multiselect.e-checkbox .e-multi-select-wrapper,
|
|
@@ -1845,8 +1918,9 @@ ejs-multiselect {
|
|
|
1845
1918
|
|
|
1846
1919
|
.e-multiselect.e-outline .e-multi-select-wrapper .e-chips-close.e-close-hooker,
|
|
1847
1920
|
.e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
|
|
1848
|
-
-
|
|
1849
|
-
align
|
|
1921
|
+
-webkit-box-align: normal;
|
|
1922
|
+
-ms-flex-align: normal;
|
|
1923
|
+
align-items: normal;
|
|
1850
1924
|
}
|
|
1851
1925
|
|
|
1852
1926
|
.e-multiselect.e-filled .e-multi-select-wrapper .e-delim-values .e-remain,
|
|
@@ -2052,7 +2126,10 @@ ejs-multiselect {
|
|
|
2052
2126
|
.e-bigger.e-multiselect.e-filled.e-float-input .e-multi-select-wrapper .e-chips,
|
|
2053
2127
|
.e-bigger .e-multiselect.e-filled.e-float-input .e-multi-select-wrapper .e-chips,
|
|
2054
2128
|
.e-small.e-filled:not(.e-float-input) .e-multi-select-wrapper .e-chips,
|
|
2055
|
-
.e-small .e-filled:not(.e-float-input) .e-multi-select-wrapper .e-chips
|
|
2129
|
+
.e-small .e-filled:not(.e-float-input) .e-multi-select-wrapper .e-chips,
|
|
2130
|
+
.e-multiselect.e-filled.e-float-input .e-multi-select-wrapper.e-mob-wrapper .e-chips.e-mob-chip,
|
|
2131
|
+
.e-small .e-filled:not(.e-float-input) .e-multi-select-wrapper .e-chips,
|
|
2132
|
+
.e-small.e-filled:not(.e-float-input) .e-multi-select-wrapper .e-chips {
|
|
2056
2133
|
height: 24px;
|
|
2057
2134
|
}
|
|
2058
2135
|
|
|
@@ -2061,10 +2138,6 @@ ejs-multiselect {
|
|
|
2061
2138
|
height: 32px;
|
|
2062
2139
|
}
|
|
2063
2140
|
|
|
2064
|
-
.e-multiselect.e-filled.e-float-input .e-multi-select-wrapper.e-mob-wrapper .e-chips.e-mob-chip {
|
|
2065
|
-
height: 24px;
|
|
2066
|
-
}
|
|
2067
|
-
|
|
2068
2141
|
.e-filled.e-float-input .e-multi-select-wrapper .e-chips,
|
|
2069
2142
|
.e-bigger.e-small.e-filled.e-float-input .e-multi-select-wrapper .e-chips,
|
|
2070
2143
|
.e-bigger.e-small .e-filled.e-float-input .e-multi-select-wrapper .e-chips,
|
|
@@ -2120,11 +2193,6 @@ ejs-multiselect {
|
|
|
2120
2193
|
margin: 4px 0 0 4px;
|
|
2121
2194
|
}
|
|
2122
2195
|
|
|
2123
|
-
.e-small .e-filled:not(.e-float-input) .e-multi-select-wrapper .e-chips,
|
|
2124
|
-
.e-small.e-filled:not(.e-float-input) .e-multi-select-wrapper .e-chips {
|
|
2125
|
-
height: 24px;
|
|
2126
|
-
}
|
|
2127
|
-
|
|
2128
2196
|
.e-filled.e-multiselect.e-float-input .e-multi-select-wrapper .e-chips:not(.e-mob-chip) .e-chips-close,
|
|
2129
2197
|
.e-small.e-filled:not(.e-bigger).e-multiselect:not(.e-float-input) .e-multi-select-wrapper .e-chips:not(.e-mob-chip) .e-chips-close,
|
|
2130
2198
|
.e-small .e-filled:not(.e-bigger).e-multiselect:not(.e-float-input) .e-multi-select-wrapper .e-chips:not(.e-mob-chip) .e-chips-close,
|
|
@@ -2245,7 +2313,8 @@ ejs-multiselect {
|
|
|
2245
2313
|
}
|
|
2246
2314
|
|
|
2247
2315
|
.e-multiselect {
|
|
2248
|
-
box-sizing: border-box;
|
|
2316
|
+
-webkit-box-sizing: border-box;
|
|
2317
|
+
box-sizing: border-box;
|
|
2249
2318
|
}
|
|
2250
2319
|
|
|
2251
2320
|
/* stylelint-disable property-no-vendor-prefix */
|
|
@@ -2303,8 +2372,10 @@ ejs-multiselect {
|
|
|
2303
2372
|
}
|
|
2304
2373
|
|
|
2305
2374
|
.e-popup.e-multi-select-list-wrapper {
|
|
2306
|
-
box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
|
|
2307
|
-
|
|
2375
|
+
-webkit-box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
|
|
2376
|
+
box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
|
|
2377
|
+
-webkit-box-sizing: content-box;
|
|
2378
|
+
box-sizing: content-box;
|
|
2308
2379
|
overflow: initial;
|
|
2309
2380
|
}
|
|
2310
2381
|
|
|
@@ -2358,14 +2429,16 @@ ejs-multiselect {
|
|
|
2358
2429
|
|
|
2359
2430
|
.e-popup.e-multi-select-list-wrapper .e-list-item.e-active.e-item-focus {
|
|
2360
2431
|
background: rgba(var(--color-sf-primary-container), 0.65);
|
|
2361
|
-
box-shadow: none;
|
|
2432
|
+
-webkit-box-shadow: none;
|
|
2433
|
+
box-shadow: none;
|
|
2362
2434
|
color: rgba(var(--color-sf-on-surface));
|
|
2363
2435
|
border: 1px solid transparent;
|
|
2364
2436
|
}
|
|
2365
2437
|
|
|
2366
2438
|
.e-popup.e-multi-select-list-wrapper.e-multiselect-group .e-list-group-item.e-active.e-item-focus {
|
|
2367
2439
|
background: rgba(var(--color-sf-primary-container), 0.65);
|
|
2368
|
-
box-shadow: none;
|
|
2440
|
+
-webkit-box-shadow: none;
|
|
2441
|
+
box-shadow: none;
|
|
2369
2442
|
color: rgba(var(--color-sf-on-surface));
|
|
2370
2443
|
border: 1px solid transparent;
|
|
2371
2444
|
}
|
|
@@ -2534,7 +2607,8 @@ ejs-multiselect {
|
|
|
2534
2607
|
.e-multiselect.e-outline .e-multi-select-wrapper .e-chips.e-mob-chip.e-chip-selected {
|
|
2535
2608
|
background: rgba(var(--color-sf-primary));
|
|
2536
2609
|
border-radius: 4px;
|
|
2537
|
-
box-sizing: border-box;
|
|
2610
|
+
-webkit-box-sizing: border-box;
|
|
2611
|
+
box-sizing: border-box;
|
|
2538
2612
|
color: #fff;
|
|
2539
2613
|
height: 40px;
|
|
2540
2614
|
line-height: 40px;
|
|
@@ -100,7 +100,7 @@
|
|
|
100
100
|
--color-sf-on-warning: 99, 52, 0;
|
|
101
101
|
--color-sf-on-warning-container: 255, 220, 193;
|
|
102
102
|
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
103
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #
|
|
103
|
+
--color-sf-shadow-focus-ring1: 0 0 0 1px #000, 0 0 0 3px #fff;
|
|
104
104
|
--color-sf-success-text: 0, 0, 0;
|
|
105
105
|
--color-sf-warning-text: 0, 0, 0;
|
|
106
106
|
--color-sf-info-text: 0, 0, 0;
|
|
@@ -110,35 +110,79 @@
|
|
|
110
110
|
}
|
|
111
111
|
|
|
112
112
|
/* stylelint-disable property-no-vendor-prefix */
|
|
113
|
+
@-webkit-keyframes e-input-ripple {
|
|
114
|
+
100% {
|
|
115
|
+
opacity: 0;
|
|
116
|
+
-webkit-transform: scale(4);
|
|
117
|
+
transform: scale(4);
|
|
118
|
+
}
|
|
119
|
+
}
|
|
113
120
|
@keyframes e-input-ripple {
|
|
114
121
|
100% {
|
|
115
122
|
opacity: 0;
|
|
116
|
-
transform: scale(4);
|
|
123
|
+
-webkit-transform: scale(4);
|
|
124
|
+
transform: scale(4);
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
@-webkit-keyframes slideTopUp {
|
|
128
|
+
from {
|
|
129
|
+
-webkit-transform: translate3d(0, 0, 0) scale(1);
|
|
130
|
+
transform: translate3d(0, 0, 0) scale(1);
|
|
131
|
+
}
|
|
132
|
+
to {
|
|
133
|
+
-webkit-transform: translate3d(0, 0, 0) scale(1);
|
|
134
|
+
transform: translate3d(0, 0, 0) scale(1);
|
|
117
135
|
}
|
|
118
136
|
}
|
|
119
137
|
@keyframes slideTopUp {
|
|
120
138
|
from {
|
|
121
|
-
transform: translate3d(0, 0, 0) scale(1);
|
|
139
|
+
-webkit-transform: translate3d(0, 0, 0) scale(1);
|
|
140
|
+
transform: translate3d(0, 0, 0) scale(1);
|
|
122
141
|
}
|
|
123
142
|
to {
|
|
124
|
-
transform: translate3d(0, 0, 0) scale(1);
|
|
143
|
+
-webkit-transform: translate3d(0, 0, 0) scale(1);
|
|
144
|
+
transform: translate3d(0, 0, 0) scale(1);
|
|
125
145
|
}
|
|
126
146
|
}
|
|
127
147
|
/* stylelint-disable-line no-empty-source */
|
|
128
148
|
/* stylelint-disable property-no-vendor-prefix */
|
|
149
|
+
@-webkit-keyframes material-spinner-rotate {
|
|
150
|
+
0% {
|
|
151
|
+
-webkit-transform: rotate(0deg);
|
|
152
|
+
transform: rotate(0deg);
|
|
153
|
+
}
|
|
154
|
+
100% {
|
|
155
|
+
-webkit-transform: rotate(360deg);
|
|
156
|
+
transform: rotate(360deg);
|
|
157
|
+
}
|
|
158
|
+
}
|
|
129
159
|
@keyframes material-spinner-rotate {
|
|
130
160
|
0% {
|
|
161
|
+
-webkit-transform: rotate(0deg);
|
|
162
|
+
transform: rotate(0deg);
|
|
163
|
+
}
|
|
164
|
+
100% {
|
|
165
|
+
-webkit-transform: rotate(360deg);
|
|
166
|
+
transform: rotate(360deg);
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
@-webkit-keyframes fabric-spinner-rotate {
|
|
170
|
+
0% {
|
|
171
|
+
-webkit-transform: rotate(0deg);
|
|
131
172
|
transform: rotate(0deg);
|
|
132
173
|
}
|
|
133
174
|
100% {
|
|
175
|
+
-webkit-transform: rotate(360deg);
|
|
134
176
|
transform: rotate(360deg);
|
|
135
177
|
}
|
|
136
178
|
}
|
|
137
179
|
@keyframes fabric-spinner-rotate {
|
|
138
180
|
0% {
|
|
181
|
+
-webkit-transform: rotate(0deg);
|
|
139
182
|
transform: rotate(0deg);
|
|
140
183
|
}
|
|
141
184
|
100% {
|
|
185
|
+
-webkit-transform: rotate(360deg);
|
|
142
186
|
transform: rotate(360deg);
|
|
143
187
|
}
|
|
144
188
|
}
|
|
@@ -386,6 +430,8 @@
|
|
|
386
430
|
.e-multiselect.e-input-group.e-outline .e-multi-select-wrapper .e-input-group-icon.e-ddl-icon,
|
|
387
431
|
.e-multiselect.e-outline.e-input-group.e-control-wrapper .e-multi-select-wrapper .e-input-group-icon.e-ddl-icon {
|
|
388
432
|
margin: 7px 12px 9px 0;
|
|
433
|
+
min-height: -webkit-fit-content;
|
|
434
|
+
min-height: -moz-fit-content;
|
|
389
435
|
min-height: fit-content;
|
|
390
436
|
}
|
|
391
437
|
|
|
@@ -642,6 +688,8 @@
|
|
|
642
688
|
.e-multiselect.e-input-group.e-filled .e-multi-select-wrapper .e-input-group-icon.e-ddl-icon,
|
|
643
689
|
.e-multiselect.e-filled.e-input-group.e-control-wrapper .e-multi-select-wrapper .e-input-group-icon.e-ddl-icon {
|
|
644
690
|
margin: 10px 0 9px;
|
|
691
|
+
min-height: -webkit-fit-content;
|
|
692
|
+
min-height: -moz-fit-content;
|
|
645
693
|
min-height: fit-content;
|
|
646
694
|
}
|
|
647
695
|
|
|
@@ -668,6 +716,8 @@
|
|
|
668
716
|
.e-small.e-multiselect.e-input-group.e-float-input.e-filled .e-multi-select-wrapper .e-input-group-icon.e-ddl-icon,
|
|
669
717
|
.e-small .e-multiselect.e-filled.e-input-group.e-float-input.e-control-wrapper .e-multi-select-wrapper .e-input-group-icon.e-ddl-icon {
|
|
670
718
|
margin: 0 12px 4px 0;
|
|
719
|
+
min-width: -webkit-fit-content;
|
|
720
|
+
min-width: -moz-fit-content;
|
|
671
721
|
min-width: fit-content;
|
|
672
722
|
}
|
|
673
723
|
|
|
@@ -741,13 +791,15 @@
|
|
|
741
791
|
}
|
|
742
792
|
|
|
743
793
|
.e-multi-select-wrapper {
|
|
744
|
-
box-sizing: border-box;
|
|
794
|
+
-webkit-box-sizing: border-box;
|
|
795
|
+
box-sizing: border-box;
|
|
745
796
|
cursor: text;
|
|
746
797
|
line-height: normal;
|
|
747
798
|
min-height: 30px;
|
|
748
799
|
padding: 4px 32px 0 0;
|
|
749
800
|
position: relative;
|
|
750
801
|
-webkit-user-select: none;
|
|
802
|
+
-moz-user-select: none;
|
|
751
803
|
-ms-user-select: none;
|
|
752
804
|
user-select: none;
|
|
753
805
|
width: 100%;
|
|
@@ -764,7 +816,8 @@
|
|
|
764
816
|
white-space: nowrap;
|
|
765
817
|
}
|
|
766
818
|
.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 {
|
|
767
|
-
box-sizing: border-box;
|
|
819
|
+
-webkit-box-sizing: border-box;
|
|
820
|
+
box-sizing: border-box;
|
|
768
821
|
display: inline-block;
|
|
769
822
|
overflow: hidden;
|
|
770
823
|
text-overflow: ellipsis;
|
|
@@ -795,6 +848,7 @@
|
|
|
795
848
|
|
|
796
849
|
.e-multiselect.e-control-container .e-multi-select-wrapper .e-multi-searcher,
|
|
797
850
|
.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-multi-searcher {
|
|
851
|
+
display: -webkit-box;
|
|
798
852
|
display: -ms-flexbox;
|
|
799
853
|
display: flex;
|
|
800
854
|
float: left;
|
|
@@ -802,6 +856,7 @@
|
|
|
802
856
|
}
|
|
803
857
|
.e-multiselect.e-control-container .e-multi-select-wrapper.e-delimiter .e-multi-searcher,
|
|
804
858
|
.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper.e-delimiter .e-multi-searcher {
|
|
859
|
+
display: -webkit-inline-box;
|
|
805
860
|
display: -ms-inline-flexbox;
|
|
806
861
|
display: inline-flex;
|
|
807
862
|
float: none;
|
|
@@ -824,8 +879,9 @@
|
|
|
824
879
|
}
|
|
825
880
|
.e-multiselect.e-control-container .e-multi-select-wrapper .e-delim-values,
|
|
826
881
|
.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-delim-values {
|
|
827
|
-
-
|
|
828
|
-
align
|
|
882
|
+
-webkit-box-align: center;
|
|
883
|
+
-ms-flex-align: center;
|
|
884
|
+
align-items: center;
|
|
829
885
|
display: inline;
|
|
830
886
|
max-width: 100%;
|
|
831
887
|
word-break: break-word;
|
|
@@ -834,12 +890,15 @@
|
|
|
834
890
|
.e-multiselect.e-control-container .e-multi-select-wrapper .e-ddl-icon,
|
|
835
891
|
.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-clear-icon,
|
|
836
892
|
.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
837
|
-
-
|
|
838
|
-
align
|
|
893
|
+
-webkit-box-align: center;
|
|
894
|
+
-ms-flex-align: center;
|
|
895
|
+
align-items: center;
|
|
839
896
|
cursor: pointer;
|
|
840
897
|
display: none;
|
|
841
|
-
-
|
|
842
|
-
|
|
898
|
+
-webkit-box-orient: horizontal;
|
|
899
|
+
-webkit-box-direction: normal;
|
|
900
|
+
-ms-flex-direction: row;
|
|
901
|
+
flex-direction: row;
|
|
843
902
|
margin-top: -2em;
|
|
844
903
|
outline: 0;
|
|
845
904
|
padding: 0;
|
|
@@ -851,6 +910,7 @@
|
|
|
851
910
|
.e-multiselect.e-control-container .e-multi-select-wrapper .e-ddl-icon,
|
|
852
911
|
.e-multiselect.e-control-container.e-input-group :not(.e-disabled).e-multi-select-wrapper:hover .e-clear-icon,
|
|
853
912
|
.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
|
|
913
|
+
display: -webkit-box;
|
|
854
914
|
display: -ms-flexbox;
|
|
855
915
|
display: flex;
|
|
856
916
|
}
|
|
@@ -925,8 +985,10 @@
|
|
|
925
985
|
}
|
|
926
986
|
|
|
927
987
|
.e-multi-select-wrapper .e-chips {
|
|
928
|
-
-
|
|
929
|
-
align
|
|
988
|
+
-webkit-box-align: center;
|
|
989
|
+
-ms-flex-align: center;
|
|
990
|
+
align-items: center;
|
|
991
|
+
display: -webkit-inline-box;
|
|
930
992
|
display: -ms-inline-flexbox;
|
|
931
993
|
display: inline-flex;
|
|
932
994
|
float: left;
|
|
@@ -969,6 +1031,7 @@
|
|
|
969
1031
|
.e-multi-select-wrapper .e-chips-close {
|
|
970
1032
|
-ms-flex-item-align: center;
|
|
971
1033
|
align-self: center;
|
|
1034
|
+
display: -webkit-box;
|
|
972
1035
|
display: -ms-flexbox;
|
|
973
1036
|
display: flex;
|
|
974
1037
|
float: right;
|
|
@@ -1200,7 +1263,9 @@
|
|
|
1200
1263
|
.e-multi-select-wrapper .e-chips.e-mob-chip.e-chip-selected {
|
|
1201
1264
|
-ms-flex-item-align: center;
|
|
1202
1265
|
align-self: center;
|
|
1203
|
-
box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.21);
|
|
1266
|
+
-webkit-box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.21);
|
|
1267
|
+
box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.21);
|
|
1268
|
+
display: -webkit-inline-box;
|
|
1204
1269
|
display: -ms-inline-flexbox;
|
|
1205
1270
|
display: inline-flex;
|
|
1206
1271
|
padding: 0 0 0 16px;
|
|
@@ -1416,13 +1481,21 @@
|
|
|
1416
1481
|
}
|
|
1417
1482
|
|
|
1418
1483
|
.e-multiselect .e-ddl-icon::before {
|
|
1419
|
-
transform: rotate(0deg);
|
|
1484
|
+
-webkit-transform: rotate(0deg);
|
|
1485
|
+
transform: rotate(0deg);
|
|
1486
|
+
-webkit-transition: -webkit-transform 300ms ease;
|
|
1487
|
+
transition: -webkit-transform 300ms ease;
|
|
1420
1488
|
transition: transform 300ms ease;
|
|
1489
|
+
transition: transform 300ms ease, -webkit-transform 300ms ease;
|
|
1421
1490
|
}
|
|
1422
1491
|
|
|
1423
1492
|
.e-multiselect.e-icon-anim .e-ddl-icon::before {
|
|
1424
|
-
transform: rotate(180deg);
|
|
1493
|
+
-webkit-transform: rotate(180deg);
|
|
1494
|
+
transform: rotate(180deg);
|
|
1495
|
+
-webkit-transition: -webkit-transform 300ms ease;
|
|
1496
|
+
transition: -webkit-transform 300ms ease;
|
|
1425
1497
|
transition: transform 300ms ease;
|
|
1498
|
+
transition: transform 300ms ease, -webkit-transform 300ms ease;
|
|
1426
1499
|
}
|
|
1427
1500
|
|
|
1428
1501
|
.e-multiselect.e-checkbox .e-multi-select-wrapper,
|
|
@@ -1901,8 +1974,9 @@ ejs-multiselect {
|
|
|
1901
1974
|
|
|
1902
1975
|
.e-multiselect.e-outline .e-multi-select-wrapper .e-chips-close.e-close-hooker,
|
|
1903
1976
|
.e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
|
|
1904
|
-
-
|
|
1905
|
-
align
|
|
1977
|
+
-webkit-box-align: normal;
|
|
1978
|
+
-ms-flex-align: normal;
|
|
1979
|
+
align-items: normal;
|
|
1906
1980
|
}
|
|
1907
1981
|
|
|
1908
1982
|
.e-multiselect.e-filled .e-multi-select-wrapper .e-delim-values .e-remain,
|
|
@@ -2108,7 +2182,10 @@ ejs-multiselect {
|
|
|
2108
2182
|
.e-bigger.e-multiselect.e-filled.e-float-input .e-multi-select-wrapper .e-chips,
|
|
2109
2183
|
.e-bigger .e-multiselect.e-filled.e-float-input .e-multi-select-wrapper .e-chips,
|
|
2110
2184
|
.e-small.e-filled:not(.e-float-input) .e-multi-select-wrapper .e-chips,
|
|
2111
|
-
.e-small .e-filled:not(.e-float-input) .e-multi-select-wrapper .e-chips
|
|
2185
|
+
.e-small .e-filled:not(.e-float-input) .e-multi-select-wrapper .e-chips,
|
|
2186
|
+
.e-multiselect.e-filled.e-float-input .e-multi-select-wrapper.e-mob-wrapper .e-chips.e-mob-chip,
|
|
2187
|
+
.e-small .e-filled:not(.e-float-input) .e-multi-select-wrapper .e-chips,
|
|
2188
|
+
.e-small.e-filled:not(.e-float-input) .e-multi-select-wrapper .e-chips {
|
|
2112
2189
|
height: 24px;
|
|
2113
2190
|
}
|
|
2114
2191
|
|
|
@@ -2117,10 +2194,6 @@ ejs-multiselect {
|
|
|
2117
2194
|
height: 32px;
|
|
2118
2195
|
}
|
|
2119
2196
|
|
|
2120
|
-
.e-multiselect.e-filled.e-float-input .e-multi-select-wrapper.e-mob-wrapper .e-chips.e-mob-chip {
|
|
2121
|
-
height: 24px;
|
|
2122
|
-
}
|
|
2123
|
-
|
|
2124
2197
|
.e-filled.e-float-input .e-multi-select-wrapper .e-chips,
|
|
2125
2198
|
.e-bigger.e-small.e-filled.e-float-input .e-multi-select-wrapper .e-chips,
|
|
2126
2199
|
.e-bigger.e-small .e-filled.e-float-input .e-multi-select-wrapper .e-chips,
|
|
@@ -2176,11 +2249,6 @@ ejs-multiselect {
|
|
|
2176
2249
|
margin: 4px 0 0 4px;
|
|
2177
2250
|
}
|
|
2178
2251
|
|
|
2179
|
-
.e-small .e-filled:not(.e-float-input) .e-multi-select-wrapper .e-chips,
|
|
2180
|
-
.e-small.e-filled:not(.e-float-input) .e-multi-select-wrapper .e-chips {
|
|
2181
|
-
height: 24px;
|
|
2182
|
-
}
|
|
2183
|
-
|
|
2184
2252
|
.e-filled.e-multiselect.e-float-input .e-multi-select-wrapper .e-chips:not(.e-mob-chip) .e-chips-close,
|
|
2185
2253
|
.e-small.e-filled:not(.e-bigger).e-multiselect:not(.e-float-input) .e-multi-select-wrapper .e-chips:not(.e-mob-chip) .e-chips-close,
|
|
2186
2254
|
.e-small .e-filled:not(.e-bigger).e-multiselect:not(.e-float-input) .e-multi-select-wrapper .e-chips:not(.e-mob-chip) .e-chips-close,
|
|
@@ -2301,7 +2369,8 @@ ejs-multiselect {
|
|
|
2301
2369
|
}
|
|
2302
2370
|
|
|
2303
2371
|
.e-multiselect {
|
|
2304
|
-
box-sizing: border-box;
|
|
2372
|
+
-webkit-box-sizing: border-box;
|
|
2373
|
+
box-sizing: border-box;
|
|
2305
2374
|
}
|
|
2306
2375
|
|
|
2307
2376
|
/* stylelint-disable property-no-vendor-prefix */
|
|
@@ -2359,8 +2428,10 @@ ejs-multiselect {
|
|
|
2359
2428
|
}
|
|
2360
2429
|
|
|
2361
2430
|
.e-popup.e-multi-select-list-wrapper {
|
|
2362
|
-
box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
|
|
2363
|
-
|
|
2431
|
+
-webkit-box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
|
|
2432
|
+
box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
|
|
2433
|
+
-webkit-box-sizing: content-box;
|
|
2434
|
+
box-sizing: content-box;
|
|
2364
2435
|
overflow: initial;
|
|
2365
2436
|
}
|
|
2366
2437
|
|
|
@@ -2414,14 +2485,16 @@ ejs-multiselect {
|
|
|
2414
2485
|
|
|
2415
2486
|
.e-popup.e-multi-select-list-wrapper .e-list-item.e-active.e-item-focus {
|
|
2416
2487
|
background: rgba(var(--color-sf-primary-container), 0.65);
|
|
2417
|
-
box-shadow: none;
|
|
2488
|
+
-webkit-box-shadow: none;
|
|
2489
|
+
box-shadow: none;
|
|
2418
2490
|
color: rgba(var(--color-sf-on-surface));
|
|
2419
2491
|
border: 1px solid transparent;
|
|
2420
2492
|
}
|
|
2421
2493
|
|
|
2422
2494
|
.e-popup.e-multi-select-list-wrapper.e-multiselect-group .e-list-group-item.e-active.e-item-focus {
|
|
2423
2495
|
background: rgba(var(--color-sf-primary-container), 0.65);
|
|
2424
|
-
box-shadow: none;
|
|
2496
|
+
-webkit-box-shadow: none;
|
|
2497
|
+
box-shadow: none;
|
|
2425
2498
|
color: rgba(var(--color-sf-on-surface));
|
|
2426
2499
|
border: 1px solid transparent;
|
|
2427
2500
|
}
|
|
@@ -2590,7 +2663,8 @@ ejs-multiselect {
|
|
|
2590
2663
|
.e-multiselect.e-outline .e-multi-select-wrapper .e-chips.e-mob-chip.e-chip-selected {
|
|
2591
2664
|
background: rgba(var(--color-sf-primary));
|
|
2592
2665
|
border-radius: 4px;
|
|
2593
|
-
box-sizing: border-box;
|
|
2666
|
+
-webkit-box-sizing: border-box;
|
|
2667
|
+
box-sizing: border-box;
|
|
2594
2668
|
color: #fff;
|
|
2595
2669
|
height: 40px;
|
|
2596
2670
|
line-height: 40px;
|