@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
package/styles/bootstrap.css
CHANGED
|
@@ -77,7 +77,8 @@
|
|
|
77
77
|
position: relative;
|
|
78
78
|
}
|
|
79
79
|
|
|
80
|
-
.e-popup.e-ddl .e-dropdownbase.e-nodata
|
|
80
|
+
.e-popup.e-ddl .e-dropdownbase.e-nodata,
|
|
81
|
+
.e-popup.e-mention .e-dropdownbase.e-nodata {
|
|
81
82
|
color: #777;
|
|
82
83
|
cursor: default;
|
|
83
84
|
font-family: inherit;
|
|
@@ -86,6 +87,45 @@
|
|
|
86
87
|
text-align: center;
|
|
87
88
|
}
|
|
88
89
|
|
|
90
|
+
.e-mention.e-popup {
|
|
91
|
+
background: #fff;
|
|
92
|
+
border: 0;
|
|
93
|
+
box-shadow: 0 2px 3px 1px 0 6px 12px rgba(0, 0, 0, 0.175);
|
|
94
|
+
margin-top: 2px;
|
|
95
|
+
position: absolute;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.e-mention .e-dropdownbase .e-list-item .e-highlight {
|
|
99
|
+
display: inline;
|
|
100
|
+
font-weight: bold;
|
|
101
|
+
vertical-align: baseline;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.e-mention .e-mention-chip,
|
|
105
|
+
.e-mention .e-mention-chip:hover {
|
|
106
|
+
background: #eee;
|
|
107
|
+
border-radius: 2px;
|
|
108
|
+
border: none;
|
|
109
|
+
color: #317ab9;
|
|
110
|
+
cursor: default;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.e-mention .e-mention-chip::selection {
|
|
114
|
+
color: #fff;
|
|
115
|
+
background: #317ab9;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.e-mention.e-editable-element {
|
|
119
|
+
border: 2px solid rgba(119, 119, 119, 0.25);
|
|
120
|
+
height: auto;
|
|
121
|
+
min-height: 120px;
|
|
122
|
+
width: 100%;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.e-form-mirror-div {
|
|
126
|
+
white-space: pre-wrap;
|
|
127
|
+
}
|
|
128
|
+
|
|
89
129
|
.e-rtl .e-dropdownbase.e-dd-group .e-list-item {
|
|
90
130
|
padding-right: 30px;
|
|
91
131
|
}
|
|
@@ -148,6 +188,7 @@
|
|
|
148
188
|
border-color: rgba(119, 119, 119, 0.25);
|
|
149
189
|
}
|
|
150
190
|
.e-dropdownbase .e-list-item {
|
|
191
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
151
192
|
-webkit-tap-highlight-color: transparent;
|
|
152
193
|
background-color: #fff;
|
|
153
194
|
border-bottom: 1px;
|
|
@@ -334,6 +375,8 @@
|
|
|
334
375
|
color: #333;
|
|
335
376
|
}
|
|
336
377
|
|
|
378
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
379
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
337
380
|
@keyframes material-spinner-rotate {
|
|
338
381
|
0% {
|
|
339
382
|
transform: rotate(0);
|
|
@@ -517,6 +560,7 @@
|
|
|
517
560
|
background-color: #fff;
|
|
518
561
|
}
|
|
519
562
|
|
|
563
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
520
564
|
.e-ddl input.e-input::-webkit-contacts-auto-fill-button {
|
|
521
565
|
display: none;
|
|
522
566
|
pointer-events: none;
|
|
@@ -525,6 +569,7 @@
|
|
|
525
569
|
visibility: hidden;
|
|
526
570
|
}
|
|
527
571
|
|
|
572
|
+
/* stylelint-enable property-no-vendor-prefix */
|
|
528
573
|
.e-filter-parent {
|
|
529
574
|
border: none;
|
|
530
575
|
border-top-width: 0;
|
|
@@ -568,6 +613,7 @@
|
|
|
568
613
|
cursor: default;
|
|
569
614
|
}
|
|
570
615
|
|
|
616
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
571
617
|
.e-ddl.e-input-group .e-ddl-hidden,
|
|
572
618
|
.e-ddl.e-float-input .e-ddl-hidden {
|
|
573
619
|
-webkit-appearance: initial;
|
|
@@ -710,6 +756,8 @@ ejs-dropdownlist {
|
|
|
710
756
|
color: #333;
|
|
711
757
|
}
|
|
712
758
|
|
|
759
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
760
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
713
761
|
@keyframes material-spinner-rotate {
|
|
714
762
|
0% {
|
|
715
763
|
transform: rotate(0);
|
|
@@ -727,6 +775,8 @@ ejs-dropdownlist {
|
|
|
727
775
|
}
|
|
728
776
|
}
|
|
729
777
|
/*! TreeView's bootstrap theme wise override definitions and variables */
|
|
778
|
+
/* stylelint-disable */
|
|
779
|
+
/* stylelint-disable */
|
|
730
780
|
.e-ddt .e-ddt-icon::before {
|
|
731
781
|
content: "\e969";
|
|
732
782
|
}
|
|
@@ -1118,6 +1168,9 @@ ejs-dropdownlist {
|
|
|
1118
1168
|
color: #333;
|
|
1119
1169
|
}
|
|
1120
1170
|
|
|
1171
|
+
/* stylelint-disable-line no-empty-source */ /* stylelint-disable-line no-empty-source */
|
|
1172
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1173
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1121
1174
|
@keyframes material-spinner-rotate {
|
|
1122
1175
|
0% {
|
|
1123
1176
|
transform: rotate(0);
|
|
@@ -1464,7 +1517,7 @@ ejs-dropdownlist {
|
|
|
1464
1517
|
border: 0;
|
|
1465
1518
|
font-family: inherit;
|
|
1466
1519
|
font-size: 15px;
|
|
1467
|
-
font-weight:
|
|
1520
|
+
font-weight: normal;
|
|
1468
1521
|
height: 32px;
|
|
1469
1522
|
min-height: 32px;
|
|
1470
1523
|
outline: none;
|
|
@@ -1478,7 +1531,7 @@ ejs-dropdownlist {
|
|
|
1478
1531
|
color: inherit;
|
|
1479
1532
|
font-family: inherit;
|
|
1480
1533
|
font-size: 14px;
|
|
1481
|
-
font-weight:
|
|
1534
|
+
font-weight: normal;
|
|
1482
1535
|
height: 32px;
|
|
1483
1536
|
min-height: 32px;
|
|
1484
1537
|
outline: none;
|
|
@@ -1501,6 +1554,7 @@ ejs-dropdownlist {
|
|
|
1501
1554
|
min-height: 38px;
|
|
1502
1555
|
}
|
|
1503
1556
|
|
|
1557
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1504
1558
|
.e-multi-select-wrapper input[type=text]::-ms-clear {
|
|
1505
1559
|
display: none;
|
|
1506
1560
|
}
|
|
@@ -2141,6 +2195,7 @@ ejs-multiselect {
|
|
|
2141
2195
|
box-sizing: border-box;
|
|
2142
2196
|
}
|
|
2143
2197
|
|
|
2198
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2144
2199
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
2145
2200
|
-webkit-text-fill-color: #333;
|
|
2146
2201
|
color: #333;
|
|
@@ -2269,19 +2324,19 @@ ejs-multiselect {
|
|
|
2269
2324
|
border: 1px solid transparent;
|
|
2270
2325
|
}
|
|
2271
2326
|
|
|
2272
|
-
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
2327
|
+
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2273
2328
|
color: #999;
|
|
2274
2329
|
}
|
|
2275
2330
|
|
|
2276
|
-
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {
|
|
2331
|
+
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2277
2332
|
color: #999;
|
|
2278
2333
|
}
|
|
2279
2334
|
|
|
2280
|
-
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {
|
|
2335
|
+
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2281
2336
|
color: #999;
|
|
2282
2337
|
}
|
|
2283
2338
|
|
|
2284
|
-
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {
|
|
2339
|
+
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2285
2340
|
color: #999;
|
|
2286
2341
|
}
|
|
2287
2342
|
|
|
@@ -2359,6 +2414,7 @@ ejs-multiselect {
|
|
|
2359
2414
|
content: "\e656";
|
|
2360
2415
|
}
|
|
2361
2416
|
|
|
2417
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2362
2418
|
.e-listbox-wrapper,
|
|
2363
2419
|
.e-listbox-container {
|
|
2364
2420
|
-webkit-overflow-scrolling: touch;
|
|
@@ -2377,7 +2433,7 @@ ejs-multiselect {
|
|
|
2377
2433
|
}
|
|
2378
2434
|
.e-listbox-wrapper.e-listboxtool-container .e-list-wrap,
|
|
2379
2435
|
.e-listbox-container.e-listboxtool-container .e-list-wrap {
|
|
2380
|
-
width: 86% !important;
|
|
2436
|
+
width: 86% !important; /* stylelint-disable-line declaration-no-important */
|
|
2381
2437
|
}
|
|
2382
2438
|
.e-listbox-wrapper:focus,
|
|
2383
2439
|
.e-listbox-container:focus {
|
|
@@ -2736,16 +2792,6 @@ ejs-listbox {
|
|
|
2736
2792
|
top: 30%;
|
|
2737
2793
|
}
|
|
2738
2794
|
|
|
2739
|
-
.e-listboxtool-container .e-left {
|
|
2740
|
-
-ms-flex-direction: row-reverse;
|
|
2741
|
-
flex-direction: row-reverse;
|
|
2742
|
-
}
|
|
2743
|
-
|
|
2744
|
-
.e-listboxtool-wrapper .e-left {
|
|
2745
|
-
-ms-flex-direction: column-reverse;
|
|
2746
|
-
flex-direction: column-reverse;
|
|
2747
|
-
}
|
|
2748
|
-
|
|
2749
2795
|
.e-rtl.e-listboxtool-wrapper.e-right .e-listbox-tool,
|
|
2750
2796
|
.e-rtl.e-listboxtool-container.e-right .e-listbox-tool {
|
|
2751
2797
|
margin-right: 15px;
|
|
@@ -2759,7 +2805,7 @@ ejs-listbox {
|
|
|
2759
2805
|
.e-listbox-wrapper.e-bigger.e-listboxtool-container .e-list-wrap,
|
|
2760
2806
|
.e-bigger .e-listbox-container.e-listboxtool-container .e-list-wrap,
|
|
2761
2807
|
.e-listbox-container.e-bigger.e-listboxtool-container .e-list-wrap {
|
|
2762
|
-
width: 85% !important;
|
|
2808
|
+
width: 85% !important; /* stylelint-disable-line declaration-no-important */
|
|
2763
2809
|
}
|
|
2764
2810
|
.e-bigger .e-listbox-wrapper .e-list-item,
|
|
2765
2811
|
.e-listbox-wrapper.e-bigger .e-list-item,
|
|
@@ -2848,30 +2894,16 @@ ejs-listbox {
|
|
|
2848
2894
|
.e-listbox-container.e-bigger .e-list-header .e-text {
|
|
2849
2895
|
font-size: 15px;
|
|
2850
2896
|
}
|
|
2851
|
-
.e-listbox-wrapper.e-filter-list .e-list-parent
|
|
2852
|
-
|
|
2853
|
-
}
|
|
2854
|
-
|
|
2855
|
-
.e-listbox-container.e-filter-list .e-list-wrap {
|
|
2856
|
-
height: calc(100% - 52px) !important;
|
|
2857
|
-
}
|
|
2858
|
-
|
|
2859
|
-
.e-small .e-listbox-wrapper.e-filter-list .e-list-parent {
|
|
2897
|
+
.e-small .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
2898
|
+
.e-small .e-listbox-container.e-filter-list .e-list-parent {
|
|
2860
2899
|
height: calc(100% - 46px);
|
|
2861
2900
|
}
|
|
2862
2901
|
|
|
2863
|
-
.e-
|
|
2864
|
-
|
|
2865
|
-
}
|
|
2866
|
-
|
|
2867
|
-
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent {
|
|
2902
|
+
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
2903
|
+
.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
2868
2904
|
height: calc(100% - 58px);
|
|
2869
2905
|
}
|
|
2870
2906
|
|
|
2871
|
-
.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
2872
|
-
height: calc(100% - 58px) !important;
|
|
2873
|
-
}
|
|
2874
|
-
|
|
2875
2907
|
.e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
2876
2908
|
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
2877
2909
|
height: calc(100% - 106px);
|
|
@@ -2882,14 +2914,11 @@ ejs-listbox {
|
|
|
2882
2914
|
height: calc(100% - 48px);
|
|
2883
2915
|
}
|
|
2884
2916
|
|
|
2885
|
-
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent
|
|
2917
|
+
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
2918
|
+
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
2886
2919
|
height: calc(100% - 54px);
|
|
2887
2920
|
}
|
|
2888
2921
|
|
|
2889
|
-
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
2890
|
-
height: calc(100% - 54px) !important;
|
|
2891
|
-
}
|
|
2892
|
-
|
|
2893
2922
|
.e-listbox-wrapper,
|
|
2894
2923
|
.e-listbox-container:not(.e-listboxtool-container):not(.e-sortableclone),
|
|
2895
2924
|
.e-listboxtool-container.e-listbox-container .e-ul {
|
|
@@ -2909,6 +2938,11 @@ ejs-listbox {
|
|
|
2909
2938
|
font-size: 14px;
|
|
2910
2939
|
}
|
|
2911
2940
|
|
|
2941
|
+
.e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
2942
|
+
.e-listbox-container.e-filter-list .e-list-parent {
|
|
2943
|
+
height: calc(100% - 52px);
|
|
2944
|
+
}
|
|
2945
|
+
|
|
2912
2946
|
.e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
2913
2947
|
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
2914
2948
|
height: calc(100% - 92px);
|
|
@@ -3144,4 +3178,22 @@ ejs-listbox {
|
|
|
3144
3178
|
.e-listbox-container.e-rtl.e-list-template .e-list-wrapper.e-list-badge:not(.e-list-avatar) {
|
|
3145
3179
|
padding-left: 3.9285em;
|
|
3146
3180
|
padding-right: 1.0714em;
|
|
3181
|
+
}
|
|
3182
|
+
|
|
3183
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
3184
|
+
@keyframes material-spinner-rotate {
|
|
3185
|
+
0% {
|
|
3186
|
+
transform: rotate(0);
|
|
3187
|
+
}
|
|
3188
|
+
100% {
|
|
3189
|
+
transform: rotate(360deg);
|
|
3190
|
+
}
|
|
3191
|
+
}
|
|
3192
|
+
@keyframes fabric-spinner-rotate {
|
|
3193
|
+
0% {
|
|
3194
|
+
transform: rotate(0);
|
|
3195
|
+
}
|
|
3196
|
+
100% {
|
|
3197
|
+
transform: rotate(360deg);
|
|
3198
|
+
}
|
|
3147
3199
|
}
|
package/styles/bootstrap.scss
CHANGED
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);
|
|
@@ -561,6 +604,7 @@
|
|
|
561
604
|
background-color: #fff;
|
|
562
605
|
}
|
|
563
606
|
|
|
607
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
564
608
|
.e-ddl input.e-input::-webkit-contacts-auto-fill-button {
|
|
565
609
|
display: none;
|
|
566
610
|
pointer-events: none;
|
|
@@ -569,6 +613,7 @@
|
|
|
569
613
|
visibility: hidden;
|
|
570
614
|
}
|
|
571
615
|
|
|
616
|
+
/* stylelint-enable property-no-vendor-prefix */
|
|
572
617
|
.e-filter-parent {
|
|
573
618
|
border: rgba(0, 0, 0, 0.12);
|
|
574
619
|
border-top-width: 0;
|
|
@@ -608,6 +653,7 @@
|
|
|
608
653
|
cursor: default;
|
|
609
654
|
}
|
|
610
655
|
|
|
656
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
611
657
|
.e-ddl.e-input-group .e-ddl-hidden,
|
|
612
658
|
.e-ddl.e-float-input .e-ddl-hidden {
|
|
613
659
|
-webkit-appearance: initial;
|
|
@@ -750,6 +796,8 @@ ejs-dropdownlist {
|
|
|
750
796
|
color: #fff;
|
|
751
797
|
}
|
|
752
798
|
|
|
799
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
800
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
753
801
|
@keyframes material-spinner-rotate {
|
|
754
802
|
0% {
|
|
755
803
|
transform: rotate(0);
|
|
@@ -766,6 +814,8 @@ ejs-dropdownlist {
|
|
|
766
814
|
transform: rotate(360deg);
|
|
767
815
|
}
|
|
768
816
|
}
|
|
817
|
+
/* stylelint-disable */
|
|
818
|
+
/* stylelint-disable */
|
|
769
819
|
.e-ddt .e-ddt-icon::before {
|
|
770
820
|
content: "\e744";
|
|
771
821
|
}
|
|
@@ -1189,6 +1239,7 @@ ejs-dropdownlist {
|
|
|
1189
1239
|
font-size: 10px;
|
|
1190
1240
|
}
|
|
1191
1241
|
|
|
1242
|
+
/* stylelint-disable-line no-empty-source */
|
|
1192
1243
|
.e-input-group.e-ddl .e-control.e-autocomplete ~ .e-ddl-icon {
|
|
1193
1244
|
font-size: 8px;
|
|
1194
1245
|
}
|
|
@@ -1197,6 +1248,9 @@ ejs-dropdownlist {
|
|
|
1197
1248
|
font-size: 10px;
|
|
1198
1249
|
}
|
|
1199
1250
|
|
|
1251
|
+
/* stylelint-disable-line no-empty-source */
|
|
1252
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1253
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1200
1254
|
@keyframes material-spinner-rotate {
|
|
1201
1255
|
0% {
|
|
1202
1256
|
transform: rotate(0);
|
|
@@ -1612,7 +1666,7 @@ ejs-dropdownlist {
|
|
|
1612
1666
|
border: 0;
|
|
1613
1667
|
font-family: inherit;
|
|
1614
1668
|
font-size: 14px;
|
|
1615
|
-
font-weight:
|
|
1669
|
+
font-weight: normal;
|
|
1616
1670
|
height: 29px;
|
|
1617
1671
|
min-height: 29px;
|
|
1618
1672
|
outline: none;
|
|
@@ -1626,7 +1680,7 @@ ejs-dropdownlist {
|
|
|
1626
1680
|
color: inherit;
|
|
1627
1681
|
font-family: inherit;
|
|
1628
1682
|
font-size: 14px;
|
|
1629
|
-
font-weight:
|
|
1683
|
+
font-weight: normal;
|
|
1630
1684
|
height: 29px;
|
|
1631
1685
|
min-height: 29px;
|
|
1632
1686
|
outline: none;
|
|
@@ -1650,6 +1704,7 @@ ejs-dropdownlist {
|
|
|
1650
1704
|
min-height: 36px;
|
|
1651
1705
|
}
|
|
1652
1706
|
|
|
1707
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1653
1708
|
.e-multi-select-wrapper input[type=text]::-ms-clear {
|
|
1654
1709
|
display: none;
|
|
1655
1710
|
}
|
|
@@ -2302,6 +2357,7 @@ ejs-multiselect {
|
|
|
2302
2357
|
box-sizing: border-box;
|
|
2303
2358
|
}
|
|
2304
2359
|
|
|
2360
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2305
2361
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
2306
2362
|
-webkit-text-fill-color: #fff;
|
|
2307
2363
|
color: #fff;
|
|
@@ -2434,19 +2490,19 @@ ejs-multiselect {
|
|
|
2434
2490
|
border: 1px solid transparent;
|
|
2435
2491
|
}
|
|
2436
2492
|
|
|
2437
|
-
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
2493
|
+
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2438
2494
|
color: #6c757d;
|
|
2439
2495
|
}
|
|
2440
2496
|
|
|
2441
|
-
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {
|
|
2497
|
+
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2442
2498
|
color: #6c757d;
|
|
2443
2499
|
}
|
|
2444
2500
|
|
|
2445
|
-
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {
|
|
2501
|
+
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2446
2502
|
color: #6c757d;
|
|
2447
2503
|
}
|
|
2448
2504
|
|
|
2449
|
-
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {
|
|
2505
|
+
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2450
2506
|
color: #6c757d;
|
|
2451
2507
|
}
|
|
2452
2508
|
|
|
@@ -2542,6 +2598,7 @@ ejs-multiselect {
|
|
|
2542
2598
|
content: "\e7ba";
|
|
2543
2599
|
}
|
|
2544
2600
|
|
|
2601
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2545
2602
|
.e-listbox-wrapper,
|
|
2546
2603
|
.e-listbox-container {
|
|
2547
2604
|
-webkit-overflow-scrolling: touch;
|
|
@@ -2560,7 +2617,7 @@ ejs-multiselect {
|
|
|
2560
2617
|
}
|
|
2561
2618
|
.e-listbox-wrapper.e-listboxtool-container .e-list-wrap,
|
|
2562
2619
|
.e-listbox-container.e-listboxtool-container .e-list-wrap {
|
|
2563
|
-
width: 86% !important;
|
|
2620
|
+
width: 86% !important; /* stylelint-disable-line declaration-no-important */
|
|
2564
2621
|
}
|
|
2565
2622
|
.e-listbox-wrapper:focus,
|
|
2566
2623
|
.e-listbox-container:focus {
|
|
@@ -2919,16 +2976,6 @@ ejs-listbox {
|
|
|
2919
2976
|
top: 30%;
|
|
2920
2977
|
}
|
|
2921
2978
|
|
|
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
2979
|
.e-rtl.e-listboxtool-wrapper.e-right .e-listbox-tool,
|
|
2933
2980
|
.e-rtl.e-listboxtool-container.e-right .e-listbox-tool {
|
|
2934
2981
|
margin-right: 15px;
|
|
@@ -2948,7 +2995,7 @@ ejs-listbox {
|
|
|
2948
2995
|
.e-listbox-wrapper.e-bigger.e-listboxtool-container .e-list-wrap,
|
|
2949
2996
|
.e-bigger .e-listbox-container.e-listboxtool-container .e-list-wrap,
|
|
2950
2997
|
.e-listbox-container.e-bigger.e-listboxtool-container .e-list-wrap {
|
|
2951
|
-
width: 85% !important;
|
|
2998
|
+
width: 85% !important; /* stylelint-disable-line declaration-no-important */
|
|
2952
2999
|
}
|
|
2953
3000
|
.e-bigger .e-listbox-wrapper .e-list-item,
|
|
2954
3001
|
.e-listbox-wrapper.e-bigger .e-list-item,
|
|
@@ -3075,30 +3122,16 @@ ejs-listbox {
|
|
|
3075
3122
|
margin: 0 0 0 12px;
|
|
3076
3123
|
}
|
|
3077
3124
|
|
|
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 {
|
|
3125
|
+
.e-small .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
3126
|
+
.e-small .e-listbox-container.e-filter-list .e-list-parent {
|
|
3087
3127
|
height: calc(100% - 32px);
|
|
3088
3128
|
}
|
|
3089
3129
|
|
|
3090
|
-
.e-
|
|
3091
|
-
|
|
3092
|
-
}
|
|
3093
|
-
|
|
3094
|
-
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent {
|
|
3130
|
+
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
3131
|
+
.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
3095
3132
|
height: calc(100% - 46px);
|
|
3096
3133
|
}
|
|
3097
3134
|
|
|
3098
|
-
.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
3099
|
-
height: calc(100% - 46px) !important;
|
|
3100
|
-
}
|
|
3101
|
-
|
|
3102
3135
|
.e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
3103
3136
|
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
3104
3137
|
height: calc(100% - 96px);
|
|
@@ -3109,14 +3142,11 @@ ejs-listbox {
|
|
|
3109
3142
|
height: calc(100% - 50px);
|
|
3110
3143
|
}
|
|
3111
3144
|
|
|
3112
|
-
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent
|
|
3145
|
+
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
3146
|
+
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
3113
3147
|
height: calc(100% - 44px);
|
|
3114
3148
|
}
|
|
3115
3149
|
|
|
3116
|
-
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
3117
|
-
height: calc(100% - 44px) !important;
|
|
3118
|
-
}
|
|
3119
|
-
|
|
3120
3150
|
.e-listbox-wrapper,
|
|
3121
3151
|
.e-listbox-container:not(.e-listboxtool-container):not(.e-sortableclone),
|
|
3122
3152
|
.e-listboxtool-container.e-listbox-container .e-ul {
|
|
@@ -3136,6 +3166,11 @@ ejs-listbox {
|
|
|
3136
3166
|
font-size: 16px;
|
|
3137
3167
|
}
|
|
3138
3168
|
|
|
3169
|
+
.e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
3170
|
+
.e-listbox-container.e-filter-list .e-list-parent {
|
|
3171
|
+
height: calc(100% - 39px);
|
|
3172
|
+
}
|
|
3173
|
+
|
|
3139
3174
|
.e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
3140
3175
|
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
3141
3176
|
height: calc(100% - 79px);
|
|
@@ -3371,4 +3406,22 @@ ejs-listbox {
|
|
|
3371
3406
|
.e-listbox-container.e-rtl.e-list-template .e-list-wrapper.e-list-badge:not(.e-list-avatar) {
|
|
3372
3407
|
padding-left: 3.9285em;
|
|
3373
3408
|
padding-right: 1.0714em;
|
|
3409
|
+
}
|
|
3410
|
+
|
|
3411
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
3412
|
+
@keyframes material-spinner-rotate {
|
|
3413
|
+
0% {
|
|
3414
|
+
transform: rotate(0);
|
|
3415
|
+
}
|
|
3416
|
+
100% {
|
|
3417
|
+
transform: rotate(360deg);
|
|
3418
|
+
}
|
|
3419
|
+
}
|
|
3420
|
+
@keyframes fabric-spinner-rotate {
|
|
3421
|
+
0% {
|
|
3422
|
+
transform: rotate(0);
|
|
3423
|
+
}
|
|
3424
|
+
100% {
|
|
3425
|
+
transform: rotate(360deg);
|
|
3426
|
+
}
|
|
3374
3427
|
}
|
package/styles/bootstrap4.scss
CHANGED