@syncfusion/ej2-dropdowns 20.2.39 → 20.2.43-3197
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 +16 -1
- package/CHANGELOG.md +123 -2
- package/{README.md → ReadMe.md} +1 -1
- package/dist/ej2-dropdowns.min.js +1 -0
- package/dist/ej2-dropdowns.umd.min.js +1 -10
- package/dist/ej2-dropdowns.umd.min.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es2015.js +2243 -445
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +2285 -458
- package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
- package/dist/global/ej2-dropdowns.min.js +1 -10
- package/dist/global/ej2-dropdowns.min.js.map +1 -1
- package/dist/global/index.d.ts +0 -9
- package/mention.d.ts +4 -0
- package/mention.js +4 -0
- package/package.json +76 -76
- package/src/auto-complete/auto-complete-model.d.ts +12 -11
- package/src/auto-complete/auto-complete.d.ts +20 -18
- package/src/auto-complete/auto-complete.js +67 -37
- package/src/combo-box/combo-box-model.d.ts +17 -17
- package/src/combo-box/combo-box.d.ts +33 -33
- package/src/combo-box/combo-box.js +33 -29
- package/src/common/incremental-search.d.ts +3 -4
- package/src/common/incremental-search.js +22 -7
- package/src/drop-down-base/drop-down-base-model.d.ts +13 -31
- package/src/drop-down-base/drop-down-base.d.ts +22 -41
- package/src/drop-down-base/drop-down-base.js +75 -59
- package/src/drop-down-list/drop-down-list-model.d.ts +19 -1
- package/src/drop-down-list/drop-down-list.d.ts +35 -11
- package/src/drop-down-list/drop-down-list.js +195 -89
- package/src/drop-down-tree/drop-down-tree-model.d.ts +16 -2
- package/src/drop-down-tree/drop-down-tree.d.ts +15 -1
- package/src/drop-down-tree/drop-down-tree.js +51 -15
- package/src/index.d.ts +1 -0
- package/src/index.js +1 -0
- package/src/list-box/list-box-model.d.ts +18 -0
- package/src/list-box/list-box.d.ts +22 -0
- package/src/list-box/list-box.js +86 -31
- 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 +457 -0
- package/src/mention/mention.js +1465 -0
- package/src/multi-select/checkbox-selection.js +11 -12
- package/src/multi-select/float-label.js +4 -2
- package/src/multi-select/multi-select-model.d.ts +1 -1
- package/src/multi-select/multi-select.d.ts +9 -5
- package/src/multi-select/multi-select.js +296 -189
- 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 +121 -44
- package/styles/bootstrap-dark.scss +1 -0
- package/styles/bootstrap.css +121 -44
- package/styles/bootstrap.scss +1 -0
- package/styles/bootstrap4.css +134 -55
- package/styles/bootstrap4.scss +1 -0
- package/styles/bootstrap5-dark.css +135 -50
- package/styles/bootstrap5-dark.scss +1 -0
- package/styles/bootstrap5.css +135 -50
- 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 +9 -2
- package/styles/drop-down-base/_bootstrap-definition.scss +7 -1
- package/styles/drop-down-base/_bootstrap4-definition.scss +7 -1
- package/styles/drop-down-base/_bootstrap5-definition.scss +9 -3
- package/styles/drop-down-base/_fabric-dark-definition.scss +7 -1
- package/styles/drop-down-base/_fabric-definition.scss +7 -1
- package/styles/drop-down-base/_fluent-definition.scss +9 -2
- package/styles/drop-down-base/_fusionnew-definition.scss +9 -3
- package/styles/drop-down-base/_highcontrast-definition.scss +17 -6
- package/styles/drop-down-base/_highcontrast-light-definition.scss +19 -7
- package/styles/drop-down-base/_layout.scss +44 -3
- package/styles/drop-down-base/_material-dark-definition.scss +8 -1
- package/styles/drop-down-base/_material-definition.scss +7 -0
- package/styles/drop-down-base/_material3-definition.scss +9 -3
- package/styles/drop-down-base/_tailwind-definition.scss +9 -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 +11 -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 +8 -0
- package/styles/drop-down-list/bootstrap.css +8 -0
- package/styles/drop-down-list/bootstrap4.css +8 -0
- package/styles/drop-down-list/bootstrap5-dark.css +9 -0
- package/styles/drop-down-list/bootstrap5.css +9 -0
- package/styles/drop-down-list/fabric-dark.css +8 -0
- package/styles/drop-down-list/fabric.css +8 -0
- package/styles/drop-down-list/fluent-dark.css +9 -0
- package/styles/drop-down-list/fluent.css +9 -0
- package/styles/drop-down-list/highcontrast-light.css +8 -0
- package/styles/drop-down-list/highcontrast.css +8 -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 +8 -0
- package/styles/drop-down-list/material.css +8 -0
- package/styles/drop-down-list/tailwind-dark.css +9 -0
- package/styles/drop-down-list/tailwind.css +9 -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 +10 -3
- 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 +9 -1
- package/styles/drop-down-tree/bootstrap5.css +9 -1
- 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 +129 -52
- package/styles/fabric-dark.scss +1 -0
- package/styles/fabric.css +129 -52
- package/styles/fabric.scss +1 -0
- package/styles/fluent-dark.css +129 -47
- package/styles/fluent-dark.scss +1 -0
- package/styles/fluent.css +129 -47
- package/styles/fluent.scss +1 -0
- package/styles/highcontrast-light.css +124 -44
- package/styles/highcontrast-light.scss +1 -0
- package/styles/highcontrast.css +133 -53
- 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 +120 -43
- package/styles/material-dark.scss +1 -0
- package/styles/material.css +120 -43
- 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 +11 -1
- package/styles/multi-select/_bootstrap-definition.scss +9 -0
- package/styles/multi-select/_bootstrap4-definition.scss +20 -9
- package/styles/multi-select/_bootstrap5-definition.scss +11 -3
- package/styles/multi-select/_fabric-dark-definition.scss +16 -7
- package/styles/multi-select/_fabric-definition.scss +15 -6
- package/styles/multi-select/_fluent-definition.scss +11 -2
- package/styles/multi-select/_fusionnew-definition.scss +10 -2
- package/styles/multi-select/_highcontrast-definition.scss +59 -29
- package/styles/multi-select/_highcontrast-light-definition.scss +55 -25
- package/styles/multi-select/_layout.scss +91 -78
- package/styles/multi-select/_material-dark-definition.scss +10 -1
- package/styles/multi-select/_material-definition.scss +8 -0
- package/styles/multi-select/_material3-definition.scss +9 -2
- package/styles/multi-select/_tailwind-definition.scss +11 -4
- package/styles/multi-select/_theme.scss +20 -21
- package/styles/multi-select/bootstrap-dark.css +34 -8
- package/styles/multi-select/bootstrap.css +34 -8
- package/styles/multi-select/bootstrap4.css +46 -19
- package/styles/multi-select/bootstrap5-dark.css +38 -11
- package/styles/multi-select/bootstrap5.css +38 -11
- package/styles/multi-select/fabric-dark.css +42 -16
- package/styles/multi-select/fabric.css +42 -16
- package/styles/multi-select/fluent-dark.css +36 -9
- package/styles/multi-select/fluent.css +36 -9
- package/styles/multi-select/highcontrast-light.css +37 -8
- package/styles/multi-select/highcontrast.css +46 -17
- 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 +33 -7
- package/styles/multi-select/material.css +33 -7
- package/styles/multi-select/tailwind-dark.css +38 -9
- package/styles/multi-select/tailwind.css +38 -9
- package/styles/tailwind-dark.css +132 -47
- package/styles/tailwind-dark.scss +1 -0
- package/styles/tailwind.css +132 -47
- package/styles/tailwind.scss +1 -0
package/styles/bootstrap4.css
CHANGED
|
@@ -95,7 +95,8 @@
|
|
|
95
95
|
position: relative;
|
|
96
96
|
}
|
|
97
97
|
|
|
98
|
-
.e-popup.e-ddl .e-dropdownbase.e-nodata
|
|
98
|
+
.e-popup.e-ddl .e-dropdownbase.e-nodata,
|
|
99
|
+
.e-popup.e-mention .e-dropdownbase.e-nodata {
|
|
99
100
|
color: #212529;
|
|
100
101
|
cursor: default;
|
|
101
102
|
font-family: inherit;
|
|
@@ -104,6 +105,45 @@
|
|
|
104
105
|
text-align: center;
|
|
105
106
|
}
|
|
106
107
|
|
|
108
|
+
.e-mention.e-popup {
|
|
109
|
+
background: #fff;
|
|
110
|
+
border: 0;
|
|
111
|
+
box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.21);
|
|
112
|
+
margin-top: 2px;
|
|
113
|
+
position: absolute;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.e-mention .e-dropdownbase .e-list-item .e-highlight {
|
|
117
|
+
display: inline;
|
|
118
|
+
font-weight: bold;
|
|
119
|
+
vertical-align: baseline;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.e-mention .e-mention-chip,
|
|
123
|
+
.e-mention .e-mention-chip:hover {
|
|
124
|
+
background: #e9ecef;
|
|
125
|
+
border-radius: 2px;
|
|
126
|
+
border: none;
|
|
127
|
+
color: #007bff;
|
|
128
|
+
cursor: default;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.e-mention .e-mention-chip::selection {
|
|
132
|
+
color: #fff;
|
|
133
|
+
background: #007bff;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.e-mention.e-editable-element {
|
|
137
|
+
border: 2px solid rgba(0, 0, 0, 0.15);
|
|
138
|
+
height: auto;
|
|
139
|
+
min-height: 120px;
|
|
140
|
+
width: 100%;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.e-form-mirror-div {
|
|
144
|
+
white-space: pre-wrap;
|
|
145
|
+
}
|
|
146
|
+
|
|
107
147
|
.e-rtl .e-dropdownbase.e-dd-group .e-list-item {
|
|
108
148
|
padding-right: 30px;
|
|
109
149
|
}
|
|
@@ -166,6 +206,7 @@
|
|
|
166
206
|
border-color: rgba(0, 0, 0, 0.15);
|
|
167
207
|
}
|
|
168
208
|
.e-dropdownbase .e-list-item {
|
|
209
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
169
210
|
-webkit-tap-highlight-color: transparent;
|
|
170
211
|
background-color: #fff;
|
|
171
212
|
border-bottom: 1px;
|
|
@@ -352,6 +393,8 @@
|
|
|
352
393
|
color: #212529;
|
|
353
394
|
}
|
|
354
395
|
|
|
396
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
397
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
355
398
|
@keyframes material-spinner-rotate {
|
|
356
399
|
0% {
|
|
357
400
|
transform: rotate(0);
|
|
@@ -548,6 +591,9 @@
|
|
|
548
591
|
.e-popup-full-page .e-popup-full-page.e-ddl.e-popup.e-ddl-device-filter {
|
|
549
592
|
margin: 0;
|
|
550
593
|
}
|
|
594
|
+
.e-popup-full-page .e-popup-full-page.e-ios {
|
|
595
|
+
position: fixed;
|
|
596
|
+
}
|
|
551
597
|
|
|
552
598
|
.e-ddl.e-control-wrapper .e-ddl-disable-icon {
|
|
553
599
|
position: relative;
|
|
@@ -561,6 +607,7 @@
|
|
|
561
607
|
background-color: #fff;
|
|
562
608
|
}
|
|
563
609
|
|
|
610
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
564
611
|
.e-ddl input.e-input::-webkit-contacts-auto-fill-button {
|
|
565
612
|
display: none;
|
|
566
613
|
pointer-events: none;
|
|
@@ -569,6 +616,7 @@
|
|
|
569
616
|
visibility: hidden;
|
|
570
617
|
}
|
|
571
618
|
|
|
619
|
+
/* stylelint-enable property-no-vendor-prefix */
|
|
572
620
|
.e-filter-parent {
|
|
573
621
|
border: rgba(0, 0, 0, 0.12);
|
|
574
622
|
border-top-width: 0;
|
|
@@ -608,6 +656,7 @@
|
|
|
608
656
|
cursor: default;
|
|
609
657
|
}
|
|
610
658
|
|
|
659
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
611
660
|
.e-ddl.e-input-group .e-ddl-hidden,
|
|
612
661
|
.e-ddl.e-float-input .e-ddl-hidden {
|
|
613
662
|
-webkit-appearance: initial;
|
|
@@ -750,6 +799,8 @@ ejs-dropdownlist {
|
|
|
750
799
|
color: #fff;
|
|
751
800
|
}
|
|
752
801
|
|
|
802
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
803
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
753
804
|
@keyframes material-spinner-rotate {
|
|
754
805
|
0% {
|
|
755
806
|
transform: rotate(0);
|
|
@@ -766,6 +817,8 @@ ejs-dropdownlist {
|
|
|
766
817
|
transform: rotate(360deg);
|
|
767
818
|
}
|
|
768
819
|
}
|
|
820
|
+
/* stylelint-disable */
|
|
821
|
+
/* stylelint-disable */
|
|
769
822
|
.e-ddt .e-ddt-icon::before {
|
|
770
823
|
content: "\e744";
|
|
771
824
|
}
|
|
@@ -1189,6 +1242,7 @@ ejs-dropdownlist {
|
|
|
1189
1242
|
font-size: 10px;
|
|
1190
1243
|
}
|
|
1191
1244
|
|
|
1245
|
+
/* stylelint-disable-line no-empty-source */
|
|
1192
1246
|
.e-input-group.e-ddl .e-control.e-autocomplete ~ .e-ddl-icon {
|
|
1193
1247
|
font-size: 8px;
|
|
1194
1248
|
}
|
|
@@ -1197,6 +1251,9 @@ ejs-dropdownlist {
|
|
|
1197
1251
|
font-size: 10px;
|
|
1198
1252
|
}
|
|
1199
1253
|
|
|
1254
|
+
/* stylelint-disable-line no-empty-source */
|
|
1255
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1256
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1200
1257
|
@keyframes material-spinner-rotate {
|
|
1201
1258
|
0% {
|
|
1202
1259
|
transform: rotate(0);
|
|
@@ -1235,7 +1292,7 @@ ejs-dropdownlist {
|
|
|
1235
1292
|
|
|
1236
1293
|
.e-bigger .e-multi-select-wrapper .e-chips-close {
|
|
1237
1294
|
height: 30px;
|
|
1238
|
-
width:
|
|
1295
|
+
width: auto;
|
|
1239
1296
|
}
|
|
1240
1297
|
|
|
1241
1298
|
.e-popup.e-multi-select-list-wrapper .e-list-item.e-active.e-item-focus.e-hover {
|
|
@@ -1298,7 +1355,7 @@ ejs-dropdownlist {
|
|
|
1298
1355
|
.e-multi-select-wrapper .e-chips .e-chips-close::before {
|
|
1299
1356
|
content: "\e745";
|
|
1300
1357
|
cursor: pointer;
|
|
1301
|
-
left:
|
|
1358
|
+
left: 0;
|
|
1302
1359
|
position: relative;
|
|
1303
1360
|
top: 8px;
|
|
1304
1361
|
}
|
|
@@ -1307,7 +1364,7 @@ ejs-dropdownlist {
|
|
|
1307
1364
|
content: "\e745";
|
|
1308
1365
|
cursor: pointer;
|
|
1309
1366
|
height: 10px;
|
|
1310
|
-
left:
|
|
1367
|
+
left: 0;
|
|
1311
1368
|
position: relative;
|
|
1312
1369
|
top: 10px;
|
|
1313
1370
|
}
|
|
@@ -1563,8 +1620,12 @@ ejs-dropdownlist {
|
|
|
1563
1620
|
float: right;
|
|
1564
1621
|
font-family: "e-icons";
|
|
1565
1622
|
height: 24px;
|
|
1566
|
-
margin:
|
|
1567
|
-
width:
|
|
1623
|
+
margin: 10px 10px 10px 0;
|
|
1624
|
+
width: auto;
|
|
1625
|
+
}
|
|
1626
|
+
|
|
1627
|
+
.e-rtl .e-multi-select-wrapper .e-chips-close {
|
|
1628
|
+
margin: 8px 0 8px 20px;
|
|
1568
1629
|
}
|
|
1569
1630
|
|
|
1570
1631
|
.e-multi-select-wrapper .e-mob-chip.e-chips .e-chips-close {
|
|
@@ -1579,7 +1640,7 @@ ejs-dropdownlist {
|
|
|
1579
1640
|
position: absolute;
|
|
1580
1641
|
right: 0;
|
|
1581
1642
|
top: 100%;
|
|
1582
|
-
width:
|
|
1643
|
+
width: auto;
|
|
1583
1644
|
}
|
|
1584
1645
|
|
|
1585
1646
|
.e-multiselect .e-down-icon .e-chips-close.e-close-hooker,
|
|
@@ -1612,12 +1673,12 @@ ejs-dropdownlist {
|
|
|
1612
1673
|
border: 0;
|
|
1613
1674
|
font-family: inherit;
|
|
1614
1675
|
font-size: 14px;
|
|
1615
|
-
font-weight:
|
|
1676
|
+
font-weight: normal;
|
|
1616
1677
|
height: 29px;
|
|
1617
1678
|
min-height: 29px;
|
|
1618
1679
|
outline: none;
|
|
1619
|
-
padding: 0;
|
|
1620
|
-
text-indent:
|
|
1680
|
+
padding: 0 0 0 8px;
|
|
1681
|
+
text-indent: 0;
|
|
1621
1682
|
}
|
|
1622
1683
|
|
|
1623
1684
|
.e-multiselect.e-filled .e-multi-select-wrapper input[type=text] {
|
|
@@ -1626,7 +1687,7 @@ ejs-dropdownlist {
|
|
|
1626
1687
|
color: inherit;
|
|
1627
1688
|
font-family: inherit;
|
|
1628
1689
|
font-size: 14px;
|
|
1629
|
-
font-weight:
|
|
1690
|
+
font-weight: normal;
|
|
1630
1691
|
height: 29px;
|
|
1631
1692
|
min-height: 29px;
|
|
1632
1693
|
outline: none;
|
|
@@ -1650,6 +1711,7 @@ ejs-dropdownlist {
|
|
|
1650
1711
|
min-height: 36px;
|
|
1651
1712
|
}
|
|
1652
1713
|
|
|
1714
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1653
1715
|
.e-multi-select-wrapper input[type=text]::-ms-clear {
|
|
1654
1716
|
display: none;
|
|
1655
1717
|
}
|
|
@@ -1995,7 +2057,7 @@ ejs-multiselect {
|
|
|
1995
2057
|
|
|
1996
2058
|
.e-small .e-multi-select-wrapper .e-chips-close {
|
|
1997
2059
|
height: 18px;
|
|
1998
|
-
width:
|
|
2060
|
+
width: auto;
|
|
1999
2061
|
}
|
|
2000
2062
|
|
|
2001
2063
|
.e-small .e-multi-select-wrapper {
|
|
@@ -2028,7 +2090,8 @@ ejs-multiselect {
|
|
|
2028
2090
|
|
|
2029
2091
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips-close {
|
|
2030
2092
|
height: 24px;
|
|
2031
|
-
width:
|
|
2093
|
+
width: auto;
|
|
2094
|
+
margin: 3px 10px 10px 0;
|
|
2032
2095
|
}
|
|
2033
2096
|
|
|
2034
2097
|
.e-bigger.e-small .e-multi-select-wrapper {
|
|
@@ -2047,7 +2110,7 @@ ejs-multiselect {
|
|
|
2047
2110
|
|
|
2048
2111
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips-close.e-close-hooker,
|
|
2049
2112
|
.e-bigger.e-small .e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
|
|
2050
|
-
margin-top: -2.
|
|
2113
|
+
margin-top: -2.5em;
|
|
2051
2114
|
right: 0;
|
|
2052
2115
|
}
|
|
2053
2116
|
|
|
@@ -2286,6 +2349,20 @@ ejs-multiselect {
|
|
|
2286
2349
|
display: none;
|
|
2287
2350
|
}
|
|
2288
2351
|
|
|
2352
|
+
.e-multiselect.e-input-group.e-control-wrapper .e-input-group-icon {
|
|
2353
|
+
margin-right: 0;
|
|
2354
|
+
}
|
|
2355
|
+
|
|
2356
|
+
.e-multiselect.e-control-container.e-input-group.e-disabled .e-input-group-icon.e-ddl-icon.e-icons,
|
|
2357
|
+
.e-multiselect.e-control-container.e-input-group.e-disabled .e-clear-icon {
|
|
2358
|
+
cursor: not-allowed;
|
|
2359
|
+
}
|
|
2360
|
+
|
|
2361
|
+
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-multi-select-wrapper.e-down-icon,
|
|
2362
|
+
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-multi-select-wrapper.e-down-icon .e-multi-searcher .e-dropdownbase.e-control.e-multiselect.e-lib {
|
|
2363
|
+
cursor: pointer;
|
|
2364
|
+
}
|
|
2365
|
+
|
|
2289
2366
|
.e-multi-select-wrapper .e-chips.e-chip-selected .e-chips-close::before {
|
|
2290
2367
|
color: #fff;
|
|
2291
2368
|
}
|
|
@@ -2302,6 +2379,7 @@ ejs-multiselect {
|
|
|
2302
2379
|
box-sizing: border-box;
|
|
2303
2380
|
}
|
|
2304
2381
|
|
|
2382
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2305
2383
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
2306
2384
|
-webkit-text-fill-color: #fff;
|
|
2307
2385
|
color: #fff;
|
|
@@ -2434,19 +2512,19 @@ ejs-multiselect {
|
|
|
2434
2512
|
border: 1px solid transparent;
|
|
2435
2513
|
}
|
|
2436
2514
|
|
|
2437
|
-
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
2515
|
+
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2438
2516
|
color: #6c757d;
|
|
2439
2517
|
}
|
|
2440
2518
|
|
|
2441
|
-
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {
|
|
2519
|
+
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2442
2520
|
color: #6c757d;
|
|
2443
2521
|
}
|
|
2444
2522
|
|
|
2445
|
-
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {
|
|
2523
|
+
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2446
2524
|
color: #6c757d;
|
|
2447
2525
|
}
|
|
2448
2526
|
|
|
2449
|
-
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {
|
|
2527
|
+
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2450
2528
|
color: #6c757d;
|
|
2451
2529
|
}
|
|
2452
2530
|
|
|
@@ -2490,7 +2568,7 @@ ejs-multiselect {
|
|
|
2490
2568
|
}
|
|
2491
2569
|
|
|
2492
2570
|
.e-small .e-multi-select-wrapper .e-chips .e-chips-close::before {
|
|
2493
|
-
left:
|
|
2571
|
+
left: 0;
|
|
2494
2572
|
top: 5px;
|
|
2495
2573
|
font-size: 8px;
|
|
2496
2574
|
}
|
|
@@ -2499,6 +2577,10 @@ ejs-multiselect {
|
|
|
2499
2577
|
left: 4px;
|
|
2500
2578
|
}
|
|
2501
2579
|
|
|
2580
|
+
.e-small.e-bigger .e-multi-select-wrapper .e-close-hooker::before {
|
|
2581
|
+
left: 4px;
|
|
2582
|
+
}
|
|
2583
|
+
|
|
2502
2584
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips {
|
|
2503
2585
|
height: 30px;
|
|
2504
2586
|
}
|
|
@@ -2508,7 +2590,7 @@ ejs-multiselect {
|
|
|
2508
2590
|
}
|
|
2509
2591
|
|
|
2510
2592
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips .e-chips-close::before {
|
|
2511
|
-
left:
|
|
2593
|
+
left: 0;
|
|
2512
2594
|
top: 11px;
|
|
2513
2595
|
font-size: 10px;
|
|
2514
2596
|
}
|
|
@@ -2542,6 +2624,7 @@ ejs-multiselect {
|
|
|
2542
2624
|
content: "\e7ba";
|
|
2543
2625
|
}
|
|
2544
2626
|
|
|
2627
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2545
2628
|
.e-listbox-wrapper,
|
|
2546
2629
|
.e-listbox-container {
|
|
2547
2630
|
-webkit-overflow-scrolling: touch;
|
|
@@ -2560,7 +2643,7 @@ ejs-multiselect {
|
|
|
2560
2643
|
}
|
|
2561
2644
|
.e-listbox-wrapper.e-listboxtool-container .e-list-wrap,
|
|
2562
2645
|
.e-listbox-container.e-listboxtool-container .e-list-wrap {
|
|
2563
|
-
width: 86% !important;
|
|
2646
|
+
width: 86% !important; /* stylelint-disable-line declaration-no-important */
|
|
2564
2647
|
}
|
|
2565
2648
|
.e-listbox-wrapper:focus,
|
|
2566
2649
|
.e-listbox-container:focus {
|
|
@@ -2919,16 +3002,6 @@ ejs-listbox {
|
|
|
2919
3002
|
top: 30%;
|
|
2920
3003
|
}
|
|
2921
3004
|
|
|
2922
|
-
.e-listboxtool-container .e-left {
|
|
2923
|
-
-ms-flex-direction: row-reverse;
|
|
2924
|
-
flex-direction: row-reverse;
|
|
2925
|
-
}
|
|
2926
|
-
|
|
2927
|
-
.e-listboxtool-wrapper .e-left {
|
|
2928
|
-
-ms-flex-direction: column-reverse;
|
|
2929
|
-
flex-direction: column-reverse;
|
|
2930
|
-
}
|
|
2931
|
-
|
|
2932
3005
|
.e-rtl.e-listboxtool-wrapper.e-right .e-listbox-tool,
|
|
2933
3006
|
.e-rtl.e-listboxtool-container.e-right .e-listbox-tool {
|
|
2934
3007
|
margin-right: 15px;
|
|
@@ -2948,7 +3021,7 @@ ejs-listbox {
|
|
|
2948
3021
|
.e-listbox-wrapper.e-bigger.e-listboxtool-container .e-list-wrap,
|
|
2949
3022
|
.e-bigger .e-listbox-container.e-listboxtool-container .e-list-wrap,
|
|
2950
3023
|
.e-listbox-container.e-bigger.e-listboxtool-container .e-list-wrap {
|
|
2951
|
-
width: 85% !important;
|
|
3024
|
+
width: 85% !important; /* stylelint-disable-line declaration-no-important */
|
|
2952
3025
|
}
|
|
2953
3026
|
.e-bigger .e-listbox-wrapper .e-list-item,
|
|
2954
3027
|
.e-listbox-wrapper.e-bigger .e-list-item,
|
|
@@ -3075,30 +3148,16 @@ ejs-listbox {
|
|
|
3075
3148
|
margin: 0 0 0 12px;
|
|
3076
3149
|
}
|
|
3077
3150
|
|
|
3078
|
-
.e-listbox-wrapper.e-filter-list .e-list-parent
|
|
3079
|
-
|
|
3080
|
-
}
|
|
3081
|
-
|
|
3082
|
-
.e-listbox-container.e-filter-list .e-list-wrap {
|
|
3083
|
-
height: calc(100% - 39px) !important;
|
|
3084
|
-
}
|
|
3085
|
-
|
|
3086
|
-
.e-small .e-listbox-wrapper.e-filter-list .e-list-parent {
|
|
3151
|
+
.e-small .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
3152
|
+
.e-small .e-listbox-container.e-filter-list .e-list-parent {
|
|
3087
3153
|
height: calc(100% - 32px);
|
|
3088
3154
|
}
|
|
3089
3155
|
|
|
3090
|
-
.e-
|
|
3091
|
-
|
|
3092
|
-
}
|
|
3093
|
-
|
|
3094
|
-
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent {
|
|
3156
|
+
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
3157
|
+
.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
3095
3158
|
height: calc(100% - 46px);
|
|
3096
3159
|
}
|
|
3097
3160
|
|
|
3098
|
-
.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
3099
|
-
height: calc(100% - 46px) !important;
|
|
3100
|
-
}
|
|
3101
|
-
|
|
3102
3161
|
.e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
3103
3162
|
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
3104
3163
|
height: calc(100% - 96px);
|
|
@@ -3109,14 +3168,11 @@ ejs-listbox {
|
|
|
3109
3168
|
height: calc(100% - 50px);
|
|
3110
3169
|
}
|
|
3111
3170
|
|
|
3112
|
-
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent
|
|
3171
|
+
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
3172
|
+
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
3113
3173
|
height: calc(100% - 44px);
|
|
3114
3174
|
}
|
|
3115
3175
|
|
|
3116
|
-
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
3117
|
-
height: calc(100% - 44px) !important;
|
|
3118
|
-
}
|
|
3119
|
-
|
|
3120
3176
|
.e-listbox-wrapper,
|
|
3121
3177
|
.e-listbox-container:not(.e-listboxtool-container):not(.e-sortableclone),
|
|
3122
3178
|
.e-listboxtool-container.e-listbox-container .e-ul {
|
|
@@ -3136,6 +3192,11 @@ ejs-listbox {
|
|
|
3136
3192
|
font-size: 16px;
|
|
3137
3193
|
}
|
|
3138
3194
|
|
|
3195
|
+
.e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
3196
|
+
.e-listbox-container.e-filter-list .e-list-parent {
|
|
3197
|
+
height: calc(100% - 39px);
|
|
3198
|
+
}
|
|
3199
|
+
|
|
3139
3200
|
.e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
3140
3201
|
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
3141
3202
|
height: calc(100% - 79px);
|
|
@@ -3371,4 +3432,22 @@ ejs-listbox {
|
|
|
3371
3432
|
.e-listbox-container.e-rtl.e-list-template .e-list-wrapper.e-list-badge:not(.e-list-avatar) {
|
|
3372
3433
|
padding-left: 3.9285em;
|
|
3373
3434
|
padding-right: 1.0714em;
|
|
3435
|
+
}
|
|
3436
|
+
|
|
3437
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
3438
|
+
@keyframes material-spinner-rotate {
|
|
3439
|
+
0% {
|
|
3440
|
+
transform: rotate(0);
|
|
3441
|
+
}
|
|
3442
|
+
100% {
|
|
3443
|
+
transform: rotate(360deg);
|
|
3444
|
+
}
|
|
3445
|
+
}
|
|
3446
|
+
@keyframes fabric-spinner-rotate {
|
|
3447
|
+
0% {
|
|
3448
|
+
transform: rotate(0);
|
|
3449
|
+
}
|
|
3450
|
+
100% {
|
|
3451
|
+
transform: rotate(360deg);
|
|
3452
|
+
}
|
|
3374
3453
|
}
|
package/styles/bootstrap4.scss
CHANGED