@syncfusion/ej2-dropdowns 20.2.50 → 20.3.48
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 +18 -24
- 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 +1424 -51
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +1450 -55
- 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 +8 -2
- 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 +452 -0
- package/src/mention/mention.js +1383 -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 +20 -11
- 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/material-dark.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: rgba(255, 255, 255, 0.7);
|
|
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: rgba(255, 255, 255, 0.18);
|
|
92
|
+
border: 0;
|
|
93
|
+
box-shadow: 0 2px 3px 1px 0 2px 3px 1px rgba(0, 0, 0, 0.21);
|
|
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: #424242;
|
|
107
|
+
border-radius: 2px;
|
|
108
|
+
border: none;
|
|
109
|
+
color: #00b0ff;
|
|
110
|
+
cursor: default;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.e-mention .e-mention-chip::selection {
|
|
114
|
+
color: #000;
|
|
115
|
+
background: #00b0ff;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.e-mention.e-editable-element {
|
|
119
|
+
border: 2px solid transparent;
|
|
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: 2em;
|
|
91
131
|
}
|
|
@@ -148,6 +188,7 @@
|
|
|
148
188
|
border-color: transparent;
|
|
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: #424242;
|
|
153
194
|
border-bottom: 0;
|
|
@@ -334,12 +375,14 @@
|
|
|
334
375
|
color: #fff;
|
|
335
376
|
}
|
|
336
377
|
|
|
378
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
337
379
|
@keyframes e-input-ripple {
|
|
338
380
|
100% {
|
|
339
381
|
opacity: 0;
|
|
340
382
|
transform: scale(4);
|
|
341
383
|
}
|
|
342
384
|
}
|
|
385
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
343
386
|
@keyframes material-spinner-rotate {
|
|
344
387
|
0% {
|
|
345
388
|
transform: rotate(0deg);
|
|
@@ -524,6 +567,7 @@
|
|
|
524
567
|
background-color: #f5f5f5;
|
|
525
568
|
}
|
|
526
569
|
|
|
570
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
527
571
|
.e-ddl input.e-input::-webkit-contacts-auto-fill-button {
|
|
528
572
|
display: none;
|
|
529
573
|
pointer-events: none;
|
|
@@ -532,6 +576,7 @@
|
|
|
532
576
|
visibility: hidden;
|
|
533
577
|
}
|
|
534
578
|
|
|
579
|
+
/* stylelint-enable property-no-vendor-prefix */
|
|
535
580
|
.e-filter-parent {
|
|
536
581
|
border: 0;
|
|
537
582
|
border-top-width: 0;
|
|
@@ -574,6 +619,7 @@
|
|
|
574
619
|
cursor: default;
|
|
575
620
|
}
|
|
576
621
|
|
|
622
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
577
623
|
.e-ddl.e-input-group .e-ddl-hidden,
|
|
578
624
|
.e-ddl.e-float-input .e-ddl-hidden {
|
|
579
625
|
-webkit-appearance: initial;
|
|
@@ -716,12 +762,14 @@ ejs-dropdownlist {
|
|
|
716
762
|
color: #00b0ff;
|
|
717
763
|
}
|
|
718
764
|
|
|
765
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
719
766
|
@keyframes e-input-ripple {
|
|
720
767
|
100% {
|
|
721
768
|
opacity: 0;
|
|
722
769
|
transform: scale(4);
|
|
723
770
|
}
|
|
724
771
|
}
|
|
772
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
725
773
|
@keyframes material-spinner-rotate {
|
|
726
774
|
0% {
|
|
727
775
|
transform: rotate(0deg);
|
|
@@ -738,6 +786,8 @@ ejs-dropdownlist {
|
|
|
738
786
|
transform: rotate(360deg);
|
|
739
787
|
}
|
|
740
788
|
}
|
|
789
|
+
/* stylelint-disable */
|
|
790
|
+
/* stylelint-disable */
|
|
741
791
|
.e-ddt .e-ddt-icon::before {
|
|
742
792
|
content: "\e969";
|
|
743
793
|
}
|
|
@@ -1446,12 +1496,15 @@ ejs-dropdownlist {
|
|
|
1446
1496
|
color: #fff;
|
|
1447
1497
|
}
|
|
1448
1498
|
|
|
1499
|
+
/* stylelint-disable-line no-empty-source */ /* stylelint-disable-line no-empty-source */
|
|
1500
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1449
1501
|
@keyframes e-input-ripple {
|
|
1450
1502
|
100% {
|
|
1451
1503
|
opacity: 0;
|
|
1452
1504
|
transform: scale(4);
|
|
1453
1505
|
}
|
|
1454
1506
|
}
|
|
1507
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1455
1508
|
@keyframes material-spinner-rotate {
|
|
1456
1509
|
0% {
|
|
1457
1510
|
transform: rotate(0deg);
|
|
@@ -2333,7 +2386,7 @@ ejs-dropdownlist {
|
|
|
2333
2386
|
border: 0;
|
|
2334
2387
|
font-family: inherit;
|
|
2335
2388
|
font-size: 13px;
|
|
2336
|
-
font-weight:
|
|
2389
|
+
font-weight: normal;
|
|
2337
2390
|
height: 28px;
|
|
2338
2391
|
min-height: 28px;
|
|
2339
2392
|
outline: none;
|
|
@@ -2347,7 +2400,7 @@ ejs-dropdownlist {
|
|
|
2347
2400
|
color: inherit;
|
|
2348
2401
|
font-family: inherit;
|
|
2349
2402
|
font-size: 14px;
|
|
2350
|
-
font-weight:
|
|
2403
|
+
font-weight: normal;
|
|
2351
2404
|
height: 28px;
|
|
2352
2405
|
min-height: 28px;
|
|
2353
2406
|
outline: none;
|
|
@@ -2370,6 +2423,7 @@ ejs-dropdownlist {
|
|
|
2370
2423
|
min-height: 34px;
|
|
2371
2424
|
}
|
|
2372
2425
|
|
|
2426
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2373
2427
|
.e-multi-select-wrapper input[type=text]::-ms-clear {
|
|
2374
2428
|
display: none;
|
|
2375
2429
|
}
|
|
@@ -3507,6 +3561,7 @@ ejs-multiselect {
|
|
|
3507
3561
|
box-sizing: border-box;
|
|
3508
3562
|
}
|
|
3509
3563
|
|
|
3564
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
3510
3565
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
3511
3566
|
-webkit-text-fill-color: #fff;
|
|
3512
3567
|
color: #fff;
|
|
@@ -3635,19 +3690,19 @@ ejs-multiselect {
|
|
|
3635
3690
|
border: 1px solid transparent;
|
|
3636
3691
|
}
|
|
3637
3692
|
|
|
3638
|
-
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
3693
|
+
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
3639
3694
|
color: rgba(255, 255, 255, 0.42);
|
|
3640
3695
|
}
|
|
3641
3696
|
|
|
3642
|
-
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {
|
|
3697
|
+
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
3643
3698
|
color: rgba(255, 255, 255, 0.42);
|
|
3644
3699
|
}
|
|
3645
3700
|
|
|
3646
|
-
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {
|
|
3701
|
+
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
3647
3702
|
color: rgba(255, 255, 255, 0.42);
|
|
3648
3703
|
}
|
|
3649
3704
|
|
|
3650
|
-
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {
|
|
3705
|
+
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
3651
3706
|
color: rgba(255, 255, 255, 0.42);
|
|
3652
3707
|
}
|
|
3653
3708
|
|
|
@@ -3826,6 +3881,7 @@ ejs-multiselect {
|
|
|
3826
3881
|
content: "\e656";
|
|
3827
3882
|
}
|
|
3828
3883
|
|
|
3884
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
3829
3885
|
.e-listbox-wrapper,
|
|
3830
3886
|
.e-listbox-container {
|
|
3831
3887
|
-webkit-overflow-scrolling: touch;
|
|
@@ -3844,7 +3900,7 @@ ejs-multiselect {
|
|
|
3844
3900
|
}
|
|
3845
3901
|
.e-listbox-wrapper.e-listboxtool-container .e-list-wrap,
|
|
3846
3902
|
.e-listbox-container.e-listboxtool-container .e-list-wrap {
|
|
3847
|
-
width: 86% !important;
|
|
3903
|
+
width: 86% !important; /* stylelint-disable-line declaration-no-important */
|
|
3848
3904
|
}
|
|
3849
3905
|
.e-listbox-wrapper:focus,
|
|
3850
3906
|
.e-listbox-container:focus {
|
|
@@ -4203,16 +4259,6 @@ ejs-listbox {
|
|
|
4203
4259
|
top: 30%;
|
|
4204
4260
|
}
|
|
4205
4261
|
|
|
4206
|
-
.e-listboxtool-container .e-left {
|
|
4207
|
-
-ms-flex-direction: row-reverse;
|
|
4208
|
-
flex-direction: row-reverse;
|
|
4209
|
-
}
|
|
4210
|
-
|
|
4211
|
-
.e-listboxtool-wrapper .e-left {
|
|
4212
|
-
-ms-flex-direction: column-reverse;
|
|
4213
|
-
flex-direction: column-reverse;
|
|
4214
|
-
}
|
|
4215
|
-
|
|
4216
4262
|
.e-rtl.e-listboxtool-wrapper.e-right .e-listbox-tool,
|
|
4217
4263
|
.e-rtl.e-listboxtool-container.e-right .e-listbox-tool {
|
|
4218
4264
|
margin-right: 15px;
|
|
@@ -4226,7 +4272,7 @@ ejs-listbox {
|
|
|
4226
4272
|
.e-listbox-wrapper.e-bigger.e-listboxtool-container .e-list-wrap,
|
|
4227
4273
|
.e-bigger .e-listbox-container.e-listboxtool-container .e-list-wrap,
|
|
4228
4274
|
.e-listbox-container.e-bigger.e-listboxtool-container .e-list-wrap {
|
|
4229
|
-
width: 85% !important;
|
|
4275
|
+
width: 85% !important; /* stylelint-disable-line declaration-no-important */
|
|
4230
4276
|
}
|
|
4231
4277
|
.e-bigger .e-listbox-wrapper .e-list-item,
|
|
4232
4278
|
.e-listbox-wrapper.e-bigger .e-list-item,
|
|
@@ -4315,30 +4361,16 @@ ejs-listbox {
|
|
|
4315
4361
|
.e-listbox-container.e-bigger .e-list-header .e-text {
|
|
4316
4362
|
font-size: 20px;
|
|
4317
4363
|
}
|
|
4318
|
-
.e-listbox-wrapper.e-filter-list .e-list-parent
|
|
4319
|
-
|
|
4320
|
-
}
|
|
4321
|
-
|
|
4322
|
-
.e-listbox-container.e-filter-list .e-list-wrap {
|
|
4323
|
-
height: calc(100% - 43px) !important;
|
|
4324
|
-
}
|
|
4325
|
-
|
|
4326
|
-
.e-small .e-listbox-wrapper.e-filter-list .e-list-parent {
|
|
4364
|
+
.e-small .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
4365
|
+
.e-small .e-listbox-container.e-filter-list .e-list-parent {
|
|
4327
4366
|
height: calc(100% - 45px);
|
|
4328
4367
|
}
|
|
4329
4368
|
|
|
4330
|
-
.e-
|
|
4331
|
-
|
|
4332
|
-
}
|
|
4333
|
-
|
|
4334
|
-
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent {
|
|
4369
|
+
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
4370
|
+
.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
4335
4371
|
height: calc(100% - 50px);
|
|
4336
4372
|
}
|
|
4337
4373
|
|
|
4338
|
-
.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
4339
|
-
height: calc(100% - 50px) !important;
|
|
4340
|
-
}
|
|
4341
|
-
|
|
4342
4374
|
.e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
4343
4375
|
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
4344
4376
|
height: calc(100% - 98px);
|
|
@@ -4349,14 +4381,11 @@ ejs-listbox {
|
|
|
4349
4381
|
height: calc(100% - 48px);
|
|
4350
4382
|
}
|
|
4351
4383
|
|
|
4352
|
-
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent
|
|
4384
|
+
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
4385
|
+
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
4353
4386
|
height: calc(100% - 45px);
|
|
4354
4387
|
}
|
|
4355
4388
|
|
|
4356
|
-
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
4357
|
-
height: calc(100% - 45px) !important;
|
|
4358
|
-
}
|
|
4359
|
-
|
|
4360
4389
|
.e-listbox-wrapper,
|
|
4361
4390
|
.e-listbox-container:not(.e-listboxtool-container):not(.e-sortableclone),
|
|
4362
4391
|
.e-listboxtool-container.e-listbox-container .e-ul {
|
|
@@ -4376,6 +4405,11 @@ ejs-listbox {
|
|
|
4376
4405
|
font-size: 20px;
|
|
4377
4406
|
}
|
|
4378
4407
|
|
|
4408
|
+
.e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
4409
|
+
.e-listbox-container.e-filter-list .e-list-parent {
|
|
4410
|
+
height: calc(100% - 43px);
|
|
4411
|
+
}
|
|
4412
|
+
|
|
4379
4413
|
.e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
4380
4414
|
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
4381
4415
|
height: calc(100% - 79px);
|
|
@@ -4611,4 +4645,22 @@ ejs-listbox {
|
|
|
4611
4645
|
.e-listbox-container.e-rtl.e-list-template .e-list-wrapper.e-list-badge:not(.e-list-avatar) {
|
|
4612
4646
|
padding-left: 4.1333em;
|
|
4613
4647
|
padding-right: 1.0666em;
|
|
4648
|
+
}
|
|
4649
|
+
|
|
4650
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
4651
|
+
@keyframes material-spinner-rotate {
|
|
4652
|
+
0% {
|
|
4653
|
+
transform: rotate(0deg);
|
|
4654
|
+
}
|
|
4655
|
+
100% {
|
|
4656
|
+
transform: rotate(360deg);
|
|
4657
|
+
}
|
|
4658
|
+
}
|
|
4659
|
+
@keyframes fabric-spinner-rotate {
|
|
4660
|
+
0% {
|
|
4661
|
+
transform: rotate(0deg);
|
|
4662
|
+
}
|
|
4663
|
+
100% {
|
|
4664
|
+
transform: rotate(360deg);
|
|
4665
|
+
}
|
|
4614
4666
|
}
|
package/styles/material.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: #000;
|
|
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 rgba(0, 0, 0, 0.21);
|
|
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: #e3165b;
|
|
110
|
+
cursor: default;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.e-mention .e-mention-chip::selection {
|
|
114
|
+
color: #fff;
|
|
115
|
+
background: #e3165b;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.e-mention.e-editable-element {
|
|
119
|
+
border: 2px solid #e0e0e0;
|
|
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: 2em;
|
|
91
131
|
}
|
|
@@ -148,6 +188,7 @@
|
|
|
148
188
|
border-color: #e0e0e0;
|
|
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: 0;
|
|
@@ -334,6 +375,7 @@
|
|
|
334
375
|
color: rgba(0, 0, 0, 0.87);
|
|
335
376
|
}
|
|
336
377
|
|
|
378
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
337
379
|
@keyframes e-input-ripple {
|
|
338
380
|
100% {
|
|
339
381
|
opacity: 0;
|
|
@@ -348,6 +390,7 @@
|
|
|
348
390
|
transform: translate3d(0, 0, 0) scale(1);
|
|
349
391
|
}
|
|
350
392
|
}
|
|
393
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
351
394
|
@keyframes material-spinner-rotate {
|
|
352
395
|
0% {
|
|
353
396
|
transform: rotate(0deg);
|
|
@@ -557,6 +600,7 @@
|
|
|
557
600
|
background-color: #f5f5f5;
|
|
558
601
|
}
|
|
559
602
|
|
|
603
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
560
604
|
.e-ddl input.e-input::-webkit-contacts-auto-fill-button {
|
|
561
605
|
display: none;
|
|
562
606
|
pointer-events: none;
|
|
@@ -565,6 +609,7 @@
|
|
|
565
609
|
visibility: hidden;
|
|
566
610
|
}
|
|
567
611
|
|
|
612
|
+
/* stylelint-enable property-no-vendor-prefix */
|
|
568
613
|
.e-filter-parent {
|
|
569
614
|
border: 0;
|
|
570
615
|
border-top-width: 0;
|
|
@@ -607,6 +652,7 @@
|
|
|
607
652
|
cursor: default;
|
|
608
653
|
}
|
|
609
654
|
|
|
655
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
610
656
|
.e-ddl.e-input-group .e-ddl-hidden,
|
|
611
657
|
.e-ddl.e-float-input .e-ddl-hidden {
|
|
612
658
|
-webkit-appearance: initial;
|
|
@@ -749,6 +795,7 @@ ejs-dropdownlist {
|
|
|
749
795
|
color: #e3165b;
|
|
750
796
|
}
|
|
751
797
|
|
|
798
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
752
799
|
@keyframes e-input-ripple {
|
|
753
800
|
100% {
|
|
754
801
|
opacity: 0;
|
|
@@ -763,6 +810,7 @@ ejs-dropdownlist {
|
|
|
763
810
|
transform: translate3d(0, 0, 0) scale(1);
|
|
764
811
|
}
|
|
765
812
|
}
|
|
813
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
766
814
|
@keyframes material-spinner-rotate {
|
|
767
815
|
0% {
|
|
768
816
|
transform: rotate(0deg);
|
|
@@ -780,6 +828,8 @@ ejs-dropdownlist {
|
|
|
780
828
|
}
|
|
781
829
|
}
|
|
782
830
|
/*! TreeView's material theme wise override definitions and variables */
|
|
831
|
+
/* stylelint-disable */
|
|
832
|
+
/* stylelint-disable */
|
|
783
833
|
.e-ddt .e-ddt-icon::before {
|
|
784
834
|
content: "\e969";
|
|
785
835
|
}
|
|
@@ -1495,6 +1545,8 @@ ejs-dropdownlist {
|
|
|
1495
1545
|
color: rgba(0, 0, 0, 0.87);
|
|
1496
1546
|
}
|
|
1497
1547
|
|
|
1548
|
+
/* stylelint-disable-line no-empty-source */ /* stylelint-disable-line no-empty-source */
|
|
1549
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1498
1550
|
@keyframes e-input-ripple {
|
|
1499
1551
|
100% {
|
|
1500
1552
|
opacity: 0;
|
|
@@ -1509,6 +1561,7 @@ ejs-dropdownlist {
|
|
|
1509
1561
|
transform: translate3d(0, 0, 0) scale(1);
|
|
1510
1562
|
}
|
|
1511
1563
|
}
|
|
1564
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1512
1565
|
@keyframes material-spinner-rotate {
|
|
1513
1566
|
0% {
|
|
1514
1567
|
transform: rotate(0deg);
|
|
@@ -2390,7 +2443,7 @@ ejs-dropdownlist {
|
|
|
2390
2443
|
border: 0;
|
|
2391
2444
|
font-family: inherit;
|
|
2392
2445
|
font-size: 13px;
|
|
2393
|
-
font-weight:
|
|
2446
|
+
font-weight: normal;
|
|
2394
2447
|
height: 28px;
|
|
2395
2448
|
min-height: 28px;
|
|
2396
2449
|
outline: none;
|
|
@@ -2404,7 +2457,7 @@ ejs-dropdownlist {
|
|
|
2404
2457
|
color: inherit;
|
|
2405
2458
|
font-family: inherit;
|
|
2406
2459
|
font-size: 14px;
|
|
2407
|
-
font-weight:
|
|
2460
|
+
font-weight: normal;
|
|
2408
2461
|
height: 28px;
|
|
2409
2462
|
min-height: 28px;
|
|
2410
2463
|
outline: none;
|
|
@@ -2427,6 +2480,7 @@ ejs-dropdownlist {
|
|
|
2427
2480
|
min-height: 34px;
|
|
2428
2481
|
}
|
|
2429
2482
|
|
|
2483
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2430
2484
|
.e-multi-select-wrapper input[type=text]::-ms-clear {
|
|
2431
2485
|
display: none;
|
|
2432
2486
|
}
|
|
@@ -3564,6 +3618,7 @@ ejs-multiselect {
|
|
|
3564
3618
|
box-sizing: border-box;
|
|
3565
3619
|
}
|
|
3566
3620
|
|
|
3621
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
3567
3622
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
3568
3623
|
-webkit-text-fill-color: rgba(0, 0, 0, 0.87);
|
|
3569
3624
|
color: rgba(0, 0, 0, 0.87);
|
|
@@ -3692,19 +3747,19 @@ ejs-multiselect {
|
|
|
3692
3747
|
border: 1px solid transparent;
|
|
3693
3748
|
}
|
|
3694
3749
|
|
|
3695
|
-
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
3750
|
+
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
3696
3751
|
color: rgba(0, 0, 0, 0.42);
|
|
3697
3752
|
}
|
|
3698
3753
|
|
|
3699
|
-
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {
|
|
3754
|
+
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
3700
3755
|
color: rgba(0, 0, 0, 0.42);
|
|
3701
3756
|
}
|
|
3702
3757
|
|
|
3703
|
-
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {
|
|
3758
|
+
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
3704
3759
|
color: rgba(0, 0, 0, 0.42);
|
|
3705
3760
|
}
|
|
3706
3761
|
|
|
3707
|
-
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {
|
|
3762
|
+
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
3708
3763
|
color: rgba(0, 0, 0, 0.42);
|
|
3709
3764
|
}
|
|
3710
3765
|
|
|
@@ -3883,6 +3938,7 @@ ejs-multiselect {
|
|
|
3883
3938
|
content: "\e656";
|
|
3884
3939
|
}
|
|
3885
3940
|
|
|
3941
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
3886
3942
|
.e-listbox-wrapper,
|
|
3887
3943
|
.e-listbox-container {
|
|
3888
3944
|
-webkit-overflow-scrolling: touch;
|
|
@@ -3901,7 +3957,7 @@ ejs-multiselect {
|
|
|
3901
3957
|
}
|
|
3902
3958
|
.e-listbox-wrapper.e-listboxtool-container .e-list-wrap,
|
|
3903
3959
|
.e-listbox-container.e-listboxtool-container .e-list-wrap {
|
|
3904
|
-
width: 86% !important;
|
|
3960
|
+
width: 86% !important; /* stylelint-disable-line declaration-no-important */
|
|
3905
3961
|
}
|
|
3906
3962
|
.e-listbox-wrapper:focus,
|
|
3907
3963
|
.e-listbox-container:focus {
|
|
@@ -4260,16 +4316,6 @@ ejs-listbox {
|
|
|
4260
4316
|
top: 30%;
|
|
4261
4317
|
}
|
|
4262
4318
|
|
|
4263
|
-
.e-listboxtool-container .e-left {
|
|
4264
|
-
-ms-flex-direction: row-reverse;
|
|
4265
|
-
flex-direction: row-reverse;
|
|
4266
|
-
}
|
|
4267
|
-
|
|
4268
|
-
.e-listboxtool-wrapper .e-left {
|
|
4269
|
-
-ms-flex-direction: column-reverse;
|
|
4270
|
-
flex-direction: column-reverse;
|
|
4271
|
-
}
|
|
4272
|
-
|
|
4273
4319
|
.e-rtl.e-listboxtool-wrapper.e-right .e-listbox-tool,
|
|
4274
4320
|
.e-rtl.e-listboxtool-container.e-right .e-listbox-tool {
|
|
4275
4321
|
margin-right: 15px;
|
|
@@ -4283,7 +4329,7 @@ ejs-listbox {
|
|
|
4283
4329
|
.e-listbox-wrapper.e-bigger.e-listboxtool-container .e-list-wrap,
|
|
4284
4330
|
.e-bigger .e-listbox-container.e-listboxtool-container .e-list-wrap,
|
|
4285
4331
|
.e-listbox-container.e-bigger.e-listboxtool-container .e-list-wrap {
|
|
4286
|
-
width: 85% !important;
|
|
4332
|
+
width: 85% !important; /* stylelint-disable-line declaration-no-important */
|
|
4287
4333
|
}
|
|
4288
4334
|
.e-bigger .e-listbox-wrapper .e-list-item,
|
|
4289
4335
|
.e-listbox-wrapper.e-bigger .e-list-item,
|
|
@@ -4372,30 +4418,16 @@ ejs-listbox {
|
|
|
4372
4418
|
.e-listbox-container.e-bigger .e-list-header .e-text {
|
|
4373
4419
|
font-size: 20px;
|
|
4374
4420
|
}
|
|
4375
|
-
.e-listbox-wrapper.e-filter-list .e-list-parent
|
|
4376
|
-
|
|
4377
|
-
}
|
|
4378
|
-
|
|
4379
|
-
.e-listbox-container.e-filter-list .e-list-wrap {
|
|
4380
|
-
height: calc(100% - 43px) !important;
|
|
4381
|
-
}
|
|
4382
|
-
|
|
4383
|
-
.e-small .e-listbox-wrapper.e-filter-list .e-list-parent {
|
|
4421
|
+
.e-small .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
4422
|
+
.e-small .e-listbox-container.e-filter-list .e-list-parent {
|
|
4384
4423
|
height: calc(100% - 45px);
|
|
4385
4424
|
}
|
|
4386
4425
|
|
|
4387
|
-
.e-
|
|
4388
|
-
|
|
4389
|
-
}
|
|
4390
|
-
|
|
4391
|
-
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent {
|
|
4426
|
+
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
4427
|
+
.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
4392
4428
|
height: calc(100% - 50px);
|
|
4393
4429
|
}
|
|
4394
4430
|
|
|
4395
|
-
.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
4396
|
-
height: calc(100% - 50px) !important;
|
|
4397
|
-
}
|
|
4398
|
-
|
|
4399
4431
|
.e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
4400
4432
|
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
4401
4433
|
height: calc(100% - 98px);
|
|
@@ -4406,14 +4438,11 @@ ejs-listbox {
|
|
|
4406
4438
|
height: calc(100% - 48px);
|
|
4407
4439
|
}
|
|
4408
4440
|
|
|
4409
|
-
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent
|
|
4441
|
+
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
4442
|
+
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
4410
4443
|
height: calc(100% - 45px);
|
|
4411
4444
|
}
|
|
4412
4445
|
|
|
4413
|
-
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
4414
|
-
height: calc(100% - 45px) !important;
|
|
4415
|
-
}
|
|
4416
|
-
|
|
4417
4446
|
.e-listbox-wrapper,
|
|
4418
4447
|
.e-listbox-container:not(.e-listboxtool-container):not(.e-sortableclone),
|
|
4419
4448
|
.e-listboxtool-container.e-listbox-container .e-ul {
|
|
@@ -4433,6 +4462,11 @@ ejs-listbox {
|
|
|
4433
4462
|
font-size: 20px;
|
|
4434
4463
|
}
|
|
4435
4464
|
|
|
4465
|
+
.e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
4466
|
+
.e-listbox-container.e-filter-list .e-list-parent {
|
|
4467
|
+
height: calc(100% - 43px);
|
|
4468
|
+
}
|
|
4469
|
+
|
|
4436
4470
|
.e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
4437
4471
|
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
4438
4472
|
height: calc(100% - 79px);
|
|
@@ -4668,4 +4702,22 @@ ejs-listbox {
|
|
|
4668
4702
|
.e-listbox-container.e-rtl.e-list-template .e-list-wrapper.e-list-badge:not(.e-list-avatar) {
|
|
4669
4703
|
padding-left: 4.1333em;
|
|
4670
4704
|
padding-right: 1.0666em;
|
|
4705
|
+
}
|
|
4706
|
+
|
|
4707
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
4708
|
+
@keyframes material-spinner-rotate {
|
|
4709
|
+
0% {
|
|
4710
|
+
transform: rotate(0deg);
|
|
4711
|
+
}
|
|
4712
|
+
100% {
|
|
4713
|
+
transform: rotate(360deg);
|
|
4714
|
+
}
|
|
4715
|
+
}
|
|
4716
|
+
@keyframes fabric-spinner-rotate {
|
|
4717
|
+
0% {
|
|
4718
|
+
transform: rotate(0deg);
|
|
4719
|
+
}
|
|
4720
|
+
100% {
|
|
4721
|
+
transform: rotate(360deg);
|
|
4722
|
+
}
|
|
4671
4723
|
}
|
package/styles/material.scss
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import 'layout.scss';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import './bootstrap5-definition.scss';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/* stylelint-disable-line no-empty-source */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import './fluent-definition.scss';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/* stylelint-disable-line no-empty-source */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/* stylelint-disable-line no-empty-source */
|