@syncfusion/ej2-dropdowns 29.2.11-81740 → 30.1.37
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/.eslintrc.json +263 -0
- package/{ReadMe.md → README.md} +217 -217
- package/dist/ej2-dropdowns.min.js +10 -0
- package/dist/ej2-dropdowns.umd.min.js +10 -1
- package/dist/ej2-dropdowns.umd.min.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es2015.js +90 -96
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +249 -256
- package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
- package/dist/global/ej2-dropdowns.min.js +11 -0
- package/dist/global/ej2-dropdowns.min.js.map +1 -0
- package/dist/global/index.d.ts +14 -0
- package/helpers/e2e/autocomplete.d.ts +16 -0
- package/helpers/e2e/autocomplete.js +60 -0
- package/helpers/e2e/combobox.d.ts +17 -0
- package/helpers/e2e/combobox.js +63 -0
- package/helpers/e2e/dropdownlist.d.ts +20 -0
- package/helpers/e2e/dropdownlist.js +72 -0
- package/helpers/e2e/index.d.ts +4 -0
- package/helpers/e2e/index.js +11 -0
- package/helpers/e2e/listboxHelper.d.ts +22 -0
- package/helpers/e2e/listboxHelper.js +56 -0
- package/helpers/e2e/multiselect.d.ts +31 -0
- package/helpers/e2e/multiselect.js +105 -0
- package/license +2 -2
- package/package.json +36 -36
- package/src/auto-complete/auto-complete-model.d.ts +190 -190
- package/src/auto-complete/auto-complete.d.ts +13 -13
- package/src/auto-complete/auto-complete.js +43 -43
- package/src/combo-box/combo-box-model.d.ts +232 -232
- package/src/combo-box/combo-box.d.ts +26 -26
- package/src/combo-box/combo-box.js +29 -29
- package/src/common/incremental-search.js +1 -1
- package/src/common/virtual-scroll.js +46 -46
- package/src/drop-down-base/drop-down-base-model.d.ts +205 -205
- package/src/drop-down-base/drop-down-base.d.ts +15 -15
- package/src/drop-down-base/drop-down-base.js +20 -20
- package/src/drop-down-list/drop-down-list-model.d.ts +310 -310
- package/src/drop-down-list/drop-down-list.d.ts +5 -5
- package/src/drop-down-list/drop-down-list.js +23 -22
- package/src/drop-down-tree/drop-down-tree-model.d.ts +493 -493
- package/src/drop-down-tree/drop-down-tree.d.ts +1 -1
- package/src/drop-down-tree/drop-down-tree.js +20 -20
- package/src/list-box/list-box-model.d.ts +237 -237
- package/src/list-box/list-box.d.ts +2 -2
- package/src/list-box/list-box.js +19 -19
- package/src/mention/mention-model.d.ts +272 -272
- package/src/mention/mention.d.ts +1 -2
- package/src/mention/mention.js +24 -23
- package/src/multi-select/multi-select-model.d.ts +564 -564
- package/src/multi-select/multi-select.d.ts +1 -1
- package/src/multi-select/multi-select.js +26 -35
- package/styles/auto-complete/_all.scss +1 -1
- package/styles/auto-complete/_bds-definition.scss +2 -2
- package/styles/auto-complete/_bootstrap-dark-definition.scss +3 -3
- package/styles/auto-complete/_bootstrap-definition.scss +2 -2
- package/styles/auto-complete/_bootstrap4-definition.scss +11 -11
- package/styles/auto-complete/_bootstrap5-definition.scss +2 -2
- package/styles/auto-complete/_bootstrap5.3-definition.scss +2 -2
- package/styles/auto-complete/_fabric-dark-definition.scss +2 -2
- package/styles/auto-complete/_fabric-definition.scss +2 -2
- package/styles/auto-complete/_fluent-definition.scss +2 -2
- package/styles/auto-complete/_fluent2-definition.scss +2 -2
- package/styles/auto-complete/_fusionnew-definition.scss +2 -2
- package/styles/auto-complete/_highcontrast-definition.scss +2 -2
- package/styles/auto-complete/_highcontrast-light-definition.scss +2 -2
- package/styles/auto-complete/_material-dark-definition.scss +2 -2
- package/styles/auto-complete/_material-definition.scss +2 -2
- package/styles/auto-complete/_material3-definition.scss +2 -2
- package/styles/auto-complete/_tailwind-definition.scss +2 -2
- package/styles/auto-complete/_tailwind3-definition.scss +2 -2
- package/styles/auto-complete/material3-dark.scss +1 -1
- package/styles/auto-complete/material3.scss +1 -1
- package/styles/combo-box/_all.scss +1 -1
- package/styles/combo-box/_bds-definition.scss +2 -2
- package/styles/combo-box/_bootstrap-dark-definition.scss +2 -2
- package/styles/combo-box/_bootstrap-definition.scss +2 -2
- package/styles/combo-box/_bootstrap4-definition.scss +11 -11
- package/styles/combo-box/_bootstrap5-definition.scss +2 -2
- package/styles/combo-box/_bootstrap5.3-definition.scss +2 -2
- package/styles/combo-box/_fabric-dark-definition.scss +2 -2
- package/styles/combo-box/_fabric-definition.scss +2 -2
- package/styles/combo-box/_fluent-definition.scss +2 -2
- package/styles/combo-box/_fluent2-definition.scss +2 -2
- package/styles/combo-box/_fusionnew-definition.scss +2 -2
- package/styles/combo-box/_highcontrast-definition.scss +2 -2
- package/styles/combo-box/_highcontrast-light-definition.scss +3 -3
- package/styles/combo-box/_material-dark-definition.scss +2 -2
- package/styles/combo-box/_material-definition.scss +2 -2
- package/styles/combo-box/_material3-definition.scss +2 -2
- package/styles/combo-box/_tailwind-definition.scss +2 -2
- package/styles/combo-box/_tailwind3-definition.scss +2 -2
- package/styles/combo-box/material3-dark.scss +1 -1
- package/styles/combo-box/material3.scss +1 -1
- package/styles/drop-down-base/_all.scss +2 -2
- package/styles/drop-down-base/_bds-definition.scss +112 -112
- package/styles/drop-down-base/_bigger.scss +198 -198
- package/styles/drop-down-base/_bootstrap-dark-definition.scss +80 -80
- package/styles/drop-down-base/_bootstrap-definition.scss +78 -78
- package/styles/drop-down-base/_bootstrap4-definition.scss +83 -83
- package/styles/drop-down-base/_bootstrap5-definition.scss +98 -98
- package/styles/drop-down-base/_bootstrap5.3-definition.scss +98 -98
- package/styles/drop-down-base/_definition.scss +23 -23
- package/styles/drop-down-base/_fabric-dark-definition.scss +81 -81
- package/styles/drop-down-base/_fabric-definition.scss +79 -79
- package/styles/drop-down-base/_fluent-definition.scss +102 -102
- package/styles/drop-down-base/_fluent2-definition.scss +113 -113
- package/styles/drop-down-base/_fusionnew-definition.scss +98 -98
- package/styles/drop-down-base/_highcontrast-definition.scss +96 -96
- package/styles/drop-down-base/_highcontrast-light-definition.scss +96 -96
- package/styles/drop-down-base/_layout.scss +148 -148
- package/styles/drop-down-base/_material-dark-definition.scss +82 -82
- package/styles/drop-down-base/_material-definition.scss +81 -81
- package/styles/drop-down-base/_material3-definition.scss +73 -73
- package/styles/drop-down-base/_tailwind-definition.scss +107 -107
- package/styles/drop-down-base/_tailwind3-definition.scss +98 -98
- package/styles/drop-down-base/_theme.scss +303 -303
- package/styles/drop-down-base/material3-dark.scss +1 -1
- package/styles/drop-down-base/material3.scss +1 -1
- package/styles/drop-down-list/_all.scss +3 -3
- package/styles/drop-down-list/_bds-definition.scss +100 -100
- package/styles/drop-down-list/_bigger.scss +713 -713
- package/styles/drop-down-list/_bootstrap-dark-definition.scss +94 -94
- package/styles/drop-down-list/_bootstrap-definition.scss +93 -93
- package/styles/drop-down-list/_bootstrap4-definition.scss +122 -122
- package/styles/drop-down-list/_bootstrap5-definition.scss +135 -135
- package/styles/drop-down-list/_bootstrap5.3-definition.scss +136 -136
- package/styles/drop-down-list/_fabric-dark-definition.scss +72 -72
- package/styles/drop-down-list/_fabric-definition.scss +69 -69
- package/styles/drop-down-list/_fluent-definition.scss +128 -128
- package/styles/drop-down-list/_fluent2-definition.scss +101 -101
- package/styles/drop-down-list/_fusionnew-definition.scss +134 -134
- package/styles/drop-down-list/_highcontrast-definition.scss +83 -83
- package/styles/drop-down-list/_highcontrast-light-definition.scss +85 -85
- package/styles/drop-down-list/_layout.scss +284 -284
- package/styles/drop-down-list/_material-dark-definition.scss +110 -110
- package/styles/drop-down-list/_material-definition.scss +112 -112
- package/styles/drop-down-list/_material3-definition.scss +114 -114
- package/styles/drop-down-list/_tailwind-definition.scss +100 -100
- package/styles/drop-down-list/_tailwind3-definition.scss +135 -135
- package/styles/drop-down-list/_theme.scss +17 -17
- package/styles/drop-down-list/icons/_bds.scss +14 -14
- package/styles/drop-down-list/icons/_bootstrap-dark.scss +18 -18
- package/styles/drop-down-list/icons/_bootstrap.scss +18 -18
- package/styles/drop-down-list/icons/_bootstrap4.scss +18 -18
- package/styles/drop-down-list/icons/_bootstrap5.3.scss +18 -18
- package/styles/drop-down-list/icons/_bootstrap5.scss +18 -18
- package/styles/drop-down-list/icons/_fabric-dark.scss +18 -18
- package/styles/drop-down-list/icons/_fabric.scss +18 -18
- package/styles/drop-down-list/icons/_fluent.scss +18 -18
- package/styles/drop-down-list/icons/_fluent2.scss +18 -18
- package/styles/drop-down-list/icons/_fusionnew.scss +14 -14
- package/styles/drop-down-list/icons/_highcontrast-light.scss +14 -14
- package/styles/drop-down-list/icons/_highcontrast.scss +18 -18
- package/styles/drop-down-list/icons/_material-dark.scss +18 -18
- package/styles/drop-down-list/icons/_material.scss +18 -18
- package/styles/drop-down-list/icons/_material3.scss +18 -18
- package/styles/drop-down-list/icons/_tailwind.scss +18 -18
- package/styles/drop-down-list/icons/_tailwind3.scss +14 -14
- package/styles/drop-down-list/material3-dark.scss +1 -1
- package/styles/drop-down-list/material3.scss +1 -1
- package/styles/drop-down-tree/_all.scss +2 -2
- package/styles/drop-down-tree/_bds-definition.scss +74 -74
- package/styles/drop-down-tree/_bigger.scss +561 -561
- package/styles/drop-down-tree/_bootstrap-dark-definition.scss +81 -81
- package/styles/drop-down-tree/_bootstrap-definition.scss +81 -81
- package/styles/drop-down-tree/_bootstrap4-definition.scss +85 -85
- package/styles/drop-down-tree/_bootstrap5-definition.scss +73 -73
- package/styles/drop-down-tree/_bootstrap5.3-definition.scss +74 -74
- package/styles/drop-down-tree/_fabric-dark-definition.scss +81 -81
- package/styles/drop-down-tree/_fabric-definition.scss +81 -81
- package/styles/drop-down-tree/_fluent-definition.scss +78 -78
- package/styles/drop-down-tree/_fluent2-definition.scss +85 -85
- package/styles/drop-down-tree/_fusionnew-definition.scss +69 -69
- package/styles/drop-down-tree/_highcontrast-definition.scss +81 -81
- package/styles/drop-down-tree/_highcontrast-light-definition.scss +81 -81
- package/styles/drop-down-tree/_layout.scss +942 -942
- package/styles/drop-down-tree/_material-dark-definition.scss +82 -82
- package/styles/drop-down-tree/_material-definition.scss +84 -84
- package/styles/drop-down-tree/_material3-definition.scss +84 -84
- package/styles/drop-down-tree/_tailwind-definition.scss +74 -74
- package/styles/drop-down-tree/_tailwind3-definition.scss +75 -75
- package/styles/drop-down-tree/_theme.scss +135 -135
- package/styles/drop-down-tree/icons/_bds.scss +11 -11
- package/styles/drop-down-tree/icons/_bootstrap-dark.scss +11 -11
- package/styles/drop-down-tree/icons/_bootstrap.scss +11 -11
- package/styles/drop-down-tree/icons/_bootstrap4.scss +11 -11
- package/styles/drop-down-tree/icons/_bootstrap5.3.scss +11 -11
- package/styles/drop-down-tree/icons/_bootstrap5.scss +11 -11
- package/styles/drop-down-tree/icons/_fabric-dark.scss +11 -11
- package/styles/drop-down-tree/icons/_fabric.scss +11 -11
- package/styles/drop-down-tree/icons/_fluent.scss +11 -11
- package/styles/drop-down-tree/icons/_fluent2.scss +14 -14
- package/styles/drop-down-tree/icons/_fusionnew.scss +11 -11
- package/styles/drop-down-tree/icons/_highcontrast-light.scss +11 -11
- package/styles/drop-down-tree/icons/_highcontrast.scss +11 -11
- package/styles/drop-down-tree/icons/_material-dark.scss +11 -11
- package/styles/drop-down-tree/icons/_material.scss +11 -11
- package/styles/drop-down-tree/icons/_material3.scss +11 -11
- package/styles/drop-down-tree/icons/_tailwind-dark.scss +11 -11
- package/styles/drop-down-tree/icons/_tailwind.scss +11 -11
- package/styles/drop-down-tree/icons/_tailwind3.scss +11 -11
- package/styles/drop-down-tree/material3-dark.scss +1 -1
- package/styles/drop-down-tree/material3.scss +1 -1
- package/styles/list-box/_all.scss +2 -2
- package/styles/list-box/_bds-definition.scss +136 -136
- package/styles/list-box/_bigger.scss +190 -190
- package/styles/list-box/_bootstrap-dark-definition.scss +126 -126
- package/styles/list-box/_bootstrap-definition.scss +119 -119
- package/styles/list-box/_bootstrap4-definition.scss +126 -126
- package/styles/list-box/_bootstrap5-definition.scss +121 -121
- package/styles/list-box/_bootstrap5.3-definition.scss +123 -123
- package/styles/list-box/_fabric-dark-definition.scss +124 -124
- package/styles/list-box/_fabric-definition.scss +119 -119
- package/styles/list-box/_fluent-definition.scss +120 -120
- package/styles/list-box/_fluent2-definition.scss +121 -121
- package/styles/list-box/_fusionnew-definition.scss +111 -111
- package/styles/list-box/_highcontrast-definition.scss +119 -119
- package/styles/list-box/_highcontrast-light-definition.scss +124 -124
- package/styles/list-box/_layout.scss +496 -496
- package/styles/list-box/_material-dark-definition.scss +124 -124
- package/styles/list-box/_material-definition.scss +119 -119
- package/styles/list-box/_material3-definition.scss +119 -119
- package/styles/list-box/_tailwind-definition.scss +119 -119
- package/styles/list-box/_tailwind3-definition.scss +123 -123
- package/styles/list-box/_theme.scss +327 -327
- package/styles/list-box/icons/_bds.scss +25 -25
- package/styles/list-box/icons/_bootstrap-dark.scss +25 -25
- package/styles/list-box/icons/_bootstrap.scss +25 -25
- package/styles/list-box/icons/_bootstrap4.scss +25 -25
- package/styles/list-box/icons/_bootstrap5.3.scss +25 -25
- package/styles/list-box/icons/_bootstrap5.scss +25 -25
- package/styles/list-box/icons/_fabric-dark.scss +25 -25
- package/styles/list-box/icons/_fabric.scss +25 -25
- package/styles/list-box/icons/_fluent.scss +25 -25
- package/styles/list-box/icons/_fluent2.scss +25 -25
- package/styles/list-box/icons/_fusionnew.scss +25 -25
- package/styles/list-box/icons/_highcontrast-light.scss +25 -25
- package/styles/list-box/icons/_highcontrast.scss +25 -25
- package/styles/list-box/icons/_material-dark.scss +25 -25
- package/styles/list-box/icons/_material.scss +25 -25
- package/styles/list-box/icons/_material3.scss +25 -25
- package/styles/list-box/icons/_tailwind-dark.scss +25 -25
- package/styles/list-box/icons/_tailwind.scss +25 -25
- package/styles/list-box/icons/_tailwind3.scss +25 -25
- package/styles/list-box/material3-dark.scss +1 -1
- package/styles/list-box/material3.scss +1 -1
- package/styles/material3-dark.scss +1 -1
- package/styles/material3.scss +1 -1
- package/styles/mention/_all.scss +1 -1
- package/styles/mention/_bds-definition.scss +1 -1
- package/styles/mention/_bootstrap-dark-definition.scss +3 -3
- package/styles/mention/_bootstrap-definition.scss +3 -3
- package/styles/mention/_bootstrap4-definition.scss +3 -3
- package/styles/mention/_bootstrap5-definition.scss +1 -1
- package/styles/mention/_bootstrap5.3-definition.scss +1 -1
- package/styles/mention/_fabric-dark-definition.scss +2 -2
- package/styles/mention/_fabric-definition.scss +3 -3
- package/styles/mention/_fluent-definition.scss +1 -1
- package/styles/mention/_fluent2-definition.scss +1 -1
- package/styles/mention/_fusionnew-definition.scss +1 -1
- package/styles/mention/_highcontrast-definition.scss +3 -3
- package/styles/mention/_highcontrast-light-definition.scss +3 -3
- package/styles/mention/_layout.scss +6 -6
- package/styles/mention/_material-dark-definition.scss +3 -3
- package/styles/mention/_material-definition.scss +3 -3
- package/styles/mention/_material3-definition.scss +1 -1
- package/styles/mention/_tailwind-definition.scss +1 -1
- package/styles/mention/_tailwind3-definition.scss +1 -1
- package/styles/mention/material3-dark.scss +1 -1
- package/styles/mention/material3.scss +1 -1
- package/styles/multi-select/_all.scss +2 -2
- package/styles/multi-select/_bds-definition.scss +231 -231
- package/styles/multi-select/_bigger.scss +2002 -2002
- package/styles/multi-select/_bootstrap-dark-definition.scss +198 -198
- package/styles/multi-select/_bootstrap-definition.scss +187 -187
- package/styles/multi-select/_bootstrap4-definition.scss +236 -236
- package/styles/multi-select/_bootstrap5-definition.scss +229 -229
- package/styles/multi-select/_bootstrap5.3-definition.scss +229 -229
- package/styles/multi-select/_fabric-dark-definition.scss +190 -190
- package/styles/multi-select/_fabric-definition.scss +181 -181
- package/styles/multi-select/_fluent-definition.scss +236 -236
- package/styles/multi-select/_fluent2-definition.scss +234 -234
- package/styles/multi-select/_fusionnew-definition.scss +222 -222
- package/styles/multi-select/_highcontrast-definition.scss +302 -302
- package/styles/multi-select/_highcontrast-light-definition.scss +296 -296
- package/styles/multi-select/_layout.scss +1335 -1335
- package/styles/multi-select/_material-dark-definition.scss +248 -248
- package/styles/multi-select/_material-definition.scss +250 -250
- package/styles/multi-select/_material3-definition.scss +233 -233
- package/styles/multi-select/_tailwind-definition.scss +231 -231
- package/styles/multi-select/_tailwind3-definition.scss +227 -227
- package/styles/multi-select/_theme.scss +564 -564
- package/styles/multi-select/icons/_bds.scss +26 -26
- package/styles/multi-select/icons/_bootstrap-dark.scss +30 -30
- package/styles/multi-select/icons/_bootstrap.scss +30 -30
- package/styles/multi-select/icons/_bootstrap4.scss +32 -32
- package/styles/multi-select/icons/_bootstrap5.3.scss +30 -30
- package/styles/multi-select/icons/_bootstrap5.scss +30 -30
- package/styles/multi-select/icons/_fabric-dark.scss +30 -30
- package/styles/multi-select/icons/_fabric.scss +30 -30
- package/styles/multi-select/icons/_fluent.scss +38 -38
- package/styles/multi-select/icons/_fluent2.scss +347 -347
- package/styles/multi-select/icons/_fusionnew.scss +26 -26
- package/styles/multi-select/icons/_highcontrast-light.scss +26 -26
- package/styles/multi-select/icons/_highcontrast.scss +30 -30
- package/styles/multi-select/icons/_material-dark.scss +348 -348
- package/styles/multi-select/icons/_material.scss +348 -348
- package/styles/multi-select/icons/_material3.scss +350 -350
- package/styles/multi-select/icons/_tailwind.scss +30 -30
- package/styles/multi-select/icons/_tailwind3.scss +26 -26
- package/styles/multi-select/material3-dark.scss +1 -1
- package/styles/multi-select/material3.scss +1 -1
- package/tslint.json +111 -0
|
@@ -1,713 +1,713 @@
|
|
|
1
|
-
@include export-module('dropdownlist-bigger') {
|
|
2
|
-
|
|
3
|
-
.e-bigger .e-input-group.e-ddl {
|
|
4
|
-
#{if(&, '&', '*')} .e-input-filter,
|
|
5
|
-
#{if(&, '&', '*')} .e-input-filter:focus {
|
|
6
|
-
margin-left: -20px;
|
|
7
|
-
}
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
.e-bigger .e-ddl#{&}.e-popup {
|
|
11
|
-
#{if(&, '&', '*')} .e-list-item {
|
|
12
|
-
font-size: $ddl-bigger-list-font-size;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
#{if(&, '&', '*')} .e-list-group-item {
|
|
16
|
-
@if $skin-name != 'tailwind' {
|
|
17
|
-
font-size: $ddl-bigger-list-font-size;
|
|
18
|
-
}
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
#{if(&, '&', '*')} .e-input-group {
|
|
22
|
-
@if ($skin-name != 'bootstrap5' and $skin-name != 'bootstrap5.3' and $skin-name != 'tailwind' and $skin-name != 'FluentUI' and $skin-name != 'bootstrap4' and $skin-name != 'bootstrap4-dark' and $skin-name != 'Material3') {
|
|
23
|
-
padding: 4px 0;
|
|
24
|
-
}
|
|
25
|
-
@if ($skin-name == 'Material3') {
|
|
26
|
-
margin-top: 8px;
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
.e-bigger.e-ddl#{&}.e-popup {
|
|
32
|
-
#{if(&, '&', '*')} .e-list-item {
|
|
33
|
-
font-size: $ddl-bigger-list-font-size;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
#{if(&, '&', '*')} .e-list-group-item {
|
|
37
|
-
@if $skin-name != 'tailwind' {
|
|
38
|
-
font-size: $ddl-bigger-list-font-size;
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
#{if(&, '&', '*')} .e-input-group {
|
|
43
|
-
@if ($skin-name != 'bootstrap5' and $skin-name != 'bootstrap5.3' and $skin-name != 'tailwind' and $skin-name != 'FluentUI' and $skin-name != 'bootstrap4' and $skin-name != 'bootstrap4-dark') {
|
|
44
|
-
padding: 4px 0;
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
.e-bigger.e-small .e-ddl#{&}.e-popup,
|
|
50
|
-
.e-bigger .e-input-group.e-ddl.e-small {
|
|
51
|
-
#{if(&, '&', '*')} .e-list-item {
|
|
52
|
-
font-size: $ddl-bigger-small-list-font-size;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
#{if(&, '&', '*')} .e-list-group-item {
|
|
56
|
-
@if $skin-name != 'tailwind' {
|
|
57
|
-
font-size: $ddl-bigger-small-list-font-size;
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
.e-bigger.e-small.e-ddl#{&}.e-popup,
|
|
63
|
-
.e-bigger .e-input-group.e-ddl.e-small {
|
|
64
|
-
#{if(&, '&', '*')} .e-list-item {
|
|
65
|
-
font-size: $ddl-bigger-small-list-font-size;
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
#{if(&, '&', '*')} .e-list-group-item {
|
|
69
|
-
@if $skin-name != 'tailwind' {
|
|
70
|
-
font-size: $ddl-bigger-small-list-font-size;
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
.e-bigger .e-content-placeholder.e-ddl.e-placeholder-ddl,
|
|
76
|
-
.e-bigger.e-content-placeholder.e-ddl.e-placeholder-ddl,
|
|
77
|
-
.e-bigger .e-content-placeholder.e-autocomplete.e-placeholder-autocomplete,
|
|
78
|
-
.e-bigger.e-content-placeholder.e-autocomplete.e-placeholder-autocomplete,
|
|
79
|
-
.e-bigger .e-content-placeholder.e-combobox.e-placeholder-combobox,
|
|
80
|
-
.e-bigger.e-content-placeholder.e-combobox.e-placeholder-combobox {
|
|
81
|
-
background-size: 300px 40px;
|
|
82
|
-
min-height: 40px;
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
.e-bigger .e-ddl#{&}.e-popup,
|
|
86
|
-
.e-bigger.e-ddl#{&}.e-popup {
|
|
87
|
-
@if $skin-name == 'tailwind' {
|
|
88
|
-
border-radius: 8px;
|
|
89
|
-
margin-top: 8px;
|
|
90
|
-
}
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
.e-bigger.e-small .e-ddl#{&}.e-popup,
|
|
94
|
-
.e-small.e-bigger.e-ddl#{&}.e-popup {
|
|
95
|
-
@if $skin-name == 'tailwind' {
|
|
96
|
-
border-radius: 8px;
|
|
97
|
-
margin-top: 6px;
|
|
98
|
-
}
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
.e-bigger #{&}.e-popup.e-ddl-device-filter .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
|
|
102
|
-
@if $skin-name == 'tailwind' {
|
|
103
|
-
border-color: $ddl-default-border-color;
|
|
104
|
-
}
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
.e-bigger #{&}.e-popup.e-ddl-device-filter {
|
|
108
|
-
@if $skin-name == 'tailwind' {
|
|
109
|
-
margin-top: 0;
|
|
110
|
-
}
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
.e-bigger .e-ddl-device .e-input-group,
|
|
114
|
-
.e-bigger .e-ddl-device .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
|
|
115
|
-
@if $skin-name == 'tailwind' {
|
|
116
|
-
background: $flyout-bg-color;
|
|
117
|
-
border-width: 0;
|
|
118
|
-
box-shadow: none;
|
|
119
|
-
margin-bottom: 0;
|
|
120
|
-
}
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
.e-bigger .e-ddl-device .e-input-group .e-back-icon,
|
|
124
|
-
.e-bigger .e-ddl-device .e-input-group input.e-input,
|
|
125
|
-
.e-bigger .e-ddl-device .e-input-group .e-clear-icon {
|
|
126
|
-
@if $skin-name == 'tailwind' {
|
|
127
|
-
background-color: $flyout-bg-color;
|
|
128
|
-
}
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
@if $skin-name == 'bootstrap-dark' or $skin-name == 'bootstrap' {
|
|
132
|
-
.e-bigger #{&}.e-popup.e-ddl-device-filter {
|
|
133
|
-
margin-top: 0;
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
.e-bigger #{&}.e-popup.e-ddl {
|
|
137
|
-
@at-root {
|
|
138
|
-
#{if(&, '&', '*')} .e-list-item,
|
|
139
|
-
#{if(&, '&', '*')} .e-list-group-item,
|
|
140
|
-
#{if(&, '&', '*')} .e-fixed-head {
|
|
141
|
-
font-size: 15px;
|
|
142
|
-
line-height: 40px;
|
|
143
|
-
padding-left: 0;
|
|
144
|
-
text-indent: 24px;
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
#{if(&, '&', '*')} .e-dd-group .e-list-item {
|
|
148
|
-
padding-left: 4px;
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
#{if(&, '&', '*')} .e-input-group {
|
|
152
|
-
padding: 4px 0;
|
|
153
|
-
}
|
|
154
|
-
|
|
155
|
-
#{if(&, '&', '*')} .e-input-group input,
|
|
156
|
-
#{if(&, '&', '*')} .e-input-group input.e-input {
|
|
157
|
-
height: 38px;
|
|
158
|
-
}
|
|
159
|
-
}
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
@if $skin-name == 'bootstrap-dark' or $skin-name == 'bootstrap' or $skin-name == 'bootstrap4' {
|
|
164
|
-
.e-bigger #{&}.e-popup.e-ddl .e-dropdownbase {
|
|
165
|
-
min-height: 40px;
|
|
166
|
-
}
|
|
167
|
-
|
|
168
|
-
.e-bigger.e-small .e-ddl#{&}.e-popup {
|
|
169
|
-
@at-root {
|
|
170
|
-
#{if(&, '&', '*')} .e-list-item,
|
|
171
|
-
#{if(&, '&', '*')} .e-list-group-item,
|
|
172
|
-
#{if(&, '&', '*')} .e-fixed-head {
|
|
173
|
-
font-size: 14px;
|
|
174
|
-
line-height: 34px;
|
|
175
|
-
padding-left: 0;
|
|
176
|
-
text-indent: 16px;
|
|
177
|
-
}
|
|
178
|
-
|
|
179
|
-
#{if(&, '&', '*')} .e-dd-group .e-list-item {
|
|
180
|
-
padding-left: 4px;
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
#{if(&, '&', '*')} .e-input-group {
|
|
184
|
-
padding: 4px 0;
|
|
185
|
-
}
|
|
186
|
-
|
|
187
|
-
#{if(&, '&', '*')} .e-input-group input,
|
|
188
|
-
#{if(&, '&', '*')} .e-input-group input.e-input {
|
|
189
|
-
height: 30px;
|
|
190
|
-
}
|
|
191
|
-
}
|
|
192
|
-
}
|
|
193
|
-
|
|
194
|
-
.e-bigger.e-small #{&}.e-popup.e-ddl .e-dropdownbase {
|
|
195
|
-
min-height: 34px;
|
|
196
|
-
}
|
|
197
|
-
}
|
|
198
|
-
|
|
199
|
-
.e-small.e-bigger .e-input-group .e-control#{&}.e-dropdownlist~.e-ddl-icon,
|
|
200
|
-
.e-small.e-bigger.e-input-group .e-control#{&}.e-dropdownlist~.e-ddl-icon {
|
|
201
|
-
@if $skin-name == 'bootstrap4' {
|
|
202
|
-
font-size: 12px;
|
|
203
|
-
}
|
|
204
|
-
}
|
|
205
|
-
|
|
206
|
-
.e-bigger .e-input-group .e-control#{&}.e-dropdownlist~.e-ddl-icon,
|
|
207
|
-
.e-bigger.e-input-group .e-control#{&}.e-dropdownlist~.e-ddl-icon {
|
|
208
|
-
@if $skin-name == 'bootstrap4' {
|
|
209
|
-
font-size: 14px;
|
|
210
|
-
}
|
|
211
|
-
}
|
|
212
|
-
|
|
213
|
-
@if $skin-name == 'bootstrap4' {
|
|
214
|
-
.e-bigger #{&}.e-popup.e-ddl-device-filter {
|
|
215
|
-
margin-top: 0;
|
|
216
|
-
}
|
|
217
|
-
|
|
218
|
-
.e-bigger #{&}.e-popup.e-ddl {
|
|
219
|
-
@at-root {
|
|
220
|
-
#{if(&, '&', '*')} .e-list-item {
|
|
221
|
-
font-size: 16px;
|
|
222
|
-
line-height: 32px;
|
|
223
|
-
padding-left: 0;
|
|
224
|
-
text-indent: 24px;
|
|
225
|
-
}
|
|
226
|
-
|
|
227
|
-
#{if(&, '&', '*')} .e-list-group-item,
|
|
228
|
-
#{if(&, '&', '*')} .e-fixed-head {
|
|
229
|
-
font-size: 14px;
|
|
230
|
-
line-height: 32px;
|
|
231
|
-
padding-left: 0;
|
|
232
|
-
text-indent: 24px;
|
|
233
|
-
}
|
|
234
|
-
|
|
235
|
-
#{if(&, '&', '*')} .e-dd-group .e-list-item {
|
|
236
|
-
padding-left: 4px;
|
|
237
|
-
}
|
|
238
|
-
|
|
239
|
-
#{if(&, '&', '*')} .e-input-group {
|
|
240
|
-
padding: 4px 0;
|
|
241
|
-
}
|
|
242
|
-
|
|
243
|
-
#{if(&, '&', '*')} .e-input-group input,
|
|
244
|
-
#{if(&, '&', '*')} .e-input-group input.e-input {
|
|
245
|
-
font-size: 16px;
|
|
246
|
-
height: 36px;
|
|
247
|
-
}
|
|
248
|
-
}
|
|
249
|
-
}
|
|
250
|
-
|
|
251
|
-
.e-bigger #{&}.e-popup.e-ddl .e-dropdownbase {
|
|
252
|
-
min-height: 40px;
|
|
253
|
-
}
|
|
254
|
-
}
|
|
255
|
-
|
|
256
|
-
@if $skin-name == 'bootstrap5' or $skin-name == 'bootstrap5.3' {
|
|
257
|
-
.e-bigger .e-input-group .e-control#{&}.e-dropdownlist~.e-ddl-icon {
|
|
258
|
-
font-size: $text-base;
|
|
259
|
-
}
|
|
260
|
-
|
|
261
|
-
.e-bigger.e-small .e-ddl#{&}.e-popup {
|
|
262
|
-
@at-root {
|
|
263
|
-
#{if(&, '&', '*')} .e-list-item,
|
|
264
|
-
#{if(&, '&', '*')} .e-list-group-item,
|
|
265
|
-
#{if(&, '&', '*')} .e-fixed-head {
|
|
266
|
-
font-size: $text-sm;
|
|
267
|
-
line-height: 34px;
|
|
268
|
-
padding-left: 0;
|
|
269
|
-
text-indent: 16px;
|
|
270
|
-
}
|
|
271
|
-
|
|
272
|
-
#{if(&, '&', '*')} .e-dd-group .e-list-item {
|
|
273
|
-
padding-left: 4px;
|
|
274
|
-
}
|
|
275
|
-
|
|
276
|
-
#{if(&, '&', '*')} .e-input-group input,
|
|
277
|
-
#{if(&, '&', '*')} .e-input-group input.e-input {
|
|
278
|
-
height: 30px;
|
|
279
|
-
}
|
|
280
|
-
}
|
|
281
|
-
}
|
|
282
|
-
|
|
283
|
-
.e-bigger.e-small #{&}.e-popup.e-ddl .e-dropdownbase {
|
|
284
|
-
min-height: 34px;
|
|
285
|
-
}
|
|
286
|
-
|
|
287
|
-
.e-bigger #{&}.e-popup.e-ddl-device-filter {
|
|
288
|
-
margin-top: 0;
|
|
289
|
-
}
|
|
290
|
-
|
|
291
|
-
.e-bigger #{&}.e-popup.e-ddl {
|
|
292
|
-
@at-root {
|
|
293
|
-
#{if(&, '&', '*')} .e-list-item {
|
|
294
|
-
font-size: $text-base;
|
|
295
|
-
line-height: 32px;
|
|
296
|
-
padding-left: 0;
|
|
297
|
-
text-indent: 16px;
|
|
298
|
-
}
|
|
299
|
-
|
|
300
|
-
#{if(&, '&', '*')} .e-list-group-item,
|
|
301
|
-
#{if(&, '&', '*')} .e-fixed-head {
|
|
302
|
-
font-size: $text-sm;
|
|
303
|
-
line-height: 32px;
|
|
304
|
-
padding-left: 0;
|
|
305
|
-
text-indent: 16px;
|
|
306
|
-
}
|
|
307
|
-
|
|
308
|
-
#{if(&, '&', '*')} .e-dd-group .e-list-item {
|
|
309
|
-
padding-left: 0;
|
|
310
|
-
}
|
|
311
|
-
|
|
312
|
-
#{if(&, '&', '*')} .e-input-group input,
|
|
313
|
-
#{if(&, '&', '*')} .e-input-group input.e-input {
|
|
314
|
-
font-size: $text-base;
|
|
315
|
-
height: 36px;
|
|
316
|
-
}
|
|
317
|
-
}
|
|
318
|
-
}
|
|
319
|
-
|
|
320
|
-
.e-bigger #{&}.e-popup.e-ddl .e-dropdownbase {
|
|
321
|
-
min-height: 40px;
|
|
322
|
-
}
|
|
323
|
-
}
|
|
324
|
-
|
|
325
|
-
@if $skin-name == 'fabric-dark' or $skin-name == 'fabric' {
|
|
326
|
-
.e-bigger #{&}.e-popup.e-ddl-device-filter {
|
|
327
|
-
margin-top: 0;
|
|
328
|
-
}
|
|
329
|
-
.e-bigger .e-ddl#{&}.e-popup {
|
|
330
|
-
@at-root {
|
|
331
|
-
#{if(&, '&', '*')} .e-list-item,
|
|
332
|
-
#{if(&, '&', '*')} .e-list-group-item,
|
|
333
|
-
#{if(&, '&', '*')} .e-fixed-head {
|
|
334
|
-
font-size: 15px;
|
|
335
|
-
line-height: 45px;
|
|
336
|
-
padding-left: 0;
|
|
337
|
-
text-indent: 16px;
|
|
338
|
-
}
|
|
339
|
-
|
|
340
|
-
#{if(&, '&', '*')} .e-dd-group .e-list-item {
|
|
341
|
-
padding-left: 4px;
|
|
342
|
-
}
|
|
343
|
-
|
|
344
|
-
#{if(&, '&', '*')} .e-input-group {
|
|
345
|
-
padding: 4px 0;
|
|
346
|
-
}
|
|
347
|
-
|
|
348
|
-
#{if(&, '&', '*')} .e-input-group input,
|
|
349
|
-
#{if(&, '&', '*')} .e-input-group input.e-input {
|
|
350
|
-
height: 38px;
|
|
351
|
-
}
|
|
352
|
-
}
|
|
353
|
-
}
|
|
354
|
-
.e-bigger.e-small .e-ddl#{&}.e-popup,
|
|
355
|
-
.e-ddl#{&}.e-popup .e-bigger.e-small {
|
|
356
|
-
@at-root {
|
|
357
|
-
#{if(&, '&', '*')} .e-list-item,
|
|
358
|
-
#{if(&, '&', '*')} .e-list-group-item,
|
|
359
|
-
#{if(&, '&', '*')} .e-fixed-head {
|
|
360
|
-
font-size: 14px;
|
|
361
|
-
line-height: 40px;
|
|
362
|
-
padding-left: 0;
|
|
363
|
-
text-indent: 16px;
|
|
364
|
-
}
|
|
365
|
-
|
|
366
|
-
#{if(&, '&', '*')} .e-dd-group .e-list-item {
|
|
367
|
-
padding-left: 4px;
|
|
368
|
-
}
|
|
369
|
-
|
|
370
|
-
#{if(&, '&', '*')} .e-input-group {
|
|
371
|
-
padding: 0;
|
|
372
|
-
}
|
|
373
|
-
|
|
374
|
-
#{if(&, '&', '*')} .e-input-group input,
|
|
375
|
-
#{if(&, '&', '*')} .e-input-group input.e-input {
|
|
376
|
-
height: 34px;
|
|
377
|
-
}
|
|
378
|
-
}
|
|
379
|
-
}
|
|
380
|
-
}
|
|
381
|
-
@if $skin-name == 'FluentUI' {
|
|
382
|
-
.e-bigger #{&}.e-popup.e-ddl-device-filter {
|
|
383
|
-
margin-top: 0;
|
|
384
|
-
}
|
|
385
|
-
|
|
386
|
-
.e-bigger #{&}.e-popup.e-ddl {
|
|
387
|
-
@at-root {
|
|
388
|
-
#{if(&, '&', '*')} .e-list-item {
|
|
389
|
-
font-size: $text-base;
|
|
390
|
-
line-height: 32px;
|
|
391
|
-
padding-left: 0;
|
|
392
|
-
text-indent: 16px;
|
|
393
|
-
}
|
|
394
|
-
|
|
395
|
-
#{if(&, '&', '*')} .e-list-group-item,
|
|
396
|
-
#{if(&, '&', '*')} .e-fixed-head {
|
|
397
|
-
font-size: $text-sm;
|
|
398
|
-
line-height: 32px;
|
|
399
|
-
padding-left: 0;
|
|
400
|
-
text-indent: 16px;
|
|
401
|
-
}
|
|
402
|
-
}
|
|
403
|
-
}
|
|
404
|
-
|
|
405
|
-
.e-bigger #{&}.e-popup.e-ddl .e-dropdownbase {
|
|
406
|
-
min-height: 40px;
|
|
407
|
-
}
|
|
408
|
-
.e-bigger .e-input-group .e-control#{&}.e-dropdownlist~.e-ddl-icon {
|
|
409
|
-
font-size: $text-base;
|
|
410
|
-
}
|
|
411
|
-
|
|
412
|
-
.e-bigger.e-small .e-ddl#{&}.e-popup {
|
|
413
|
-
@at-root {
|
|
414
|
-
#{if(&, '&', '*')} .e-list-item,
|
|
415
|
-
#{if(&, '&', '*')} .e-list-group-item,
|
|
416
|
-
#{if(&, '&', '*')} .e-fixed-head {
|
|
417
|
-
font-size: $text-sm;
|
|
418
|
-
line-height: 34px;
|
|
419
|
-
padding-left: 0;
|
|
420
|
-
text-indent: 16px;
|
|
421
|
-
}
|
|
422
|
-
|
|
423
|
-
// #{if(&, '&', '*')} .e-dd-group .e-list-item {
|
|
424
|
-
// padding-left: 4px;
|
|
425
|
-
// }
|
|
426
|
-
|
|
427
|
-
#{if(&, '&', '*')} .e-input-group input,
|
|
428
|
-
#{if(&, '&', '*')} .e-input-group input.e-input {
|
|
429
|
-
height: 30px;
|
|
430
|
-
}
|
|
431
|
-
}
|
|
432
|
-
}
|
|
433
|
-
|
|
434
|
-
.e-bigger.e-small #{&}.e-popup.e-ddl .e-dropdownbase {
|
|
435
|
-
min-height: 34px;
|
|
436
|
-
}
|
|
437
|
-
}
|
|
438
|
-
@if $skin-name == 'fluent2' {
|
|
439
|
-
.e-bigger .e-ddl#{&}.e-popup,
|
|
440
|
-
.e-bigger.e-ddl#{&}.e-popup {
|
|
441
|
-
border-radius: 8px;
|
|
442
|
-
margin-top: 8px;
|
|
443
|
-
}
|
|
444
|
-
|
|
445
|
-
.e-bigger.e-small .e-ddl#{&}.e-popup,
|
|
446
|
-
.e-small.e-bigger.e-ddl#{&}.e-popup {
|
|
447
|
-
border-radius: 8px;
|
|
448
|
-
margin-top: 6px;
|
|
449
|
-
}
|
|
450
|
-
.e-bigger #{&}.e-popup.e-ddl-device-filter .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
|
|
451
|
-
border-color: $ddl-default-border-color;
|
|
452
|
-
}
|
|
453
|
-
|
|
454
|
-
.e-bigger #{&}.e-popup.e-ddl-device-filter {
|
|
455
|
-
margin-top: 0;
|
|
456
|
-
}
|
|
457
|
-
|
|
458
|
-
.e-bigger .e-ddl-device .e-input-group,
|
|
459
|
-
.e-bigger .e-ddl-device .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
|
|
460
|
-
background: $flyout-bg-color;
|
|
461
|
-
border-width: 0;
|
|
462
|
-
box-shadow: none;
|
|
463
|
-
margin-bottom: 0;
|
|
464
|
-
}
|
|
465
|
-
|
|
466
|
-
.e-bigger .e-ddl-device .e-input-group .e-back-icon,
|
|
467
|
-
.e-bigger .e-ddl-device .e-input-group input.e-input,
|
|
468
|
-
.e-bigger .e-ddl-device .e-input-group .e-clear-icon {
|
|
469
|
-
background-color: $flyout-bg-color;
|
|
470
|
-
}
|
|
471
|
-
}
|
|
472
|
-
@if $skin-name == 'highcontrast' or $skin-name == 'highcontrast-light' {
|
|
473
|
-
.e-bigger .e-ddl.e-popup .e-input-group .e-clear-icon {
|
|
474
|
-
height: 36px;
|
|
475
|
-
}
|
|
476
|
-
.e-ddl#{&} {
|
|
477
|
-
#{if(&, '&', '*')}.e-popup {
|
|
478
|
-
.e-bigger #{if(&, '&', '*')} {
|
|
479
|
-
#{if(&, '&', '*')}.e-ddl-device.e-ddl-device-filter {
|
|
480
|
-
margin-top: 0;
|
|
481
|
-
}
|
|
482
|
-
#{if(&, '&', '*')} .e-list-item,
|
|
483
|
-
#{if(&, '&', '*')} .e-list-group-item,
|
|
484
|
-
#{if(&, '&', '*')} .e-fixed-head {
|
|
485
|
-
font-size: 15px;
|
|
486
|
-
line-height: 45px;
|
|
487
|
-
padding-left: 0;
|
|
488
|
-
text-indent: 16px;
|
|
489
|
-
}
|
|
490
|
-
|
|
491
|
-
#{if(&, '&', '*')} .e-dd-group {
|
|
492
|
-
#{if(&, '&', '*')} .e-list-item {
|
|
493
|
-
padding-left: 4px;
|
|
494
|
-
}
|
|
495
|
-
}
|
|
496
|
-
|
|
497
|
-
#{if(&, '&', '*')} .e-input-group {
|
|
498
|
-
padding: 4px 0;
|
|
499
|
-
}
|
|
500
|
-
|
|
501
|
-
#{if(&, '&', '*')} .e-input-group {
|
|
502
|
-
#{if(&, '&', '*')} input {
|
|
503
|
-
height: 46px;
|
|
504
|
-
}
|
|
505
|
-
}
|
|
506
|
-
}
|
|
507
|
-
|
|
508
|
-
.e-bigger.e-small #{if(&, '&', '*')} {
|
|
509
|
-
#{if(&, '&', '*')} .e-list-item,
|
|
510
|
-
#{if(&, '&', '*')} .e-list-group-item,
|
|
511
|
-
#{if(&, '&', '*')} .e-fixed-head {
|
|
512
|
-
font-size: 14px;
|
|
513
|
-
line-height: 40px;
|
|
514
|
-
padding-left: 0;
|
|
515
|
-
text-indent: 16px;
|
|
516
|
-
}
|
|
517
|
-
|
|
518
|
-
#{if(&, '&', '*')} .e-dd-group {
|
|
519
|
-
#{if(&, '&', '*')} .e-list-item {
|
|
520
|
-
padding-left: 4px;
|
|
521
|
-
}
|
|
522
|
-
}
|
|
523
|
-
|
|
524
|
-
#{if(&, '&', '*')} .e-input-group {
|
|
525
|
-
padding: 0;
|
|
526
|
-
}
|
|
527
|
-
|
|
528
|
-
#{if(&, '&', '*')} .e-input-group {
|
|
529
|
-
#{if(&, '&', '*')} input {
|
|
530
|
-
height: 34px;
|
|
531
|
-
}
|
|
532
|
-
}
|
|
533
|
-
}
|
|
534
|
-
}
|
|
535
|
-
}
|
|
536
|
-
}
|
|
537
|
-
@if $skin-name == 'material-dark' {
|
|
538
|
-
.e-bigger #{&}.e-popup.e-ddl-device-filter .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
|
|
539
|
-
border-color: $ddl-default-border-color;
|
|
540
|
-
}
|
|
541
|
-
|
|
542
|
-
.e-bigger #{&}.e-popup.e-ddl-device-filter {
|
|
543
|
-
margin-top: 0;
|
|
544
|
-
}
|
|
545
|
-
|
|
546
|
-
.e-bigger .e-ddl-device .e-input-group,
|
|
547
|
-
.e-bigger .e-ddl-device .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
|
|
548
|
-
background: $grey-100;
|
|
549
|
-
border-width: 0;
|
|
550
|
-
box-shadow: none;
|
|
551
|
-
margin-bottom: 0;
|
|
552
|
-
}
|
|
553
|
-
|
|
554
|
-
.e-bigger .e-ddl-device .e-input-group .e-back-icon,
|
|
555
|
-
.e-bigger .e-ddl-device .e-input-group input.e-input,
|
|
556
|
-
.e-bigger .e-ddl-device .e-input-group .e-clear-icon {
|
|
557
|
-
background-color: $grey-100;
|
|
558
|
-
}
|
|
559
|
-
.e-bigger #{&}.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
|
|
560
|
-
.e-bigger#{&}.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon {
|
|
561
|
-
min-height: 16px;
|
|
562
|
-
min-width: 16px;
|
|
563
|
-
}
|
|
564
|
-
|
|
565
|
-
.e-bigger #{&}.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-filter,
|
|
566
|
-
.e-bigger#{&}.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-filter {
|
|
567
|
-
padding: 8px 16px 8px 0;
|
|
568
|
-
}
|
|
569
|
-
}
|
|
570
|
-
@if $skin-name == 'material' {
|
|
571
|
-
.e-bigger #{&}.e-popup.e-ddl-device-filter .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
|
|
572
|
-
border-color: $ddl-default-border-color;
|
|
573
|
-
}
|
|
574
|
-
|
|
575
|
-
.e-bigger #{&}.e-popup.e-ddl-device-filter {
|
|
576
|
-
margin-top: 0;
|
|
577
|
-
}
|
|
578
|
-
|
|
579
|
-
.e-bigger .e-ddl-device .e-input-group,
|
|
580
|
-
.e-bigger .e-ddl-device .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
|
|
581
|
-
background: $grey-100;
|
|
582
|
-
border-width: 0;
|
|
583
|
-
box-shadow: none;
|
|
584
|
-
margin-bottom: 0;
|
|
585
|
-
}
|
|
586
|
-
|
|
587
|
-
.e-bigger .e-ddl-device .e-input-group .e-back-icon,
|
|
588
|
-
.e-bigger .e-ddl-device .e-input-group input.e-input,
|
|
589
|
-
.e-bigger .e-ddl-device .e-input-group .e-clear-icon {
|
|
590
|
-
background-color: $grey-100;
|
|
591
|
-
}
|
|
592
|
-
.e-bigger #{&}.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
|
|
593
|
-
.e-bigger#{&}.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon {
|
|
594
|
-
min-height: 16px;
|
|
595
|
-
min-width: 16px;
|
|
596
|
-
}
|
|
597
|
-
|
|
598
|
-
.e-bigger #{&}.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-filter,
|
|
599
|
-
.e-bigger#{&}.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-filter {
|
|
600
|
-
padding: 8px 16px 8px 0;
|
|
601
|
-
}
|
|
602
|
-
.e-bigger.e-small #{&}.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
|
|
603
|
-
.e-bigger.e-small#{&}.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
|
|
604
|
-
.e-bigger #{&}.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-small .e-clear-icon,
|
|
605
|
-
.e-bigger#{&}.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-small .e-clear-icon,
|
|
606
|
-
.e-small #{&}.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-bigger .e-clear-icon,
|
|
607
|
-
.e-small#{&}.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-bigger .e-clear-icon,
|
|
608
|
-
#{&}.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-bigger.e-small .e-clear-icon {
|
|
609
|
-
min-height: 18px;
|
|
610
|
-
min-width: 18px;
|
|
611
|
-
}
|
|
612
|
-
|
|
613
|
-
.e-bigger.e-small #{&}.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group .e-input-filter,
|
|
614
|
-
.e-bigger.e-small#{&}.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group .e-input-filter,
|
|
615
|
-
.e-bigger #{&}.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-small .e-input-filter,
|
|
616
|
-
.e-bigger#{&}.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-small .e-input-filter,
|
|
617
|
-
.e-small #{&}.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-bigger .e-input-filter,
|
|
618
|
-
.e-small#{&}.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-bigger .e-input-filter,
|
|
619
|
-
#{&}.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-bigger.e-small .e-input-filter {
|
|
620
|
-
padding: 8px 16px;
|
|
621
|
-
}
|
|
622
|
-
}
|
|
623
|
-
@if $skin-name == 'Material3' {
|
|
624
|
-
.e-bigger #{&}.e-popup.e-ddl-device-filter .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
|
|
625
|
-
border-color: $ddl-default-border-color;
|
|
626
|
-
}
|
|
627
|
-
|
|
628
|
-
.e-bigger #{&}.e-popup.e-ddl-device-filter {
|
|
629
|
-
margin-top: 0;
|
|
630
|
-
}
|
|
631
|
-
|
|
632
|
-
.e-bigger .e-ddl-device .e-input-group,
|
|
633
|
-
.e-bigger .e-ddl-device .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
|
|
634
|
-
background: rgba($transparent, .0001);
|
|
635
|
-
border-width: 0;
|
|
636
|
-
box-shadow: none;
|
|
637
|
-
margin-bottom: 0;
|
|
638
|
-
}
|
|
639
|
-
|
|
640
|
-
.e-bigger .e-ddl-device .e-input-group .e-back-icon,
|
|
641
|
-
.e-bigger .e-ddl-device .e-input-group input.e-input,
|
|
642
|
-
.e-bigger .e-ddl-device .e-input-group .e-clear-icon {
|
|
643
|
-
background: rgba($transparent, .0001);
|
|
644
|
-
}
|
|
645
|
-
.e-bigger #{&}.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
|
|
646
|
-
.e-bigger#{&}.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon {
|
|
647
|
-
min-height: 38px;
|
|
648
|
-
min-width: 38px;
|
|
649
|
-
}
|
|
650
|
-
.e-bigger #{&}.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-filter,
|
|
651
|
-
.e-bigger#{&}.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-filter {
|
|
652
|
-
padding: 4px 16px 4px 0;
|
|
653
|
-
}
|
|
654
|
-
.e-bigger.e-small #{&}.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
|
|
655
|
-
.e-bigger.e-small#{&}.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
|
|
656
|
-
.e-bigger #{&}.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-small .e-clear-icon,
|
|
657
|
-
.e-bigger#{&}.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-small .e-clear-icon,
|
|
658
|
-
.e-small #{&}.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-bigger .e-clear-icon,
|
|
659
|
-
.e-small#{&}.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-bigger .e-clear-icon,
|
|
660
|
-
#{&}.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-bigger.e-small .e-clear-icon {
|
|
661
|
-
min-height: 34px;
|
|
662
|
-
min-width: 34px;
|
|
663
|
-
}
|
|
664
|
-
|
|
665
|
-
.e-bigger.e-small #{&}.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group .e-input-filter,
|
|
666
|
-
.e-bigger.e-small#{&}.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group .e-input-filter,
|
|
667
|
-
.e-bigger #{&}.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-small .e-input-filter,
|
|
668
|
-
.e-bigger#{&}.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-small .e-input-filter,
|
|
669
|
-
.e-small #{&}.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-bigger .e-input-filter,
|
|
670
|
-
.e-small#{&}.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-bigger .e-input-filter,
|
|
671
|
-
#{&}.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-bigger.e-small .e-input-filter {
|
|
672
|
-
padding: 8px 16px;
|
|
673
|
-
}
|
|
674
|
-
|
|
675
|
-
.e-bigger.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-input-focus .e-clear-icon {
|
|
676
|
-
margin: 0 4px;
|
|
677
|
-
}
|
|
678
|
-
}
|
|
679
|
-
@if $skin-name == 'tailwind' {
|
|
680
|
-
.e-bigger .e-ddl#{&}.e-popup,
|
|
681
|
-
.e-bigger.e-ddl#{&}.e-popup {
|
|
682
|
-
border-radius: 6px;
|
|
683
|
-
margin-top: 8px;
|
|
684
|
-
}
|
|
685
|
-
|
|
686
|
-
.e-bigger.e-small .e-ddl#{&}.e-popup,
|
|
687
|
-
.e-small.e-bigger.e-ddl#{&}.e-popup {
|
|
688
|
-
border-radius: 4px;
|
|
689
|
-
margin-top: 6px;
|
|
690
|
-
}
|
|
691
|
-
.e-bigger #{&}.e-popup.e-ddl-device-filter .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
|
|
692
|
-
border-color: $ddl-default-border-color;
|
|
693
|
-
}
|
|
694
|
-
|
|
695
|
-
.e-bigger #{&}.e-popup.e-ddl-device-filter {
|
|
696
|
-
margin-top: 0;
|
|
697
|
-
}
|
|
698
|
-
|
|
699
|
-
.e-bigger .e-ddl-device .e-input-group,
|
|
700
|
-
.e-bigger .e-ddl-device .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
|
|
701
|
-
background: $flyout-bg-color;
|
|
702
|
-
border-width: 0;
|
|
703
|
-
box-shadow: none;
|
|
704
|
-
margin-bottom: 0;
|
|
705
|
-
}
|
|
706
|
-
|
|
707
|
-
.e-bigger .e-ddl-device .e-input-group .e-back-icon,
|
|
708
|
-
.e-bigger .e-ddl-device .e-input-group input.e-input,
|
|
709
|
-
.e-bigger .e-ddl-device .e-input-group .e-clear-icon {
|
|
710
|
-
background-color: $flyout-bg-color;
|
|
711
|
-
}
|
|
712
|
-
}
|
|
713
|
-
}
|
|
1
|
+
@include export-module('dropdownlist-bigger') {
|
|
2
|
+
|
|
3
|
+
.e-bigger .e-input-group.e-ddl {
|
|
4
|
+
#{if(&, '&', '*')} .e-input-filter,
|
|
5
|
+
#{if(&, '&', '*')} .e-input-filter:focus {
|
|
6
|
+
margin-left: -20px;
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.e-bigger .e-ddl#{&}.e-popup {
|
|
11
|
+
#{if(&, '&', '*')} .e-list-item {
|
|
12
|
+
font-size: $ddl-bigger-list-font-size;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
#{if(&, '&', '*')} .e-list-group-item {
|
|
16
|
+
@if $skin-name != 'tailwind' {
|
|
17
|
+
font-size: $ddl-bigger-list-font-size;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
#{if(&, '&', '*')} .e-input-group {
|
|
22
|
+
@if ($skin-name != 'bootstrap5' and $skin-name != 'bootstrap5.3' and $skin-name != 'tailwind' and $skin-name != 'FluentUI' and $skin-name != 'bootstrap4' and $skin-name != 'bootstrap4-dark' and $skin-name != 'Material3') {
|
|
23
|
+
padding: 4px 0;
|
|
24
|
+
}
|
|
25
|
+
@if ($skin-name == 'Material3') {
|
|
26
|
+
margin-top: 8px;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.e-bigger.e-ddl#{&}.e-popup {
|
|
32
|
+
#{if(&, '&', '*')} .e-list-item {
|
|
33
|
+
font-size: $ddl-bigger-list-font-size;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
#{if(&, '&', '*')} .e-list-group-item {
|
|
37
|
+
@if $skin-name != 'tailwind' {
|
|
38
|
+
font-size: $ddl-bigger-list-font-size;
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
#{if(&, '&', '*')} .e-input-group {
|
|
43
|
+
@if ($skin-name != 'bootstrap5' and $skin-name != 'bootstrap5.3' and $skin-name != 'tailwind' and $skin-name != 'FluentUI' and $skin-name != 'bootstrap4' and $skin-name != 'bootstrap4-dark') {
|
|
44
|
+
padding: 4px 0;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.e-bigger.e-small .e-ddl#{&}.e-popup,
|
|
50
|
+
.e-bigger .e-input-group.e-ddl.e-small {
|
|
51
|
+
#{if(&, '&', '*')} .e-list-item {
|
|
52
|
+
font-size: $ddl-bigger-small-list-font-size;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
#{if(&, '&', '*')} .e-list-group-item {
|
|
56
|
+
@if $skin-name != 'tailwind' {
|
|
57
|
+
font-size: $ddl-bigger-small-list-font-size;
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.e-bigger.e-small.e-ddl#{&}.e-popup,
|
|
63
|
+
.e-bigger .e-input-group.e-ddl.e-small {
|
|
64
|
+
#{if(&, '&', '*')} .e-list-item {
|
|
65
|
+
font-size: $ddl-bigger-small-list-font-size;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
#{if(&, '&', '*')} .e-list-group-item {
|
|
69
|
+
@if $skin-name != 'tailwind' {
|
|
70
|
+
font-size: $ddl-bigger-small-list-font-size;
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.e-bigger .e-content-placeholder.e-ddl.e-placeholder-ddl,
|
|
76
|
+
.e-bigger.e-content-placeholder.e-ddl.e-placeholder-ddl,
|
|
77
|
+
.e-bigger .e-content-placeholder.e-autocomplete.e-placeholder-autocomplete,
|
|
78
|
+
.e-bigger.e-content-placeholder.e-autocomplete.e-placeholder-autocomplete,
|
|
79
|
+
.e-bigger .e-content-placeholder.e-combobox.e-placeholder-combobox,
|
|
80
|
+
.e-bigger.e-content-placeholder.e-combobox.e-placeholder-combobox {
|
|
81
|
+
background-size: 300px 40px;
|
|
82
|
+
min-height: 40px;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.e-bigger .e-ddl#{&}.e-popup,
|
|
86
|
+
.e-bigger.e-ddl#{&}.e-popup {
|
|
87
|
+
@if $skin-name == 'tailwind' {
|
|
88
|
+
border-radius: 8px;
|
|
89
|
+
margin-top: 8px;
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.e-bigger.e-small .e-ddl#{&}.e-popup,
|
|
94
|
+
.e-small.e-bigger.e-ddl#{&}.e-popup {
|
|
95
|
+
@if $skin-name == 'tailwind' {
|
|
96
|
+
border-radius: 8px;
|
|
97
|
+
margin-top: 6px;
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.e-bigger #{&}.e-popup.e-ddl-device-filter .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
|
|
102
|
+
@if $skin-name == 'tailwind' {
|
|
103
|
+
border-color: $ddl-default-border-color;
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.e-bigger #{&}.e-popup.e-ddl-device-filter {
|
|
108
|
+
@if $skin-name == 'tailwind' {
|
|
109
|
+
margin-top: 0;
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.e-bigger .e-ddl-device .e-input-group,
|
|
114
|
+
.e-bigger .e-ddl-device .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
|
|
115
|
+
@if $skin-name == 'tailwind' {
|
|
116
|
+
background: $flyout-bg-color;
|
|
117
|
+
border-width: 0;
|
|
118
|
+
box-shadow: none;
|
|
119
|
+
margin-bottom: 0;
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.e-bigger .e-ddl-device .e-input-group .e-back-icon,
|
|
124
|
+
.e-bigger .e-ddl-device .e-input-group input.e-input,
|
|
125
|
+
.e-bigger .e-ddl-device .e-input-group .e-clear-icon {
|
|
126
|
+
@if $skin-name == 'tailwind' {
|
|
127
|
+
background-color: $flyout-bg-color;
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
@if $skin-name == 'bootstrap-dark' or $skin-name == 'bootstrap' {
|
|
132
|
+
.e-bigger #{&}.e-popup.e-ddl-device-filter {
|
|
133
|
+
margin-top: 0;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.e-bigger #{&}.e-popup.e-ddl {
|
|
137
|
+
@at-root {
|
|
138
|
+
#{if(&, '&', '*')} .e-list-item,
|
|
139
|
+
#{if(&, '&', '*')} .e-list-group-item,
|
|
140
|
+
#{if(&, '&', '*')} .e-fixed-head {
|
|
141
|
+
font-size: 15px;
|
|
142
|
+
line-height: 40px;
|
|
143
|
+
padding-left: 0;
|
|
144
|
+
text-indent: 24px;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
#{if(&, '&', '*')} .e-dd-group .e-list-item {
|
|
148
|
+
padding-left: 4px;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
#{if(&, '&', '*')} .e-input-group {
|
|
152
|
+
padding: 4px 0;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
#{if(&, '&', '*')} .e-input-group input,
|
|
156
|
+
#{if(&, '&', '*')} .e-input-group input.e-input {
|
|
157
|
+
height: 38px;
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
@if $skin-name == 'bootstrap-dark' or $skin-name == 'bootstrap' or $skin-name == 'bootstrap4' {
|
|
164
|
+
.e-bigger #{&}.e-popup.e-ddl .e-dropdownbase {
|
|
165
|
+
min-height: 40px;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.e-bigger.e-small .e-ddl#{&}.e-popup {
|
|
169
|
+
@at-root {
|
|
170
|
+
#{if(&, '&', '*')} .e-list-item,
|
|
171
|
+
#{if(&, '&', '*')} .e-list-group-item,
|
|
172
|
+
#{if(&, '&', '*')} .e-fixed-head {
|
|
173
|
+
font-size: 14px;
|
|
174
|
+
line-height: 34px;
|
|
175
|
+
padding-left: 0;
|
|
176
|
+
text-indent: 16px;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
#{if(&, '&', '*')} .e-dd-group .e-list-item {
|
|
180
|
+
padding-left: 4px;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
#{if(&, '&', '*')} .e-input-group {
|
|
184
|
+
padding: 4px 0;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
#{if(&, '&', '*')} .e-input-group input,
|
|
188
|
+
#{if(&, '&', '*')} .e-input-group input.e-input {
|
|
189
|
+
height: 30px;
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
.e-bigger.e-small #{&}.e-popup.e-ddl .e-dropdownbase {
|
|
195
|
+
min-height: 34px;
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
.e-small.e-bigger .e-input-group .e-control#{&}.e-dropdownlist~.e-ddl-icon,
|
|
200
|
+
.e-small.e-bigger.e-input-group .e-control#{&}.e-dropdownlist~.e-ddl-icon {
|
|
201
|
+
@if $skin-name == 'bootstrap4' {
|
|
202
|
+
font-size: 12px;
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
.e-bigger .e-input-group .e-control#{&}.e-dropdownlist~.e-ddl-icon,
|
|
207
|
+
.e-bigger.e-input-group .e-control#{&}.e-dropdownlist~.e-ddl-icon {
|
|
208
|
+
@if $skin-name == 'bootstrap4' {
|
|
209
|
+
font-size: 14px;
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
@if $skin-name == 'bootstrap4' {
|
|
214
|
+
.e-bigger #{&}.e-popup.e-ddl-device-filter {
|
|
215
|
+
margin-top: 0;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
.e-bigger #{&}.e-popup.e-ddl {
|
|
219
|
+
@at-root {
|
|
220
|
+
#{if(&, '&', '*')} .e-list-item {
|
|
221
|
+
font-size: 16px;
|
|
222
|
+
line-height: 32px;
|
|
223
|
+
padding-left: 0;
|
|
224
|
+
text-indent: 24px;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
#{if(&, '&', '*')} .e-list-group-item,
|
|
228
|
+
#{if(&, '&', '*')} .e-fixed-head {
|
|
229
|
+
font-size: 14px;
|
|
230
|
+
line-height: 32px;
|
|
231
|
+
padding-left: 0;
|
|
232
|
+
text-indent: 24px;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
#{if(&, '&', '*')} .e-dd-group .e-list-item {
|
|
236
|
+
padding-left: 4px;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
#{if(&, '&', '*')} .e-input-group {
|
|
240
|
+
padding: 4px 0;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
#{if(&, '&', '*')} .e-input-group input,
|
|
244
|
+
#{if(&, '&', '*')} .e-input-group input.e-input {
|
|
245
|
+
font-size: 16px;
|
|
246
|
+
height: 36px;
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
.e-bigger #{&}.e-popup.e-ddl .e-dropdownbase {
|
|
252
|
+
min-height: 40px;
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
@if $skin-name == 'bootstrap5' or $skin-name == 'bootstrap5.3' {
|
|
257
|
+
.e-bigger .e-input-group .e-control#{&}.e-dropdownlist~.e-ddl-icon {
|
|
258
|
+
font-size: $text-base;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
.e-bigger.e-small .e-ddl#{&}.e-popup {
|
|
262
|
+
@at-root {
|
|
263
|
+
#{if(&, '&', '*')} .e-list-item,
|
|
264
|
+
#{if(&, '&', '*')} .e-list-group-item,
|
|
265
|
+
#{if(&, '&', '*')} .e-fixed-head {
|
|
266
|
+
font-size: $text-sm;
|
|
267
|
+
line-height: 34px;
|
|
268
|
+
padding-left: 0;
|
|
269
|
+
text-indent: 16px;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
#{if(&, '&', '*')} .e-dd-group .e-list-item {
|
|
273
|
+
padding-left: 4px;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
#{if(&, '&', '*')} .e-input-group input,
|
|
277
|
+
#{if(&, '&', '*')} .e-input-group input.e-input {
|
|
278
|
+
height: 30px;
|
|
279
|
+
}
|
|
280
|
+
}
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
.e-bigger.e-small #{&}.e-popup.e-ddl .e-dropdownbase {
|
|
284
|
+
min-height: 34px;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
.e-bigger #{&}.e-popup.e-ddl-device-filter {
|
|
288
|
+
margin-top: 0;
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
.e-bigger #{&}.e-popup.e-ddl {
|
|
292
|
+
@at-root {
|
|
293
|
+
#{if(&, '&', '*')} .e-list-item {
|
|
294
|
+
font-size: $text-base;
|
|
295
|
+
line-height: 32px;
|
|
296
|
+
padding-left: 0;
|
|
297
|
+
text-indent: 16px;
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
#{if(&, '&', '*')} .e-list-group-item,
|
|
301
|
+
#{if(&, '&', '*')} .e-fixed-head {
|
|
302
|
+
font-size: $text-sm;
|
|
303
|
+
line-height: 32px;
|
|
304
|
+
padding-left: 0;
|
|
305
|
+
text-indent: 16px;
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
#{if(&, '&', '*')} .e-dd-group .e-list-item {
|
|
309
|
+
padding-left: 0;
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
#{if(&, '&', '*')} .e-input-group input,
|
|
313
|
+
#{if(&, '&', '*')} .e-input-group input.e-input {
|
|
314
|
+
font-size: $text-base;
|
|
315
|
+
height: 36px;
|
|
316
|
+
}
|
|
317
|
+
}
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
.e-bigger #{&}.e-popup.e-ddl .e-dropdownbase {
|
|
321
|
+
min-height: 40px;
|
|
322
|
+
}
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
@if $skin-name == 'fabric-dark' or $skin-name == 'fabric' {
|
|
326
|
+
.e-bigger #{&}.e-popup.e-ddl-device-filter {
|
|
327
|
+
margin-top: 0;
|
|
328
|
+
}
|
|
329
|
+
.e-bigger .e-ddl#{&}.e-popup {
|
|
330
|
+
@at-root {
|
|
331
|
+
#{if(&, '&', '*')} .e-list-item,
|
|
332
|
+
#{if(&, '&', '*')} .e-list-group-item,
|
|
333
|
+
#{if(&, '&', '*')} .e-fixed-head {
|
|
334
|
+
font-size: 15px;
|
|
335
|
+
line-height: 45px;
|
|
336
|
+
padding-left: 0;
|
|
337
|
+
text-indent: 16px;
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
#{if(&, '&', '*')} .e-dd-group .e-list-item {
|
|
341
|
+
padding-left: 4px;
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
#{if(&, '&', '*')} .e-input-group {
|
|
345
|
+
padding: 4px 0;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
#{if(&, '&', '*')} .e-input-group input,
|
|
349
|
+
#{if(&, '&', '*')} .e-input-group input.e-input {
|
|
350
|
+
height: 38px;
|
|
351
|
+
}
|
|
352
|
+
}
|
|
353
|
+
}
|
|
354
|
+
.e-bigger.e-small .e-ddl#{&}.e-popup,
|
|
355
|
+
.e-ddl#{&}.e-popup .e-bigger.e-small {
|
|
356
|
+
@at-root {
|
|
357
|
+
#{if(&, '&', '*')} .e-list-item,
|
|
358
|
+
#{if(&, '&', '*')} .e-list-group-item,
|
|
359
|
+
#{if(&, '&', '*')} .e-fixed-head {
|
|
360
|
+
font-size: 14px;
|
|
361
|
+
line-height: 40px;
|
|
362
|
+
padding-left: 0;
|
|
363
|
+
text-indent: 16px;
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
#{if(&, '&', '*')} .e-dd-group .e-list-item {
|
|
367
|
+
padding-left: 4px;
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
#{if(&, '&', '*')} .e-input-group {
|
|
371
|
+
padding: 0;
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
#{if(&, '&', '*')} .e-input-group input,
|
|
375
|
+
#{if(&, '&', '*')} .e-input-group input.e-input {
|
|
376
|
+
height: 34px;
|
|
377
|
+
}
|
|
378
|
+
}
|
|
379
|
+
}
|
|
380
|
+
}
|
|
381
|
+
@if $skin-name == 'FluentUI' {
|
|
382
|
+
.e-bigger #{&}.e-popup.e-ddl-device-filter {
|
|
383
|
+
margin-top: 0;
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
.e-bigger #{&}.e-popup.e-ddl {
|
|
387
|
+
@at-root {
|
|
388
|
+
#{if(&, '&', '*')} .e-list-item {
|
|
389
|
+
font-size: $text-base;
|
|
390
|
+
line-height: 32px;
|
|
391
|
+
padding-left: 0;
|
|
392
|
+
text-indent: 16px;
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
#{if(&, '&', '*')} .e-list-group-item,
|
|
396
|
+
#{if(&, '&', '*')} .e-fixed-head {
|
|
397
|
+
font-size: $text-sm;
|
|
398
|
+
line-height: 32px;
|
|
399
|
+
padding-left: 0;
|
|
400
|
+
text-indent: 16px;
|
|
401
|
+
}
|
|
402
|
+
}
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
.e-bigger #{&}.e-popup.e-ddl .e-dropdownbase {
|
|
406
|
+
min-height: 40px;
|
|
407
|
+
}
|
|
408
|
+
.e-bigger .e-input-group .e-control#{&}.e-dropdownlist~.e-ddl-icon {
|
|
409
|
+
font-size: $text-base;
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
.e-bigger.e-small .e-ddl#{&}.e-popup {
|
|
413
|
+
@at-root {
|
|
414
|
+
#{if(&, '&', '*')} .e-list-item,
|
|
415
|
+
#{if(&, '&', '*')} .e-list-group-item,
|
|
416
|
+
#{if(&, '&', '*')} .e-fixed-head {
|
|
417
|
+
font-size: $text-sm;
|
|
418
|
+
line-height: 34px;
|
|
419
|
+
padding-left: 0;
|
|
420
|
+
text-indent: 16px;
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
// #{if(&, '&', '*')} .e-dd-group .e-list-item {
|
|
424
|
+
// padding-left: 4px;
|
|
425
|
+
// }
|
|
426
|
+
|
|
427
|
+
#{if(&, '&', '*')} .e-input-group input,
|
|
428
|
+
#{if(&, '&', '*')} .e-input-group input.e-input {
|
|
429
|
+
height: 30px;
|
|
430
|
+
}
|
|
431
|
+
}
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
.e-bigger.e-small #{&}.e-popup.e-ddl .e-dropdownbase {
|
|
435
|
+
min-height: 34px;
|
|
436
|
+
}
|
|
437
|
+
}
|
|
438
|
+
@if $skin-name == 'fluent2' {
|
|
439
|
+
.e-bigger .e-ddl#{&}.e-popup,
|
|
440
|
+
.e-bigger.e-ddl#{&}.e-popup {
|
|
441
|
+
border-radius: 8px;
|
|
442
|
+
margin-top: 8px;
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
.e-bigger.e-small .e-ddl#{&}.e-popup,
|
|
446
|
+
.e-small.e-bigger.e-ddl#{&}.e-popup {
|
|
447
|
+
border-radius: 8px;
|
|
448
|
+
margin-top: 6px;
|
|
449
|
+
}
|
|
450
|
+
.e-bigger #{&}.e-popup.e-ddl-device-filter .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
|
|
451
|
+
border-color: $ddl-default-border-color;
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
.e-bigger #{&}.e-popup.e-ddl-device-filter {
|
|
455
|
+
margin-top: 0;
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
.e-bigger .e-ddl-device .e-input-group,
|
|
459
|
+
.e-bigger .e-ddl-device .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
|
|
460
|
+
background: $flyout-bg-color;
|
|
461
|
+
border-width: 0;
|
|
462
|
+
box-shadow: none;
|
|
463
|
+
margin-bottom: 0;
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
.e-bigger .e-ddl-device .e-input-group .e-back-icon,
|
|
467
|
+
.e-bigger .e-ddl-device .e-input-group input.e-input,
|
|
468
|
+
.e-bigger .e-ddl-device .e-input-group .e-clear-icon {
|
|
469
|
+
background-color: $flyout-bg-color;
|
|
470
|
+
}
|
|
471
|
+
}
|
|
472
|
+
@if $skin-name == 'highcontrast' or $skin-name == 'highcontrast-light' {
|
|
473
|
+
.e-bigger .e-ddl.e-popup .e-input-group .e-clear-icon {
|
|
474
|
+
height: 36px;
|
|
475
|
+
}
|
|
476
|
+
.e-ddl#{&} {
|
|
477
|
+
#{if(&, '&', '*')}.e-popup {
|
|
478
|
+
.e-bigger #{if(&, '&', '*')} {
|
|
479
|
+
#{if(&, '&', '*')}.e-ddl-device.e-ddl-device-filter {
|
|
480
|
+
margin-top: 0;
|
|
481
|
+
}
|
|
482
|
+
#{if(&, '&', '*')} .e-list-item,
|
|
483
|
+
#{if(&, '&', '*')} .e-list-group-item,
|
|
484
|
+
#{if(&, '&', '*')} .e-fixed-head {
|
|
485
|
+
font-size: 15px;
|
|
486
|
+
line-height: 45px;
|
|
487
|
+
padding-left: 0;
|
|
488
|
+
text-indent: 16px;
|
|
489
|
+
}
|
|
490
|
+
|
|
491
|
+
#{if(&, '&', '*')} .e-dd-group {
|
|
492
|
+
#{if(&, '&', '*')} .e-list-item {
|
|
493
|
+
padding-left: 4px;
|
|
494
|
+
}
|
|
495
|
+
}
|
|
496
|
+
|
|
497
|
+
#{if(&, '&', '*')} .e-input-group {
|
|
498
|
+
padding: 4px 0;
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
#{if(&, '&', '*')} .e-input-group {
|
|
502
|
+
#{if(&, '&', '*')} input {
|
|
503
|
+
height: 46px;
|
|
504
|
+
}
|
|
505
|
+
}
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
.e-bigger.e-small #{if(&, '&', '*')} {
|
|
509
|
+
#{if(&, '&', '*')} .e-list-item,
|
|
510
|
+
#{if(&, '&', '*')} .e-list-group-item,
|
|
511
|
+
#{if(&, '&', '*')} .e-fixed-head {
|
|
512
|
+
font-size: 14px;
|
|
513
|
+
line-height: 40px;
|
|
514
|
+
padding-left: 0;
|
|
515
|
+
text-indent: 16px;
|
|
516
|
+
}
|
|
517
|
+
|
|
518
|
+
#{if(&, '&', '*')} .e-dd-group {
|
|
519
|
+
#{if(&, '&', '*')} .e-list-item {
|
|
520
|
+
padding-left: 4px;
|
|
521
|
+
}
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
#{if(&, '&', '*')} .e-input-group {
|
|
525
|
+
padding: 0;
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
#{if(&, '&', '*')} .e-input-group {
|
|
529
|
+
#{if(&, '&', '*')} input {
|
|
530
|
+
height: 34px;
|
|
531
|
+
}
|
|
532
|
+
}
|
|
533
|
+
}
|
|
534
|
+
}
|
|
535
|
+
}
|
|
536
|
+
}
|
|
537
|
+
@if $skin-name == 'material-dark' {
|
|
538
|
+
.e-bigger #{&}.e-popup.e-ddl-device-filter .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
|
|
539
|
+
border-color: $ddl-default-border-color;
|
|
540
|
+
}
|
|
541
|
+
|
|
542
|
+
.e-bigger #{&}.e-popup.e-ddl-device-filter {
|
|
543
|
+
margin-top: 0;
|
|
544
|
+
}
|
|
545
|
+
|
|
546
|
+
.e-bigger .e-ddl-device .e-input-group,
|
|
547
|
+
.e-bigger .e-ddl-device .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
|
|
548
|
+
background: $grey-100;
|
|
549
|
+
border-width: 0;
|
|
550
|
+
box-shadow: none;
|
|
551
|
+
margin-bottom: 0;
|
|
552
|
+
}
|
|
553
|
+
|
|
554
|
+
.e-bigger .e-ddl-device .e-input-group .e-back-icon,
|
|
555
|
+
.e-bigger .e-ddl-device .e-input-group input.e-input,
|
|
556
|
+
.e-bigger .e-ddl-device .e-input-group .e-clear-icon {
|
|
557
|
+
background-color: $grey-100;
|
|
558
|
+
}
|
|
559
|
+
.e-bigger #{&}.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
|
|
560
|
+
.e-bigger#{&}.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon {
|
|
561
|
+
min-height: 16px;
|
|
562
|
+
min-width: 16px;
|
|
563
|
+
}
|
|
564
|
+
|
|
565
|
+
.e-bigger #{&}.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-filter,
|
|
566
|
+
.e-bigger#{&}.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-filter {
|
|
567
|
+
padding: 8px 16px 8px 0;
|
|
568
|
+
}
|
|
569
|
+
}
|
|
570
|
+
@if $skin-name == 'material' {
|
|
571
|
+
.e-bigger #{&}.e-popup.e-ddl-device-filter .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
|
|
572
|
+
border-color: $ddl-default-border-color;
|
|
573
|
+
}
|
|
574
|
+
|
|
575
|
+
.e-bigger #{&}.e-popup.e-ddl-device-filter {
|
|
576
|
+
margin-top: 0;
|
|
577
|
+
}
|
|
578
|
+
|
|
579
|
+
.e-bigger .e-ddl-device .e-input-group,
|
|
580
|
+
.e-bigger .e-ddl-device .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
|
|
581
|
+
background: $grey-100;
|
|
582
|
+
border-width: 0;
|
|
583
|
+
box-shadow: none;
|
|
584
|
+
margin-bottom: 0;
|
|
585
|
+
}
|
|
586
|
+
|
|
587
|
+
.e-bigger .e-ddl-device .e-input-group .e-back-icon,
|
|
588
|
+
.e-bigger .e-ddl-device .e-input-group input.e-input,
|
|
589
|
+
.e-bigger .e-ddl-device .e-input-group .e-clear-icon {
|
|
590
|
+
background-color: $grey-100;
|
|
591
|
+
}
|
|
592
|
+
.e-bigger #{&}.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
|
|
593
|
+
.e-bigger#{&}.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon {
|
|
594
|
+
min-height: 16px;
|
|
595
|
+
min-width: 16px;
|
|
596
|
+
}
|
|
597
|
+
|
|
598
|
+
.e-bigger #{&}.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-filter,
|
|
599
|
+
.e-bigger#{&}.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-filter {
|
|
600
|
+
padding: 8px 16px 8px 0;
|
|
601
|
+
}
|
|
602
|
+
.e-bigger.e-small #{&}.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
|
|
603
|
+
.e-bigger.e-small#{&}.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
|
|
604
|
+
.e-bigger #{&}.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-small .e-clear-icon,
|
|
605
|
+
.e-bigger#{&}.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-small .e-clear-icon,
|
|
606
|
+
.e-small #{&}.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-bigger .e-clear-icon,
|
|
607
|
+
.e-small#{&}.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-bigger .e-clear-icon,
|
|
608
|
+
#{&}.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-bigger.e-small .e-clear-icon {
|
|
609
|
+
min-height: 18px;
|
|
610
|
+
min-width: 18px;
|
|
611
|
+
}
|
|
612
|
+
|
|
613
|
+
.e-bigger.e-small #{&}.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group .e-input-filter,
|
|
614
|
+
.e-bigger.e-small#{&}.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group .e-input-filter,
|
|
615
|
+
.e-bigger #{&}.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-small .e-input-filter,
|
|
616
|
+
.e-bigger#{&}.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-small .e-input-filter,
|
|
617
|
+
.e-small #{&}.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-bigger .e-input-filter,
|
|
618
|
+
.e-small#{&}.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-bigger .e-input-filter,
|
|
619
|
+
#{&}.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-bigger.e-small .e-input-filter {
|
|
620
|
+
padding: 8px 16px;
|
|
621
|
+
}
|
|
622
|
+
}
|
|
623
|
+
@if $skin-name == 'Material3' {
|
|
624
|
+
.e-bigger #{&}.e-popup.e-ddl-device-filter .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
|
|
625
|
+
border-color: $ddl-default-border-color;
|
|
626
|
+
}
|
|
627
|
+
|
|
628
|
+
.e-bigger #{&}.e-popup.e-ddl-device-filter {
|
|
629
|
+
margin-top: 0;
|
|
630
|
+
}
|
|
631
|
+
|
|
632
|
+
.e-bigger .e-ddl-device .e-input-group,
|
|
633
|
+
.e-bigger .e-ddl-device .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
|
|
634
|
+
background: rgba($transparent, .0001);
|
|
635
|
+
border-width: 0;
|
|
636
|
+
box-shadow: none;
|
|
637
|
+
margin-bottom: 0;
|
|
638
|
+
}
|
|
639
|
+
|
|
640
|
+
.e-bigger .e-ddl-device .e-input-group .e-back-icon,
|
|
641
|
+
.e-bigger .e-ddl-device .e-input-group input.e-input,
|
|
642
|
+
.e-bigger .e-ddl-device .e-input-group .e-clear-icon {
|
|
643
|
+
background: rgba($transparent, .0001);
|
|
644
|
+
}
|
|
645
|
+
.e-bigger #{&}.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
|
|
646
|
+
.e-bigger#{&}.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon {
|
|
647
|
+
min-height: 38px;
|
|
648
|
+
min-width: 38px;
|
|
649
|
+
}
|
|
650
|
+
.e-bigger #{&}.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-filter,
|
|
651
|
+
.e-bigger#{&}.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-filter {
|
|
652
|
+
padding: 4px 16px 4px 0;
|
|
653
|
+
}
|
|
654
|
+
.e-bigger.e-small #{&}.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
|
|
655
|
+
.e-bigger.e-small#{&}.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
|
|
656
|
+
.e-bigger #{&}.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-small .e-clear-icon,
|
|
657
|
+
.e-bigger#{&}.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-small .e-clear-icon,
|
|
658
|
+
.e-small #{&}.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-bigger .e-clear-icon,
|
|
659
|
+
.e-small#{&}.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-bigger .e-clear-icon,
|
|
660
|
+
#{&}.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-bigger.e-small .e-clear-icon {
|
|
661
|
+
min-height: 34px;
|
|
662
|
+
min-width: 34px;
|
|
663
|
+
}
|
|
664
|
+
|
|
665
|
+
.e-bigger.e-small #{&}.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group .e-input-filter,
|
|
666
|
+
.e-bigger.e-small#{&}.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group .e-input-filter,
|
|
667
|
+
.e-bigger #{&}.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-small .e-input-filter,
|
|
668
|
+
.e-bigger#{&}.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-small .e-input-filter,
|
|
669
|
+
.e-small #{&}.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-bigger .e-input-filter,
|
|
670
|
+
.e-small#{&}.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-bigger .e-input-filter,
|
|
671
|
+
#{&}.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-bigger.e-small .e-input-filter {
|
|
672
|
+
padding: 8px 16px;
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
.e-bigger.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-input-focus .e-clear-icon {
|
|
676
|
+
margin: 0 4px;
|
|
677
|
+
}
|
|
678
|
+
}
|
|
679
|
+
@if $skin-name == 'tailwind' {
|
|
680
|
+
.e-bigger .e-ddl#{&}.e-popup,
|
|
681
|
+
.e-bigger.e-ddl#{&}.e-popup {
|
|
682
|
+
border-radius: 6px;
|
|
683
|
+
margin-top: 8px;
|
|
684
|
+
}
|
|
685
|
+
|
|
686
|
+
.e-bigger.e-small .e-ddl#{&}.e-popup,
|
|
687
|
+
.e-small.e-bigger.e-ddl#{&}.e-popup {
|
|
688
|
+
border-radius: 4px;
|
|
689
|
+
margin-top: 6px;
|
|
690
|
+
}
|
|
691
|
+
.e-bigger #{&}.e-popup.e-ddl-device-filter .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
|
|
692
|
+
border-color: $ddl-default-border-color;
|
|
693
|
+
}
|
|
694
|
+
|
|
695
|
+
.e-bigger #{&}.e-popup.e-ddl-device-filter {
|
|
696
|
+
margin-top: 0;
|
|
697
|
+
}
|
|
698
|
+
|
|
699
|
+
.e-bigger .e-ddl-device .e-input-group,
|
|
700
|
+
.e-bigger .e-ddl-device .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
|
|
701
|
+
background: $flyout-bg-color;
|
|
702
|
+
border-width: 0;
|
|
703
|
+
box-shadow: none;
|
|
704
|
+
margin-bottom: 0;
|
|
705
|
+
}
|
|
706
|
+
|
|
707
|
+
.e-bigger .e-ddl-device .e-input-group .e-back-icon,
|
|
708
|
+
.e-bigger .e-ddl-device .e-input-group input.e-input,
|
|
709
|
+
.e-bigger .e-ddl-device .e-input-group .e-clear-icon {
|
|
710
|
+
background-color: $flyout-bg-color;
|
|
711
|
+
}
|
|
712
|
+
}
|
|
713
|
+
}
|