@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
|
@@ -91,7 +91,8 @@
|
|
|
91
91
|
position: relative;
|
|
92
92
|
}
|
|
93
93
|
|
|
94
|
-
.e-popup.e-ddl .e-dropdownbase.e-nodata
|
|
94
|
+
.e-popup.e-ddl .e-dropdownbase.e-nodata,
|
|
95
|
+
.e-popup.e-mention .e-dropdownbase.e-nodata {
|
|
95
96
|
color: #000;
|
|
96
97
|
cursor: default;
|
|
97
98
|
font-family: inherit;
|
|
@@ -100,6 +101,45 @@
|
|
|
100
101
|
text-align: center;
|
|
101
102
|
}
|
|
102
103
|
|
|
104
|
+
.e-mention.e-popup {
|
|
105
|
+
background: #400074;
|
|
106
|
+
border: 0;
|
|
107
|
+
box-shadow: 0 2px 3px 1px 0 0 5px 0 rgba(0, 0, 0, 0.4);
|
|
108
|
+
margin-top: 2px;
|
|
109
|
+
position: absolute;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.e-mention .e-dropdownbase .e-list-item .e-highlight {
|
|
113
|
+
display: inline;
|
|
114
|
+
font-weight: bold;
|
|
115
|
+
vertical-align: baseline;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.e-mention .e-mention-chip,
|
|
119
|
+
.e-mention .e-mention-chip:hover {
|
|
120
|
+
background: transparent;
|
|
121
|
+
border-radius: 0;
|
|
122
|
+
border: 1px solid #757575;
|
|
123
|
+
color: #400074;
|
|
124
|
+
cursor: default;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.e-mention .e-mention-chip::selection {
|
|
128
|
+
color: #000;
|
|
129
|
+
background: #400074;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.e-mention.e-editable-element {
|
|
133
|
+
border: 2px solid #757575;
|
|
134
|
+
height: auto;
|
|
135
|
+
min-height: 120px;
|
|
136
|
+
width: 100%;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.e-form-mirror-div {
|
|
140
|
+
white-space: pre-wrap;
|
|
141
|
+
}
|
|
142
|
+
|
|
103
143
|
.e-rtl .e-dropdownbase.e-dd-group .e-list-item {
|
|
104
144
|
padding-right: 20px;
|
|
105
145
|
}
|
|
@@ -162,6 +202,7 @@
|
|
|
162
202
|
border-color: #757575;
|
|
163
203
|
}
|
|
164
204
|
.e-dropdownbase .e-list-item {
|
|
205
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
165
206
|
-webkit-tap-highlight-color: transparent;
|
|
166
207
|
background-color: #fff;
|
|
167
208
|
border-bottom: 2px;
|
|
@@ -348,6 +389,8 @@
|
|
|
348
389
|
color: #000;
|
|
349
390
|
}
|
|
350
391
|
|
|
392
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
393
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
351
394
|
@keyframes material-spinner-rotate {
|
|
352
395
|
0% {
|
|
353
396
|
transform: rotate(0);
|
|
@@ -504,6 +547,7 @@
|
|
|
504
547
|
background-color: #fff;
|
|
505
548
|
}
|
|
506
549
|
|
|
550
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
507
551
|
.e-ddl input.e-input::-webkit-contacts-auto-fill-button {
|
|
508
552
|
display: none;
|
|
509
553
|
pointer-events: none;
|
|
@@ -512,6 +556,7 @@
|
|
|
512
556
|
visibility: hidden;
|
|
513
557
|
}
|
|
514
558
|
|
|
559
|
+
/* stylelint-enable property-no-vendor-prefix */
|
|
515
560
|
.e-filter-parent {
|
|
516
561
|
border: 1px solid #000;
|
|
517
562
|
border-top-width: 0;
|
|
@@ -555,6 +600,7 @@
|
|
|
555
600
|
cursor: default;
|
|
556
601
|
}
|
|
557
602
|
|
|
603
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
558
604
|
.e-ddl.e-input-group .e-ddl-hidden,
|
|
559
605
|
.e-ddl.e-float-input .e-ddl-hidden {
|
|
560
606
|
-webkit-appearance: initial;
|
|
@@ -697,6 +743,8 @@ ejs-dropdownlist {
|
|
|
697
743
|
color: #000;
|
|
698
744
|
}
|
|
699
745
|
|
|
746
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
747
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
700
748
|
@keyframes material-spinner-rotate {
|
|
701
749
|
0% {
|
|
702
750
|
transform: rotate(0);
|
|
@@ -713,6 +761,8 @@ ejs-dropdownlist {
|
|
|
713
761
|
transform: rotate(360deg);
|
|
714
762
|
}
|
|
715
763
|
}
|
|
764
|
+
/* stylelint-disable */
|
|
765
|
+
/* stylelint-disable */
|
|
716
766
|
.e-ddt .e-ddt-icon::before {
|
|
717
767
|
content: "\e966";
|
|
718
768
|
}
|
|
@@ -1107,6 +1157,9 @@ ejs-dropdownlist {
|
|
|
1107
1157
|
color: #000;
|
|
1108
1158
|
}
|
|
1109
1159
|
|
|
1160
|
+
/* stylelint-disable-line no-empty-source */ /* stylelint-disable-line no-empty-source */
|
|
1161
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1162
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1110
1163
|
@keyframes material-spinner-rotate {
|
|
1111
1164
|
0% {
|
|
1112
1165
|
transform: rotate(0);
|
|
@@ -1127,6 +1180,9 @@ ejs-dropdownlist {
|
|
|
1127
1180
|
color: #000;
|
|
1128
1181
|
top: 12px;
|
|
1129
1182
|
}
|
|
1183
|
+
.e-multiselect .e-multi-select-wrapper input {
|
|
1184
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1185
|
+
}
|
|
1130
1186
|
.e-multiselect .e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
1131
1187
|
color: #4f4f4f;
|
|
1132
1188
|
font-family: inherit;
|
|
@@ -1536,7 +1592,7 @@ ejs-dropdownlist {
|
|
|
1536
1592
|
border: 0;
|
|
1537
1593
|
font-family: inherit;
|
|
1538
1594
|
font-size: 14px;
|
|
1539
|
-
font-weight:
|
|
1595
|
+
font-weight: normal;
|
|
1540
1596
|
height: 28px;
|
|
1541
1597
|
min-height: 28px;
|
|
1542
1598
|
outline: none;
|
|
@@ -1550,7 +1606,7 @@ ejs-dropdownlist {
|
|
|
1550
1606
|
color: inherit;
|
|
1551
1607
|
font-family: inherit;
|
|
1552
1608
|
font-size: 14px;
|
|
1553
|
-
font-weight:
|
|
1609
|
+
font-weight: normal;
|
|
1554
1610
|
height: 28px;
|
|
1555
1611
|
min-height: 28px;
|
|
1556
1612
|
outline: none;
|
|
@@ -1573,6 +1629,7 @@ ejs-dropdownlist {
|
|
|
1573
1629
|
min-height: 38px;
|
|
1574
1630
|
}
|
|
1575
1631
|
|
|
1632
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1576
1633
|
.e-multi-select-wrapper input[type=text]::-ms-clear {
|
|
1577
1634
|
display: none;
|
|
1578
1635
|
}
|
|
@@ -2217,6 +2274,7 @@ ejs-multiselect {
|
|
|
2217
2274
|
box-sizing: border-box;
|
|
2218
2275
|
}
|
|
2219
2276
|
|
|
2277
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2220
2278
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
2221
2279
|
-webkit-text-fill-color: #fff;
|
|
2222
2280
|
color: #fff;
|
|
@@ -2333,19 +2391,19 @@ ejs-multiselect {
|
|
|
2333
2391
|
border: 1px solid transparent;
|
|
2334
2392
|
}
|
|
2335
2393
|
|
|
2336
|
-
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
2394
|
+
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2337
2395
|
color: #000;
|
|
2338
2396
|
}
|
|
2339
2397
|
|
|
2340
|
-
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {
|
|
2398
|
+
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2341
2399
|
color: #000;
|
|
2342
2400
|
}
|
|
2343
2401
|
|
|
2344
|
-
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {
|
|
2402
|
+
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2345
2403
|
color: #000;
|
|
2346
2404
|
}
|
|
2347
2405
|
|
|
2348
|
-
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {
|
|
2406
|
+
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2349
2407
|
color: #000;
|
|
2350
2408
|
}
|
|
2351
2409
|
|
|
@@ -2443,6 +2501,7 @@ e-ddl.e-popup.e-multi-select-list-wrapper.e-multiselct-group.e-checkbox .e-list-
|
|
|
2443
2501
|
content: "\e656";
|
|
2444
2502
|
}
|
|
2445
2503
|
|
|
2504
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2446
2505
|
.e-listbox-wrapper,
|
|
2447
2506
|
.e-listbox-container {
|
|
2448
2507
|
-webkit-overflow-scrolling: touch;
|
|
@@ -2461,7 +2520,7 @@ e-ddl.e-popup.e-multi-select-list-wrapper.e-multiselct-group.e-checkbox .e-list-
|
|
|
2461
2520
|
}
|
|
2462
2521
|
.e-listbox-wrapper.e-listboxtool-container .e-list-wrap,
|
|
2463
2522
|
.e-listbox-container.e-listboxtool-container .e-list-wrap {
|
|
2464
|
-
width: 87% !important;
|
|
2523
|
+
width: 87% !important; /* stylelint-disable-line declaration-no-important */
|
|
2465
2524
|
}
|
|
2466
2525
|
.e-listbox-wrapper:focus,
|
|
2467
2526
|
.e-listbox-container:focus {
|
|
@@ -2820,16 +2879,6 @@ ejs-listbox {
|
|
|
2820
2879
|
top: 30%;
|
|
2821
2880
|
}
|
|
2822
2881
|
|
|
2823
|
-
.e-listboxtool-container .e-left {
|
|
2824
|
-
-ms-flex-direction: row-reverse;
|
|
2825
|
-
flex-direction: row-reverse;
|
|
2826
|
-
}
|
|
2827
|
-
|
|
2828
|
-
.e-listboxtool-wrapper .e-left {
|
|
2829
|
-
-ms-flex-direction: column-reverse;
|
|
2830
|
-
flex-direction: column-reverse;
|
|
2831
|
-
}
|
|
2832
|
-
|
|
2833
2882
|
.e-rtl.e-listboxtool-wrapper.e-right .e-listbox-tool,
|
|
2834
2883
|
.e-rtl.e-listboxtool-container.e-right .e-listbox-tool {
|
|
2835
2884
|
margin-right: 15px;
|
|
@@ -2843,7 +2892,7 @@ ejs-listbox {
|
|
|
2843
2892
|
.e-listbox-wrapper.e-bigger.e-listboxtool-container .e-list-wrap,
|
|
2844
2893
|
.e-bigger .e-listbox-container.e-listboxtool-container .e-list-wrap,
|
|
2845
2894
|
.e-listbox-container.e-bigger.e-listboxtool-container .e-list-wrap {
|
|
2846
|
-
width: 83% !important;
|
|
2895
|
+
width: 83% !important; /* stylelint-disable-line declaration-no-important */
|
|
2847
2896
|
}
|
|
2848
2897
|
.e-bigger .e-listbox-wrapper .e-list-item,
|
|
2849
2898
|
.e-listbox-wrapper.e-bigger .e-list-item,
|
|
@@ -2932,30 +2981,16 @@ ejs-listbox {
|
|
|
2932
2981
|
.e-listbox-container.e-bigger .e-list-header .e-text {
|
|
2933
2982
|
font-size: 15px;
|
|
2934
2983
|
}
|
|
2935
|
-
.e-listbox-wrapper.e-filter-list .e-list-parent
|
|
2936
|
-
|
|
2937
|
-
}
|
|
2938
|
-
|
|
2939
|
-
.e-listbox-container.e-filter-list .e-list-wrap {
|
|
2940
|
-
height: calc(100% - 51px) !important;
|
|
2941
|
-
}
|
|
2942
|
-
|
|
2943
|
-
.e-small .e-listbox-wrapper.e-filter-list .e-list-parent {
|
|
2984
|
+
.e-small .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
2985
|
+
.e-small .e-listbox-container.e-filter-list .e-list-parent {
|
|
2944
2986
|
height: calc(100% - 45px);
|
|
2945
2987
|
}
|
|
2946
2988
|
|
|
2947
|
-
.e-
|
|
2948
|
-
|
|
2949
|
-
}
|
|
2950
|
-
|
|
2951
|
-
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent {
|
|
2989
|
+
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
2990
|
+
.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
2952
2991
|
height: calc(100% - 59px);
|
|
2953
2992
|
}
|
|
2954
2993
|
|
|
2955
|
-
.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
2956
|
-
height: calc(100% - 59px) !important;
|
|
2957
|
-
}
|
|
2958
|
-
|
|
2959
2994
|
.e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
2960
2995
|
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
2961
2996
|
height: calc(100% - 104px);
|
|
@@ -2966,14 +3001,11 @@ ejs-listbox {
|
|
|
2966
3001
|
height: calc(100% - 45px);
|
|
2967
3002
|
}
|
|
2968
3003
|
|
|
2969
|
-
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent
|
|
3004
|
+
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
3005
|
+
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
2970
3006
|
height: calc(100% - 55px);
|
|
2971
3007
|
}
|
|
2972
3008
|
|
|
2973
|
-
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
2974
|
-
height: calc(100% - 55px) !important;
|
|
2975
|
-
}
|
|
2976
|
-
|
|
2977
3009
|
.e-listbox-wrapper,
|
|
2978
3010
|
.e-listbox-container:not(.e-listboxtool-container):not(.e-sortableclone),
|
|
2979
3011
|
.e-listboxtool-container.e-listbox-container .e-ul {
|
|
@@ -2993,6 +3025,11 @@ ejs-listbox {
|
|
|
2993
3025
|
font-size: 14px;
|
|
2994
3026
|
}
|
|
2995
3027
|
|
|
3028
|
+
.e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
3029
|
+
.e-listbox-container.e-filter-list .e-list-parent {
|
|
3030
|
+
height: calc(100% - 51px);
|
|
3031
|
+
}
|
|
3032
|
+
|
|
2996
3033
|
.e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
2997
3034
|
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
2998
3035
|
height: calc(100% - 87px);
|
|
@@ -3228,4 +3265,22 @@ ejs-listbox {
|
|
|
3228
3265
|
.e-listbox-container.e-rtl.e-list-template .e-list-wrapper.e-list-badge:not(.e-list-avatar) {
|
|
3229
3266
|
padding-left: 3.3846em;
|
|
3230
3267
|
padding-right: 0.923em;
|
|
3268
|
+
}
|
|
3269
|
+
|
|
3270
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
3271
|
+
@keyframes material-spinner-rotate {
|
|
3272
|
+
0% {
|
|
3273
|
+
transform: rotate(0);
|
|
3274
|
+
}
|
|
3275
|
+
100% {
|
|
3276
|
+
transform: rotate(360deg);
|
|
3277
|
+
}
|
|
3278
|
+
}
|
|
3279
|
+
@keyframes fabric-spinner-rotate {
|
|
3280
|
+
0% {
|
|
3281
|
+
transform: rotate(0);
|
|
3282
|
+
}
|
|
3283
|
+
100% {
|
|
3284
|
+
transform: rotate(360deg);
|
|
3285
|
+
}
|
|
3231
3286
|
}
|
package/styles/highcontrast.css
CHANGED
|
@@ -91,7 +91,8 @@
|
|
|
91
91
|
position: relative;
|
|
92
92
|
}
|
|
93
93
|
|
|
94
|
-
.e-popup.e-ddl .e-dropdownbase.e-nodata
|
|
94
|
+
.e-popup.e-ddl .e-dropdownbase.e-nodata,
|
|
95
|
+
.e-popup.e-mention .e-dropdownbase.e-nodata {
|
|
95
96
|
color: #fff;
|
|
96
97
|
cursor: default;
|
|
97
98
|
font-family: inherit;
|
|
@@ -100,6 +101,45 @@
|
|
|
100
101
|
text-align: center;
|
|
101
102
|
}
|
|
102
103
|
|
|
104
|
+
.e-mention.e-popup {
|
|
105
|
+
background: #ffd939;
|
|
106
|
+
border: 0;
|
|
107
|
+
box-shadow: 0 2px 3px 1px 0 0 5px 0 rgba(0, 0, 0, 0.4);
|
|
108
|
+
margin-top: 2px;
|
|
109
|
+
position: absolute;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.e-mention .e-dropdownbase .e-list-item .e-highlight {
|
|
113
|
+
display: inline;
|
|
114
|
+
font-weight: bold;
|
|
115
|
+
vertical-align: baseline;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.e-mention .e-mention-chip,
|
|
119
|
+
.e-mention .e-mention-chip:hover {
|
|
120
|
+
background: transparent;
|
|
121
|
+
border-radius: 0;
|
|
122
|
+
border: 1px solid #969696;
|
|
123
|
+
color: #ffd939;
|
|
124
|
+
cursor: default;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.e-mention .e-mention-chip::selection {
|
|
128
|
+
color: #000;
|
|
129
|
+
background: #ffd939;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.e-mention.e-editable-element {
|
|
133
|
+
border: 2px solid #969696;
|
|
134
|
+
height: auto;
|
|
135
|
+
min-height: 120px;
|
|
136
|
+
width: 100%;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.e-form-mirror-div {
|
|
140
|
+
white-space: pre-wrap;
|
|
141
|
+
}
|
|
142
|
+
|
|
103
143
|
.e-rtl .e-dropdownbase.e-dd-group .e-list-item {
|
|
104
144
|
padding-right: 20px;
|
|
105
145
|
}
|
|
@@ -162,6 +202,7 @@
|
|
|
162
202
|
border-color: #969696;
|
|
163
203
|
}
|
|
164
204
|
.e-dropdownbase .e-list-item {
|
|
205
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
165
206
|
-webkit-tap-highlight-color: transparent;
|
|
166
207
|
background-color: #000;
|
|
167
208
|
border-bottom: 2px;
|
|
@@ -348,6 +389,8 @@
|
|
|
348
389
|
color: #fff;
|
|
349
390
|
}
|
|
350
391
|
|
|
392
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
393
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
351
394
|
@keyframes material-spinner-rotate {
|
|
352
395
|
0% {
|
|
353
396
|
transform: rotate(0);
|
|
@@ -504,6 +547,7 @@
|
|
|
504
547
|
background-color: #000;
|
|
505
548
|
}
|
|
506
549
|
|
|
550
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
507
551
|
.e-ddl input.e-input::-webkit-contacts-auto-fill-button {
|
|
508
552
|
display: none;
|
|
509
553
|
pointer-events: none;
|
|
@@ -512,6 +556,7 @@
|
|
|
512
556
|
visibility: hidden;
|
|
513
557
|
}
|
|
514
558
|
|
|
559
|
+
/* stylelint-enable property-no-vendor-prefix */
|
|
515
560
|
.e-filter-parent {
|
|
516
561
|
border: 1px solid #fff;
|
|
517
562
|
border-top-width: 0;
|
|
@@ -555,6 +600,7 @@
|
|
|
555
600
|
cursor: default;
|
|
556
601
|
}
|
|
557
602
|
|
|
603
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
558
604
|
.e-ddl.e-input-group .e-ddl-hidden,
|
|
559
605
|
.e-ddl.e-float-input .e-ddl-hidden {
|
|
560
606
|
-webkit-appearance: initial;
|
|
@@ -697,6 +743,8 @@ ejs-dropdownlist {
|
|
|
697
743
|
color: #fff;
|
|
698
744
|
}
|
|
699
745
|
|
|
746
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
747
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
700
748
|
@keyframes material-spinner-rotate {
|
|
701
749
|
0% {
|
|
702
750
|
transform: rotate(0);
|
|
@@ -714,6 +762,8 @@ ejs-dropdownlist {
|
|
|
714
762
|
}
|
|
715
763
|
}
|
|
716
764
|
/*! TreeView's high contrast theme wise override definitions and variables */
|
|
765
|
+
/* stylelint-disable */
|
|
766
|
+
/* stylelint-disable */
|
|
717
767
|
.e-ddt .e-ddt-icon::before {
|
|
718
768
|
content: "\e966";
|
|
719
769
|
}
|
|
@@ -1111,6 +1161,9 @@ ejs-dropdownlist {
|
|
|
1111
1161
|
color: #fff;
|
|
1112
1162
|
}
|
|
1113
1163
|
|
|
1164
|
+
/* stylelint-disable-line no-empty-source */ /* stylelint-disable-line no-empty-source */
|
|
1165
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1166
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1114
1167
|
@keyframes material-spinner-rotate {
|
|
1115
1168
|
0% {
|
|
1116
1169
|
transform: rotate(0);
|
|
@@ -1131,6 +1184,9 @@ ejs-dropdownlist {
|
|
|
1131
1184
|
color: #fff;
|
|
1132
1185
|
top: 12px;
|
|
1133
1186
|
}
|
|
1187
|
+
.e-multiselect .e-multi-select-wrapper input {
|
|
1188
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1189
|
+
}
|
|
1134
1190
|
.e-multiselect .e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
1135
1191
|
color: #969696;
|
|
1136
1192
|
font-family: inherit;
|
|
@@ -1542,7 +1598,7 @@ ejs-dropdownlist {
|
|
|
1542
1598
|
border: 0;
|
|
1543
1599
|
font-family: inherit;
|
|
1544
1600
|
font-size: 14px;
|
|
1545
|
-
font-weight:
|
|
1601
|
+
font-weight: normal;
|
|
1546
1602
|
height: 28px;
|
|
1547
1603
|
min-height: 28px;
|
|
1548
1604
|
outline: none;
|
|
@@ -1556,7 +1612,7 @@ ejs-dropdownlist {
|
|
|
1556
1612
|
color: inherit;
|
|
1557
1613
|
font-family: inherit;
|
|
1558
1614
|
font-size: 14px;
|
|
1559
|
-
font-weight:
|
|
1615
|
+
font-weight: normal;
|
|
1560
1616
|
height: 28px;
|
|
1561
1617
|
min-height: 28px;
|
|
1562
1618
|
outline: none;
|
|
@@ -1579,6 +1635,7 @@ ejs-dropdownlist {
|
|
|
1579
1635
|
min-height: 38px;
|
|
1580
1636
|
}
|
|
1581
1637
|
|
|
1638
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1582
1639
|
.e-multi-select-wrapper input[type=text]::-ms-clear {
|
|
1583
1640
|
display: none;
|
|
1584
1641
|
}
|
|
@@ -2223,6 +2280,7 @@ ejs-multiselect {
|
|
|
2223
2280
|
box-sizing: border-box;
|
|
2224
2281
|
}
|
|
2225
2282
|
|
|
2283
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2226
2284
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
2227
2285
|
-webkit-text-fill-color: #000;
|
|
2228
2286
|
color: #000;
|
|
@@ -2339,19 +2397,19 @@ ejs-multiselect {
|
|
|
2339
2397
|
border: 1px solid transparent;
|
|
2340
2398
|
}
|
|
2341
2399
|
|
|
2342
|
-
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
2400
|
+
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2343
2401
|
color: #fff;
|
|
2344
2402
|
}
|
|
2345
2403
|
|
|
2346
|
-
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {
|
|
2404
|
+
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2347
2405
|
color: #fff;
|
|
2348
2406
|
}
|
|
2349
2407
|
|
|
2350
|
-
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {
|
|
2408
|
+
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2351
2409
|
color: #fff;
|
|
2352
2410
|
}
|
|
2353
2411
|
|
|
2354
|
-
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {
|
|
2412
|
+
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2355
2413
|
color: #fff;
|
|
2356
2414
|
}
|
|
2357
2415
|
|
|
@@ -2449,6 +2507,7 @@ e-ddl.e-popup.e-multi-select-list-wrapper.e-multiselct-group.e-checkbox .e-list-
|
|
|
2449
2507
|
content: "\e656";
|
|
2450
2508
|
}
|
|
2451
2509
|
|
|
2510
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2452
2511
|
.e-listbox-wrapper,
|
|
2453
2512
|
.e-listbox-container {
|
|
2454
2513
|
-webkit-overflow-scrolling: touch;
|
|
@@ -2467,7 +2526,7 @@ e-ddl.e-popup.e-multi-select-list-wrapper.e-multiselct-group.e-checkbox .e-list-
|
|
|
2467
2526
|
}
|
|
2468
2527
|
.e-listbox-wrapper.e-listboxtool-container .e-list-wrap,
|
|
2469
2528
|
.e-listbox-container.e-listboxtool-container .e-list-wrap {
|
|
2470
|
-
width: 87% !important;
|
|
2529
|
+
width: 87% !important; /* stylelint-disable-line declaration-no-important */
|
|
2471
2530
|
}
|
|
2472
2531
|
.e-listbox-wrapper:focus,
|
|
2473
2532
|
.e-listbox-container:focus {
|
|
@@ -2826,16 +2885,6 @@ ejs-listbox {
|
|
|
2826
2885
|
top: 30%;
|
|
2827
2886
|
}
|
|
2828
2887
|
|
|
2829
|
-
.e-listboxtool-container .e-left {
|
|
2830
|
-
-ms-flex-direction: row-reverse;
|
|
2831
|
-
flex-direction: row-reverse;
|
|
2832
|
-
}
|
|
2833
|
-
|
|
2834
|
-
.e-listboxtool-wrapper .e-left {
|
|
2835
|
-
-ms-flex-direction: column-reverse;
|
|
2836
|
-
flex-direction: column-reverse;
|
|
2837
|
-
}
|
|
2838
|
-
|
|
2839
2888
|
.e-rtl.e-listboxtool-wrapper.e-right .e-listbox-tool,
|
|
2840
2889
|
.e-rtl.e-listboxtool-container.e-right .e-listbox-tool {
|
|
2841
2890
|
margin-right: 15px;
|
|
@@ -2849,7 +2898,7 @@ ejs-listbox {
|
|
|
2849
2898
|
.e-listbox-wrapper.e-bigger.e-listboxtool-container .e-list-wrap,
|
|
2850
2899
|
.e-bigger .e-listbox-container.e-listboxtool-container .e-list-wrap,
|
|
2851
2900
|
.e-listbox-container.e-bigger.e-listboxtool-container .e-list-wrap {
|
|
2852
|
-
width: 83% !important;
|
|
2901
|
+
width: 83% !important; /* stylelint-disable-line declaration-no-important */
|
|
2853
2902
|
}
|
|
2854
2903
|
.e-bigger .e-listbox-wrapper .e-list-item,
|
|
2855
2904
|
.e-listbox-wrapper.e-bigger .e-list-item,
|
|
@@ -2938,30 +2987,16 @@ ejs-listbox {
|
|
|
2938
2987
|
.e-listbox-container.e-bigger .e-list-header .e-text {
|
|
2939
2988
|
font-size: 15px;
|
|
2940
2989
|
}
|
|
2941
|
-
.e-listbox-wrapper.e-filter-list .e-list-parent
|
|
2942
|
-
|
|
2943
|
-
}
|
|
2944
|
-
|
|
2945
|
-
.e-listbox-container.e-filter-list .e-list-wrap {
|
|
2946
|
-
height: calc(100% - 51px) !important;
|
|
2947
|
-
}
|
|
2948
|
-
|
|
2949
|
-
.e-small .e-listbox-wrapper.e-filter-list .e-list-parent {
|
|
2990
|
+
.e-small .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
2991
|
+
.e-small .e-listbox-container.e-filter-list .e-list-parent {
|
|
2950
2992
|
height: calc(100% - 45px);
|
|
2951
2993
|
}
|
|
2952
2994
|
|
|
2953
|
-
.e-
|
|
2954
|
-
|
|
2955
|
-
}
|
|
2956
|
-
|
|
2957
|
-
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent {
|
|
2995
|
+
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
2996
|
+
.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
2958
2997
|
height: calc(100% - 59px);
|
|
2959
2998
|
}
|
|
2960
2999
|
|
|
2961
|
-
.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
2962
|
-
height: calc(100% - 59px) !important;
|
|
2963
|
-
}
|
|
2964
|
-
|
|
2965
3000
|
.e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
2966
3001
|
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
2967
3002
|
height: calc(100% - 104px);
|
|
@@ -2972,14 +3007,11 @@ ejs-listbox {
|
|
|
2972
3007
|
height: calc(100% - 45px);
|
|
2973
3008
|
}
|
|
2974
3009
|
|
|
2975
|
-
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent
|
|
3010
|
+
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
3011
|
+
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
2976
3012
|
height: calc(100% - 55px);
|
|
2977
3013
|
}
|
|
2978
3014
|
|
|
2979
|
-
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
2980
|
-
height: calc(100% - 55px) !important;
|
|
2981
|
-
}
|
|
2982
|
-
|
|
2983
3015
|
.e-listbox-wrapper,
|
|
2984
3016
|
.e-listbox-container:not(.e-listboxtool-container):not(.e-sortableclone),
|
|
2985
3017
|
.e-listboxtool-container.e-listbox-container .e-ul {
|
|
@@ -2999,6 +3031,11 @@ ejs-listbox {
|
|
|
2999
3031
|
font-size: 14px;
|
|
3000
3032
|
}
|
|
3001
3033
|
|
|
3034
|
+
.e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
3035
|
+
.e-listbox-container.e-filter-list .e-list-parent {
|
|
3036
|
+
height: calc(100% - 51px);
|
|
3037
|
+
}
|
|
3038
|
+
|
|
3002
3039
|
.e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
3003
3040
|
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
3004
3041
|
height: calc(100% - 87px);
|
|
@@ -3234,4 +3271,22 @@ ejs-listbox {
|
|
|
3234
3271
|
.e-listbox-container.e-rtl.e-list-template .e-list-wrapper.e-list-badge:not(.e-list-avatar) {
|
|
3235
3272
|
padding-left: 3.3846em;
|
|
3236
3273
|
padding-right: 0.923em;
|
|
3274
|
+
}
|
|
3275
|
+
|
|
3276
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
3277
|
+
@keyframes material-spinner-rotate {
|
|
3278
|
+
0% {
|
|
3279
|
+
transform: rotate(0);
|
|
3280
|
+
}
|
|
3281
|
+
100% {
|
|
3282
|
+
transform: rotate(360deg);
|
|
3283
|
+
}
|
|
3284
|
+
}
|
|
3285
|
+
@keyframes fabric-spinner-rotate {
|
|
3286
|
+
0% {
|
|
3287
|
+
transform: rotate(0);
|
|
3288
|
+
}
|
|
3289
|
+
100% {
|
|
3290
|
+
transform: rotate(360deg);
|
|
3291
|
+
}
|
|
3237
3292
|
}
|
package/styles/highcontrast.scss
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
@import 'layout.scss';
|
|
2
2
|
@import 'theme.scss';
|
|
@@ -77,6 +77,7 @@ $listbox-checkbox-left-margin: -4px 10px 0 0 !default;
|
|
|
77
77
|
$listbox-checkbox-right-margin: -4px 0 0 10px !default;
|
|
78
78
|
$listbox-rtl-checkbox-left-margin: -4px 0 0 10px !default;
|
|
79
79
|
$listbox-rtl-checkbox-right-margin: -4px 10px 0 0 !default;
|
|
80
|
+
|
|
80
81
|
//ListView In-built template variables
|
|
81
82
|
$listbox-template-padding: .7142em 1.0714em !default;
|
|
82
83
|
$listbox-template-avatar-padding-right: 1.0714em !default;
|
|
@@ -105,6 +106,7 @@ $listbox-template-multiline-header-font-size: 18px !default;
|
|
|
105
106
|
$listbox-template-multiline-padding: .7142em 1.0714em !default;
|
|
106
107
|
$listbox-template-multiline-content-font-size: 14px !default;
|
|
107
108
|
$listbox-template-multiline-avatar-top: .7142em !default;
|
|
109
|
+
|
|
108
110
|
//enddefault
|
|
109
111
|
|
|
110
112
|
$listbox-border-color: $grey-88;
|
|
@@ -72,6 +72,7 @@ $listbox-checkbox-left-margin: -4px 10px 0 0 !default;
|
|
|
72
72
|
$listbox-checkbox-right-margin: -4px 0 0 10px !default;
|
|
73
73
|
$listbox-rtl-checkbox-left-margin: -4px 0 0 10px !default;
|
|
74
74
|
$listbox-rtl-checkbox-right-margin: -4px 10px 0 0 !default;
|
|
75
|
+
|
|
75
76
|
//ListView In-built template variables
|
|
76
77
|
$listbox-template-padding: .7142em 1.0714em !default;
|
|
77
78
|
$listbox-template-avatar-padding-right: 1.0714em !default;
|
|
@@ -77,6 +77,7 @@ $listbox-checkbox-left-margin: 0 10px 0 0 !default;
|
|
|
77
77
|
$listbox-checkbox-right-margin: 0 0 0 10px !default;
|
|
78
78
|
$listbox-rtl-checkbox-left-margin: 0 0 0 10px !default;
|
|
79
79
|
$listbox-rtl-checkbox-right-margin: 0 10px 0 0 !default;
|
|
80
|
+
|
|
80
81
|
//ListView In-built template variables
|
|
81
82
|
$listbox-template-padding: .7142em 1.0714em !default;
|
|
82
83
|
$listbox-template-avatar-padding-right: 1.0714em !default;
|
|
@@ -44,6 +44,7 @@ $listbox-checkbox-right-margin: -2px 0 0 8px !default;
|
|
|
44
44
|
$listbox-checkbox-left-margin: -2px 8px 0 0 !default;
|
|
45
45
|
$listbox-rtl-checkbox-left-margin: -2px 0 0 8px !default;
|
|
46
46
|
$listbox-rtl-checkbox-right-margin: -2px 8px 0 0 !default;
|
|
47
|
+
|
|
47
48
|
//ListView In-built template variables
|
|
48
49
|
$listbox-template-padding: 8px 16px !default;
|
|
49
50
|
$listbox-template-avatar-padding-right: 16px !default;
|
|
@@ -70,8 +71,10 @@ $listbox-template-multiline-header-font-size: $text-sm !default;
|
|
|
70
71
|
$listbox-template-multiline-padding: 4px !default;
|
|
71
72
|
$listbox-template-multiline-content-font-size: $text-sm !default;
|
|
72
73
|
$listbox-template-multiline-avatar-top: 0 !default;
|
|
74
|
+
$listbox-filter-height: calc(100% - 47px) !default;
|
|
73
75
|
$listbox-filter-small-height: calc(100% - 45px) !default;
|
|
74
76
|
$listbox-filter-bigger-small-height: calc(100% - 45px) !default;
|
|
77
|
+
$listbox-filter-bigger-height: calc(100% - 55px) !default;
|
|
75
78
|
$listbox-item-height: 36px !default;
|
|
76
79
|
|
|
77
80
|
$listbox-border-color: $border-light;
|