@syncfusion/ej2-dropdowns 20.2.48 → 20.3.47
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -28
- package/dist/ej2-dropdowns.min.js +10 -0
- package/dist/ej2-dropdowns.umd.min.js +2 -2
- package/dist/ej2-dropdowns.umd.min.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es2015.js +1437 -47
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +1463 -51
- package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
- package/dist/global/ej2-dropdowns.min.js +2 -2
- package/dist/global/ej2-dropdowns.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/mention.d.ts +4 -0
- package/mention.js +4 -0
- package/package.json +12 -12
- package/src/auto-complete/auto-complete.js +6 -2
- package/src/combo-box/combo-box.js +1 -3
- package/src/drop-down-base/drop-down-base.d.ts +2 -0
- package/src/drop-down-base/drop-down-base.js +6 -1
- package/src/drop-down-list/drop-down-list.d.ts +1 -0
- package/src/drop-down-list/drop-down-list.js +33 -21
- package/src/index.d.ts +1 -0
- package/src/index.js +1 -0
- package/src/list-box/list-box.js +16 -11
- package/src/mention/index.d.ts +5 -0
- package/src/mention/index.js +4 -0
- package/src/mention/mention-model.d.ts +285 -0
- package/src/mention/mention.d.ts +451 -0
- package/src/mention/mention.js +1369 -0
- package/src/multi-select/checkbox-selection.js +1 -4
- package/src/multi-select/multi-select-model.d.ts +1 -1
- package/src/multi-select/multi-select.d.ts +1 -0
- package/src/multi-select/multi-select.js +35 -9
- package/styles/auto-complete/_all.scss +1 -1
- package/styles/auto-complete/_bootstrap-dark-definition.scss +1 -1
- package/styles/auto-complete/_bootstrap-definition.scss +1 -1
- package/styles/auto-complete/_bootstrap4-definition.scss +2 -2
- package/styles/auto-complete/_bootstrap5-definition.scss +1 -1
- package/styles/auto-complete/_fabric-dark-definition.scss +1 -1
- package/styles/auto-complete/_fabric-definition.scss +1 -1
- package/styles/auto-complete/_fluent-definition.scss +1 -1
- package/styles/auto-complete/_fusionnew-definition.scss +1 -1
- package/styles/auto-complete/_highcontrast-definition.scss +1 -1
- package/styles/auto-complete/_highcontrast-light-definition.scss +1 -1
- package/styles/auto-complete/_material-dark-definition.scss +1 -1
- package/styles/auto-complete/_material-definition.scss +1 -1
- package/styles/auto-complete/_material3-definition.scss +1 -1
- package/styles/auto-complete/_tailwind-definition.scss +1 -1
- package/styles/auto-complete/bootstrap-dark.css +3 -1
- package/styles/auto-complete/bootstrap.css +3 -1
- package/styles/auto-complete/bootstrap4.css +3 -1
- package/styles/auto-complete/bootstrap5-dark.css +3 -1
- package/styles/auto-complete/bootstrap5.css +3 -1
- package/styles/auto-complete/fabric-dark.css +3 -1
- package/styles/auto-complete/fabric.css +3 -1
- package/styles/auto-complete/fluent-dark.css +3 -1
- package/styles/auto-complete/fluent.css +3 -1
- package/styles/auto-complete/highcontrast-light.css +3 -1
- package/styles/auto-complete/highcontrast.css +3 -1
- package/styles/auto-complete/material-dark.css +3 -1
- package/styles/auto-complete/material.css +3 -1
- package/styles/auto-complete/tailwind-dark.css +3 -1
- package/styles/auto-complete/tailwind.css +3 -1
- package/styles/bootstrap-dark.css +94 -42
- package/styles/bootstrap-dark.scss +1 -0
- package/styles/bootstrap.css +94 -42
- package/styles/bootstrap.scss +1 -0
- package/styles/bootstrap4.css +95 -42
- package/styles/bootstrap4.scss +1 -0
- package/styles/bootstrap5-dark.css +101 -44
- package/styles/bootstrap5-dark.scss +1 -0
- package/styles/bootstrap5.css +101 -44
- package/styles/bootstrap5.scss +1 -0
- package/styles/combo-box/_all.scss +1 -1
- package/styles/combo-box/_bootstrap-dark-definition.scss +1 -1
- package/styles/combo-box/_bootstrap-definition.scss +1 -1
- package/styles/combo-box/_bootstrap4-definition.scss +2 -2
- package/styles/combo-box/_bootstrap5-definition.scss +1 -1
- package/styles/combo-box/_fabric-dark-definition.scss +1 -1
- package/styles/combo-box/_fabric-definition.scss +1 -1
- package/styles/combo-box/_fluent-definition.scss +1 -1
- package/styles/combo-box/_fusionnew-definition.scss +1 -1
- package/styles/combo-box/_highcontrast-definition.scss +1 -1
- package/styles/combo-box/_highcontrast-light-definition.scss +1 -1
- package/styles/combo-box/_material-dark-definition.scss +1 -1
- package/styles/combo-box/_material-definition.scss +1 -1
- package/styles/combo-box/_material3-definition.scss +1 -1
- package/styles/combo-box/_tailwind-definition.scss +1 -1
- package/styles/combo-box/bootstrap-dark.css +3 -1
- package/styles/combo-box/bootstrap.css +3 -1
- package/styles/combo-box/bootstrap4.css +3 -1
- package/styles/combo-box/bootstrap5-dark.css +3 -1
- package/styles/combo-box/bootstrap5.css +3 -1
- package/styles/combo-box/fabric-dark.css +3 -1
- package/styles/combo-box/fabric.css +3 -1
- package/styles/combo-box/fluent-dark.css +3 -1
- package/styles/combo-box/fluent.css +3 -1
- package/styles/combo-box/highcontrast-light.css +3 -1
- package/styles/combo-box/highcontrast.css +3 -1
- package/styles/combo-box/material-dark.css +3 -1
- package/styles/combo-box/material.css +3 -1
- package/styles/combo-box/tailwind-dark.css +3 -1
- package/styles/combo-box/tailwind.css +3 -1
- package/styles/drop-down-base/_all.scss +1 -1
- package/styles/drop-down-base/_bootstrap-dark-definition.scss +8 -2
- package/styles/drop-down-base/_bootstrap-definition.scss +6 -1
- package/styles/drop-down-base/_bootstrap4-definition.scss +6 -1
- package/styles/drop-down-base/_bootstrap5-definition.scss +8 -3
- package/styles/drop-down-base/_fabric-dark-definition.scss +6 -1
- package/styles/drop-down-base/_fabric-definition.scss +6 -1
- package/styles/drop-down-base/_fluent-definition.scss +8 -2
- package/styles/drop-down-base/_fusionnew-definition.scss +8 -3
- package/styles/drop-down-base/_highcontrast-definition.scss +16 -6
- package/styles/drop-down-base/_highcontrast-light-definition.scss +18 -7
- package/styles/drop-down-base/_layout.scss +44 -3
- package/styles/drop-down-base/_material-dark-definition.scss +7 -1
- package/styles/drop-down-base/_material-definition.scss +6 -0
- package/styles/drop-down-base/_material3-definition.scss +8 -3
- package/styles/drop-down-base/_tailwind-definition.scss +8 -3
- package/styles/drop-down-base/_theme.scss +4 -4
- package/styles/drop-down-base/bootstrap-dark.css +42 -1
- package/styles/drop-down-base/bootstrap.css +42 -1
- package/styles/drop-down-base/bootstrap4.css +42 -1
- package/styles/drop-down-base/bootstrap5-dark.css +42 -1
- package/styles/drop-down-base/bootstrap5.css +42 -1
- package/styles/drop-down-base/fabric-dark.css +42 -1
- package/styles/drop-down-base/fabric.css +42 -1
- package/styles/drop-down-base/fluent-dark.css +42 -1
- package/styles/drop-down-base/fluent.css +42 -1
- package/styles/drop-down-base/highcontrast-light.css +42 -1
- package/styles/drop-down-base/highcontrast.css +42 -1
- package/styles/drop-down-base/material-dark.css +42 -1
- package/styles/drop-down-base/material.css +42 -1
- package/styles/drop-down-base/tailwind-dark.css +42 -1
- package/styles/drop-down-base/tailwind.css +42 -1
- package/styles/drop-down-list/_all.scss +2 -1
- package/styles/drop-down-list/_bootstrap-dark-definition.scss +2 -1
- package/styles/drop-down-list/_bootstrap-definition.scss +2 -1
- package/styles/drop-down-list/_bootstrap4-definition.scss +3 -1
- package/styles/drop-down-list/_bootstrap5-definition.scss +3 -3
- package/styles/drop-down-list/_fabric-dark-definition.scss +2 -1
- package/styles/drop-down-list/_fabric-definition.scss +2 -0
- package/styles/drop-down-list/_fluent-definition.scss +2 -1
- package/styles/drop-down-list/_fusionnew-definition.scss +3 -3
- package/styles/drop-down-list/_highcontrast-definition.scss +21 -10
- package/styles/drop-down-list/_highcontrast-light-definition.scss +22 -11
- package/styles/drop-down-list/_layout.scss +8 -9
- package/styles/drop-down-list/_material-dark-definition.scss +2 -2
- package/styles/drop-down-list/_material-definition.scss +1 -0
- package/styles/drop-down-list/_material3-definition.scss +3 -3
- package/styles/drop-down-list/_tailwind-definition.scss +1 -0
- package/styles/drop-down-list/_theme.scss +3 -3
- package/styles/drop-down-list/bootstrap-dark.css +5 -0
- package/styles/drop-down-list/bootstrap.css +5 -0
- package/styles/drop-down-list/bootstrap4.css +5 -0
- package/styles/drop-down-list/bootstrap5-dark.css +6 -0
- package/styles/drop-down-list/bootstrap5.css +6 -0
- package/styles/drop-down-list/fabric-dark.css +5 -0
- package/styles/drop-down-list/fabric.css +5 -0
- package/styles/drop-down-list/fluent-dark.css +6 -0
- package/styles/drop-down-list/fluent.css +6 -0
- package/styles/drop-down-list/highcontrast-light.css +5 -0
- package/styles/drop-down-list/highcontrast.css +5 -0
- package/styles/drop-down-list/icons/_bootstrap.scss +0 -1
- package/styles/drop-down-list/icons/_fabric.scss +0 -1
- package/styles/drop-down-list/icons/_material.scss +0 -1
- package/styles/drop-down-list/material-dark.css +5 -0
- package/styles/drop-down-list/material.css +5 -0
- package/styles/drop-down-list/tailwind-dark.css +6 -0
- package/styles/drop-down-list/tailwind.css +6 -0
- package/styles/drop-down-tree/_all.scss +1 -1
- package/styles/drop-down-tree/_bootstrap-dark-definition.scss +1 -1
- package/styles/drop-down-tree/_bootstrap-definition.scss +1 -1
- package/styles/drop-down-tree/_bootstrap4-definition.scss +1 -1
- package/styles/drop-down-tree/_bootstrap5-definition.scss +2 -2
- package/styles/drop-down-tree/_fabric-dark-definition.scss +1 -1
- package/styles/drop-down-tree/_fabric-definition.scss +2 -2
- package/styles/drop-down-tree/_fluent-definition.scss +2 -2
- package/styles/drop-down-tree/_fusionnew-definition.scss +2 -2
- package/styles/drop-down-tree/_highcontrast-definition.scss +1 -1
- package/styles/drop-down-tree/_highcontrast-light-definition.scss +1 -1
- package/styles/drop-down-tree/_layout.scss +1 -2
- package/styles/drop-down-tree/_material-dark-definition.scss +2 -2
- package/styles/drop-down-tree/_material-definition.scss +2 -2
- package/styles/drop-down-tree/_material3-definition.scss +2 -2
- package/styles/drop-down-tree/_tailwind-definition.scss +2 -2
- package/styles/drop-down-tree/bootstrap-dark.css +4 -0
- package/styles/drop-down-tree/bootstrap.css +4 -0
- package/styles/drop-down-tree/bootstrap4.css +4 -0
- package/styles/drop-down-tree/bootstrap5-dark.css +5 -0
- package/styles/drop-down-tree/bootstrap5.css +5 -0
- package/styles/drop-down-tree/fabric-dark.css +4 -0
- package/styles/drop-down-tree/fabric.css +4 -0
- package/styles/drop-down-tree/fluent-dark.css +5 -0
- package/styles/drop-down-tree/fluent.css +5 -0
- package/styles/drop-down-tree/highcontrast-light.css +4 -0
- package/styles/drop-down-tree/highcontrast.css +4 -0
- package/styles/drop-down-tree/icons/_bootstrap.scss +0 -1
- package/styles/drop-down-tree/icons/_bootstrap4.scss +0 -1
- package/styles/drop-down-tree/icons/_fabric.scss +0 -1
- package/styles/drop-down-tree/icons/_highcontrast-light.scss +0 -1
- package/styles/drop-down-tree/icons/_highcontrast.scss +0 -1
- package/styles/drop-down-tree/icons/_material-dark.scss +0 -1
- package/styles/drop-down-tree/icons/_material.scss +0 -1
- package/styles/drop-down-tree/material-dark.css +4 -0
- package/styles/drop-down-tree/material.css +4 -0
- package/styles/drop-down-tree/tailwind-dark.css +5 -0
- package/styles/drop-down-tree/tailwind.css +5 -0
- package/styles/fabric-dark.css +94 -42
- package/styles/fabric-dark.scss +1 -0
- package/styles/fabric.css +94 -42
- package/styles/fabric.scss +1 -0
- package/styles/fluent-dark.css +101 -44
- package/styles/fluent-dark.scss +1 -0
- package/styles/fluent.css +101 -44
- package/styles/fluent.scss +1 -0
- package/styles/highcontrast-light.css +97 -42
- package/styles/highcontrast-light.scss +1 -0
- package/styles/highcontrast.css +97 -42
- package/styles/highcontrast.scss +1 -0
- package/styles/list-box/_all.scss +1 -1
- package/styles/list-box/_bootstrap-dark-definition.scss +2 -0
- package/styles/list-box/_bootstrap-definition.scss +1 -0
- package/styles/list-box/_bootstrap4-definition.scss +1 -0
- package/styles/list-box/_bootstrap5-definition.scss +3 -0
- package/styles/list-box/_fabric-dark-definition.scss +3 -1
- package/styles/list-box/_fabric-definition.scss +1 -0
- package/styles/list-box/_fluent-definition.scss +3 -0
- package/styles/list-box/_fusionnew-definition.scss +1 -0
- package/styles/list-box/_highcontrast-definition.scss +1 -0
- package/styles/list-box/_highcontrast-light-definition.scss +3 -1
- package/styles/list-box/_layout.scss +8 -17
- package/styles/list-box/_material-dark-definition.scss +2 -0
- package/styles/list-box/_material-definition.scss +1 -0
- package/styles/list-box/_material3-definition.scss +1 -0
- package/styles/list-box/_tailwind-definition.scss +3 -0
- package/styles/list-box/_theme.scss +11 -25
- package/styles/list-box/bootstrap-dark.css +12 -33
- package/styles/list-box/bootstrap.css +14 -35
- package/styles/list-box/bootstrap4.css +14 -35
- package/styles/list-box/bootstrap5-dark.css +15 -36
- package/styles/list-box/bootstrap5.css +15 -36
- package/styles/list-box/fabric-dark.css +12 -33
- package/styles/list-box/fabric.css +14 -35
- package/styles/list-box/fluent-dark.css +15 -36
- package/styles/list-box/fluent.css +15 -36
- package/styles/list-box/highcontrast-light.css +12 -33
- package/styles/list-box/highcontrast.css +14 -35
- package/styles/list-box/icons/_bootstrap-dark.scss +2 -2
- package/styles/list-box/icons/_bootstrap.scss +1 -1
- package/styles/list-box/icons/_bootstrap4.scss +1 -1
- package/styles/list-box/icons/_bootstrap5.scss +1 -1
- package/styles/list-box/icons/_fabric-dark.scss +1 -1
- package/styles/list-box/icons/_fabric.scss +1 -1
- package/styles/list-box/icons/_fluent.scss +1 -1
- package/styles/list-box/icons/_fusionnew.scss +1 -1
- package/styles/list-box/icons/_highcontrast-light.scss +1 -1
- package/styles/list-box/icons/_highcontrast.scss +1 -1
- package/styles/list-box/icons/_material-dark.scss +1 -1
- package/styles/list-box/icons/_material.scss +2 -2
- package/styles/list-box/icons/_material3.scss +1 -1
- package/styles/list-box/icons/_tailwind-dark.scss +1 -1
- package/styles/list-box/icons/_tailwind.scss +1 -1
- package/styles/list-box/material-dark.css +12 -33
- package/styles/list-box/material.css +14 -35
- package/styles/list-box/tailwind-dark.css +15 -36
- package/styles/list-box/tailwind.css +15 -36
- package/styles/material-dark.css +94 -42
- package/styles/material-dark.scss +1 -0
- package/styles/material.css +94 -42
- package/styles/material.scss +1 -0
- package/styles/mention/_all.scss +1 -0
- package/styles/mention/_bootstrap-dark-definition.scss +3 -0
- package/styles/mention/_bootstrap-definition.scss +3 -0
- package/styles/mention/_bootstrap4-definition.scss +3 -0
- package/styles/mention/_bootstrap5-dark-definition.scss +1 -0
- package/styles/mention/_bootstrap5-definition.scss +1 -0
- package/styles/mention/_fabric-dark-definition.scss +2 -0
- package/styles/mention/_fabric-definition.scss +3 -0
- package/styles/mention/_fluent-dark-definition.scss +1 -0
- package/styles/mention/_fluent-definition.scss +1 -0
- package/styles/mention/_fusionnew-definition.scss +1 -0
- package/styles/mention/_highcontrast-definition.scss +3 -0
- package/styles/mention/_highcontrast-light-definition.scss +3 -0
- package/styles/mention/_layout.scss +6 -0
- package/styles/mention/_material-dark-definition.scss +3 -0
- package/styles/mention/_material-definition.scss +3 -0
- package/styles/mention/_material3-definition.scss +1 -0
- package/styles/mention/_tailwind-dark-definition.scss +1 -0
- package/styles/mention/_tailwind-definition.scss +1 -0
- package/styles/mention/bootstrap-dark.css +29 -0
- package/styles/mention/bootstrap-dark.scss +6 -0
- package/styles/mention/bootstrap.css +29 -0
- package/styles/mention/bootstrap.scss +6 -0
- package/styles/mention/bootstrap4.css +47 -0
- package/styles/mention/bootstrap4.scss +6 -0
- package/styles/mention/bootstrap5-dark.css +58 -0
- package/styles/mention/bootstrap5-dark.scss +6 -0
- package/styles/mention/bootstrap5.css +58 -0
- package/styles/mention/bootstrap5.scss +6 -0
- package/styles/mention/fabric-dark.css +29 -0
- package/styles/mention/fabric-dark.scss +6 -0
- package/styles/mention/fabric.css +29 -0
- package/styles/mention/fabric.scss +6 -0
- package/styles/mention/fluent-dark.css +58 -0
- package/styles/mention/fluent-dark.scss +6 -0
- package/styles/mention/fluent.css +58 -0
- package/styles/mention/fluent.scss +6 -0
- package/styles/mention/highcontrast-light.css +43 -0
- package/styles/mention/highcontrast-light.scss +6 -0
- package/styles/mention/highcontrast.css +43 -0
- package/styles/mention/highcontrast.scss +6 -0
- package/styles/mention/material-dark.css +29 -0
- package/styles/mention/material-dark.scss +6 -0
- package/styles/mention/material.css +29 -0
- package/styles/mention/material.scss +6 -0
- package/styles/mention/tailwind-dark.css +68 -0
- package/styles/mention/tailwind-dark.scss +6 -0
- package/styles/mention/tailwind.css +68 -0
- package/styles/mention/tailwind.scss +6 -0
- package/styles/multi-select/_all.scss +1 -1
- package/styles/multi-select/_bootstrap-dark-definition.scss +4 -1
- package/styles/multi-select/_bootstrap-definition.scss +2 -0
- package/styles/multi-select/_bootstrap4-definition.scss +5 -2
- package/styles/multi-select/_bootstrap5-definition.scss +2 -2
- package/styles/multi-select/_fabric-dark-definition.scss +5 -3
- package/styles/multi-select/_fabric-definition.scss +4 -2
- package/styles/multi-select/_fluent-definition.scss +2 -1
- package/styles/multi-select/_fusionnew-definition.scss +2 -2
- package/styles/multi-select/_highcontrast-definition.scss +47 -24
- package/styles/multi-select/_highcontrast-light-definition.scss +48 -25
- package/styles/multi-select/_layout.scss +59 -71
- package/styles/multi-select/_material-dark-definition.scss +3 -1
- package/styles/multi-select/_material-definition.scss +1 -0
- package/styles/multi-select/_material3-definition.scss +2 -2
- package/styles/multi-select/_tailwind-definition.scss +2 -3
- package/styles/multi-select/_theme.scss +16 -21
- package/styles/multi-select/bootstrap-dark.css +10 -6
- package/styles/multi-select/bootstrap.css +10 -6
- package/styles/multi-select/bootstrap4.css +10 -6
- package/styles/multi-select/bootstrap5-dark.css +11 -6
- package/styles/multi-select/bootstrap5.css +11 -6
- package/styles/multi-select/fabric-dark.css +10 -6
- package/styles/multi-select/fabric.css +10 -6
- package/styles/multi-select/fluent-dark.css +11 -6
- package/styles/multi-select/fluent.css +11 -6
- package/styles/multi-select/highcontrast-light.css +13 -6
- package/styles/multi-select/highcontrast.css +13 -6
- package/styles/multi-select/icons/_bootstrap5.scss +0 -1
- package/styles/multi-select/icons/_fluent.scss +0 -1
- package/styles/multi-select/icons/_fusionnew.scss +0 -1
- package/styles/multi-select/icons/_material-dark.scss +53 -54
- package/styles/multi-select/icons/_material.scss +53 -54
- package/styles/multi-select/icons/_material3.scss +0 -1
- package/styles/multi-select/icons/_tailwind.scss +0 -1
- package/styles/multi-select/material-dark.css +10 -6
- package/styles/multi-select/material.css +10 -6
- package/styles/multi-select/tailwind-dark.css +11 -6
- package/styles/multi-select/tailwind.css +11 -6
- package/styles/tailwind-dark.css +102 -44
- package/styles/tailwind-dark.scss +1 -0
- package/styles/tailwind.css +102 -44
- package/styles/tailwind.scss +1 -0
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1
3
|
@keyframes material-spinner-rotate {
|
|
2
4
|
0% {
|
|
3
5
|
transform: rotate(0);
|
|
@@ -357,7 +359,7 @@
|
|
|
357
359
|
border: 0;
|
|
358
360
|
font-family: inherit;
|
|
359
361
|
font-size: 15px;
|
|
360
|
-
font-weight:
|
|
362
|
+
font-weight: normal;
|
|
361
363
|
height: 32px;
|
|
362
364
|
min-height: 32px;
|
|
363
365
|
outline: none;
|
|
@@ -371,7 +373,7 @@
|
|
|
371
373
|
color: inherit;
|
|
372
374
|
font-family: inherit;
|
|
373
375
|
font-size: 14px;
|
|
374
|
-
font-weight:
|
|
376
|
+
font-weight: normal;
|
|
375
377
|
height: 32px;
|
|
376
378
|
min-height: 32px;
|
|
377
379
|
outline: none;
|
|
@@ -394,6 +396,7 @@
|
|
|
394
396
|
min-height: 38px;
|
|
395
397
|
}
|
|
396
398
|
|
|
399
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
397
400
|
.e-multi-select-wrapper input[type=text]::-ms-clear {
|
|
398
401
|
display: none;
|
|
399
402
|
}
|
|
@@ -1034,6 +1037,7 @@ ejs-multiselect {
|
|
|
1034
1037
|
box-sizing: border-box;
|
|
1035
1038
|
}
|
|
1036
1039
|
|
|
1040
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1037
1041
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
1038
1042
|
-webkit-text-fill-color: #333;
|
|
1039
1043
|
color: #333;
|
|
@@ -1162,19 +1166,19 @@ ejs-multiselect {
|
|
|
1162
1166
|
border: 1px solid transparent;
|
|
1163
1167
|
}
|
|
1164
1168
|
|
|
1165
|
-
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
1169
|
+
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1166
1170
|
color: #999;
|
|
1167
1171
|
}
|
|
1168
1172
|
|
|
1169
|
-
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {
|
|
1173
|
+
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1170
1174
|
color: #999;
|
|
1171
1175
|
}
|
|
1172
1176
|
|
|
1173
|
-
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {
|
|
1177
|
+
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1174
1178
|
color: #999;
|
|
1175
1179
|
}
|
|
1176
1180
|
|
|
1177
|
-
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {
|
|
1181
|
+
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1178
1182
|
color: #999;
|
|
1179
1183
|
}
|
|
1180
1184
|
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1
3
|
@keyframes material-spinner-rotate {
|
|
2
4
|
0% {
|
|
3
5
|
transform: rotate(0);
|
|
@@ -444,7 +446,7 @@
|
|
|
444
446
|
border: 0;
|
|
445
447
|
font-family: inherit;
|
|
446
448
|
font-size: 14px;
|
|
447
|
-
font-weight:
|
|
449
|
+
font-weight: normal;
|
|
448
450
|
height: 29px;
|
|
449
451
|
min-height: 29px;
|
|
450
452
|
outline: none;
|
|
@@ -458,7 +460,7 @@
|
|
|
458
460
|
color: inherit;
|
|
459
461
|
font-family: inherit;
|
|
460
462
|
font-size: 14px;
|
|
461
|
-
font-weight:
|
|
463
|
+
font-weight: normal;
|
|
462
464
|
height: 29px;
|
|
463
465
|
min-height: 29px;
|
|
464
466
|
outline: none;
|
|
@@ -482,6 +484,7 @@
|
|
|
482
484
|
min-height: 36px;
|
|
483
485
|
}
|
|
484
486
|
|
|
487
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
485
488
|
.e-multi-select-wrapper input[type=text]::-ms-clear {
|
|
486
489
|
display: none;
|
|
487
490
|
}
|
|
@@ -1134,6 +1137,7 @@ ejs-multiselect {
|
|
|
1134
1137
|
box-sizing: border-box;
|
|
1135
1138
|
}
|
|
1136
1139
|
|
|
1140
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1137
1141
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
1138
1142
|
-webkit-text-fill-color: #fff;
|
|
1139
1143
|
color: #fff;
|
|
@@ -1266,19 +1270,19 @@ ejs-multiselect {
|
|
|
1266
1270
|
border: 1px solid transparent;
|
|
1267
1271
|
}
|
|
1268
1272
|
|
|
1269
|
-
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
1273
|
+
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1270
1274
|
color: #6c757d;
|
|
1271
1275
|
}
|
|
1272
1276
|
|
|
1273
|
-
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {
|
|
1277
|
+
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1274
1278
|
color: #6c757d;
|
|
1275
1279
|
}
|
|
1276
1280
|
|
|
1277
|
-
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {
|
|
1281
|
+
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1278
1282
|
color: #6c757d;
|
|
1279
1283
|
}
|
|
1280
1284
|
|
|
1281
|
-
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {
|
|
1285
|
+
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1282
1286
|
color: #6c757d;
|
|
1283
1287
|
}
|
|
1284
1288
|
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2
|
+
/* stylelint-disable-line no-empty-source */
|
|
3
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1
4
|
@keyframes material-spinner-rotate {
|
|
2
5
|
0% {
|
|
3
6
|
transform: rotate(0);
|
|
@@ -418,7 +421,7 @@
|
|
|
418
421
|
border: 0;
|
|
419
422
|
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
420
423
|
font-size: 14px;
|
|
421
|
-
font-weight:
|
|
424
|
+
font-weight: normal;
|
|
422
425
|
height: 30px;
|
|
423
426
|
min-height: 30px;
|
|
424
427
|
outline: none;
|
|
@@ -432,7 +435,7 @@
|
|
|
432
435
|
color: inherit;
|
|
433
436
|
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
434
437
|
font-size: 14px;
|
|
435
|
-
font-weight:
|
|
438
|
+
font-weight: normal;
|
|
436
439
|
height: 30px;
|
|
437
440
|
min-height: 30px;
|
|
438
441
|
outline: none;
|
|
@@ -455,6 +458,7 @@
|
|
|
455
458
|
min-height: 36px;
|
|
456
459
|
}
|
|
457
460
|
|
|
461
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
458
462
|
.e-multi-select-wrapper input[type=text]::-ms-clear {
|
|
459
463
|
display: none;
|
|
460
464
|
}
|
|
@@ -1114,6 +1118,7 @@ ejs-multiselect {
|
|
|
1114
1118
|
box-sizing: border-box;
|
|
1115
1119
|
}
|
|
1116
1120
|
|
|
1121
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1117
1122
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
1118
1123
|
-webkit-text-fill-color: #fff;
|
|
1119
1124
|
color: #fff;
|
|
@@ -1240,19 +1245,19 @@ ejs-multiselect {
|
|
|
1240
1245
|
border: 0 solid transparent;
|
|
1241
1246
|
}
|
|
1242
1247
|
|
|
1243
|
-
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
1248
|
+
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1244
1249
|
color: #6c757d;
|
|
1245
1250
|
}
|
|
1246
1251
|
|
|
1247
|
-
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {
|
|
1252
|
+
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1248
1253
|
color: #6c757d;
|
|
1249
1254
|
}
|
|
1250
1255
|
|
|
1251
|
-
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {
|
|
1256
|
+
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1252
1257
|
color: #6c757d;
|
|
1253
1258
|
}
|
|
1254
1259
|
|
|
1255
|
-
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {
|
|
1260
|
+
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1256
1261
|
color: #6c757d;
|
|
1257
1262
|
}
|
|
1258
1263
|
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2
|
+
/* stylelint-disable-line no-empty-source */
|
|
3
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1
4
|
@keyframes material-spinner-rotate {
|
|
2
5
|
0% {
|
|
3
6
|
transform: rotate(0);
|
|
@@ -418,7 +421,7 @@
|
|
|
418
421
|
border: 0;
|
|
419
422
|
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
420
423
|
font-size: 14px;
|
|
421
|
-
font-weight:
|
|
424
|
+
font-weight: normal;
|
|
422
425
|
height: 30px;
|
|
423
426
|
min-height: 30px;
|
|
424
427
|
outline: none;
|
|
@@ -432,7 +435,7 @@
|
|
|
432
435
|
color: inherit;
|
|
433
436
|
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
434
437
|
font-size: 14px;
|
|
435
|
-
font-weight:
|
|
438
|
+
font-weight: normal;
|
|
436
439
|
height: 30px;
|
|
437
440
|
min-height: 30px;
|
|
438
441
|
outline: none;
|
|
@@ -455,6 +458,7 @@
|
|
|
455
458
|
min-height: 36px;
|
|
456
459
|
}
|
|
457
460
|
|
|
461
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
458
462
|
.e-multi-select-wrapper input[type=text]::-ms-clear {
|
|
459
463
|
display: none;
|
|
460
464
|
}
|
|
@@ -1114,6 +1118,7 @@ ejs-multiselect {
|
|
|
1114
1118
|
box-sizing: border-box;
|
|
1115
1119
|
}
|
|
1116
1120
|
|
|
1121
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1117
1122
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
1118
1123
|
-webkit-text-fill-color: #fff;
|
|
1119
1124
|
color: #fff;
|
|
@@ -1240,19 +1245,19 @@ ejs-multiselect {
|
|
|
1240
1245
|
border: 0 solid transparent;
|
|
1241
1246
|
}
|
|
1242
1247
|
|
|
1243
|
-
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
1248
|
+
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1244
1249
|
color: #6c757d;
|
|
1245
1250
|
}
|
|
1246
1251
|
|
|
1247
|
-
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {
|
|
1252
|
+
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1248
1253
|
color: #6c757d;
|
|
1249
1254
|
}
|
|
1250
1255
|
|
|
1251
|
-
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {
|
|
1256
|
+
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1252
1257
|
color: #6c757d;
|
|
1253
1258
|
}
|
|
1254
1259
|
|
|
1255
|
-
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {
|
|
1260
|
+
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1256
1261
|
color: #6c757d;
|
|
1257
1262
|
}
|
|
1258
1263
|
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1
3
|
@keyframes material-spinner-rotate {
|
|
2
4
|
0% {
|
|
3
5
|
transform: rotate(0);
|
|
@@ -352,7 +354,7 @@
|
|
|
352
354
|
border: 0;
|
|
353
355
|
font-family: inherit;
|
|
354
356
|
font-size: 14px;
|
|
355
|
-
font-weight:
|
|
357
|
+
font-weight: normal;
|
|
356
358
|
height: 28px;
|
|
357
359
|
min-height: 28px;
|
|
358
360
|
outline: none;
|
|
@@ -366,7 +368,7 @@
|
|
|
366
368
|
color: inherit;
|
|
367
369
|
font-family: inherit;
|
|
368
370
|
font-size: 14px;
|
|
369
|
-
font-weight:
|
|
371
|
+
font-weight: normal;
|
|
370
372
|
height: 28px;
|
|
371
373
|
min-height: 28px;
|
|
372
374
|
outline: none;
|
|
@@ -389,6 +391,7 @@
|
|
|
389
391
|
min-height: 38px;
|
|
390
392
|
}
|
|
391
393
|
|
|
394
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
392
395
|
.e-multi-select-wrapper input[type=text]::-ms-clear {
|
|
393
396
|
display: none;
|
|
394
397
|
}
|
|
@@ -1037,6 +1040,7 @@ ejs-multiselect {
|
|
|
1037
1040
|
box-sizing: border-box;
|
|
1038
1041
|
}
|
|
1039
1042
|
|
|
1043
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1040
1044
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
1041
1045
|
-webkit-text-fill-color: #dadada;
|
|
1042
1046
|
color: #dadada;
|
|
@@ -1165,19 +1169,19 @@ ejs-multiselect {
|
|
|
1165
1169
|
border: 1px solid transparent;
|
|
1166
1170
|
}
|
|
1167
1171
|
|
|
1168
|
-
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
1172
|
+
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1169
1173
|
color: #6f6c6c;
|
|
1170
1174
|
}
|
|
1171
1175
|
|
|
1172
|
-
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {
|
|
1176
|
+
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1173
1177
|
color: #6f6c6c;
|
|
1174
1178
|
}
|
|
1175
1179
|
|
|
1176
|
-
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {
|
|
1180
|
+
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1177
1181
|
color: #6f6c6c;
|
|
1178
1182
|
}
|
|
1179
1183
|
|
|
1180
|
-
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {
|
|
1184
|
+
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1181
1185
|
color: #6f6c6c;
|
|
1182
1186
|
}
|
|
1183
1187
|
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1
3
|
@keyframes material-spinner-rotate {
|
|
2
4
|
0% {
|
|
3
5
|
transform: rotate(0);
|
|
@@ -352,7 +354,7 @@
|
|
|
352
354
|
border: 0;
|
|
353
355
|
font-family: inherit;
|
|
354
356
|
font-size: 14px;
|
|
355
|
-
font-weight:
|
|
357
|
+
font-weight: normal;
|
|
356
358
|
height: 28px;
|
|
357
359
|
min-height: 28px;
|
|
358
360
|
outline: none;
|
|
@@ -366,7 +368,7 @@
|
|
|
366
368
|
color: inherit;
|
|
367
369
|
font-family: inherit;
|
|
368
370
|
font-size: 14px;
|
|
369
|
-
font-weight:
|
|
371
|
+
font-weight: normal;
|
|
370
372
|
height: 28px;
|
|
371
373
|
min-height: 28px;
|
|
372
374
|
outline: none;
|
|
@@ -389,6 +391,7 @@
|
|
|
389
391
|
min-height: 38px;
|
|
390
392
|
}
|
|
391
393
|
|
|
394
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
392
395
|
.e-multi-select-wrapper input[type=text]::-ms-clear {
|
|
393
396
|
display: none;
|
|
394
397
|
}
|
|
@@ -1037,6 +1040,7 @@ ejs-multiselect {
|
|
|
1037
1040
|
box-sizing: border-box;
|
|
1038
1041
|
}
|
|
1039
1042
|
|
|
1043
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1040
1044
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
1041
1045
|
-webkit-text-fill-color: #666;
|
|
1042
1046
|
color: #666;
|
|
@@ -1165,19 +1169,19 @@ ejs-multiselect {
|
|
|
1165
1169
|
border: 1px solid transparent;
|
|
1166
1170
|
}
|
|
1167
1171
|
|
|
1168
|
-
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
1172
|
+
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1169
1173
|
color: #a6a6a6;
|
|
1170
1174
|
}
|
|
1171
1175
|
|
|
1172
|
-
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {
|
|
1176
|
+
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1173
1177
|
color: #a6a6a6;
|
|
1174
1178
|
}
|
|
1175
1179
|
|
|
1176
|
-
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {
|
|
1180
|
+
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1177
1181
|
color: #a6a6a6;
|
|
1178
1182
|
}
|
|
1179
1183
|
|
|
1180
|
-
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {
|
|
1184
|
+
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1181
1185
|
color: #a6a6a6;
|
|
1182
1186
|
}
|
|
1183
1187
|
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2
|
+
/* stylelint-disable-line no-empty-source */
|
|
3
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1
4
|
@keyframes material-spinner-rotate {
|
|
2
5
|
0% {
|
|
3
6
|
transform: rotate(0);
|
|
@@ -458,7 +461,7 @@
|
|
|
458
461
|
border: 0;
|
|
459
462
|
font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
|
|
460
463
|
font-size: 14px;
|
|
461
|
-
font-weight:
|
|
464
|
+
font-weight: normal;
|
|
462
465
|
height: 30px;
|
|
463
466
|
min-height: 30px;
|
|
464
467
|
outline: none;
|
|
@@ -472,7 +475,7 @@
|
|
|
472
475
|
color: inherit;
|
|
473
476
|
font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
|
|
474
477
|
font-size: 14px;
|
|
475
|
-
font-weight:
|
|
478
|
+
font-weight: normal;
|
|
476
479
|
height: 30px;
|
|
477
480
|
min-height: 30px;
|
|
478
481
|
outline: none;
|
|
@@ -495,6 +498,7 @@
|
|
|
495
498
|
min-height: 36px;
|
|
496
499
|
}
|
|
497
500
|
|
|
501
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
498
502
|
.e-multi-select-wrapper input[type=text]::-ms-clear {
|
|
499
503
|
display: none;
|
|
500
504
|
}
|
|
@@ -1154,6 +1158,7 @@ ejs-multiselect {
|
|
|
1154
1158
|
box-sizing: border-box;
|
|
1155
1159
|
}
|
|
1156
1160
|
|
|
1161
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1157
1162
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
1158
1163
|
-webkit-text-fill-color: #f3f2f1;
|
|
1159
1164
|
color: #f3f2f1;
|
|
@@ -1299,19 +1304,19 @@ ejs-multiselect {
|
|
|
1299
1304
|
border: 0 solid transparent;
|
|
1300
1305
|
}
|
|
1301
1306
|
|
|
1302
|
-
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
1307
|
+
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1303
1308
|
color: #a19f9d;
|
|
1304
1309
|
}
|
|
1305
1310
|
|
|
1306
|
-
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {
|
|
1311
|
+
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1307
1312
|
color: #a19f9d;
|
|
1308
1313
|
}
|
|
1309
1314
|
|
|
1310
|
-
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {
|
|
1315
|
+
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1311
1316
|
color: #a19f9d;
|
|
1312
1317
|
}
|
|
1313
1318
|
|
|
1314
|
-
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {
|
|
1319
|
+
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1315
1320
|
color: #a19f9d;
|
|
1316
1321
|
}
|
|
1317
1322
|
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2
|
+
/* stylelint-disable-line no-empty-source */
|
|
3
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1
4
|
@keyframes material-spinner-rotate {
|
|
2
5
|
0% {
|
|
3
6
|
transform: rotate(0);
|
|
@@ -458,7 +461,7 @@
|
|
|
458
461
|
border: 0;
|
|
459
462
|
font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
|
|
460
463
|
font-size: 14px;
|
|
461
|
-
font-weight:
|
|
464
|
+
font-weight: normal;
|
|
462
465
|
height: 30px;
|
|
463
466
|
min-height: 30px;
|
|
464
467
|
outline: none;
|
|
@@ -472,7 +475,7 @@
|
|
|
472
475
|
color: inherit;
|
|
473
476
|
font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
|
|
474
477
|
font-size: 14px;
|
|
475
|
-
font-weight:
|
|
478
|
+
font-weight: normal;
|
|
476
479
|
height: 30px;
|
|
477
480
|
min-height: 30px;
|
|
478
481
|
outline: none;
|
|
@@ -495,6 +498,7 @@
|
|
|
495
498
|
min-height: 36px;
|
|
496
499
|
}
|
|
497
500
|
|
|
501
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
498
502
|
.e-multi-select-wrapper input[type=text]::-ms-clear {
|
|
499
503
|
display: none;
|
|
500
504
|
}
|
|
@@ -1154,6 +1158,7 @@ ejs-multiselect {
|
|
|
1154
1158
|
box-sizing: border-box;
|
|
1155
1159
|
}
|
|
1156
1160
|
|
|
1161
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1157
1162
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
1158
1163
|
-webkit-text-fill-color: #201f1e;
|
|
1159
1164
|
color: #201f1e;
|
|
@@ -1299,19 +1304,19 @@ ejs-multiselect {
|
|
|
1299
1304
|
border: 0 solid transparent;
|
|
1300
1305
|
}
|
|
1301
1306
|
|
|
1302
|
-
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
1307
|
+
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1303
1308
|
color: #605e5c;
|
|
1304
1309
|
}
|
|
1305
1310
|
|
|
1306
|
-
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {
|
|
1311
|
+
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1307
1312
|
color: #605e5c;
|
|
1308
1313
|
}
|
|
1309
1314
|
|
|
1310
|
-
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {
|
|
1315
|
+
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1311
1316
|
color: #605e5c;
|
|
1312
1317
|
}
|
|
1313
1318
|
|
|
1314
|
-
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {
|
|
1319
|
+
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1315
1320
|
color: #605e5c;
|
|
1316
1321
|
}
|
|
1317
1322
|
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1
3
|
@keyframes material-spinner-rotate {
|
|
2
4
|
0% {
|
|
3
5
|
transform: rotate(0);
|
|
@@ -45,6 +47,9 @@
|
|
|
45
47
|
color: #000;
|
|
46
48
|
top: 12px;
|
|
47
49
|
}
|
|
50
|
+
.e-multiselect .e-multi-select-wrapper input {
|
|
51
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
52
|
+
}
|
|
48
53
|
.e-multiselect .e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
49
54
|
color: #4f4f4f;
|
|
50
55
|
font-family: inherit;
|
|
@@ -454,7 +459,7 @@
|
|
|
454
459
|
border: 0;
|
|
455
460
|
font-family: inherit;
|
|
456
461
|
font-size: 14px;
|
|
457
|
-
font-weight:
|
|
462
|
+
font-weight: normal;
|
|
458
463
|
height: 28px;
|
|
459
464
|
min-height: 28px;
|
|
460
465
|
outline: none;
|
|
@@ -468,7 +473,7 @@
|
|
|
468
473
|
color: inherit;
|
|
469
474
|
font-family: inherit;
|
|
470
475
|
font-size: 14px;
|
|
471
|
-
font-weight:
|
|
476
|
+
font-weight: normal;
|
|
472
477
|
height: 28px;
|
|
473
478
|
min-height: 28px;
|
|
474
479
|
outline: none;
|
|
@@ -491,6 +496,7 @@
|
|
|
491
496
|
min-height: 38px;
|
|
492
497
|
}
|
|
493
498
|
|
|
499
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
494
500
|
.e-multi-select-wrapper input[type=text]::-ms-clear {
|
|
495
501
|
display: none;
|
|
496
502
|
}
|
|
@@ -1135,6 +1141,7 @@ ejs-multiselect {
|
|
|
1135
1141
|
box-sizing: border-box;
|
|
1136
1142
|
}
|
|
1137
1143
|
|
|
1144
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1138
1145
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
1139
1146
|
-webkit-text-fill-color: #fff;
|
|
1140
1147
|
color: #fff;
|
|
@@ -1251,19 +1258,19 @@ ejs-multiselect {
|
|
|
1251
1258
|
border: 1px solid transparent;
|
|
1252
1259
|
}
|
|
1253
1260
|
|
|
1254
|
-
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
1261
|
+
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1255
1262
|
color: #000;
|
|
1256
1263
|
}
|
|
1257
1264
|
|
|
1258
|
-
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {
|
|
1265
|
+
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1259
1266
|
color: #000;
|
|
1260
1267
|
}
|
|
1261
1268
|
|
|
1262
|
-
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {
|
|
1269
|
+
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1263
1270
|
color: #000;
|
|
1264
1271
|
}
|
|
1265
1272
|
|
|
1266
|
-
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {
|
|
1273
|
+
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1267
1274
|
color: #000;
|
|
1268
1275
|
}
|
|
1269
1276
|
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1
3
|
@keyframes material-spinner-rotate {
|
|
2
4
|
0% {
|
|
3
5
|
transform: rotate(0);
|
|
@@ -45,6 +47,9 @@
|
|
|
45
47
|
color: #fff;
|
|
46
48
|
top: 12px;
|
|
47
49
|
}
|
|
50
|
+
.e-multiselect .e-multi-select-wrapper input {
|
|
51
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
52
|
+
}
|
|
48
53
|
.e-multiselect .e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
49
54
|
color: #969696;
|
|
50
55
|
font-family: inherit;
|
|
@@ -456,7 +461,7 @@
|
|
|
456
461
|
border: 0;
|
|
457
462
|
font-family: inherit;
|
|
458
463
|
font-size: 14px;
|
|
459
|
-
font-weight:
|
|
464
|
+
font-weight: normal;
|
|
460
465
|
height: 28px;
|
|
461
466
|
min-height: 28px;
|
|
462
467
|
outline: none;
|
|
@@ -470,7 +475,7 @@
|
|
|
470
475
|
color: inherit;
|
|
471
476
|
font-family: inherit;
|
|
472
477
|
font-size: 14px;
|
|
473
|
-
font-weight:
|
|
478
|
+
font-weight: normal;
|
|
474
479
|
height: 28px;
|
|
475
480
|
min-height: 28px;
|
|
476
481
|
outline: none;
|
|
@@ -493,6 +498,7 @@
|
|
|
493
498
|
min-height: 38px;
|
|
494
499
|
}
|
|
495
500
|
|
|
501
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
496
502
|
.e-multi-select-wrapper input[type=text]::-ms-clear {
|
|
497
503
|
display: none;
|
|
498
504
|
}
|
|
@@ -1137,6 +1143,7 @@ ejs-multiselect {
|
|
|
1137
1143
|
box-sizing: border-box;
|
|
1138
1144
|
}
|
|
1139
1145
|
|
|
1146
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1140
1147
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
1141
1148
|
-webkit-text-fill-color: #000;
|
|
1142
1149
|
color: #000;
|
|
@@ -1253,19 +1260,19 @@ ejs-multiselect {
|
|
|
1253
1260
|
border: 1px solid transparent;
|
|
1254
1261
|
}
|
|
1255
1262
|
|
|
1256
|
-
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
1263
|
+
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1257
1264
|
color: #fff;
|
|
1258
1265
|
}
|
|
1259
1266
|
|
|
1260
|
-
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {
|
|
1267
|
+
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1261
1268
|
color: #fff;
|
|
1262
1269
|
}
|
|
1263
1270
|
|
|
1264
|
-
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {
|
|
1271
|
+
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1265
1272
|
color: #fff;
|
|
1266
1273
|
}
|
|
1267
1274
|
|
|
1268
|
-
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {
|
|
1275
|
+
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1269
1276
|
color: #fff;
|
|
1270
1277
|
}
|
|
1271
1278
|
|