@syncfusion/ej2-dropdowns 20.2.48 → 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 +1437 -47
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +1463 -51
- 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 +6 -2
- package/src/combo-box/combo-box.js +1 -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 +33 -21
- 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-model.d.ts +1 -1
- package/src/multi-select/multi-select.d.ts +1 -0
- package/src/multi-select/multi-select.js +35 -9
- 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
|
@@ -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: #a4a4a4;
|
|
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: #6e6e6e;
|
|
92
|
+
border: 0;
|
|
93
|
+
box-shadow: 0 2px 3px 1px 0 6px 12px rgba(0, 0, 0, 0.5);
|
|
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: #2a2a2a;
|
|
107
|
+
border-radius: 2px;
|
|
108
|
+
border: none;
|
|
109
|
+
color: #0070f0;
|
|
110
|
+
cursor: default;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.e-mention .e-mention-chip::selection {
|
|
114
|
+
color: #fff;
|
|
115
|
+
background: #0070f0;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.e-mention.e-editable-element {
|
|
119
|
+
border: 2px solid #414141;
|
|
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: #414141;
|
|
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: #2a2a2a;
|
|
153
194
|
border-bottom: 1px;
|
|
@@ -334,6 +375,8 @@
|
|
|
334
375
|
color: #f0f0f0;
|
|
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: #6e6e6e;
|
|
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: #414141;
|
|
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: #fff;
|
|
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);
|
|
@@ -726,6 +774,8 @@ ejs-dropdownlist {
|
|
|
726
774
|
transform: rotate(360deg);
|
|
727
775
|
}
|
|
728
776
|
}
|
|
777
|
+
/* stylelint-disable */
|
|
778
|
+
/* stylelint-disable */
|
|
729
779
|
.e-ddt .e-ddt-icon::before {
|
|
730
780
|
content: "\e969";
|
|
731
781
|
}
|
|
@@ -1117,6 +1167,9 @@ ejs-dropdownlist {
|
|
|
1117
1167
|
color: #f0f0f0;
|
|
1118
1168
|
}
|
|
1119
1169
|
|
|
1170
|
+
/* stylelint-disable-line no-empty-source */ /* stylelint-disable-line no-empty-source */
|
|
1171
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1172
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1120
1173
|
@keyframes material-spinner-rotate {
|
|
1121
1174
|
0% {
|
|
1122
1175
|
transform: rotate(0);
|
|
@@ -1465,7 +1518,7 @@ ejs-dropdownlist {
|
|
|
1465
1518
|
border: 0;
|
|
1466
1519
|
font-family: inherit;
|
|
1467
1520
|
font-size: 15px;
|
|
1468
|
-
font-weight:
|
|
1521
|
+
font-weight: normal;
|
|
1469
1522
|
height: 32px;
|
|
1470
1523
|
min-height: 32px;
|
|
1471
1524
|
outline: none;
|
|
@@ -1479,7 +1532,7 @@ ejs-dropdownlist {
|
|
|
1479
1532
|
color: inherit;
|
|
1480
1533
|
font-family: inherit;
|
|
1481
1534
|
font-size: 14px;
|
|
1482
|
-
font-weight:
|
|
1535
|
+
font-weight: normal;
|
|
1483
1536
|
height: 32px;
|
|
1484
1537
|
min-height: 32px;
|
|
1485
1538
|
outline: none;
|
|
@@ -1502,6 +1555,7 @@ ejs-dropdownlist {
|
|
|
1502
1555
|
min-height: 38px;
|
|
1503
1556
|
}
|
|
1504
1557
|
|
|
1558
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1505
1559
|
.e-multi-select-wrapper input[type=text]::-ms-clear {
|
|
1506
1560
|
display: none;
|
|
1507
1561
|
}
|
|
@@ -2142,6 +2196,7 @@ ejs-multiselect {
|
|
|
2142
2196
|
box-sizing: border-box;
|
|
2143
2197
|
}
|
|
2144
2198
|
|
|
2199
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2145
2200
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
2146
2201
|
-webkit-text-fill-color: #f0f0f0;
|
|
2147
2202
|
color: #f0f0f0;
|
|
@@ -2270,19 +2325,19 @@ ejs-multiselect {
|
|
|
2270
2325
|
border: 1px solid transparent;
|
|
2271
2326
|
}
|
|
2272
2327
|
|
|
2273
|
-
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
2328
|
+
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2274
2329
|
color: #767676;
|
|
2275
2330
|
}
|
|
2276
2331
|
|
|
2277
|
-
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {
|
|
2332
|
+
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2278
2333
|
color: #767676;
|
|
2279
2334
|
}
|
|
2280
2335
|
|
|
2281
|
-
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {
|
|
2336
|
+
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2282
2337
|
color: #767676;
|
|
2283
2338
|
}
|
|
2284
2339
|
|
|
2285
|
-
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {
|
|
2340
|
+
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2286
2341
|
color: #767676;
|
|
2287
2342
|
}
|
|
2288
2343
|
|
|
@@ -2360,6 +2415,7 @@ ejs-multiselect {
|
|
|
2360
2415
|
content: "\e656";
|
|
2361
2416
|
}
|
|
2362
2417
|
|
|
2418
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2363
2419
|
.e-listbox-wrapper,
|
|
2364
2420
|
.e-listbox-container {
|
|
2365
2421
|
-webkit-overflow-scrolling: touch;
|
|
@@ -2378,7 +2434,7 @@ ejs-multiselect {
|
|
|
2378
2434
|
}
|
|
2379
2435
|
.e-listbox-wrapper.e-listboxtool-container .e-list-wrap,
|
|
2380
2436
|
.e-listbox-container.e-listboxtool-container .e-list-wrap {
|
|
2381
|
-
width: 86% !important;
|
|
2437
|
+
width: 86% !important; /* stylelint-disable-line declaration-no-important */
|
|
2382
2438
|
}
|
|
2383
2439
|
.e-listbox-wrapper:focus,
|
|
2384
2440
|
.e-listbox-container:focus {
|
|
@@ -2737,16 +2793,6 @@ ejs-listbox {
|
|
|
2737
2793
|
top: 30%;
|
|
2738
2794
|
}
|
|
2739
2795
|
|
|
2740
|
-
.e-listboxtool-container .e-left {
|
|
2741
|
-
-ms-flex-direction: row-reverse;
|
|
2742
|
-
flex-direction: row-reverse;
|
|
2743
|
-
}
|
|
2744
|
-
|
|
2745
|
-
.e-listboxtool-wrapper .e-left {
|
|
2746
|
-
-ms-flex-direction: column-reverse;
|
|
2747
|
-
flex-direction: column-reverse;
|
|
2748
|
-
}
|
|
2749
|
-
|
|
2750
2796
|
.e-rtl.e-listboxtool-wrapper.e-right .e-listbox-tool,
|
|
2751
2797
|
.e-rtl.e-listboxtool-container.e-right .e-listbox-tool {
|
|
2752
2798
|
margin-right: 15px;
|
|
@@ -2760,7 +2806,7 @@ ejs-listbox {
|
|
|
2760
2806
|
.e-listbox-wrapper.e-bigger.e-listboxtool-container .e-list-wrap,
|
|
2761
2807
|
.e-bigger .e-listbox-container.e-listboxtool-container .e-list-wrap,
|
|
2762
2808
|
.e-listbox-container.e-bigger.e-listboxtool-container .e-list-wrap {
|
|
2763
|
-
width: 85% !important;
|
|
2809
|
+
width: 85% !important; /* stylelint-disable-line declaration-no-important */
|
|
2764
2810
|
}
|
|
2765
2811
|
.e-bigger .e-listbox-wrapper .e-list-item,
|
|
2766
2812
|
.e-listbox-wrapper.e-bigger .e-list-item,
|
|
@@ -2849,30 +2895,16 @@ ejs-listbox {
|
|
|
2849
2895
|
.e-listbox-container.e-bigger .e-list-header .e-text {
|
|
2850
2896
|
font-size: 15px;
|
|
2851
2897
|
}
|
|
2852
|
-
.e-listbox-wrapper.e-filter-list .e-list-parent
|
|
2853
|
-
|
|
2854
|
-
}
|
|
2855
|
-
|
|
2856
|
-
.e-listbox-container.e-filter-list .e-list-wrap {
|
|
2857
|
-
height: calc(100% - 52px) !important;
|
|
2858
|
-
}
|
|
2859
|
-
|
|
2860
|
-
.e-small .e-listbox-wrapper.e-filter-list .e-list-parent {
|
|
2898
|
+
.e-small .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
2899
|
+
.e-small .e-listbox-container.e-filter-list .e-list-parent {
|
|
2861
2900
|
height: calc(100% - 46px);
|
|
2862
2901
|
}
|
|
2863
2902
|
|
|
2864
|
-
.e-
|
|
2865
|
-
|
|
2866
|
-
}
|
|
2867
|
-
|
|
2868
|
-
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent {
|
|
2903
|
+
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
2904
|
+
.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
2869
2905
|
height: calc(100% - 58px);
|
|
2870
2906
|
}
|
|
2871
2907
|
|
|
2872
|
-
.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
2873
|
-
height: calc(100% - 58px) !important;
|
|
2874
|
-
}
|
|
2875
|
-
|
|
2876
2908
|
.e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
2877
2909
|
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
2878
2910
|
height: calc(100% - 106px);
|
|
@@ -2883,14 +2915,11 @@ ejs-listbox {
|
|
|
2883
2915
|
height: calc(100% - 48px);
|
|
2884
2916
|
}
|
|
2885
2917
|
|
|
2886
|
-
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent
|
|
2918
|
+
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
2919
|
+
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
2887
2920
|
height: calc(100% - 54px);
|
|
2888
2921
|
}
|
|
2889
2922
|
|
|
2890
|
-
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
2891
|
-
height: calc(100% - 54px) !important;
|
|
2892
|
-
}
|
|
2893
|
-
|
|
2894
2923
|
.e-listbox-wrapper,
|
|
2895
2924
|
.e-listbox-container:not(.e-listboxtool-container):not(.e-sortableclone),
|
|
2896
2925
|
.e-listboxtool-container.e-listbox-container .e-ul {
|
|
@@ -2910,6 +2939,11 @@ ejs-listbox {
|
|
|
2910
2939
|
font-size: 14px;
|
|
2911
2940
|
}
|
|
2912
2941
|
|
|
2942
|
+
.e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
2943
|
+
.e-listbox-container.e-filter-list .e-list-parent {
|
|
2944
|
+
height: calc(100% - 52px);
|
|
2945
|
+
}
|
|
2946
|
+
|
|
2913
2947
|
.e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
2914
2948
|
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
2915
2949
|
height: calc(100% - 92px);
|
|
@@ -3145,4 +3179,22 @@ ejs-listbox {
|
|
|
3145
3179
|
.e-listbox-container.e-rtl.e-list-template .e-list-wrapper.e-list-badge:not(.e-list-avatar) {
|
|
3146
3180
|
padding-left: 3.9285em;
|
|
3147
3181
|
padding-right: 1.0714em;
|
|
3182
|
+
}
|
|
3183
|
+
|
|
3184
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
3185
|
+
@keyframes material-spinner-rotate {
|
|
3186
|
+
0% {
|
|
3187
|
+
transform: rotate(0);
|
|
3188
|
+
}
|
|
3189
|
+
100% {
|
|
3190
|
+
transform: rotate(360deg);
|
|
3191
|
+
}
|
|
3192
|
+
}
|
|
3193
|
+
@keyframes fabric-spinner-rotate {
|
|
3194
|
+
0% {
|
|
3195
|
+
transform: rotate(0);
|
|
3196
|
+
}
|
|
3197
|
+
100% {
|
|
3198
|
+
transform: rotate(360deg);
|
|
3199
|
+
}
|
|
3148
3200
|
}
|
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