@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,561 +1,561 @@
|
|
|
1
|
-
@mixin close-style($font-size, $height, $width) {
|
|
2
|
-
font-size: $font-size;
|
|
3
|
-
height: $height;
|
|
4
|
-
width: $width;
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
@mixin min-style($min-height, $min-width, $font-size, $line-height) {
|
|
8
|
-
min-height: $min-height;
|
|
9
|
-
min-width: $min-width;
|
|
10
|
-
line-height: $line-height;
|
|
11
|
-
&::before {
|
|
12
|
-
font-size: $font-size;
|
|
13
|
-
@if ($ddt-skin-name == 'fluent2') {
|
|
14
|
-
padding: 3px;
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
@mixin icon-style($bottom, $right) {
|
|
20
|
-
bottom: $bottom;
|
|
21
|
-
right: $right;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
@mixin chip-last($margin-right, $max-width) {
|
|
25
|
-
.e-chips-wrapper .e-chips:last-child {
|
|
26
|
-
margin-right: $margin-right;
|
|
27
|
-
max-width: $max-width;
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
@mixin chip-last-margin($margin-right, $margin-left) {
|
|
32
|
-
.e-chips-wrapper .e-chips:last-child {
|
|
33
|
-
margin-right: $margin-right;
|
|
34
|
-
margin-left: $margin-left;
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
@include export-module('dropdowntree-bigger') {
|
|
39
|
-
.e-bigger .e-ddt,
|
|
40
|
-
.e-ddt.e-bigger {
|
|
41
|
-
|
|
42
|
-
.e-chips {
|
|
43
|
-
height: $ddt-chip-bigger-height;
|
|
44
|
-
|
|
45
|
-
@if $ddt-skin-name == 'tailwind' {
|
|
46
|
-
padding: 3px 8px;
|
|
47
|
-
|
|
48
|
-
& > .e-chipcontent {
|
|
49
|
-
padding: $ddt-big-chip-content-padding;
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
@if $ddt-skin-name == 'FluentUI' {
|
|
53
|
-
font-size: $text-lg;
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
&.e-input-group.e-control-wrapper,
|
|
58
|
-
&.e-float-input.e-control-wrapper {
|
|
59
|
-
|
|
60
|
-
&.e-show-chip,
|
|
61
|
-
&.e-show-text {
|
|
62
|
-
&.e-show-dd-icon .e-clear-icon {
|
|
63
|
-
@if $ddt-skin-name == 'tailwind' {
|
|
64
|
-
@include icon-style(3px, 32px);
|
|
65
|
-
}
|
|
66
|
-
@else if $ddt-skin-name == 'bootstrap4' {
|
|
67
|
-
right: 33px;
|
|
68
|
-
}
|
|
69
|
-
@else if $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'bootstrap5.3' or $ddt-skin-name == 'FluentUI' or $ddt-skin-name == 'tailwind3' {
|
|
70
|
-
@include icon-style(auto, 36px);
|
|
71
|
-
}
|
|
72
|
-
@else if $ddt-skin-name != 'Material3' {
|
|
73
|
-
right: $ddt-dd-icon-bigger-width;
|
|
74
|
-
}
|
|
75
|
-
@if ($ddt-skin-name =='tailwind3') {
|
|
76
|
-
bottom: 0;
|
|
77
|
-
right: 24px;
|
|
78
|
-
}
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
@if $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
|
|
82
|
-
&.e-show-chip {
|
|
83
|
-
&.e-show-dd-icon .e-clear-icon {
|
|
84
|
-
bottom: 0;
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
.e-ddt-icon {
|
|
90
|
-
bottom: $ddt-dd-icon-bigger-bottom;
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
@if ($ddt-skin-name =='tailwind3') {
|
|
94
|
-
& .e-chips {
|
|
95
|
-
& > .e-chipcontent {
|
|
96
|
-
height: 20px;
|
|
97
|
-
font-size: 14px;
|
|
98
|
-
line-height: 20px;
|
|
99
|
-
padding: 0 6px 0 4px;
|
|
100
|
-
}
|
|
101
|
-
}
|
|
102
|
-
& .e-chips-close {
|
|
103
|
-
margin: 0 6px 2px 0;
|
|
104
|
-
}
|
|
105
|
-
}
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
.e-input-group-icon.e-ddt-icon {
|
|
109
|
-
@if $ddt-skin-name == 'bootstrap4' {
|
|
110
|
-
font-size: 10px;
|
|
111
|
-
}
|
|
112
|
-
@else if $ddt-skin-name == 'fluent2' {
|
|
113
|
-
font-size: 18px;
|
|
114
|
-
}
|
|
115
|
-
}
|
|
116
|
-
|
|
117
|
-
.e-clear-icon {
|
|
118
|
-
@if $ddt-skin-name == 'tailwind' {
|
|
119
|
-
min-width: 0;
|
|
120
|
-
padding: 6px;
|
|
121
|
-
}
|
|
122
|
-
@else {
|
|
123
|
-
min-height: $ddt-close-icon-bigger-min-height;
|
|
124
|
-
}
|
|
125
|
-
@if $ddt-skin-name == 'fluent2' {
|
|
126
|
-
padding: 0;
|
|
127
|
-
&::before {
|
|
128
|
-
font-size: 18px;
|
|
129
|
-
}
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
&.e-show-chip {
|
|
135
|
-
.e-chips-close {
|
|
136
|
-
@if $ddt-skin-name == 'bootstrap4' {
|
|
137
|
-
@include min-style(30px, 30px, 10px, 27px);
|
|
138
|
-
}
|
|
139
|
-
@if $ddt-skin-name == 'tailwind' {
|
|
140
|
-
@include min-style(24px, 24px, 20px, 18px);
|
|
141
|
-
}
|
|
142
|
-
@if $ddt-skin-name == 'bootstrap5' {
|
|
143
|
-
@include min-style(24px, 24px, 12px, null);
|
|
144
|
-
&::before {
|
|
145
|
-
vertical-align: middle;
|
|
146
|
-
}
|
|
147
|
-
}
|
|
148
|
-
@if $ddt-skin-name == 'FluentUI' {
|
|
149
|
-
@include min-style(32px, 32px, 12px, 27px);
|
|
150
|
-
}
|
|
151
|
-
@if $ddt-skin-name == 'tailwind3' {
|
|
152
|
-
height: 16px;
|
|
153
|
-
width: 16px;
|
|
154
|
-
&::before {
|
|
155
|
-
font-size: 16px;
|
|
156
|
-
}
|
|
157
|
-
}
|
|
158
|
-
}
|
|
159
|
-
|
|
160
|
-
.e-overflow {
|
|
161
|
-
.e-remain {
|
|
162
|
-
&.e-wrap-count {
|
|
163
|
-
@if $ddt-skin-name == 'tailwind' {
|
|
164
|
-
line-height: 22px;
|
|
165
|
-
padding-top: 7px;
|
|
166
|
-
}
|
|
167
|
-
@if $ddt-skin-name == 'FluentUI' {
|
|
168
|
-
line-height: 38px;
|
|
169
|
-
padding-top: 0;
|
|
170
|
-
}
|
|
171
|
-
@if ($ddt-skin-name == 'fluent2') {
|
|
172
|
-
padding-top: 9px;
|
|
173
|
-
padding-bottom: 9px;
|
|
174
|
-
}
|
|
175
|
-
}
|
|
176
|
-
}
|
|
177
|
-
|
|
178
|
-
&.e-total-count {
|
|
179
|
-
.e-remain {
|
|
180
|
-
@if $ddt-skin-name == 'bootstrap5' {
|
|
181
|
-
line-height: 36px;
|
|
182
|
-
padding: 0 12px;
|
|
183
|
-
}
|
|
184
|
-
@else if $ddt-skin-name == 'tailwind' {
|
|
185
|
-
padding: 8px 12px;
|
|
186
|
-
}
|
|
187
|
-
@else if $ddt-skin-name == 'FluentUI' {
|
|
188
|
-
line-height: 38px;
|
|
189
|
-
padding: 0 8px;
|
|
190
|
-
}
|
|
191
|
-
}
|
|
192
|
-
}
|
|
193
|
-
}
|
|
194
|
-
}
|
|
195
|
-
|
|
196
|
-
.e-overflow {
|
|
197
|
-
|
|
198
|
-
&.e-show-text {
|
|
199
|
-
padding: $ddt-delim-bigger-padding;
|
|
200
|
-
@if $ddt-skin-name == 'bootstrap5' {
|
|
201
|
-
line-height: 37px;
|
|
202
|
-
}
|
|
203
|
-
@if $ddt-skin-name == 'FluentUI' {
|
|
204
|
-
line-height: 38px;
|
|
205
|
-
}
|
|
206
|
-
}
|
|
207
|
-
|
|
208
|
-
.e-remain {
|
|
209
|
-
@if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
|
|
210
|
-
font-size: $ddt-remains-font-size;
|
|
211
|
-
}
|
|
212
|
-
}
|
|
213
|
-
}
|
|
214
|
-
|
|
215
|
-
@if $ddt-skin-name == 'material' or $ddt-skin-name == 'material-dark' {
|
|
216
|
-
&.e-outline {
|
|
217
|
-
.e-overflow {
|
|
218
|
-
&.e-show-text,
|
|
219
|
-
&.e-total-count {
|
|
220
|
-
padding: $ddt-outline-bigger-padding;
|
|
221
|
-
}
|
|
222
|
-
}
|
|
223
|
-
|
|
224
|
-
&.e-input-group.e-control-wrapper,
|
|
225
|
-
&.e-float-input.e-control-wrapper {
|
|
226
|
-
&.e-show-dd-icon .e-clear-icon {
|
|
227
|
-
right: 36px;
|
|
228
|
-
}
|
|
229
|
-
}
|
|
230
|
-
}
|
|
231
|
-
|
|
232
|
-
&.e-outline.e-show-chip {
|
|
233
|
-
.e-overflow {
|
|
234
|
-
padding: $ddt-bigger-outline-chip-padding;
|
|
235
|
-
|
|
236
|
-
&.e-total-count {
|
|
237
|
-
.e-remain {
|
|
238
|
-
padding-top: 10px;
|
|
239
|
-
}
|
|
240
|
-
}
|
|
241
|
-
|
|
242
|
-
.e-remain {
|
|
243
|
-
&.e-wrap-count {
|
|
244
|
-
padding-top: 10px;
|
|
245
|
-
}
|
|
246
|
-
}
|
|
247
|
-
}
|
|
248
|
-
|
|
249
|
-
.e-chips-wrapper {
|
|
250
|
-
padding: $ddt-bigger-outline-chip-padding;
|
|
251
|
-
}
|
|
252
|
-
}
|
|
253
|
-
|
|
254
|
-
&.e-filled {
|
|
255
|
-
&.e-float-input.e-control-wrapper {
|
|
256
|
-
.e-overflow {
|
|
257
|
-
&.e-show-text {
|
|
258
|
-
line-height: 30px;
|
|
259
|
-
padding: 19px 12px 0 0;
|
|
260
|
-
}
|
|
261
|
-
|
|
262
|
-
.e-remain {
|
|
263
|
-
&.e-wrap-count {
|
|
264
|
-
padding-top: 14px;
|
|
265
|
-
}
|
|
266
|
-
}
|
|
267
|
-
}
|
|
268
|
-
}
|
|
269
|
-
|
|
270
|
-
&.e-float-input.e-control-wrapper:not(.e-show-chip) {
|
|
271
|
-
.e-ddt-icon,
|
|
272
|
-
&.e-show-dd-icon .e-clear-icon {
|
|
273
|
-
padding-top: 8px;
|
|
274
|
-
}
|
|
275
|
-
}
|
|
276
|
-
|
|
277
|
-
&.e-float-input.e-control-wrapper.e-show-chip,
|
|
278
|
-
&.e-float-input.e-control-wrapper.e-show-text {
|
|
279
|
-
.e-ddt-icon {
|
|
280
|
-
@include icon-style(12px, 12px);
|
|
281
|
-
}
|
|
282
|
-
|
|
283
|
-
.e-clear-icon {
|
|
284
|
-
@include icon-style(11px, 44px);
|
|
285
|
-
}
|
|
286
|
-
|
|
287
|
-
&:not(.e-show-dd-icon) .e-clear-icon {
|
|
288
|
-
@include icon-style(14px, 12px);
|
|
289
|
-
}
|
|
290
|
-
}
|
|
291
|
-
|
|
292
|
-
.e-chips-wrapper,
|
|
293
|
-
.e-overflow {
|
|
294
|
-
.e-chips {
|
|
295
|
-
margin-top: 8px;
|
|
296
|
-
padding: 0 8px;
|
|
297
|
-
}
|
|
298
|
-
}
|
|
299
|
-
|
|
300
|
-
&.e-float-input.e-control-wrapper.e-show-chip {
|
|
301
|
-
.e-chips-wrapper,
|
|
302
|
-
.e-overflow {
|
|
303
|
-
padding-top: 19px;
|
|
304
|
-
|
|
305
|
-
.e-chips {
|
|
306
|
-
height: 24px;
|
|
307
|
-
}
|
|
308
|
-
|
|
309
|
-
.e-chips > .e-chipcontent {
|
|
310
|
-
font-size: 13px;
|
|
311
|
-
}
|
|
312
|
-
|
|
313
|
-
.e-chips-close::before {
|
|
314
|
-
@include close-style(14px, 14px, 14px);
|
|
315
|
-
}
|
|
316
|
-
}
|
|
317
|
-
}
|
|
318
|
-
|
|
319
|
-
&.e-input-group.e-control-wrapper:not(.e-float-input) {
|
|
320
|
-
.e-overflow {
|
|
321
|
-
&.e-show-text {
|
|
322
|
-
line-height: 55px;
|
|
323
|
-
}
|
|
324
|
-
|
|
325
|
-
.e-remain {
|
|
326
|
-
&.e-wrap-count {
|
|
327
|
-
line-height: 55px;
|
|
328
|
-
padding-top: 0;
|
|
329
|
-
}
|
|
330
|
-
}
|
|
331
|
-
}
|
|
332
|
-
|
|
333
|
-
&.e-show-chip {
|
|
334
|
-
.e-chips-wrapper,
|
|
335
|
-
.e-overflow {
|
|
336
|
-
.e-chips {
|
|
337
|
-
height: 32px;
|
|
338
|
-
padding: 0 12px;
|
|
339
|
-
|
|
340
|
-
> .e-chipcontent {
|
|
341
|
-
font-size: 14px;
|
|
342
|
-
}
|
|
343
|
-
}
|
|
344
|
-
|
|
345
|
-
.e-chips-close::before {
|
|
346
|
-
@include close-style(16px, 16px, 16px);
|
|
347
|
-
}
|
|
348
|
-
}
|
|
349
|
-
}
|
|
350
|
-
|
|
351
|
-
&.e-show-dd-icon.e-show-text,
|
|
352
|
-
&.e-show-dd-icon.e-show-chip {
|
|
353
|
-
.e-ddt-icon,
|
|
354
|
-
&:not(.e-show-dd-icon) .e-clear-icon {
|
|
355
|
-
@include icon-style(16px, 12px);
|
|
356
|
-
}
|
|
357
|
-
}
|
|
358
|
-
|
|
359
|
-
.e-clear-icon {
|
|
360
|
-
@include icon-style(15px, 44px);
|
|
361
|
-
}
|
|
362
|
-
}
|
|
363
|
-
}
|
|
364
|
-
}
|
|
365
|
-
|
|
366
|
-
&.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
367
|
-
@if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'bootstrap5.3' and $ddt-skin-name != 'Material3' and $ddt-skin-name != 'tailwind3' {
|
|
368
|
-
margin-right: $ddt-dd-icon-bigger-width;
|
|
369
|
-
}
|
|
370
|
-
max-width: $ddt-big-chip-ddi-width;
|
|
371
|
-
}
|
|
372
|
-
|
|
373
|
-
&.e-show-clear .e-chips-wrapper .e-chips:last-child {
|
|
374
|
-
@if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'bootstrap5.3' and $ddt-skin-name != 'Material3' and $ddt-skin-name != 'tailwind3' {
|
|
375
|
-
margin-right: $ddt-close-icon-bigger-width;
|
|
376
|
-
}
|
|
377
|
-
max-width: $ddt-big-chip-ci-width;
|
|
378
|
-
}
|
|
379
|
-
|
|
380
|
-
&.e-show-clear.e-show-dd-icon {
|
|
381
|
-
@include chip-last($ddt-last-chip-bigger-right-margin, $ddt-big-chip-ddi-ci-width);
|
|
382
|
-
}
|
|
383
|
-
|
|
384
|
-
&.e-popup {
|
|
385
|
-
@if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' {
|
|
386
|
-
margin-top: $ddt-popup-margin;
|
|
387
|
-
}
|
|
388
|
-
|
|
389
|
-
.e-selectall-parent {
|
|
390
|
-
text-indent: $ddt-select-all-bigger-text-indent;
|
|
391
|
-
padding: $ddt-big-select-all-padding;
|
|
392
|
-
|
|
393
|
-
.e-all-text {
|
|
394
|
-
font-size: $ddt-big-select-all-font-size;
|
|
395
|
-
line-height: 24px;
|
|
396
|
-
margin: $ddt-big-select-all-text-margin;
|
|
397
|
-
}
|
|
398
|
-
}
|
|
399
|
-
|
|
400
|
-
@if ($ddt-skin-name == 'tailwind3') {
|
|
401
|
-
border-radius: 8px;
|
|
402
|
-
margin-top: 8px;
|
|
403
|
-
|
|
404
|
-
.e-filter-wrap {
|
|
405
|
-
padding: 8px 9px;
|
|
406
|
-
}
|
|
407
|
-
}
|
|
408
|
-
|
|
409
|
-
@if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
|
|
410
|
-
.e-popup-content {
|
|
411
|
-
&.e-no-data {
|
|
412
|
-
@if $ddt-skin-name == 'bootstrap5' {
|
|
413
|
-
padding: 9px 16px;
|
|
414
|
-
}
|
|
415
|
-
@else {
|
|
416
|
-
padding: 10px 16px;
|
|
417
|
-
}
|
|
418
|
-
|
|
419
|
-
.e-ddt-nodata {
|
|
420
|
-
@if $ddt-skin-name == 'FluentUI' {
|
|
421
|
-
font-size: $text-lg;
|
|
422
|
-
}
|
|
423
|
-
@else {
|
|
424
|
-
font-size: $text-base;
|
|
425
|
-
}
|
|
426
|
-
line-height: 24px;
|
|
427
|
-
}
|
|
428
|
-
}
|
|
429
|
-
}
|
|
430
|
-
|
|
431
|
-
.e-filter-wrap {
|
|
432
|
-
padding: 8px;
|
|
433
|
-
}
|
|
434
|
-
}
|
|
435
|
-
|
|
436
|
-
.e-treeview {
|
|
437
|
-
.e-fullrow {
|
|
438
|
-
@if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'tailwind3' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'bootstrap5.3' and $ddt-skin-name != 'Material3' {
|
|
439
|
-
height: $ddt-treeview-fullrow-bigger-height;
|
|
440
|
-
}
|
|
441
|
-
}
|
|
442
|
-
|
|
443
|
-
> .e-ul {
|
|
444
|
-
@if $ddt-skin-name == 'bootstrap5' {
|
|
445
|
-
padding: 8px 16px;
|
|
446
|
-
}
|
|
447
|
-
@if $ddt-skin-name == 'tailwind' {
|
|
448
|
-
padding: 8px 0 8px 16px;
|
|
449
|
-
}
|
|
450
|
-
}
|
|
451
|
-
}
|
|
452
|
-
}
|
|
453
|
-
|
|
454
|
-
&.e-rtl {
|
|
455
|
-
.e-chips {
|
|
456
|
-
@if $ddt-skin-name == 'tailwind' {
|
|
457
|
-
& > .e-chipcontent {
|
|
458
|
-
padding: $ddt-rtl-big-chip-content-padding;
|
|
459
|
-
}
|
|
460
|
-
}
|
|
461
|
-
}
|
|
462
|
-
|
|
463
|
-
@if $ddt-skin-name == 'material' or $ddt-skin-name == 'material-dark' {
|
|
464
|
-
&.e-outline {
|
|
465
|
-
&.e-input-group.e-control-wrapper,
|
|
466
|
-
&.e-float-input.e-control-wrapper {
|
|
467
|
-
&.e-show-dd-icon .e-clear-icon,
|
|
468
|
-
&.e-show-dd-icon.e-show-text .e-clear-icon,
|
|
469
|
-
&.e-show-dd-icon.e-show-chip .e-clear-icon {
|
|
470
|
-
left: 36px;
|
|
471
|
-
}
|
|
472
|
-
}
|
|
473
|
-
}
|
|
474
|
-
|
|
475
|
-
&.e-filled {
|
|
476
|
-
&.e-float-input.e-control-wrapper {
|
|
477
|
-
.e-overflow {
|
|
478
|
-
&.e-show-text {
|
|
479
|
-
padding: 19px 0 0 12px;
|
|
480
|
-
}
|
|
481
|
-
}
|
|
482
|
-
|
|
483
|
-
&.e-show-chip,
|
|
484
|
-
&.e-show-text {
|
|
485
|
-
.e-ddt-icon,
|
|
486
|
-
&:not(.e-show-dd-icon) .e-clear-icon {
|
|
487
|
-
left: 12px;
|
|
488
|
-
right: auto;
|
|
489
|
-
}
|
|
490
|
-
|
|
491
|
-
&.e-show-dd-icon .e-clear-icon {
|
|
492
|
-
left: 44px;
|
|
493
|
-
right: auto;
|
|
494
|
-
}
|
|
495
|
-
}
|
|
496
|
-
}
|
|
497
|
-
|
|
498
|
-
&.e-input-group.e-control-wrapper:not(.e-float-input) {
|
|
499
|
-
&.e-show-dd-icon:not(.e-input-focus),
|
|
500
|
-
&.e-show-dd-icon.e-show-chip {
|
|
501
|
-
.e-ddt-icon,
|
|
502
|
-
&:not(.e-show-dd-icon) .e-clear-icon {
|
|
503
|
-
left: 12px;
|
|
504
|
-
right: auto;
|
|
505
|
-
}
|
|
506
|
-
}
|
|
507
|
-
|
|
508
|
-
.e-clear-icon {
|
|
509
|
-
left: 44px;
|
|
510
|
-
right: auto;
|
|
511
|
-
}
|
|
512
|
-
}
|
|
513
|
-
}
|
|
514
|
-
}
|
|
515
|
-
|
|
516
|
-
&.e-show-dd-icon {
|
|
517
|
-
@if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'tailwind3' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'bootstrap5.3' or $ddt-skin-name == 'FluentUI' {
|
|
518
|
-
@include chip-last-margin(4px, null);
|
|
519
|
-
}
|
|
520
|
-
@else if $ddt-skin-name != 'Material3' {
|
|
521
|
-
@include chip-last-margin(1px, $ddt-dd-icon-bigger-width);
|
|
522
|
-
}
|
|
523
|
-
}
|
|
524
|
-
|
|
525
|
-
&.e-show-clear {
|
|
526
|
-
@if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'tailwind3' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'bootstrap5.3' or $ddt-skin-name == 'FluentUI' {
|
|
527
|
-
@include chip-last-margin(4px, null);
|
|
528
|
-
}
|
|
529
|
-
@else if $ddt-skin-name != 'Material3' {
|
|
530
|
-
@include chip-last-margin(1px, $ddt-close-icon-bigger-width);
|
|
531
|
-
}
|
|
532
|
-
}
|
|
533
|
-
|
|
534
|
-
&.e-show-clear.e-show-dd-icon {
|
|
535
|
-
@if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
|
|
536
|
-
@include chip-last-margin($ddt-last-chip-bigger-right-margin, 4px);
|
|
537
|
-
}
|
|
538
|
-
@else {
|
|
539
|
-
@include chip-last-margin($ddt-last-chip-bigger-right-margin, 1px);
|
|
540
|
-
}
|
|
541
|
-
}
|
|
542
|
-
|
|
543
|
-
&.e-show-chip,
|
|
544
|
-
&.e-show-text {
|
|
545
|
-
&.e-input-group.e-show-dd-icon .e-clear-icon {
|
|
546
|
-
@if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'tailwind3' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'bootstrap5.3' and $ddt-skin-name != 'Material3' {
|
|
547
|
-
left: $ddt-dd-icon-bigger-width;
|
|
548
|
-
}
|
|
549
|
-
right: auto;
|
|
550
|
-
}
|
|
551
|
-
}
|
|
552
|
-
|
|
553
|
-
.e-selectall-parent {
|
|
554
|
-
text-indent: $ddt-rtl-select-all-bigger-text-indent;
|
|
555
|
-
.e-all-text {
|
|
556
|
-
margin: $ddt-rtl-big-select-all-text-margin;
|
|
557
|
-
}
|
|
558
|
-
}
|
|
559
|
-
}
|
|
560
|
-
}
|
|
561
|
-
}
|
|
1
|
+
@mixin close-style($font-size, $height, $width) {
|
|
2
|
+
font-size: $font-size;
|
|
3
|
+
height: $height;
|
|
4
|
+
width: $width;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
@mixin min-style($min-height, $min-width, $font-size, $line-height) {
|
|
8
|
+
min-height: $min-height;
|
|
9
|
+
min-width: $min-width;
|
|
10
|
+
line-height: $line-height;
|
|
11
|
+
&::before {
|
|
12
|
+
font-size: $font-size;
|
|
13
|
+
@if ($ddt-skin-name == 'fluent2') {
|
|
14
|
+
padding: 3px;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
@mixin icon-style($bottom, $right) {
|
|
20
|
+
bottom: $bottom;
|
|
21
|
+
right: $right;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
@mixin chip-last($margin-right, $max-width) {
|
|
25
|
+
.e-chips-wrapper .e-chips:last-child {
|
|
26
|
+
margin-right: $margin-right;
|
|
27
|
+
max-width: $max-width;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
@mixin chip-last-margin($margin-right, $margin-left) {
|
|
32
|
+
.e-chips-wrapper .e-chips:last-child {
|
|
33
|
+
margin-right: $margin-right;
|
|
34
|
+
margin-left: $margin-left;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
@include export-module('dropdowntree-bigger') {
|
|
39
|
+
.e-bigger .e-ddt,
|
|
40
|
+
.e-ddt.e-bigger {
|
|
41
|
+
|
|
42
|
+
.e-chips {
|
|
43
|
+
height: $ddt-chip-bigger-height;
|
|
44
|
+
|
|
45
|
+
@if $ddt-skin-name == 'tailwind' {
|
|
46
|
+
padding: 3px 8px;
|
|
47
|
+
|
|
48
|
+
& > .e-chipcontent {
|
|
49
|
+
padding: $ddt-big-chip-content-padding;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
@if $ddt-skin-name == 'FluentUI' {
|
|
53
|
+
font-size: $text-lg;
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
&.e-input-group.e-control-wrapper,
|
|
58
|
+
&.e-float-input.e-control-wrapper {
|
|
59
|
+
|
|
60
|
+
&.e-show-chip,
|
|
61
|
+
&.e-show-text {
|
|
62
|
+
&.e-show-dd-icon .e-clear-icon {
|
|
63
|
+
@if $ddt-skin-name == 'tailwind' {
|
|
64
|
+
@include icon-style(3px, 32px);
|
|
65
|
+
}
|
|
66
|
+
@else if $ddt-skin-name == 'bootstrap4' {
|
|
67
|
+
right: 33px;
|
|
68
|
+
}
|
|
69
|
+
@else if $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'bootstrap5.3' or $ddt-skin-name == 'FluentUI' or $ddt-skin-name == 'tailwind3' {
|
|
70
|
+
@include icon-style(auto, 36px);
|
|
71
|
+
}
|
|
72
|
+
@else if $ddt-skin-name != 'Material3' {
|
|
73
|
+
right: $ddt-dd-icon-bigger-width;
|
|
74
|
+
}
|
|
75
|
+
@if ($ddt-skin-name =='tailwind3') {
|
|
76
|
+
bottom: 0;
|
|
77
|
+
right: 24px;
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
@if $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
|
|
82
|
+
&.e-show-chip {
|
|
83
|
+
&.e-show-dd-icon .e-clear-icon {
|
|
84
|
+
bottom: 0;
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.e-ddt-icon {
|
|
90
|
+
bottom: $ddt-dd-icon-bigger-bottom;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
@if ($ddt-skin-name =='tailwind3') {
|
|
94
|
+
& .e-chips {
|
|
95
|
+
& > .e-chipcontent {
|
|
96
|
+
height: 20px;
|
|
97
|
+
font-size: 14px;
|
|
98
|
+
line-height: 20px;
|
|
99
|
+
padding: 0 6px 0 4px;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
& .e-chips-close {
|
|
103
|
+
margin: 0 6px 2px 0;
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.e-input-group-icon.e-ddt-icon {
|
|
109
|
+
@if $ddt-skin-name == 'bootstrap4' {
|
|
110
|
+
font-size: 10px;
|
|
111
|
+
}
|
|
112
|
+
@else if $ddt-skin-name == 'fluent2' {
|
|
113
|
+
font-size: 18px;
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.e-clear-icon {
|
|
118
|
+
@if $ddt-skin-name == 'tailwind' {
|
|
119
|
+
min-width: 0;
|
|
120
|
+
padding: 6px;
|
|
121
|
+
}
|
|
122
|
+
@else {
|
|
123
|
+
min-height: $ddt-close-icon-bigger-min-height;
|
|
124
|
+
}
|
|
125
|
+
@if $ddt-skin-name == 'fluent2' {
|
|
126
|
+
padding: 0;
|
|
127
|
+
&::before {
|
|
128
|
+
font-size: 18px;
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
&.e-show-chip {
|
|
135
|
+
.e-chips-close {
|
|
136
|
+
@if $ddt-skin-name == 'bootstrap4' {
|
|
137
|
+
@include min-style(30px, 30px, 10px, 27px);
|
|
138
|
+
}
|
|
139
|
+
@if $ddt-skin-name == 'tailwind' {
|
|
140
|
+
@include min-style(24px, 24px, 20px, 18px);
|
|
141
|
+
}
|
|
142
|
+
@if $ddt-skin-name == 'bootstrap5' {
|
|
143
|
+
@include min-style(24px, 24px, 12px, null);
|
|
144
|
+
&::before {
|
|
145
|
+
vertical-align: middle;
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
@if $ddt-skin-name == 'FluentUI' {
|
|
149
|
+
@include min-style(32px, 32px, 12px, 27px);
|
|
150
|
+
}
|
|
151
|
+
@if $ddt-skin-name == 'tailwind3' {
|
|
152
|
+
height: 16px;
|
|
153
|
+
width: 16px;
|
|
154
|
+
&::before {
|
|
155
|
+
font-size: 16px;
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.e-overflow {
|
|
161
|
+
.e-remain {
|
|
162
|
+
&.e-wrap-count {
|
|
163
|
+
@if $ddt-skin-name == 'tailwind' {
|
|
164
|
+
line-height: 22px;
|
|
165
|
+
padding-top: 7px;
|
|
166
|
+
}
|
|
167
|
+
@if $ddt-skin-name == 'FluentUI' {
|
|
168
|
+
line-height: 38px;
|
|
169
|
+
padding-top: 0;
|
|
170
|
+
}
|
|
171
|
+
@if ($ddt-skin-name == 'fluent2') {
|
|
172
|
+
padding-top: 9px;
|
|
173
|
+
padding-bottom: 9px;
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
&.e-total-count {
|
|
179
|
+
.e-remain {
|
|
180
|
+
@if $ddt-skin-name == 'bootstrap5' {
|
|
181
|
+
line-height: 36px;
|
|
182
|
+
padding: 0 12px;
|
|
183
|
+
}
|
|
184
|
+
@else if $ddt-skin-name == 'tailwind' {
|
|
185
|
+
padding: 8px 12px;
|
|
186
|
+
}
|
|
187
|
+
@else if $ddt-skin-name == 'FluentUI' {
|
|
188
|
+
line-height: 38px;
|
|
189
|
+
padding: 0 8px;
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.e-overflow {
|
|
197
|
+
|
|
198
|
+
&.e-show-text {
|
|
199
|
+
padding: $ddt-delim-bigger-padding;
|
|
200
|
+
@if $ddt-skin-name == 'bootstrap5' {
|
|
201
|
+
line-height: 37px;
|
|
202
|
+
}
|
|
203
|
+
@if $ddt-skin-name == 'FluentUI' {
|
|
204
|
+
line-height: 38px;
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.e-remain {
|
|
209
|
+
@if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
|
|
210
|
+
font-size: $ddt-remains-font-size;
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
@if $ddt-skin-name == 'material' or $ddt-skin-name == 'material-dark' {
|
|
216
|
+
&.e-outline {
|
|
217
|
+
.e-overflow {
|
|
218
|
+
&.e-show-text,
|
|
219
|
+
&.e-total-count {
|
|
220
|
+
padding: $ddt-outline-bigger-padding;
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
&.e-input-group.e-control-wrapper,
|
|
225
|
+
&.e-float-input.e-control-wrapper {
|
|
226
|
+
&.e-show-dd-icon .e-clear-icon {
|
|
227
|
+
right: 36px;
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
&.e-outline.e-show-chip {
|
|
233
|
+
.e-overflow {
|
|
234
|
+
padding: $ddt-bigger-outline-chip-padding;
|
|
235
|
+
|
|
236
|
+
&.e-total-count {
|
|
237
|
+
.e-remain {
|
|
238
|
+
padding-top: 10px;
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
.e-remain {
|
|
243
|
+
&.e-wrap-count {
|
|
244
|
+
padding-top: 10px;
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
.e-chips-wrapper {
|
|
250
|
+
padding: $ddt-bigger-outline-chip-padding;
|
|
251
|
+
}
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
&.e-filled {
|
|
255
|
+
&.e-float-input.e-control-wrapper {
|
|
256
|
+
.e-overflow {
|
|
257
|
+
&.e-show-text {
|
|
258
|
+
line-height: 30px;
|
|
259
|
+
padding: 19px 12px 0 0;
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
.e-remain {
|
|
263
|
+
&.e-wrap-count {
|
|
264
|
+
padding-top: 14px;
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
&.e-float-input.e-control-wrapper:not(.e-show-chip) {
|
|
271
|
+
.e-ddt-icon,
|
|
272
|
+
&.e-show-dd-icon .e-clear-icon {
|
|
273
|
+
padding-top: 8px;
|
|
274
|
+
}
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
&.e-float-input.e-control-wrapper.e-show-chip,
|
|
278
|
+
&.e-float-input.e-control-wrapper.e-show-text {
|
|
279
|
+
.e-ddt-icon {
|
|
280
|
+
@include icon-style(12px, 12px);
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
.e-clear-icon {
|
|
284
|
+
@include icon-style(11px, 44px);
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
&:not(.e-show-dd-icon) .e-clear-icon {
|
|
288
|
+
@include icon-style(14px, 12px);
|
|
289
|
+
}
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
.e-chips-wrapper,
|
|
293
|
+
.e-overflow {
|
|
294
|
+
.e-chips {
|
|
295
|
+
margin-top: 8px;
|
|
296
|
+
padding: 0 8px;
|
|
297
|
+
}
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
&.e-float-input.e-control-wrapper.e-show-chip {
|
|
301
|
+
.e-chips-wrapper,
|
|
302
|
+
.e-overflow {
|
|
303
|
+
padding-top: 19px;
|
|
304
|
+
|
|
305
|
+
.e-chips {
|
|
306
|
+
height: 24px;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
.e-chips > .e-chipcontent {
|
|
310
|
+
font-size: 13px;
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
.e-chips-close::before {
|
|
314
|
+
@include close-style(14px, 14px, 14px);
|
|
315
|
+
}
|
|
316
|
+
}
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
&.e-input-group.e-control-wrapper:not(.e-float-input) {
|
|
320
|
+
.e-overflow {
|
|
321
|
+
&.e-show-text {
|
|
322
|
+
line-height: 55px;
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
.e-remain {
|
|
326
|
+
&.e-wrap-count {
|
|
327
|
+
line-height: 55px;
|
|
328
|
+
padding-top: 0;
|
|
329
|
+
}
|
|
330
|
+
}
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
&.e-show-chip {
|
|
334
|
+
.e-chips-wrapper,
|
|
335
|
+
.e-overflow {
|
|
336
|
+
.e-chips {
|
|
337
|
+
height: 32px;
|
|
338
|
+
padding: 0 12px;
|
|
339
|
+
|
|
340
|
+
> .e-chipcontent {
|
|
341
|
+
font-size: 14px;
|
|
342
|
+
}
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
.e-chips-close::before {
|
|
346
|
+
@include close-style(16px, 16px, 16px);
|
|
347
|
+
}
|
|
348
|
+
}
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
&.e-show-dd-icon.e-show-text,
|
|
352
|
+
&.e-show-dd-icon.e-show-chip {
|
|
353
|
+
.e-ddt-icon,
|
|
354
|
+
&:not(.e-show-dd-icon) .e-clear-icon {
|
|
355
|
+
@include icon-style(16px, 12px);
|
|
356
|
+
}
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
.e-clear-icon {
|
|
360
|
+
@include icon-style(15px, 44px);
|
|
361
|
+
}
|
|
362
|
+
}
|
|
363
|
+
}
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
&.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
367
|
+
@if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'bootstrap5.3' and $ddt-skin-name != 'Material3' and $ddt-skin-name != 'tailwind3' {
|
|
368
|
+
margin-right: $ddt-dd-icon-bigger-width;
|
|
369
|
+
}
|
|
370
|
+
max-width: $ddt-big-chip-ddi-width;
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
&.e-show-clear .e-chips-wrapper .e-chips:last-child {
|
|
374
|
+
@if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'bootstrap5.3' and $ddt-skin-name != 'Material3' and $ddt-skin-name != 'tailwind3' {
|
|
375
|
+
margin-right: $ddt-close-icon-bigger-width;
|
|
376
|
+
}
|
|
377
|
+
max-width: $ddt-big-chip-ci-width;
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
&.e-show-clear.e-show-dd-icon {
|
|
381
|
+
@include chip-last($ddt-last-chip-bigger-right-margin, $ddt-big-chip-ddi-ci-width);
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
&.e-popup {
|
|
385
|
+
@if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' {
|
|
386
|
+
margin-top: $ddt-popup-margin;
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
.e-selectall-parent {
|
|
390
|
+
text-indent: $ddt-select-all-bigger-text-indent;
|
|
391
|
+
padding: $ddt-big-select-all-padding;
|
|
392
|
+
|
|
393
|
+
.e-all-text {
|
|
394
|
+
font-size: $ddt-big-select-all-font-size;
|
|
395
|
+
line-height: 24px;
|
|
396
|
+
margin: $ddt-big-select-all-text-margin;
|
|
397
|
+
}
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
@if ($ddt-skin-name == 'tailwind3') {
|
|
401
|
+
border-radius: 8px;
|
|
402
|
+
margin-top: 8px;
|
|
403
|
+
|
|
404
|
+
.e-filter-wrap {
|
|
405
|
+
padding: 8px 9px;
|
|
406
|
+
}
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
@if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
|
|
410
|
+
.e-popup-content {
|
|
411
|
+
&.e-no-data {
|
|
412
|
+
@if $ddt-skin-name == 'bootstrap5' {
|
|
413
|
+
padding: 9px 16px;
|
|
414
|
+
}
|
|
415
|
+
@else {
|
|
416
|
+
padding: 10px 16px;
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
.e-ddt-nodata {
|
|
420
|
+
@if $ddt-skin-name == 'FluentUI' {
|
|
421
|
+
font-size: $text-lg;
|
|
422
|
+
}
|
|
423
|
+
@else {
|
|
424
|
+
font-size: $text-base;
|
|
425
|
+
}
|
|
426
|
+
line-height: 24px;
|
|
427
|
+
}
|
|
428
|
+
}
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
.e-filter-wrap {
|
|
432
|
+
padding: 8px;
|
|
433
|
+
}
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
.e-treeview {
|
|
437
|
+
.e-fullrow {
|
|
438
|
+
@if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'tailwind3' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'bootstrap5.3' and $ddt-skin-name != 'Material3' {
|
|
439
|
+
height: $ddt-treeview-fullrow-bigger-height;
|
|
440
|
+
}
|
|
441
|
+
}
|
|
442
|
+
|
|
443
|
+
> .e-ul {
|
|
444
|
+
@if $ddt-skin-name == 'bootstrap5' {
|
|
445
|
+
padding: 8px 16px;
|
|
446
|
+
}
|
|
447
|
+
@if $ddt-skin-name == 'tailwind' {
|
|
448
|
+
padding: 8px 0 8px 16px;
|
|
449
|
+
}
|
|
450
|
+
}
|
|
451
|
+
}
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
&.e-rtl {
|
|
455
|
+
.e-chips {
|
|
456
|
+
@if $ddt-skin-name == 'tailwind' {
|
|
457
|
+
& > .e-chipcontent {
|
|
458
|
+
padding: $ddt-rtl-big-chip-content-padding;
|
|
459
|
+
}
|
|
460
|
+
}
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
@if $ddt-skin-name == 'material' or $ddt-skin-name == 'material-dark' {
|
|
464
|
+
&.e-outline {
|
|
465
|
+
&.e-input-group.e-control-wrapper,
|
|
466
|
+
&.e-float-input.e-control-wrapper {
|
|
467
|
+
&.e-show-dd-icon .e-clear-icon,
|
|
468
|
+
&.e-show-dd-icon.e-show-text .e-clear-icon,
|
|
469
|
+
&.e-show-dd-icon.e-show-chip .e-clear-icon {
|
|
470
|
+
left: 36px;
|
|
471
|
+
}
|
|
472
|
+
}
|
|
473
|
+
}
|
|
474
|
+
|
|
475
|
+
&.e-filled {
|
|
476
|
+
&.e-float-input.e-control-wrapper {
|
|
477
|
+
.e-overflow {
|
|
478
|
+
&.e-show-text {
|
|
479
|
+
padding: 19px 0 0 12px;
|
|
480
|
+
}
|
|
481
|
+
}
|
|
482
|
+
|
|
483
|
+
&.e-show-chip,
|
|
484
|
+
&.e-show-text {
|
|
485
|
+
.e-ddt-icon,
|
|
486
|
+
&:not(.e-show-dd-icon) .e-clear-icon {
|
|
487
|
+
left: 12px;
|
|
488
|
+
right: auto;
|
|
489
|
+
}
|
|
490
|
+
|
|
491
|
+
&.e-show-dd-icon .e-clear-icon {
|
|
492
|
+
left: 44px;
|
|
493
|
+
right: auto;
|
|
494
|
+
}
|
|
495
|
+
}
|
|
496
|
+
}
|
|
497
|
+
|
|
498
|
+
&.e-input-group.e-control-wrapper:not(.e-float-input) {
|
|
499
|
+
&.e-show-dd-icon:not(.e-input-focus),
|
|
500
|
+
&.e-show-dd-icon.e-show-chip {
|
|
501
|
+
.e-ddt-icon,
|
|
502
|
+
&:not(.e-show-dd-icon) .e-clear-icon {
|
|
503
|
+
left: 12px;
|
|
504
|
+
right: auto;
|
|
505
|
+
}
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
.e-clear-icon {
|
|
509
|
+
left: 44px;
|
|
510
|
+
right: auto;
|
|
511
|
+
}
|
|
512
|
+
}
|
|
513
|
+
}
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
&.e-show-dd-icon {
|
|
517
|
+
@if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'tailwind3' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'bootstrap5.3' or $ddt-skin-name == 'FluentUI' {
|
|
518
|
+
@include chip-last-margin(4px, null);
|
|
519
|
+
}
|
|
520
|
+
@else if $ddt-skin-name != 'Material3' {
|
|
521
|
+
@include chip-last-margin(1px, $ddt-dd-icon-bigger-width);
|
|
522
|
+
}
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
&.e-show-clear {
|
|
526
|
+
@if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'tailwind3' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'bootstrap5.3' or $ddt-skin-name == 'FluentUI' {
|
|
527
|
+
@include chip-last-margin(4px, null);
|
|
528
|
+
}
|
|
529
|
+
@else if $ddt-skin-name != 'Material3' {
|
|
530
|
+
@include chip-last-margin(1px, $ddt-close-icon-bigger-width);
|
|
531
|
+
}
|
|
532
|
+
}
|
|
533
|
+
|
|
534
|
+
&.e-show-clear.e-show-dd-icon {
|
|
535
|
+
@if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
|
|
536
|
+
@include chip-last-margin($ddt-last-chip-bigger-right-margin, 4px);
|
|
537
|
+
}
|
|
538
|
+
@else {
|
|
539
|
+
@include chip-last-margin($ddt-last-chip-bigger-right-margin, 1px);
|
|
540
|
+
}
|
|
541
|
+
}
|
|
542
|
+
|
|
543
|
+
&.e-show-chip,
|
|
544
|
+
&.e-show-text {
|
|
545
|
+
&.e-input-group.e-show-dd-icon .e-clear-icon {
|
|
546
|
+
@if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'tailwind3' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'bootstrap5.3' and $ddt-skin-name != 'Material3' {
|
|
547
|
+
left: $ddt-dd-icon-bigger-width;
|
|
548
|
+
}
|
|
549
|
+
right: auto;
|
|
550
|
+
}
|
|
551
|
+
}
|
|
552
|
+
|
|
553
|
+
.e-selectall-parent {
|
|
554
|
+
text-indent: $ddt-rtl-select-all-bigger-text-indent;
|
|
555
|
+
.e-all-text {
|
|
556
|
+
margin: $ddt-rtl-big-select-all-text-margin;
|
|
557
|
+
}
|
|
558
|
+
}
|
|
559
|
+
}
|
|
560
|
+
}
|
|
561
|
+
}
|