@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/fabric-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: #dadada;
|
|
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: #514f4f;
|
|
92
|
+
border: 0;
|
|
93
|
+
box-shadow: 0 2px 3px 1px 0 0 5px 0 rgba(0, 0, 0, 0.26);
|
|
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: #282727;
|
|
107
|
+
border-radius: 0;
|
|
108
|
+
border: none;
|
|
109
|
+
color: #0074cc;
|
|
110
|
+
cursor: default;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.e-mention .e-mention-chip::selection {
|
|
114
|
+
color: #fff;
|
|
115
|
+
background: #0074cc;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.e-mention.e-editable-element {
|
|
119
|
+
border: 2px solid #414040;
|
|
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: 20px;
|
|
91
131
|
}
|
|
@@ -148,6 +188,7 @@
|
|
|
148
188
|
border-color: #414040;
|
|
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: #282727;
|
|
153
194
|
border-bottom: 1px;
|
|
@@ -334,6 +375,8 @@
|
|
|
334
375
|
color: #dadada;
|
|
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);
|
|
@@ -493,6 +536,7 @@
|
|
|
493
536
|
background-color: #201f1f;
|
|
494
537
|
}
|
|
495
538
|
|
|
539
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
496
540
|
.e-ddl input.e-input::-webkit-contacts-auto-fill-button {
|
|
497
541
|
display: none;
|
|
498
542
|
pointer-events: none;
|
|
@@ -501,6 +545,7 @@
|
|
|
501
545
|
visibility: hidden;
|
|
502
546
|
}
|
|
503
547
|
|
|
548
|
+
/* stylelint-enable property-no-vendor-prefix */
|
|
504
549
|
.e-filter-parent {
|
|
505
550
|
border: 1px solid #414040;
|
|
506
551
|
border-top-width: 0;
|
|
@@ -544,6 +589,7 @@
|
|
|
544
589
|
cursor: default;
|
|
545
590
|
}
|
|
546
591
|
|
|
592
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
547
593
|
.e-ddl.e-input-group .e-ddl-hidden,
|
|
548
594
|
.e-ddl.e-float-input .e-ddl-hidden {
|
|
549
595
|
-webkit-appearance: initial;
|
|
@@ -686,6 +732,8 @@ ejs-dropdownlist {
|
|
|
686
732
|
color: #000;
|
|
687
733
|
}
|
|
688
734
|
|
|
735
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
736
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
689
737
|
@keyframes material-spinner-rotate {
|
|
690
738
|
0% {
|
|
691
739
|
transform: rotate(0);
|
|
@@ -702,6 +750,8 @@ ejs-dropdownlist {
|
|
|
702
750
|
transform: rotate(360deg);
|
|
703
751
|
}
|
|
704
752
|
}
|
|
753
|
+
/* stylelint-disable */
|
|
754
|
+
/* stylelint-disable */
|
|
705
755
|
.e-ddt .e-ddt-icon::before {
|
|
706
756
|
content: "\e966";
|
|
707
757
|
}
|
|
@@ -1095,6 +1145,9 @@ ejs-dropdownlist {
|
|
|
1095
1145
|
color: #dadada;
|
|
1096
1146
|
}
|
|
1097
1147
|
|
|
1148
|
+
/* stylelint-disable-line no-empty-source */ /* stylelint-disable-line no-empty-source */
|
|
1149
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1150
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1098
1151
|
@keyframes material-spinner-rotate {
|
|
1099
1152
|
0% {
|
|
1100
1153
|
transform: rotate(0);
|
|
@@ -1436,7 +1489,7 @@ ejs-dropdownlist {
|
|
|
1436
1489
|
border: 0;
|
|
1437
1490
|
font-family: inherit;
|
|
1438
1491
|
font-size: 14px;
|
|
1439
|
-
font-weight:
|
|
1492
|
+
font-weight: normal;
|
|
1440
1493
|
height: 28px;
|
|
1441
1494
|
min-height: 28px;
|
|
1442
1495
|
outline: none;
|
|
@@ -1450,7 +1503,7 @@ ejs-dropdownlist {
|
|
|
1450
1503
|
color: inherit;
|
|
1451
1504
|
font-family: inherit;
|
|
1452
1505
|
font-size: 14px;
|
|
1453
|
-
font-weight:
|
|
1506
|
+
font-weight: normal;
|
|
1454
1507
|
height: 28px;
|
|
1455
1508
|
min-height: 28px;
|
|
1456
1509
|
outline: none;
|
|
@@ -1473,6 +1526,7 @@ ejs-dropdownlist {
|
|
|
1473
1526
|
min-height: 38px;
|
|
1474
1527
|
}
|
|
1475
1528
|
|
|
1529
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1476
1530
|
.e-multi-select-wrapper input[type=text]::-ms-clear {
|
|
1477
1531
|
display: none;
|
|
1478
1532
|
}
|
|
@@ -2121,6 +2175,7 @@ ejs-multiselect {
|
|
|
2121
2175
|
box-sizing: border-box;
|
|
2122
2176
|
}
|
|
2123
2177
|
|
|
2178
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2124
2179
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
2125
2180
|
-webkit-text-fill-color: #dadada;
|
|
2126
2181
|
color: #dadada;
|
|
@@ -2249,19 +2304,19 @@ ejs-multiselect {
|
|
|
2249
2304
|
border: 1px solid transparent;
|
|
2250
2305
|
}
|
|
2251
2306
|
|
|
2252
|
-
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
2307
|
+
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2253
2308
|
color: #6f6c6c;
|
|
2254
2309
|
}
|
|
2255
2310
|
|
|
2256
|
-
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {
|
|
2311
|
+
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2257
2312
|
color: #6f6c6c;
|
|
2258
2313
|
}
|
|
2259
2314
|
|
|
2260
|
-
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {
|
|
2315
|
+
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2261
2316
|
color: #6f6c6c;
|
|
2262
2317
|
}
|
|
2263
2318
|
|
|
2264
|
-
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {
|
|
2319
|
+
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2265
2320
|
color: #6f6c6c;
|
|
2266
2321
|
}
|
|
2267
2322
|
|
|
@@ -2339,6 +2394,7 @@ ejs-multiselect {
|
|
|
2339
2394
|
content: "\e656";
|
|
2340
2395
|
}
|
|
2341
2396
|
|
|
2397
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2342
2398
|
.e-listbox-wrapper,
|
|
2343
2399
|
.e-listbox-container {
|
|
2344
2400
|
-webkit-overflow-scrolling: touch;
|
|
@@ -2357,7 +2413,7 @@ ejs-multiselect {
|
|
|
2357
2413
|
}
|
|
2358
2414
|
.e-listbox-wrapper.e-listboxtool-container .e-list-wrap,
|
|
2359
2415
|
.e-listbox-container.e-listboxtool-container .e-list-wrap {
|
|
2360
|
-
width: 86% !important;
|
|
2416
|
+
width: 86% !important; /* stylelint-disable-line declaration-no-important */
|
|
2361
2417
|
}
|
|
2362
2418
|
.e-listbox-wrapper:focus,
|
|
2363
2419
|
.e-listbox-container:focus {
|
|
@@ -2716,16 +2772,6 @@ ejs-listbox {
|
|
|
2716
2772
|
top: 30%;
|
|
2717
2773
|
}
|
|
2718
2774
|
|
|
2719
|
-
.e-listboxtool-container .e-left {
|
|
2720
|
-
-ms-flex-direction: row-reverse;
|
|
2721
|
-
flex-direction: row-reverse;
|
|
2722
|
-
}
|
|
2723
|
-
|
|
2724
|
-
.e-listboxtool-wrapper .e-left {
|
|
2725
|
-
-ms-flex-direction: column-reverse;
|
|
2726
|
-
flex-direction: column-reverse;
|
|
2727
|
-
}
|
|
2728
|
-
|
|
2729
2775
|
.e-rtl.e-listboxtool-wrapper.e-right .e-listbox-tool,
|
|
2730
2776
|
.e-rtl.e-listboxtool-container.e-right .e-listbox-tool {
|
|
2731
2777
|
margin-right: 15px;
|
|
@@ -2739,7 +2785,7 @@ ejs-listbox {
|
|
|
2739
2785
|
.e-listbox-wrapper.e-bigger.e-listboxtool-container .e-list-wrap,
|
|
2740
2786
|
.e-bigger .e-listbox-container.e-listboxtool-container .e-list-wrap,
|
|
2741
2787
|
.e-listbox-container.e-bigger.e-listboxtool-container .e-list-wrap {
|
|
2742
|
-
width: 83% !important;
|
|
2788
|
+
width: 83% !important; /* stylelint-disable-line declaration-no-important */
|
|
2743
2789
|
}
|
|
2744
2790
|
.e-bigger .e-listbox-wrapper .e-list-item,
|
|
2745
2791
|
.e-listbox-wrapper.e-bigger .e-list-item,
|
|
@@ -2828,30 +2874,16 @@ ejs-listbox {
|
|
|
2828
2874
|
.e-listbox-container.e-bigger .e-list-header .e-text {
|
|
2829
2875
|
font-size: 15px;
|
|
2830
2876
|
}
|
|
2831
|
-
.e-listbox-wrapper.e-filter-list .e-list-parent
|
|
2832
|
-
|
|
2833
|
-
}
|
|
2834
|
-
|
|
2835
|
-
.e-listbox-container.e-filter-list .e-list-wrap {
|
|
2836
|
-
height: calc(100% - 51px) !important;
|
|
2837
|
-
}
|
|
2838
|
-
|
|
2839
|
-
.e-small .e-listbox-wrapper.e-filter-list .e-list-parent {
|
|
2877
|
+
.e-small .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
2878
|
+
.e-small .e-listbox-container.e-filter-list .e-list-parent {
|
|
2840
2879
|
height: calc(100% - 45px);
|
|
2841
2880
|
}
|
|
2842
2881
|
|
|
2843
|
-
.e-
|
|
2844
|
-
|
|
2845
|
-
}
|
|
2846
|
-
|
|
2847
|
-
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent {
|
|
2882
|
+
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
2883
|
+
.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
2848
2884
|
height: calc(100% - 59px);
|
|
2849
2885
|
}
|
|
2850
2886
|
|
|
2851
|
-
.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
2852
|
-
height: calc(100% - 59px) !important;
|
|
2853
|
-
}
|
|
2854
|
-
|
|
2855
2887
|
.e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
2856
2888
|
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
2857
2889
|
height: calc(100% - 104px);
|
|
@@ -2862,14 +2894,11 @@ ejs-listbox {
|
|
|
2862
2894
|
height: calc(100% - 45px);
|
|
2863
2895
|
}
|
|
2864
2896
|
|
|
2865
|
-
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent
|
|
2897
|
+
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
2898
|
+
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
2866
2899
|
height: calc(100% - 55px);
|
|
2867
2900
|
}
|
|
2868
2901
|
|
|
2869
|
-
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
2870
|
-
height: calc(100% - 55px) !important;
|
|
2871
|
-
}
|
|
2872
|
-
|
|
2873
2902
|
.e-listbox-wrapper,
|
|
2874
2903
|
.e-listbox-container:not(.e-listboxtool-container):not(.e-sortableclone),
|
|
2875
2904
|
.e-listboxtool-container.e-listbox-container .e-ul {
|
|
@@ -2889,6 +2918,11 @@ ejs-listbox {
|
|
|
2889
2918
|
font-size: 14px;
|
|
2890
2919
|
}
|
|
2891
2920
|
|
|
2921
|
+
.e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
2922
|
+
.e-listbox-container.e-filter-list .e-list-parent {
|
|
2923
|
+
height: calc(100% - 51px);
|
|
2924
|
+
}
|
|
2925
|
+
|
|
2892
2926
|
.e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
2893
2927
|
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
2894
2928
|
height: calc(100% - 87px);
|
|
@@ -3124,4 +3158,22 @@ ejs-listbox {
|
|
|
3124
3158
|
.e-listbox-container.e-rtl.e-list-template .e-list-wrapper.e-list-badge:not(.e-list-avatar) {
|
|
3125
3159
|
padding-left: 3.3846em;
|
|
3126
3160
|
padding-right: 0.923em;
|
|
3161
|
+
}
|
|
3162
|
+
|
|
3163
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
3164
|
+
@keyframes material-spinner-rotate {
|
|
3165
|
+
0% {
|
|
3166
|
+
transform: rotate(0);
|
|
3167
|
+
}
|
|
3168
|
+
100% {
|
|
3169
|
+
transform: rotate(360deg);
|
|
3170
|
+
}
|
|
3171
|
+
}
|
|
3172
|
+
@keyframes fabric-spinner-rotate {
|
|
3173
|
+
0% {
|
|
3174
|
+
transform: rotate(0);
|
|
3175
|
+
}
|
|
3176
|
+
100% {
|
|
3177
|
+
transform: rotate(360deg);
|
|
3178
|
+
}
|
|
3127
3179
|
}
|
package/styles/fabric-dark.scss
CHANGED
package/styles/fabric.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: #333;
|
|
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 0 5px 0 rgba(0, 0, 0, 0.4);
|
|
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: #f4f4f4;
|
|
107
|
+
border-radius: 0;
|
|
108
|
+
border: none;
|
|
109
|
+
color: #0078d6;
|
|
110
|
+
cursor: default;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.e-mention .e-mention-chip::selection {
|
|
114
|
+
color: #fff;
|
|
115
|
+
background: #0078d6;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.e-mention.e-editable-element {
|
|
119
|
+
border: 2px solid rgba(234, 234, 234, 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: 20px;
|
|
91
131
|
}
|
|
@@ -148,6 +188,7 @@
|
|
|
148
188
|
border-color: rgba(234, 234, 234, 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);
|
|
@@ -486,6 +529,7 @@
|
|
|
486
529
|
background-color: #fff;
|
|
487
530
|
}
|
|
488
531
|
|
|
532
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
489
533
|
.e-ddl input.e-input::-webkit-contacts-auto-fill-button {
|
|
490
534
|
display: none;
|
|
491
535
|
pointer-events: none;
|
|
@@ -494,6 +538,7 @@
|
|
|
494
538
|
visibility: hidden;
|
|
495
539
|
}
|
|
496
540
|
|
|
541
|
+
/* stylelint-enable property-no-vendor-prefix */
|
|
497
542
|
.e-filter-parent {
|
|
498
543
|
border: 1px solid #c8c8c8;
|
|
499
544
|
border-top-width: 0;
|
|
@@ -537,6 +582,7 @@
|
|
|
537
582
|
cursor: default;
|
|
538
583
|
}
|
|
539
584
|
|
|
585
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
540
586
|
.e-ddl.e-input-group .e-ddl-hidden,
|
|
541
587
|
.e-ddl.e-float-input .e-ddl-hidden {
|
|
542
588
|
-webkit-appearance: initial;
|
|
@@ -679,6 +725,8 @@ ejs-dropdownlist {
|
|
|
679
725
|
color: #333;
|
|
680
726
|
}
|
|
681
727
|
|
|
728
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
729
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
682
730
|
@keyframes material-spinner-rotate {
|
|
683
731
|
0% {
|
|
684
732
|
transform: rotate(0);
|
|
@@ -696,6 +744,8 @@ ejs-dropdownlist {
|
|
|
696
744
|
}
|
|
697
745
|
}
|
|
698
746
|
/*! TreeView's fabric theme wise override definitions and variables */
|
|
747
|
+
/* stylelint-disable */
|
|
748
|
+
/* stylelint-disable */
|
|
699
749
|
.e-ddt .e-ddt-icon::before {
|
|
700
750
|
content: "\e966";
|
|
701
751
|
}
|
|
@@ -1089,6 +1139,9 @@ ejs-dropdownlist {
|
|
|
1089
1139
|
color: rgba(51, 51, 51, 0.87);
|
|
1090
1140
|
}
|
|
1091
1141
|
|
|
1142
|
+
/* stylelint-disable-line no-empty-source */ /* stylelint-disable-line no-empty-source */
|
|
1143
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1144
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1092
1145
|
@keyframes material-spinner-rotate {
|
|
1093
1146
|
0% {
|
|
1094
1147
|
transform: rotate(0);
|
|
@@ -1430,7 +1483,7 @@ ejs-dropdownlist {
|
|
|
1430
1483
|
border: 0;
|
|
1431
1484
|
font-family: inherit;
|
|
1432
1485
|
font-size: 14px;
|
|
1433
|
-
font-weight:
|
|
1486
|
+
font-weight: normal;
|
|
1434
1487
|
height: 28px;
|
|
1435
1488
|
min-height: 28px;
|
|
1436
1489
|
outline: none;
|
|
@@ -1444,7 +1497,7 @@ ejs-dropdownlist {
|
|
|
1444
1497
|
color: inherit;
|
|
1445
1498
|
font-family: inherit;
|
|
1446
1499
|
font-size: 14px;
|
|
1447
|
-
font-weight:
|
|
1500
|
+
font-weight: normal;
|
|
1448
1501
|
height: 28px;
|
|
1449
1502
|
min-height: 28px;
|
|
1450
1503
|
outline: none;
|
|
@@ -1467,6 +1520,7 @@ ejs-dropdownlist {
|
|
|
1467
1520
|
min-height: 38px;
|
|
1468
1521
|
}
|
|
1469
1522
|
|
|
1523
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1470
1524
|
.e-multi-select-wrapper input[type=text]::-ms-clear {
|
|
1471
1525
|
display: none;
|
|
1472
1526
|
}
|
|
@@ -2115,6 +2169,7 @@ ejs-multiselect {
|
|
|
2115
2169
|
box-sizing: border-box;
|
|
2116
2170
|
}
|
|
2117
2171
|
|
|
2172
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2118
2173
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
2119
2174
|
-webkit-text-fill-color: #666;
|
|
2120
2175
|
color: #666;
|
|
@@ -2243,19 +2298,19 @@ ejs-multiselect {
|
|
|
2243
2298
|
border: 1px solid transparent;
|
|
2244
2299
|
}
|
|
2245
2300
|
|
|
2246
|
-
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
2301
|
+
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2247
2302
|
color: #a6a6a6;
|
|
2248
2303
|
}
|
|
2249
2304
|
|
|
2250
|
-
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {
|
|
2305
|
+
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2251
2306
|
color: #a6a6a6;
|
|
2252
2307
|
}
|
|
2253
2308
|
|
|
2254
|
-
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {
|
|
2309
|
+
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2255
2310
|
color: #a6a6a6;
|
|
2256
2311
|
}
|
|
2257
2312
|
|
|
2258
|
-
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {
|
|
2313
|
+
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2259
2314
|
color: #a6a6a6;
|
|
2260
2315
|
}
|
|
2261
2316
|
|
|
@@ -2333,6 +2388,7 @@ ejs-multiselect {
|
|
|
2333
2388
|
content: "\e656";
|
|
2334
2389
|
}
|
|
2335
2390
|
|
|
2391
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2336
2392
|
.e-listbox-wrapper,
|
|
2337
2393
|
.e-listbox-container {
|
|
2338
2394
|
-webkit-overflow-scrolling: touch;
|
|
@@ -2351,7 +2407,7 @@ ejs-multiselect {
|
|
|
2351
2407
|
}
|
|
2352
2408
|
.e-listbox-wrapper.e-listboxtool-container .e-list-wrap,
|
|
2353
2409
|
.e-listbox-container.e-listboxtool-container .e-list-wrap {
|
|
2354
|
-
width: 86% !important;
|
|
2410
|
+
width: 86% !important; /* stylelint-disable-line declaration-no-important */
|
|
2355
2411
|
}
|
|
2356
2412
|
.e-listbox-wrapper:focus,
|
|
2357
2413
|
.e-listbox-container:focus {
|
|
@@ -2710,16 +2766,6 @@ ejs-listbox {
|
|
|
2710
2766
|
top: 30%;
|
|
2711
2767
|
}
|
|
2712
2768
|
|
|
2713
|
-
.e-listboxtool-container .e-left {
|
|
2714
|
-
-ms-flex-direction: row-reverse;
|
|
2715
|
-
flex-direction: row-reverse;
|
|
2716
|
-
}
|
|
2717
|
-
|
|
2718
|
-
.e-listboxtool-wrapper .e-left {
|
|
2719
|
-
-ms-flex-direction: column-reverse;
|
|
2720
|
-
flex-direction: column-reverse;
|
|
2721
|
-
}
|
|
2722
|
-
|
|
2723
2769
|
.e-rtl.e-listboxtool-wrapper.e-right .e-listbox-tool,
|
|
2724
2770
|
.e-rtl.e-listboxtool-container.e-right .e-listbox-tool {
|
|
2725
2771
|
margin-right: 15px;
|
|
@@ -2733,7 +2779,7 @@ ejs-listbox {
|
|
|
2733
2779
|
.e-listbox-wrapper.e-bigger.e-listboxtool-container .e-list-wrap,
|
|
2734
2780
|
.e-bigger .e-listbox-container.e-listboxtool-container .e-list-wrap,
|
|
2735
2781
|
.e-listbox-container.e-bigger.e-listboxtool-container .e-list-wrap {
|
|
2736
|
-
width: 83% !important;
|
|
2782
|
+
width: 83% !important; /* stylelint-disable-line declaration-no-important */
|
|
2737
2783
|
}
|
|
2738
2784
|
.e-bigger .e-listbox-wrapper .e-list-item,
|
|
2739
2785
|
.e-listbox-wrapper.e-bigger .e-list-item,
|
|
@@ -2822,30 +2868,16 @@ ejs-listbox {
|
|
|
2822
2868
|
.e-listbox-container.e-bigger .e-list-header .e-text {
|
|
2823
2869
|
font-size: 15px;
|
|
2824
2870
|
}
|
|
2825
|
-
.e-listbox-wrapper.e-filter-list .e-list-parent
|
|
2826
|
-
|
|
2827
|
-
}
|
|
2828
|
-
|
|
2829
|
-
.e-listbox-container.e-filter-list .e-list-wrap {
|
|
2830
|
-
height: calc(100% - 51px) !important;
|
|
2831
|
-
}
|
|
2832
|
-
|
|
2833
|
-
.e-small .e-listbox-wrapper.e-filter-list .e-list-parent {
|
|
2871
|
+
.e-small .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
2872
|
+
.e-small .e-listbox-container.e-filter-list .e-list-parent {
|
|
2834
2873
|
height: calc(100% - 45px);
|
|
2835
2874
|
}
|
|
2836
2875
|
|
|
2837
|
-
.e-
|
|
2838
|
-
|
|
2839
|
-
}
|
|
2840
|
-
|
|
2841
|
-
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent {
|
|
2876
|
+
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
2877
|
+
.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
2842
2878
|
height: calc(100% - 59px);
|
|
2843
2879
|
}
|
|
2844
2880
|
|
|
2845
|
-
.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
2846
|
-
height: calc(100% - 59px) !important;
|
|
2847
|
-
}
|
|
2848
|
-
|
|
2849
2881
|
.e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
2850
2882
|
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
2851
2883
|
height: calc(100% - 104px);
|
|
@@ -2856,14 +2888,11 @@ ejs-listbox {
|
|
|
2856
2888
|
height: calc(100% - 45px);
|
|
2857
2889
|
}
|
|
2858
2890
|
|
|
2859
|
-
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent
|
|
2891
|
+
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
2892
|
+
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
2860
2893
|
height: calc(100% - 55px);
|
|
2861
2894
|
}
|
|
2862
2895
|
|
|
2863
|
-
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
2864
|
-
height: calc(100% - 55px) !important;
|
|
2865
|
-
}
|
|
2866
|
-
|
|
2867
2896
|
.e-listbox-wrapper,
|
|
2868
2897
|
.e-listbox-container:not(.e-listboxtool-container):not(.e-sortableclone),
|
|
2869
2898
|
.e-listboxtool-container.e-listbox-container .e-ul {
|
|
@@ -2883,6 +2912,11 @@ ejs-listbox {
|
|
|
2883
2912
|
font-size: 14px;
|
|
2884
2913
|
}
|
|
2885
2914
|
|
|
2915
|
+
.e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
2916
|
+
.e-listbox-container.e-filter-list .e-list-parent {
|
|
2917
|
+
height: calc(100% - 51px);
|
|
2918
|
+
}
|
|
2919
|
+
|
|
2886
2920
|
.e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
2887
2921
|
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
2888
2922
|
height: calc(100% - 87px);
|
|
@@ -3118,4 +3152,22 @@ ejs-listbox {
|
|
|
3118
3152
|
.e-listbox-container.e-rtl.e-list-template .e-list-wrapper.e-list-badge:not(.e-list-avatar) {
|
|
3119
3153
|
padding-left: 3.3846em;
|
|
3120
3154
|
padding-right: 0.923em;
|
|
3155
|
+
}
|
|
3156
|
+
|
|
3157
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
3158
|
+
@keyframes material-spinner-rotate {
|
|
3159
|
+
0% {
|
|
3160
|
+
transform: rotate(0);
|
|
3161
|
+
}
|
|
3162
|
+
100% {
|
|
3163
|
+
transform: rotate(360deg);
|
|
3164
|
+
}
|
|
3165
|
+
}
|
|
3166
|
+
@keyframes fabric-spinner-rotate {
|
|
3167
|
+
0% {
|
|
3168
|
+
transform: rotate(0);
|
|
3169
|
+
}
|
|
3170
|
+
100% {
|
|
3171
|
+
transform: rotate(360deg);
|
|
3172
|
+
}
|
|
3121
3173
|
}
|
package/styles/fabric.scss
CHANGED