@syncfusion/ej2-dropdowns 20.2.50 → 20.3.47
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -28
- package/dist/ej2-dropdowns.min.js +10 -0
- 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 +1406 -49
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +1432 -53
- 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/mention.d.ts +4 -0
- package/mention.js +4 -0
- package/package.json +12 -12
- package/src/auto-complete/auto-complete.js +2 -2
- package/src/combo-box/combo-box.js +0 -3
- package/src/drop-down-base/drop-down-base.d.ts +2 -0
- package/src/drop-down-base/drop-down-base.js +6 -1
- package/src/drop-down-list/drop-down-list.d.ts +1 -0
- package/src/drop-down-list/drop-down-list.js +23 -22
- package/src/index.d.ts +1 -0
- package/src/index.js +1 -0
- package/src/list-box/list-box.js +16 -11
- package/src/mention/index.d.ts +5 -0
- package/src/mention/index.js +4 -0
- package/src/mention/mention-model.d.ts +285 -0
- package/src/mention/mention.d.ts +451 -0
- package/src/mention/mention.js +1369 -0
- package/src/multi-select/checkbox-selection.js +1 -4
- package/src/multi-select/multi-select.d.ts +1 -0
- package/src/multi-select/multi-select.js +18 -10
- package/styles/auto-complete/_all.scss +1 -1
- package/styles/auto-complete/_bootstrap-dark-definition.scss +1 -1
- package/styles/auto-complete/_bootstrap-definition.scss +1 -1
- package/styles/auto-complete/_bootstrap4-definition.scss +2 -2
- package/styles/auto-complete/_bootstrap5-definition.scss +1 -1
- package/styles/auto-complete/_fabric-dark-definition.scss +1 -1
- package/styles/auto-complete/_fabric-definition.scss +1 -1
- package/styles/auto-complete/_fluent-definition.scss +1 -1
- package/styles/auto-complete/_fusionnew-definition.scss +1 -1
- package/styles/auto-complete/_highcontrast-definition.scss +1 -1
- package/styles/auto-complete/_highcontrast-light-definition.scss +1 -1
- package/styles/auto-complete/_material-dark-definition.scss +1 -1
- package/styles/auto-complete/_material-definition.scss +1 -1
- package/styles/auto-complete/_material3-definition.scss +1 -1
- package/styles/auto-complete/_tailwind-definition.scss +1 -1
- package/styles/auto-complete/bootstrap-dark.css +3 -1
- package/styles/auto-complete/bootstrap.css +3 -1
- package/styles/auto-complete/bootstrap4.css +3 -1
- package/styles/auto-complete/bootstrap5-dark.css +3 -1
- package/styles/auto-complete/bootstrap5.css +3 -1
- package/styles/auto-complete/fabric-dark.css +3 -1
- package/styles/auto-complete/fabric.css +3 -1
- package/styles/auto-complete/fluent-dark.css +3 -1
- package/styles/auto-complete/fluent.css +3 -1
- package/styles/auto-complete/highcontrast-light.css +3 -1
- package/styles/auto-complete/highcontrast.css +3 -1
- package/styles/auto-complete/material-dark.css +3 -1
- package/styles/auto-complete/material.css +3 -1
- package/styles/auto-complete/tailwind-dark.css +3 -1
- package/styles/auto-complete/tailwind.css +3 -1
- package/styles/bootstrap-dark.css +94 -42
- package/styles/bootstrap-dark.scss +1 -0
- package/styles/bootstrap.css +94 -42
- package/styles/bootstrap.scss +1 -0
- package/styles/bootstrap4.css +95 -42
- package/styles/bootstrap4.scss +1 -0
- package/styles/bootstrap5-dark.css +101 -44
- package/styles/bootstrap5-dark.scss +1 -0
- package/styles/bootstrap5.css +101 -44
- package/styles/bootstrap5.scss +1 -0
- package/styles/combo-box/_all.scss +1 -1
- package/styles/combo-box/_bootstrap-dark-definition.scss +1 -1
- package/styles/combo-box/_bootstrap-definition.scss +1 -1
- package/styles/combo-box/_bootstrap4-definition.scss +2 -2
- package/styles/combo-box/_bootstrap5-definition.scss +1 -1
- package/styles/combo-box/_fabric-dark-definition.scss +1 -1
- package/styles/combo-box/_fabric-definition.scss +1 -1
- package/styles/combo-box/_fluent-definition.scss +1 -1
- package/styles/combo-box/_fusionnew-definition.scss +1 -1
- package/styles/combo-box/_highcontrast-definition.scss +1 -1
- package/styles/combo-box/_highcontrast-light-definition.scss +1 -1
- package/styles/combo-box/_material-dark-definition.scss +1 -1
- package/styles/combo-box/_material-definition.scss +1 -1
- package/styles/combo-box/_material3-definition.scss +1 -1
- package/styles/combo-box/_tailwind-definition.scss +1 -1
- package/styles/combo-box/bootstrap-dark.css +3 -1
- package/styles/combo-box/bootstrap.css +3 -1
- package/styles/combo-box/bootstrap4.css +3 -1
- package/styles/combo-box/bootstrap5-dark.css +3 -1
- package/styles/combo-box/bootstrap5.css +3 -1
- package/styles/combo-box/fabric-dark.css +3 -1
- package/styles/combo-box/fabric.css +3 -1
- package/styles/combo-box/fluent-dark.css +3 -1
- package/styles/combo-box/fluent.css +3 -1
- package/styles/combo-box/highcontrast-light.css +3 -1
- package/styles/combo-box/highcontrast.css +3 -1
- package/styles/combo-box/material-dark.css +3 -1
- package/styles/combo-box/material.css +3 -1
- package/styles/combo-box/tailwind-dark.css +3 -1
- package/styles/combo-box/tailwind.css +3 -1
- package/styles/drop-down-base/_all.scss +1 -1
- package/styles/drop-down-base/_bootstrap-dark-definition.scss +8 -2
- package/styles/drop-down-base/_bootstrap-definition.scss +6 -1
- package/styles/drop-down-base/_bootstrap4-definition.scss +6 -1
- package/styles/drop-down-base/_bootstrap5-definition.scss +8 -3
- package/styles/drop-down-base/_fabric-dark-definition.scss +6 -1
- package/styles/drop-down-base/_fabric-definition.scss +6 -1
- package/styles/drop-down-base/_fluent-definition.scss +8 -2
- package/styles/drop-down-base/_fusionnew-definition.scss +8 -3
- package/styles/drop-down-base/_highcontrast-definition.scss +16 -6
- package/styles/drop-down-base/_highcontrast-light-definition.scss +18 -7
- package/styles/drop-down-base/_layout.scss +44 -3
- package/styles/drop-down-base/_material-dark-definition.scss +7 -1
- package/styles/drop-down-base/_material-definition.scss +6 -0
- package/styles/drop-down-base/_material3-definition.scss +8 -3
- package/styles/drop-down-base/_tailwind-definition.scss +8 -3
- package/styles/drop-down-base/_theme.scss +4 -4
- package/styles/drop-down-base/bootstrap-dark.css +42 -1
- package/styles/drop-down-base/bootstrap.css +42 -1
- package/styles/drop-down-base/bootstrap4.css +42 -1
- package/styles/drop-down-base/bootstrap5-dark.css +42 -1
- package/styles/drop-down-base/bootstrap5.css +42 -1
- package/styles/drop-down-base/fabric-dark.css +42 -1
- package/styles/drop-down-base/fabric.css +42 -1
- package/styles/drop-down-base/fluent-dark.css +42 -1
- package/styles/drop-down-base/fluent.css +42 -1
- package/styles/drop-down-base/highcontrast-light.css +42 -1
- package/styles/drop-down-base/highcontrast.css +42 -1
- package/styles/drop-down-base/material-dark.css +42 -1
- package/styles/drop-down-base/material.css +42 -1
- package/styles/drop-down-base/tailwind-dark.css +42 -1
- package/styles/drop-down-base/tailwind.css +42 -1
- package/styles/drop-down-list/_all.scss +2 -1
- package/styles/drop-down-list/_bootstrap-dark-definition.scss +2 -1
- package/styles/drop-down-list/_bootstrap-definition.scss +2 -1
- package/styles/drop-down-list/_bootstrap4-definition.scss +3 -1
- package/styles/drop-down-list/_bootstrap5-definition.scss +3 -3
- package/styles/drop-down-list/_fabric-dark-definition.scss +2 -1
- package/styles/drop-down-list/_fabric-definition.scss +2 -0
- package/styles/drop-down-list/_fluent-definition.scss +2 -1
- package/styles/drop-down-list/_fusionnew-definition.scss +3 -3
- package/styles/drop-down-list/_highcontrast-definition.scss +21 -10
- package/styles/drop-down-list/_highcontrast-light-definition.scss +22 -11
- package/styles/drop-down-list/_layout.scss +8 -9
- package/styles/drop-down-list/_material-dark-definition.scss +2 -2
- package/styles/drop-down-list/_material-definition.scss +1 -0
- package/styles/drop-down-list/_material3-definition.scss +3 -3
- package/styles/drop-down-list/_tailwind-definition.scss +1 -0
- package/styles/drop-down-list/_theme.scss +3 -3
- package/styles/drop-down-list/bootstrap-dark.css +5 -0
- package/styles/drop-down-list/bootstrap.css +5 -0
- package/styles/drop-down-list/bootstrap4.css +5 -0
- package/styles/drop-down-list/bootstrap5-dark.css +6 -0
- package/styles/drop-down-list/bootstrap5.css +6 -0
- package/styles/drop-down-list/fabric-dark.css +5 -0
- package/styles/drop-down-list/fabric.css +5 -0
- package/styles/drop-down-list/fluent-dark.css +6 -0
- package/styles/drop-down-list/fluent.css +6 -0
- package/styles/drop-down-list/highcontrast-light.css +5 -0
- package/styles/drop-down-list/highcontrast.css +5 -0
- package/styles/drop-down-list/icons/_bootstrap.scss +0 -1
- package/styles/drop-down-list/icons/_fabric.scss +0 -1
- package/styles/drop-down-list/icons/_material.scss +0 -1
- package/styles/drop-down-list/material-dark.css +5 -0
- package/styles/drop-down-list/material.css +5 -0
- package/styles/drop-down-list/tailwind-dark.css +6 -0
- package/styles/drop-down-list/tailwind.css +6 -0
- package/styles/drop-down-tree/_all.scss +1 -1
- package/styles/drop-down-tree/_bootstrap-dark-definition.scss +1 -1
- package/styles/drop-down-tree/_bootstrap-definition.scss +1 -1
- package/styles/drop-down-tree/_bootstrap4-definition.scss +1 -1
- package/styles/drop-down-tree/_bootstrap5-definition.scss +2 -2
- package/styles/drop-down-tree/_fabric-dark-definition.scss +1 -1
- package/styles/drop-down-tree/_fabric-definition.scss +2 -2
- package/styles/drop-down-tree/_fluent-definition.scss +2 -2
- package/styles/drop-down-tree/_fusionnew-definition.scss +2 -2
- package/styles/drop-down-tree/_highcontrast-definition.scss +1 -1
- package/styles/drop-down-tree/_highcontrast-light-definition.scss +1 -1
- package/styles/drop-down-tree/_layout.scss +1 -2
- package/styles/drop-down-tree/_material-dark-definition.scss +2 -2
- package/styles/drop-down-tree/_material-definition.scss +2 -2
- package/styles/drop-down-tree/_material3-definition.scss +2 -2
- package/styles/drop-down-tree/_tailwind-definition.scss +2 -2
- package/styles/drop-down-tree/bootstrap-dark.css +4 -0
- package/styles/drop-down-tree/bootstrap.css +4 -0
- package/styles/drop-down-tree/bootstrap4.css +4 -0
- package/styles/drop-down-tree/bootstrap5-dark.css +5 -0
- package/styles/drop-down-tree/bootstrap5.css +5 -0
- package/styles/drop-down-tree/fabric-dark.css +4 -0
- package/styles/drop-down-tree/fabric.css +4 -0
- package/styles/drop-down-tree/fluent-dark.css +5 -0
- package/styles/drop-down-tree/fluent.css +5 -0
- package/styles/drop-down-tree/highcontrast-light.css +4 -0
- package/styles/drop-down-tree/highcontrast.css +4 -0
- package/styles/drop-down-tree/icons/_bootstrap.scss +0 -1
- package/styles/drop-down-tree/icons/_bootstrap4.scss +0 -1
- package/styles/drop-down-tree/icons/_fabric.scss +0 -1
- package/styles/drop-down-tree/icons/_highcontrast-light.scss +0 -1
- package/styles/drop-down-tree/icons/_highcontrast.scss +0 -1
- package/styles/drop-down-tree/icons/_material-dark.scss +0 -1
- package/styles/drop-down-tree/icons/_material.scss +0 -1
- package/styles/drop-down-tree/material-dark.css +4 -0
- package/styles/drop-down-tree/material.css +4 -0
- package/styles/drop-down-tree/tailwind-dark.css +5 -0
- package/styles/drop-down-tree/tailwind.css +5 -0
- package/styles/fabric-dark.css +94 -42
- package/styles/fabric-dark.scss +1 -0
- package/styles/fabric.css +94 -42
- package/styles/fabric.scss +1 -0
- package/styles/fluent-dark.css +101 -44
- package/styles/fluent-dark.scss +1 -0
- package/styles/fluent.css +101 -44
- package/styles/fluent.scss +1 -0
- package/styles/highcontrast-light.css +97 -42
- package/styles/highcontrast-light.scss +1 -0
- package/styles/highcontrast.css +97 -42
- package/styles/highcontrast.scss +1 -0
- package/styles/list-box/_all.scss +1 -1
- package/styles/list-box/_bootstrap-dark-definition.scss +2 -0
- package/styles/list-box/_bootstrap-definition.scss +1 -0
- package/styles/list-box/_bootstrap4-definition.scss +1 -0
- package/styles/list-box/_bootstrap5-definition.scss +3 -0
- package/styles/list-box/_fabric-dark-definition.scss +3 -1
- package/styles/list-box/_fabric-definition.scss +1 -0
- package/styles/list-box/_fluent-definition.scss +3 -0
- package/styles/list-box/_fusionnew-definition.scss +1 -0
- package/styles/list-box/_highcontrast-definition.scss +1 -0
- package/styles/list-box/_highcontrast-light-definition.scss +3 -1
- package/styles/list-box/_layout.scss +8 -17
- package/styles/list-box/_material-dark-definition.scss +2 -0
- package/styles/list-box/_material-definition.scss +1 -0
- package/styles/list-box/_material3-definition.scss +1 -0
- package/styles/list-box/_tailwind-definition.scss +3 -0
- package/styles/list-box/_theme.scss +11 -25
- package/styles/list-box/bootstrap-dark.css +12 -33
- package/styles/list-box/bootstrap.css +14 -35
- package/styles/list-box/bootstrap4.css +14 -35
- package/styles/list-box/bootstrap5-dark.css +15 -36
- package/styles/list-box/bootstrap5.css +15 -36
- package/styles/list-box/fabric-dark.css +12 -33
- package/styles/list-box/fabric.css +14 -35
- package/styles/list-box/fluent-dark.css +15 -36
- package/styles/list-box/fluent.css +15 -36
- package/styles/list-box/highcontrast-light.css +12 -33
- package/styles/list-box/highcontrast.css +14 -35
- package/styles/list-box/icons/_bootstrap-dark.scss +2 -2
- package/styles/list-box/icons/_bootstrap.scss +1 -1
- package/styles/list-box/icons/_bootstrap4.scss +1 -1
- package/styles/list-box/icons/_bootstrap5.scss +1 -1
- package/styles/list-box/icons/_fabric-dark.scss +1 -1
- package/styles/list-box/icons/_fabric.scss +1 -1
- package/styles/list-box/icons/_fluent.scss +1 -1
- package/styles/list-box/icons/_fusionnew.scss +1 -1
- package/styles/list-box/icons/_highcontrast-light.scss +1 -1
- package/styles/list-box/icons/_highcontrast.scss +1 -1
- package/styles/list-box/icons/_material-dark.scss +1 -1
- package/styles/list-box/icons/_material.scss +2 -2
- package/styles/list-box/icons/_material3.scss +1 -1
- package/styles/list-box/icons/_tailwind-dark.scss +1 -1
- package/styles/list-box/icons/_tailwind.scss +1 -1
- package/styles/list-box/material-dark.css +12 -33
- package/styles/list-box/material.css +14 -35
- package/styles/list-box/tailwind-dark.css +15 -36
- package/styles/list-box/tailwind.css +15 -36
- package/styles/material-dark.css +94 -42
- package/styles/material-dark.scss +1 -0
- package/styles/material.css +94 -42
- package/styles/material.scss +1 -0
- package/styles/mention/_all.scss +1 -0
- package/styles/mention/_bootstrap-dark-definition.scss +3 -0
- package/styles/mention/_bootstrap-definition.scss +3 -0
- package/styles/mention/_bootstrap4-definition.scss +3 -0
- package/styles/mention/_bootstrap5-dark-definition.scss +1 -0
- package/styles/mention/_bootstrap5-definition.scss +1 -0
- package/styles/mention/_fabric-dark-definition.scss +2 -0
- package/styles/mention/_fabric-definition.scss +3 -0
- package/styles/mention/_fluent-dark-definition.scss +1 -0
- package/styles/mention/_fluent-definition.scss +1 -0
- package/styles/mention/_fusionnew-definition.scss +1 -0
- package/styles/mention/_highcontrast-definition.scss +3 -0
- package/styles/mention/_highcontrast-light-definition.scss +3 -0
- package/styles/mention/_layout.scss +6 -0
- package/styles/mention/_material-dark-definition.scss +3 -0
- package/styles/mention/_material-definition.scss +3 -0
- package/styles/mention/_material3-definition.scss +1 -0
- package/styles/mention/_tailwind-dark-definition.scss +1 -0
- package/styles/mention/_tailwind-definition.scss +1 -0
- package/styles/mention/bootstrap-dark.css +29 -0
- package/styles/mention/bootstrap-dark.scss +6 -0
- package/styles/mention/bootstrap.css +29 -0
- package/styles/mention/bootstrap.scss +6 -0
- package/styles/mention/bootstrap4.css +47 -0
- package/styles/mention/bootstrap4.scss +6 -0
- package/styles/mention/bootstrap5-dark.css +58 -0
- package/styles/mention/bootstrap5-dark.scss +6 -0
- package/styles/mention/bootstrap5.css +58 -0
- package/styles/mention/bootstrap5.scss +6 -0
- package/styles/mention/fabric-dark.css +29 -0
- package/styles/mention/fabric-dark.scss +6 -0
- package/styles/mention/fabric.css +29 -0
- package/styles/mention/fabric.scss +6 -0
- package/styles/mention/fluent-dark.css +58 -0
- package/styles/mention/fluent-dark.scss +6 -0
- package/styles/mention/fluent.css +58 -0
- package/styles/mention/fluent.scss +6 -0
- package/styles/mention/highcontrast-light.css +43 -0
- package/styles/mention/highcontrast-light.scss +6 -0
- package/styles/mention/highcontrast.css +43 -0
- package/styles/mention/highcontrast.scss +6 -0
- package/styles/mention/material-dark.css +29 -0
- package/styles/mention/material-dark.scss +6 -0
- package/styles/mention/material.css +29 -0
- package/styles/mention/material.scss +6 -0
- package/styles/mention/tailwind-dark.css +68 -0
- package/styles/mention/tailwind-dark.scss +6 -0
- package/styles/mention/tailwind.css +68 -0
- package/styles/mention/tailwind.scss +6 -0
- package/styles/multi-select/_all.scss +1 -1
- package/styles/multi-select/_bootstrap-dark-definition.scss +4 -1
- package/styles/multi-select/_bootstrap-definition.scss +2 -0
- package/styles/multi-select/_bootstrap4-definition.scss +5 -2
- package/styles/multi-select/_bootstrap5-definition.scss +2 -2
- package/styles/multi-select/_fabric-dark-definition.scss +5 -3
- package/styles/multi-select/_fabric-definition.scss +4 -2
- package/styles/multi-select/_fluent-definition.scss +2 -1
- package/styles/multi-select/_fusionnew-definition.scss +2 -2
- package/styles/multi-select/_highcontrast-definition.scss +47 -24
- package/styles/multi-select/_highcontrast-light-definition.scss +48 -25
- package/styles/multi-select/_layout.scss +59 -71
- package/styles/multi-select/_material-dark-definition.scss +3 -1
- package/styles/multi-select/_material-definition.scss +1 -0
- package/styles/multi-select/_material3-definition.scss +2 -2
- package/styles/multi-select/_tailwind-definition.scss +2 -3
- package/styles/multi-select/_theme.scss +16 -21
- package/styles/multi-select/bootstrap-dark.css +10 -6
- package/styles/multi-select/bootstrap.css +10 -6
- package/styles/multi-select/bootstrap4.css +10 -6
- package/styles/multi-select/bootstrap5-dark.css +11 -6
- package/styles/multi-select/bootstrap5.css +11 -6
- package/styles/multi-select/fabric-dark.css +10 -6
- package/styles/multi-select/fabric.css +10 -6
- package/styles/multi-select/fluent-dark.css +11 -6
- package/styles/multi-select/fluent.css +11 -6
- package/styles/multi-select/highcontrast-light.css +13 -6
- package/styles/multi-select/highcontrast.css +13 -6
- package/styles/multi-select/icons/_bootstrap5.scss +0 -1
- package/styles/multi-select/icons/_fluent.scss +0 -1
- package/styles/multi-select/icons/_fusionnew.scss +0 -1
- package/styles/multi-select/icons/_material-dark.scss +53 -54
- package/styles/multi-select/icons/_material.scss +53 -54
- package/styles/multi-select/icons/_material3.scss +0 -1
- package/styles/multi-select/icons/_tailwind.scss +0 -1
- package/styles/multi-select/material-dark.css +10 -6
- package/styles/multi-select/material.css +10 -6
- package/styles/multi-select/tailwind-dark.css +11 -6
- package/styles/multi-select/tailwind.css +11 -6
- package/styles/tailwind-dark.css +102 -44
- package/styles/tailwind-dark.scss +1 -0
- package/styles/tailwind.css +102 -44
- package/styles/tailwind.scss +1 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
.e-multi-select-wrapper .e-chips.e-chip-selected .e-chips-close::before {
|
|
2
2
|
color: $ddl-sel-chip-close;
|
|
3
3
|
}
|
|
4
4
|
|
|
@@ -14,19 +14,19 @@
|
|
|
14
14
|
box-sizing: border-box;
|
|
15
15
|
}
|
|
16
16
|
|
|
17
|
-
|
|
18
|
-
.e-multi-select-wrapper .e-chips
|
|
17
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
18
|
+
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
19
19
|
-webkit-text-fill-color: $ddl-chip-font-color;
|
|
20
20
|
color: $ddl-chip-font-color;
|
|
21
21
|
font-family: $ddl-chip-font-family;
|
|
22
22
|
font-size: $ddl-chip-font-size;
|
|
23
23
|
}
|
|
24
24
|
|
|
25
|
-
.e-multi-select-wrapper .e-chips.e-chip-selected
|
|
25
|
+
.e-multi-select-wrapper .e-chips.e-chip-selected > .e-chipcontent {
|
|
26
26
|
color: $ddl-sel-chip-font-color;
|
|
27
27
|
}
|
|
28
28
|
|
|
29
|
-
.e-multi-select-wrapper .e-chips.e-chip-selected
|
|
29
|
+
.e-multi-select-wrapper .e-chips.e-chip-selected > .e-chipcontent:hover {
|
|
30
30
|
color: $ddl-sel-chip-hover-font-color;
|
|
31
31
|
}
|
|
32
32
|
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
background-color: $ddl-chip-hover-bg-color;
|
|
41
41
|
}
|
|
42
42
|
|
|
43
|
-
.e-multi-select-wrapper .e-chips
|
|
43
|
+
.e-multi-select-wrapper .e-chips > .e-chipcontent:hover {
|
|
44
44
|
color: $ddl-chip-hover-font-color;
|
|
45
45
|
}
|
|
46
46
|
|
|
@@ -94,7 +94,6 @@
|
|
|
94
94
|
color: $ddl-multi-list-default-font-color;
|
|
95
95
|
}
|
|
96
96
|
|
|
97
|
-
|
|
98
97
|
#{&}.e-popup.e-multi-select-list-wrapper.e-checkbox .e-dropdownbase .e-list-item.e-active,
|
|
99
98
|
#{&}.e-popup.e-multi-select-list-wrapper.e-checkbox .e-dropdownbase .e-list-item.e-active.e-hover {
|
|
100
99
|
@if $ddl-multiselect-skin-name == 'tailwind' {
|
|
@@ -203,23 +202,19 @@
|
|
|
203
202
|
border: $ddl-popup-normal-border-width solid transparent;
|
|
204
203
|
}
|
|
205
204
|
|
|
206
|
-
|
|
207
|
-
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
205
|
+
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {/* stylelint-disable-line selector-no-vendor-prefix */
|
|
208
206
|
color: $ddl-input-placeholder;
|
|
209
207
|
}
|
|
210
208
|
|
|
211
|
-
|
|
212
|
-
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {
|
|
209
|
+
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {/* stylelint-disable-line selector-no-vendor-prefix */
|
|
213
210
|
color: $ddl-input-placeholder;
|
|
214
211
|
}
|
|
215
212
|
|
|
216
|
-
|
|
217
|
-
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {
|
|
213
|
+
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {/* stylelint-disable-line selector-no-vendor-prefix */
|
|
218
214
|
color: $ddl-input-placeholder;
|
|
219
215
|
}
|
|
220
216
|
|
|
221
|
-
|
|
222
|
-
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {
|
|
217
|
+
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {/* stylelint-disable-line selector-no-vendor-prefix */
|
|
223
218
|
color: $ddl-input-placeholder;
|
|
224
219
|
}
|
|
225
220
|
|
|
@@ -300,7 +295,7 @@ e-ddl.e-popup.e-multi-select-list-wrapper.e-multiselct-group.e-checkbox .e-list-
|
|
|
300
295
|
height: $ddl-small-chip-height;
|
|
301
296
|
}
|
|
302
297
|
|
|
303
|
-
.e-small .e-multi-select-wrapper .e-chips
|
|
298
|
+
.e-small .e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
304
299
|
font-size: $ddl-chip-small-font-size;
|
|
305
300
|
}
|
|
306
301
|
|
|
@@ -327,7 +322,7 @@ e-ddl.e-popup.e-multi-select-list-wrapper.e-multiselct-group.e-checkbox .e-list-
|
|
|
327
322
|
height: $ddl-bigger-small-chip-height;
|
|
328
323
|
}
|
|
329
324
|
|
|
330
|
-
.e-bigger.e-small .e-multi-select-wrapper .e-chips
|
|
325
|
+
.e-bigger.e-small .e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
331
326
|
font-size: $ddl-chip-bigger-small-font-size;
|
|
332
327
|
}
|
|
333
328
|
|
|
@@ -386,15 +381,15 @@ e-ddl.e-popup.e-multi-select-list-wrapper.e-multiselct-group.e-checkbox .e-list-
|
|
|
386
381
|
}
|
|
387
382
|
}
|
|
388
383
|
|
|
389
|
-
.e-multiselect.e-outline .e-multi-select-wrapper .e-chips.e-chip-selected
|
|
390
|
-
.e-multiselect.e-filled .e-multi-select-wrapper .e-chips.e-chip-selected
|
|
384
|
+
.e-multiselect.e-outline .e-multi-select-wrapper .e-chips.e-chip-selected > .e-chipcontent,
|
|
385
|
+
.e-multiselect.e-filled .e-multi-select-wrapper .e-chips.e-chip-selected > .e-chipcontent {
|
|
391
386
|
@if $ddl-multiselect-skin-name == 'material' {
|
|
392
387
|
color: $ddl-chip-font-color;
|
|
393
388
|
}
|
|
394
389
|
}
|
|
395
390
|
|
|
396
|
-
.e-multiselect.e-outline .e-multi-select-wrapper .e-chips.e-chip-selected
|
|
397
|
-
.e-multiselect.e-filled .e-multi-select-wrapper .e-chips.e-chip-selected
|
|
391
|
+
.e-multiselect.e-outline .e-multi-select-wrapper .e-chips.e-chip-selected > .e-chipcontent:hover,
|
|
392
|
+
.e-multiselect.e-filled .e-multi-select-wrapper .e-chips.e-chip-selected > .e-chipcontent:hover {
|
|
398
393
|
@if $ddl-multiselect-skin-name == 'material' {
|
|
399
394
|
color: $ddl-chip-font-color;
|
|
400
395
|
}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1
3
|
@keyframes material-spinner-rotate {
|
|
2
4
|
0% {
|
|
3
5
|
transform: rotate(0);
|
|
@@ -359,7 +361,7 @@
|
|
|
359
361
|
border: 0;
|
|
360
362
|
font-family: inherit;
|
|
361
363
|
font-size: 15px;
|
|
362
|
-
font-weight:
|
|
364
|
+
font-weight: normal;
|
|
363
365
|
height: 32px;
|
|
364
366
|
min-height: 32px;
|
|
365
367
|
outline: none;
|
|
@@ -373,7 +375,7 @@
|
|
|
373
375
|
color: inherit;
|
|
374
376
|
font-family: inherit;
|
|
375
377
|
font-size: 14px;
|
|
376
|
-
font-weight:
|
|
378
|
+
font-weight: normal;
|
|
377
379
|
height: 32px;
|
|
378
380
|
min-height: 32px;
|
|
379
381
|
outline: none;
|
|
@@ -396,6 +398,7 @@
|
|
|
396
398
|
min-height: 38px;
|
|
397
399
|
}
|
|
398
400
|
|
|
401
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
399
402
|
.e-multi-select-wrapper input[type=text]::-ms-clear {
|
|
400
403
|
display: none;
|
|
401
404
|
}
|
|
@@ -1036,6 +1039,7 @@ ejs-multiselect {
|
|
|
1036
1039
|
box-sizing: border-box;
|
|
1037
1040
|
}
|
|
1038
1041
|
|
|
1042
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1039
1043
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
1040
1044
|
-webkit-text-fill-color: #f0f0f0;
|
|
1041
1045
|
color: #f0f0f0;
|
|
@@ -1164,19 +1168,19 @@ ejs-multiselect {
|
|
|
1164
1168
|
border: 1px solid transparent;
|
|
1165
1169
|
}
|
|
1166
1170
|
|
|
1167
|
-
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
1171
|
+
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1168
1172
|
color: #767676;
|
|
1169
1173
|
}
|
|
1170
1174
|
|
|
1171
|
-
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {
|
|
1175
|
+
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1172
1176
|
color: #767676;
|
|
1173
1177
|
}
|
|
1174
1178
|
|
|
1175
|
-
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {
|
|
1179
|
+
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1176
1180
|
color: #767676;
|
|
1177
1181
|
}
|
|
1178
1182
|
|
|
1179
|
-
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {
|
|
1183
|
+
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1180
1184
|
color: #767676;
|
|
1181
1185
|
}
|
|
1182
1186
|
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1
3
|
@keyframes material-spinner-rotate {
|
|
2
4
|
0% {
|
|
3
5
|
transform: rotate(0);
|
|
@@ -357,7 +359,7 @@
|
|
|
357
359
|
border: 0;
|
|
358
360
|
font-family: inherit;
|
|
359
361
|
font-size: 15px;
|
|
360
|
-
font-weight:
|
|
362
|
+
font-weight: normal;
|
|
361
363
|
height: 32px;
|
|
362
364
|
min-height: 32px;
|
|
363
365
|
outline: none;
|
|
@@ -371,7 +373,7 @@
|
|
|
371
373
|
color: inherit;
|
|
372
374
|
font-family: inherit;
|
|
373
375
|
font-size: 14px;
|
|
374
|
-
font-weight:
|
|
376
|
+
font-weight: normal;
|
|
375
377
|
height: 32px;
|
|
376
378
|
min-height: 32px;
|
|
377
379
|
outline: none;
|
|
@@ -394,6 +396,7 @@
|
|
|
394
396
|
min-height: 38px;
|
|
395
397
|
}
|
|
396
398
|
|
|
399
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
397
400
|
.e-multi-select-wrapper input[type=text]::-ms-clear {
|
|
398
401
|
display: none;
|
|
399
402
|
}
|
|
@@ -1034,6 +1037,7 @@ ejs-multiselect {
|
|
|
1034
1037
|
box-sizing: border-box;
|
|
1035
1038
|
}
|
|
1036
1039
|
|
|
1040
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1037
1041
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
1038
1042
|
-webkit-text-fill-color: #333;
|
|
1039
1043
|
color: #333;
|
|
@@ -1162,19 +1166,19 @@ ejs-multiselect {
|
|
|
1162
1166
|
border: 1px solid transparent;
|
|
1163
1167
|
}
|
|
1164
1168
|
|
|
1165
|
-
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
1169
|
+
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1166
1170
|
color: #999;
|
|
1167
1171
|
}
|
|
1168
1172
|
|
|
1169
|
-
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {
|
|
1173
|
+
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1170
1174
|
color: #999;
|
|
1171
1175
|
}
|
|
1172
1176
|
|
|
1173
|
-
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {
|
|
1177
|
+
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1174
1178
|
color: #999;
|
|
1175
1179
|
}
|
|
1176
1180
|
|
|
1177
|
-
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {
|
|
1181
|
+
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1178
1182
|
color: #999;
|
|
1179
1183
|
}
|
|
1180
1184
|
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1
3
|
@keyframes material-spinner-rotate {
|
|
2
4
|
0% {
|
|
3
5
|
transform: rotate(0);
|
|
@@ -444,7 +446,7 @@
|
|
|
444
446
|
border: 0;
|
|
445
447
|
font-family: inherit;
|
|
446
448
|
font-size: 14px;
|
|
447
|
-
font-weight:
|
|
449
|
+
font-weight: normal;
|
|
448
450
|
height: 29px;
|
|
449
451
|
min-height: 29px;
|
|
450
452
|
outline: none;
|
|
@@ -458,7 +460,7 @@
|
|
|
458
460
|
color: inherit;
|
|
459
461
|
font-family: inherit;
|
|
460
462
|
font-size: 14px;
|
|
461
|
-
font-weight:
|
|
463
|
+
font-weight: normal;
|
|
462
464
|
height: 29px;
|
|
463
465
|
min-height: 29px;
|
|
464
466
|
outline: none;
|
|
@@ -482,6 +484,7 @@
|
|
|
482
484
|
min-height: 36px;
|
|
483
485
|
}
|
|
484
486
|
|
|
487
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
485
488
|
.e-multi-select-wrapper input[type=text]::-ms-clear {
|
|
486
489
|
display: none;
|
|
487
490
|
}
|
|
@@ -1134,6 +1137,7 @@ ejs-multiselect {
|
|
|
1134
1137
|
box-sizing: border-box;
|
|
1135
1138
|
}
|
|
1136
1139
|
|
|
1140
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1137
1141
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
1138
1142
|
-webkit-text-fill-color: #fff;
|
|
1139
1143
|
color: #fff;
|
|
@@ -1266,19 +1270,19 @@ ejs-multiselect {
|
|
|
1266
1270
|
border: 1px solid transparent;
|
|
1267
1271
|
}
|
|
1268
1272
|
|
|
1269
|
-
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
1273
|
+
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1270
1274
|
color: #6c757d;
|
|
1271
1275
|
}
|
|
1272
1276
|
|
|
1273
|
-
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {
|
|
1277
|
+
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1274
1278
|
color: #6c757d;
|
|
1275
1279
|
}
|
|
1276
1280
|
|
|
1277
|
-
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {
|
|
1281
|
+
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1278
1282
|
color: #6c757d;
|
|
1279
1283
|
}
|
|
1280
1284
|
|
|
1281
|
-
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {
|
|
1285
|
+
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1282
1286
|
color: #6c757d;
|
|
1283
1287
|
}
|
|
1284
1288
|
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2
|
+
/* stylelint-disable-line no-empty-source */
|
|
3
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1
4
|
@keyframes material-spinner-rotate {
|
|
2
5
|
0% {
|
|
3
6
|
transform: rotate(0);
|
|
@@ -418,7 +421,7 @@
|
|
|
418
421
|
border: 0;
|
|
419
422
|
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
420
423
|
font-size: 14px;
|
|
421
|
-
font-weight:
|
|
424
|
+
font-weight: normal;
|
|
422
425
|
height: 30px;
|
|
423
426
|
min-height: 30px;
|
|
424
427
|
outline: none;
|
|
@@ -432,7 +435,7 @@
|
|
|
432
435
|
color: inherit;
|
|
433
436
|
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
434
437
|
font-size: 14px;
|
|
435
|
-
font-weight:
|
|
438
|
+
font-weight: normal;
|
|
436
439
|
height: 30px;
|
|
437
440
|
min-height: 30px;
|
|
438
441
|
outline: none;
|
|
@@ -455,6 +458,7 @@
|
|
|
455
458
|
min-height: 36px;
|
|
456
459
|
}
|
|
457
460
|
|
|
461
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
458
462
|
.e-multi-select-wrapper input[type=text]::-ms-clear {
|
|
459
463
|
display: none;
|
|
460
464
|
}
|
|
@@ -1114,6 +1118,7 @@ ejs-multiselect {
|
|
|
1114
1118
|
box-sizing: border-box;
|
|
1115
1119
|
}
|
|
1116
1120
|
|
|
1121
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1117
1122
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
1118
1123
|
-webkit-text-fill-color: #fff;
|
|
1119
1124
|
color: #fff;
|
|
@@ -1240,19 +1245,19 @@ ejs-multiselect {
|
|
|
1240
1245
|
border: 0 solid transparent;
|
|
1241
1246
|
}
|
|
1242
1247
|
|
|
1243
|
-
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
1248
|
+
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1244
1249
|
color: #6c757d;
|
|
1245
1250
|
}
|
|
1246
1251
|
|
|
1247
|
-
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {
|
|
1252
|
+
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1248
1253
|
color: #6c757d;
|
|
1249
1254
|
}
|
|
1250
1255
|
|
|
1251
|
-
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {
|
|
1256
|
+
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1252
1257
|
color: #6c757d;
|
|
1253
1258
|
}
|
|
1254
1259
|
|
|
1255
|
-
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {
|
|
1260
|
+
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1256
1261
|
color: #6c757d;
|
|
1257
1262
|
}
|
|
1258
1263
|
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2
|
+
/* stylelint-disable-line no-empty-source */
|
|
3
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1
4
|
@keyframes material-spinner-rotate {
|
|
2
5
|
0% {
|
|
3
6
|
transform: rotate(0);
|
|
@@ -418,7 +421,7 @@
|
|
|
418
421
|
border: 0;
|
|
419
422
|
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
420
423
|
font-size: 14px;
|
|
421
|
-
font-weight:
|
|
424
|
+
font-weight: normal;
|
|
422
425
|
height: 30px;
|
|
423
426
|
min-height: 30px;
|
|
424
427
|
outline: none;
|
|
@@ -432,7 +435,7 @@
|
|
|
432
435
|
color: inherit;
|
|
433
436
|
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
434
437
|
font-size: 14px;
|
|
435
|
-
font-weight:
|
|
438
|
+
font-weight: normal;
|
|
436
439
|
height: 30px;
|
|
437
440
|
min-height: 30px;
|
|
438
441
|
outline: none;
|
|
@@ -455,6 +458,7 @@
|
|
|
455
458
|
min-height: 36px;
|
|
456
459
|
}
|
|
457
460
|
|
|
461
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
458
462
|
.e-multi-select-wrapper input[type=text]::-ms-clear {
|
|
459
463
|
display: none;
|
|
460
464
|
}
|
|
@@ -1114,6 +1118,7 @@ ejs-multiselect {
|
|
|
1114
1118
|
box-sizing: border-box;
|
|
1115
1119
|
}
|
|
1116
1120
|
|
|
1121
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1117
1122
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
1118
1123
|
-webkit-text-fill-color: #fff;
|
|
1119
1124
|
color: #fff;
|
|
@@ -1240,19 +1245,19 @@ ejs-multiselect {
|
|
|
1240
1245
|
border: 0 solid transparent;
|
|
1241
1246
|
}
|
|
1242
1247
|
|
|
1243
|
-
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
1248
|
+
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1244
1249
|
color: #6c757d;
|
|
1245
1250
|
}
|
|
1246
1251
|
|
|
1247
|
-
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {
|
|
1252
|
+
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1248
1253
|
color: #6c757d;
|
|
1249
1254
|
}
|
|
1250
1255
|
|
|
1251
|
-
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {
|
|
1256
|
+
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1252
1257
|
color: #6c757d;
|
|
1253
1258
|
}
|
|
1254
1259
|
|
|
1255
|
-
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {
|
|
1260
|
+
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1256
1261
|
color: #6c757d;
|
|
1257
1262
|
}
|
|
1258
1263
|
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1
3
|
@keyframes material-spinner-rotate {
|
|
2
4
|
0% {
|
|
3
5
|
transform: rotate(0);
|
|
@@ -352,7 +354,7 @@
|
|
|
352
354
|
border: 0;
|
|
353
355
|
font-family: inherit;
|
|
354
356
|
font-size: 14px;
|
|
355
|
-
font-weight:
|
|
357
|
+
font-weight: normal;
|
|
356
358
|
height: 28px;
|
|
357
359
|
min-height: 28px;
|
|
358
360
|
outline: none;
|
|
@@ -366,7 +368,7 @@
|
|
|
366
368
|
color: inherit;
|
|
367
369
|
font-family: inherit;
|
|
368
370
|
font-size: 14px;
|
|
369
|
-
font-weight:
|
|
371
|
+
font-weight: normal;
|
|
370
372
|
height: 28px;
|
|
371
373
|
min-height: 28px;
|
|
372
374
|
outline: none;
|
|
@@ -389,6 +391,7 @@
|
|
|
389
391
|
min-height: 38px;
|
|
390
392
|
}
|
|
391
393
|
|
|
394
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
392
395
|
.e-multi-select-wrapper input[type=text]::-ms-clear {
|
|
393
396
|
display: none;
|
|
394
397
|
}
|
|
@@ -1037,6 +1040,7 @@ ejs-multiselect {
|
|
|
1037
1040
|
box-sizing: border-box;
|
|
1038
1041
|
}
|
|
1039
1042
|
|
|
1043
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1040
1044
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
1041
1045
|
-webkit-text-fill-color: #dadada;
|
|
1042
1046
|
color: #dadada;
|
|
@@ -1165,19 +1169,19 @@ ejs-multiselect {
|
|
|
1165
1169
|
border: 1px solid transparent;
|
|
1166
1170
|
}
|
|
1167
1171
|
|
|
1168
|
-
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
1172
|
+
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1169
1173
|
color: #6f6c6c;
|
|
1170
1174
|
}
|
|
1171
1175
|
|
|
1172
|
-
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {
|
|
1176
|
+
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1173
1177
|
color: #6f6c6c;
|
|
1174
1178
|
}
|
|
1175
1179
|
|
|
1176
|
-
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {
|
|
1180
|
+
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1177
1181
|
color: #6f6c6c;
|
|
1178
1182
|
}
|
|
1179
1183
|
|
|
1180
|
-
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {
|
|
1184
|
+
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1181
1185
|
color: #6f6c6c;
|
|
1182
1186
|
}
|
|
1183
1187
|
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1
3
|
@keyframes material-spinner-rotate {
|
|
2
4
|
0% {
|
|
3
5
|
transform: rotate(0);
|
|
@@ -352,7 +354,7 @@
|
|
|
352
354
|
border: 0;
|
|
353
355
|
font-family: inherit;
|
|
354
356
|
font-size: 14px;
|
|
355
|
-
font-weight:
|
|
357
|
+
font-weight: normal;
|
|
356
358
|
height: 28px;
|
|
357
359
|
min-height: 28px;
|
|
358
360
|
outline: none;
|
|
@@ -366,7 +368,7 @@
|
|
|
366
368
|
color: inherit;
|
|
367
369
|
font-family: inherit;
|
|
368
370
|
font-size: 14px;
|
|
369
|
-
font-weight:
|
|
371
|
+
font-weight: normal;
|
|
370
372
|
height: 28px;
|
|
371
373
|
min-height: 28px;
|
|
372
374
|
outline: none;
|
|
@@ -389,6 +391,7 @@
|
|
|
389
391
|
min-height: 38px;
|
|
390
392
|
}
|
|
391
393
|
|
|
394
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
392
395
|
.e-multi-select-wrapper input[type=text]::-ms-clear {
|
|
393
396
|
display: none;
|
|
394
397
|
}
|
|
@@ -1037,6 +1040,7 @@ ejs-multiselect {
|
|
|
1037
1040
|
box-sizing: border-box;
|
|
1038
1041
|
}
|
|
1039
1042
|
|
|
1043
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1040
1044
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
1041
1045
|
-webkit-text-fill-color: #666;
|
|
1042
1046
|
color: #666;
|
|
@@ -1165,19 +1169,19 @@ ejs-multiselect {
|
|
|
1165
1169
|
border: 1px solid transparent;
|
|
1166
1170
|
}
|
|
1167
1171
|
|
|
1168
|
-
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
1172
|
+
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1169
1173
|
color: #a6a6a6;
|
|
1170
1174
|
}
|
|
1171
1175
|
|
|
1172
|
-
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {
|
|
1176
|
+
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1173
1177
|
color: #a6a6a6;
|
|
1174
1178
|
}
|
|
1175
1179
|
|
|
1176
|
-
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {
|
|
1180
|
+
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1177
1181
|
color: #a6a6a6;
|
|
1178
1182
|
}
|
|
1179
1183
|
|
|
1180
|
-
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {
|
|
1184
|
+
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1181
1185
|
color: #a6a6a6;
|
|
1182
1186
|
}
|
|
1183
1187
|
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2
|
+
/* stylelint-disable-line no-empty-source */
|
|
3
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1
4
|
@keyframes material-spinner-rotate {
|
|
2
5
|
0% {
|
|
3
6
|
transform: rotate(0);
|
|
@@ -458,7 +461,7 @@
|
|
|
458
461
|
border: 0;
|
|
459
462
|
font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
|
|
460
463
|
font-size: 14px;
|
|
461
|
-
font-weight:
|
|
464
|
+
font-weight: normal;
|
|
462
465
|
height: 30px;
|
|
463
466
|
min-height: 30px;
|
|
464
467
|
outline: none;
|
|
@@ -472,7 +475,7 @@
|
|
|
472
475
|
color: inherit;
|
|
473
476
|
font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
|
|
474
477
|
font-size: 14px;
|
|
475
|
-
font-weight:
|
|
478
|
+
font-weight: normal;
|
|
476
479
|
height: 30px;
|
|
477
480
|
min-height: 30px;
|
|
478
481
|
outline: none;
|
|
@@ -495,6 +498,7 @@
|
|
|
495
498
|
min-height: 36px;
|
|
496
499
|
}
|
|
497
500
|
|
|
501
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
498
502
|
.e-multi-select-wrapper input[type=text]::-ms-clear {
|
|
499
503
|
display: none;
|
|
500
504
|
}
|
|
@@ -1154,6 +1158,7 @@ ejs-multiselect {
|
|
|
1154
1158
|
box-sizing: border-box;
|
|
1155
1159
|
}
|
|
1156
1160
|
|
|
1161
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1157
1162
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
1158
1163
|
-webkit-text-fill-color: #f3f2f1;
|
|
1159
1164
|
color: #f3f2f1;
|
|
@@ -1299,19 +1304,19 @@ ejs-multiselect {
|
|
|
1299
1304
|
border: 0 solid transparent;
|
|
1300
1305
|
}
|
|
1301
1306
|
|
|
1302
|
-
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
1307
|
+
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1303
1308
|
color: #a19f9d;
|
|
1304
1309
|
}
|
|
1305
1310
|
|
|
1306
|
-
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {
|
|
1311
|
+
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1307
1312
|
color: #a19f9d;
|
|
1308
1313
|
}
|
|
1309
1314
|
|
|
1310
|
-
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {
|
|
1315
|
+
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1311
1316
|
color: #a19f9d;
|
|
1312
1317
|
}
|
|
1313
1318
|
|
|
1314
|
-
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {
|
|
1319
|
+
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1315
1320
|
color: #a19f9d;
|
|
1316
1321
|
}
|
|
1317
1322
|
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2
|
+
/* stylelint-disable-line no-empty-source */
|
|
3
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1
4
|
@keyframes material-spinner-rotate {
|
|
2
5
|
0% {
|
|
3
6
|
transform: rotate(0);
|
|
@@ -458,7 +461,7 @@
|
|
|
458
461
|
border: 0;
|
|
459
462
|
font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
|
|
460
463
|
font-size: 14px;
|
|
461
|
-
font-weight:
|
|
464
|
+
font-weight: normal;
|
|
462
465
|
height: 30px;
|
|
463
466
|
min-height: 30px;
|
|
464
467
|
outline: none;
|
|
@@ -472,7 +475,7 @@
|
|
|
472
475
|
color: inherit;
|
|
473
476
|
font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
|
|
474
477
|
font-size: 14px;
|
|
475
|
-
font-weight:
|
|
478
|
+
font-weight: normal;
|
|
476
479
|
height: 30px;
|
|
477
480
|
min-height: 30px;
|
|
478
481
|
outline: none;
|
|
@@ -495,6 +498,7 @@
|
|
|
495
498
|
min-height: 36px;
|
|
496
499
|
}
|
|
497
500
|
|
|
501
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
498
502
|
.e-multi-select-wrapper input[type=text]::-ms-clear {
|
|
499
503
|
display: none;
|
|
500
504
|
}
|
|
@@ -1154,6 +1158,7 @@ ejs-multiselect {
|
|
|
1154
1158
|
box-sizing: border-box;
|
|
1155
1159
|
}
|
|
1156
1160
|
|
|
1161
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1157
1162
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
1158
1163
|
-webkit-text-fill-color: #201f1e;
|
|
1159
1164
|
color: #201f1e;
|
|
@@ -1299,19 +1304,19 @@ ejs-multiselect {
|
|
|
1299
1304
|
border: 0 solid transparent;
|
|
1300
1305
|
}
|
|
1301
1306
|
|
|
1302
|
-
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
1307
|
+
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1303
1308
|
color: #605e5c;
|
|
1304
1309
|
}
|
|
1305
1310
|
|
|
1306
|
-
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {
|
|
1311
|
+
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1307
1312
|
color: #605e5c;
|
|
1308
1313
|
}
|
|
1309
1314
|
|
|
1310
|
-
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {
|
|
1315
|
+
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1311
1316
|
color: #605e5c;
|
|
1312
1317
|
}
|
|
1313
1318
|
|
|
1314
|
-
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {
|
|
1319
|
+
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1315
1320
|
color: #605e5c;
|
|
1316
1321
|
}
|
|
1317
1322
|
|