@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,942 +1,942 @@
|
|
|
1
|
-
@mixin ddt-rotate($position) {
|
|
2
|
-
transform: rotate($position);
|
|
3
|
-
transition: transform 300ms ease;
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
@mixin position($position, $right){
|
|
7
|
-
position: $position;
|
|
8
|
-
right: $right;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
@mixin close-style($font-size, $height, $width) {
|
|
12
|
-
font-size: $font-size;
|
|
13
|
-
height: $height;
|
|
14
|
-
width: $width;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
@mixin min-style($min-height, $min-width, $font-size, $line-height) {
|
|
18
|
-
min-height: $min-height;
|
|
19
|
-
min-width: $min-width;
|
|
20
|
-
line-height: $line-height;
|
|
21
|
-
&::before {
|
|
22
|
-
font-size: $font-size;
|
|
23
|
-
@if ($ddt-skin-name == 'fluent2') {
|
|
24
|
-
padding: 3px;
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
@mixin icon-style($bottom, $right) {
|
|
30
|
-
bottom: $bottom;
|
|
31
|
-
right: $right;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
@mixin chip-last($margin-right, $max-width) {
|
|
35
|
-
.e-chips-wrapper .e-chips:last-child {
|
|
36
|
-
margin-right: $margin-right;
|
|
37
|
-
max-width: $max-width;
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
@mixin chip-last-margin($margin-right, $margin-left) {
|
|
42
|
-
.e-chips-wrapper .e-chips:last-child {
|
|
43
|
-
margin-right: $margin-right;
|
|
44
|
-
margin-left: $margin-left;
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
@include export-module('dropdowntree-layout') {
|
|
49
|
-
|
|
50
|
-
.e-ddt {
|
|
51
|
-
cursor: pointer;
|
|
52
|
-
outline: none;
|
|
53
|
-
|
|
54
|
-
.e-ddt-icon::before {
|
|
55
|
-
@include ddt-rotate(0deg);
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
&.e-icon-anim {
|
|
59
|
-
@if $ddt-skin-name == 'Material3' {
|
|
60
|
-
.e-ddt-icon {
|
|
61
|
-
background: $ddt-dd-icon-bg;
|
|
62
|
-
border-radius: $ddt-dd-icon-radius;
|
|
63
|
-
}
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
.e-ddt-icon::before {
|
|
67
|
-
@include ddt-rotate(180deg);
|
|
68
|
-
}
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
.e-ddt-hidden {
|
|
72
|
-
border: 0;
|
|
73
|
-
height: 0;
|
|
74
|
-
visibility: hidden;
|
|
75
|
-
width: 0;
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
&.e-input-group.e-control-wrapper,
|
|
79
|
-
&.e-float-input.e-control-wrapper {
|
|
80
|
-
.e-clear-icon {
|
|
81
|
-
box-sizing: content-box;
|
|
82
|
-
@if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'bootstrap5.3' and $ddt-skin-name != 'FluentUI' and $ddt-skin-name != 'Material3' and $ddt-skin-name != 'tailwind3' {
|
|
83
|
-
min-height: $ddt-close-icon-min-height;
|
|
84
|
-
}
|
|
85
|
-
@if $ddt-skin-name == 'Material3' {
|
|
86
|
-
margin: $ddt-dd-icon-margin;
|
|
87
|
-
}
|
|
88
|
-
@if $ddt-skin-name == 'FluentUI' {
|
|
89
|
-
min-height: $ddt-dd-icon-width;
|
|
90
|
-
}
|
|
91
|
-
@if $ddt-skin-name == 'fluent2' {
|
|
92
|
-
min-width: $ddt-close-icon-min-height;
|
|
93
|
-
margin: 5px 3px 5px 6px;
|
|
94
|
-
align-items: center;
|
|
95
|
-
&::before {
|
|
96
|
-
font-size: 14px;
|
|
97
|
-
padding: 3px;
|
|
98
|
-
}
|
|
99
|
-
}
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
.e-input-group-icon.e-ddt-icon {
|
|
103
|
-
border: 0;
|
|
104
|
-
|
|
105
|
-
@if $ddt-skin-name == 'bootstrap4' {
|
|
106
|
-
font-size: 8px;
|
|
107
|
-
}
|
|
108
|
-
@else if $ddt-skin-name == 'bootstrap5' {
|
|
109
|
-
font-size: 20px;
|
|
110
|
-
}
|
|
111
|
-
@else if $ddt-skin-name == 'fluent2' {
|
|
112
|
-
font-size: 14px;
|
|
113
|
-
margin: 5px 9px 5px 3px;
|
|
114
|
-
padding: 0;
|
|
115
|
-
min-height: 20px;
|
|
116
|
-
min-width: 20px;
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
@if $ddt-skin-name == 'Material3' {
|
|
120
|
-
font-size: $ddt-chip-icon-line-height;
|
|
121
|
-
margin: $ddt-dd-icon-margin;
|
|
122
|
-
line-height: $ddt-chip-icon-line-height;
|
|
123
|
-
}
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
.e-icon-hide {
|
|
127
|
-
display: none;
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
&.e-show-chip,
|
|
131
|
-
&.e-show-text {
|
|
132
|
-
.e-clear-icon {
|
|
133
|
-
@if $ddt-skin-name == 'tailwind3' {
|
|
134
|
-
bottom: 0;
|
|
135
|
-
}
|
|
136
|
-
@else {
|
|
137
|
-
bottom: $ddt-close-icon-bottom;
|
|
138
|
-
}
|
|
139
|
-
@include position(absolute, 0);
|
|
140
|
-
@if $ddt-skin-name == 'Material3' {
|
|
141
|
-
margin: 0;
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
&.e-show-dd-icon .e-clear-icon {
|
|
146
|
-
@if $ddt-skin-name == 'tailwind' {
|
|
147
|
-
right: 28px;
|
|
148
|
-
}
|
|
149
|
-
@else {
|
|
150
|
-
right: $ddt-dd-icon-width;
|
|
151
|
-
}
|
|
152
|
-
@if $ddt-skin-name == 'FluentUI' or $ddt-skin-name == 'fluent2' {
|
|
153
|
-
bottom: 0;
|
|
154
|
-
}
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
.e-ddt-icon {
|
|
158
|
-
@if $ddt-skin-name != 'FluentUI' {
|
|
159
|
-
bottom: $ddt-dd-icon-bottom;
|
|
160
|
-
}
|
|
161
|
-
@include position(absolute, 0);
|
|
162
|
-
}
|
|
163
|
-
|
|
164
|
-
&.e-input-focus input.e-dropdowntree.e-chip-input,
|
|
165
|
-
input.e-dropdowntree.e-chip-input {
|
|
166
|
-
padding-left: 0;
|
|
167
|
-
padding-right: 0;
|
|
168
|
-
}
|
|
169
|
-
}
|
|
170
|
-
|
|
171
|
-
&.e-valid-input:hover:not(.e-disabled) .e-clear-icon {
|
|
172
|
-
display: flex;
|
|
173
|
-
}
|
|
174
|
-
}
|
|
175
|
-
|
|
176
|
-
.e-chips-wrapper {
|
|
177
|
-
width: 100%;
|
|
178
|
-
@if ($ddt-skin-name =='tailwind3') {
|
|
179
|
-
margin: 2px 0 2px 6px;
|
|
180
|
-
}
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
&.e-show-chip {
|
|
184
|
-
|
|
185
|
-
.e-chips-close {
|
|
186
|
-
@if $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'Material3' and $ddt-skin-name != 'bootstrap5.3' {
|
|
187
|
-
@include min-style($ddt-chip-close-height, $ddt-chip-close-width, $ddt-chip-close-font, $ddt-chip-icon-line-height);
|
|
188
|
-
}
|
|
189
|
-
@else {
|
|
190
|
-
@include min-style($ddt-chip-close-height, $ddt-chip-close-width, $ddt-chip-close-font, null);
|
|
191
|
-
}
|
|
192
|
-
text-align: center;
|
|
193
|
-
|
|
194
|
-
&::before {
|
|
195
|
-
@if $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'material' and $ddt-skin-name != 'material-dark' and $ddt-skin-name != 'Material3' and $ddt-skin-name != 'bootstrap5.3' and $ddt-skin-name != 'bootstrap5.3-dark' {
|
|
196
|
-
vertical-align: middle;
|
|
197
|
-
}
|
|
198
|
-
}
|
|
199
|
-
}
|
|
200
|
-
|
|
201
|
-
.e-chips {
|
|
202
|
-
align-items: center;
|
|
203
|
-
@if $theme-name =='fluent2-highcontrast' {
|
|
204
|
-
border-radius: 4px;
|
|
205
|
-
}
|
|
206
|
-
@else {
|
|
207
|
-
border-radius: $ddt-chip-radius;
|
|
208
|
-
}
|
|
209
|
-
box-sizing: border-box;
|
|
210
|
-
display: inline-flex;
|
|
211
|
-
float: left;
|
|
212
|
-
height: $ddt-chip-height;
|
|
213
|
-
margin: $ddt-chip-margin;
|
|
214
|
-
max-width: $ddt-chip-width;
|
|
215
|
-
overflow: hidden;
|
|
216
|
-
padding: $ddt-chip-padding;
|
|
217
|
-
text-overflow: ellipsis;
|
|
218
|
-
white-space: nowrap;
|
|
219
|
-
|
|
220
|
-
@if ($ddt-skin-name == 'tailwind3') {
|
|
221
|
-
border: 1px solid $border-light;
|
|
222
|
-
}
|
|
223
|
-
|
|
224
|
-
& > .e-chipcontent {
|
|
225
|
-
max-width: 100%;
|
|
226
|
-
overflow: hidden;
|
|
227
|
-
padding: $ddt-chip-content-padding;
|
|
228
|
-
text-indent: 0;
|
|
229
|
-
text-overflow: ellipsis;
|
|
230
|
-
white-space: nowrap;
|
|
231
|
-
|
|
232
|
-
@if $ddt-skin-name == 'fabric' or $ddt-skin-name == 'fabric-dark' or $ddt-skin-name == 'highcontrast' or $ddt-skin-name == 'highcontrast-light' {
|
|
233
|
-
line-height: $ddt-chip-text-line-height;
|
|
234
|
-
}
|
|
235
|
-
@if ($ddt-skin-name == 'tailwind3') {
|
|
236
|
-
font-size: 12px;
|
|
237
|
-
line-height: 16px;
|
|
238
|
-
font-weight: 500;
|
|
239
|
-
}
|
|
240
|
-
}
|
|
241
|
-
}
|
|
242
|
-
|
|
243
|
-
.e-ddt-icon {
|
|
244
|
-
@if $ddt-skin-name == 'FluentUI' {
|
|
245
|
-
bottom: 0;
|
|
246
|
-
}
|
|
247
|
-
}
|
|
248
|
-
}
|
|
249
|
-
|
|
250
|
-
@if $ddt-skin-name == 'material' or $ddt-skin-name == 'material-dark' {
|
|
251
|
-
&.e-outline {
|
|
252
|
-
.e-overflow {
|
|
253
|
-
&.e-show-text {
|
|
254
|
-
padding: 10px 12px 9px;
|
|
255
|
-
}
|
|
256
|
-
|
|
257
|
-
&.e-total-count {
|
|
258
|
-
padding: $ddt-outline-padding;
|
|
259
|
-
}
|
|
260
|
-
}
|
|
261
|
-
|
|
262
|
-
&.e-input-group.e-control-wrapper,
|
|
263
|
-
&.e-float-input.e-control-wrapper {
|
|
264
|
-
&.e-show-dd-icon .e-clear-icon {
|
|
265
|
-
right: 30px;
|
|
266
|
-
}
|
|
267
|
-
|
|
268
|
-
&:not(.e-show-chip) {
|
|
269
|
-
&.e-show-dd-icon.e-input-focus .e-clear-icon {
|
|
270
|
-
min-height: 20px;
|
|
271
|
-
}
|
|
272
|
-
}
|
|
273
|
-
}
|
|
274
|
-
|
|
275
|
-
&.e-show-chip {
|
|
276
|
-
.e-overflow,
|
|
277
|
-
.e-chips-wrapper {
|
|
278
|
-
padding: $ddt-outline-chip-padding;
|
|
279
|
-
}
|
|
280
|
-
}
|
|
281
|
-
}
|
|
282
|
-
|
|
283
|
-
&.e-filled {
|
|
284
|
-
&.e-float-input.e-control-wrapper {
|
|
285
|
-
.e-overflow {
|
|
286
|
-
&.e-show-text {
|
|
287
|
-
line-height: 21px;
|
|
288
|
-
padding: 14px 2px 5px 0;
|
|
289
|
-
}
|
|
290
|
-
|
|
291
|
-
.e-remain {
|
|
292
|
-
&.e-wrap-count {
|
|
293
|
-
padding-top: 10px;
|
|
294
|
-
}
|
|
295
|
-
}
|
|
296
|
-
}
|
|
297
|
-
|
|
298
|
-
&:not(.e-show-chip) {
|
|
299
|
-
.e-ddt-icon,
|
|
300
|
-
&.e-show-dd-icon .e-clear-icon {
|
|
301
|
-
padding-top: 8px;
|
|
302
|
-
}
|
|
303
|
-
}
|
|
304
|
-
|
|
305
|
-
&.e-show-chip,
|
|
306
|
-
&.e-show-text {
|
|
307
|
-
.e-ddt-icon {
|
|
308
|
-
@include icon-style(6px, 10px);
|
|
309
|
-
}
|
|
310
|
-
|
|
311
|
-
.e-clear-icon {
|
|
312
|
-
@include icon-style(5px, 38px);
|
|
313
|
-
}
|
|
314
|
-
|
|
315
|
-
&:not(.e-show-dd-icon) .e-clear-icon {
|
|
316
|
-
@include icon-style(9px, 10px);
|
|
317
|
-
}
|
|
318
|
-
}
|
|
319
|
-
|
|
320
|
-
&.e-show-chip {
|
|
321
|
-
.e-chips-wrapper,
|
|
322
|
-
.e-overflow {
|
|
323
|
-
padding-top: 8px;
|
|
324
|
-
|
|
325
|
-
.e-chips {
|
|
326
|
-
height: 18px;
|
|
327
|
-
|
|
328
|
-
> .e-chipcontent {
|
|
329
|
-
font-size: 12px;
|
|
330
|
-
padding: 0 4px 0 0;
|
|
331
|
-
}
|
|
332
|
-
}
|
|
333
|
-
|
|
334
|
-
.e-chips-close::before {
|
|
335
|
-
@include close-style(12px, 12px, 12px);
|
|
336
|
-
}
|
|
337
|
-
}
|
|
338
|
-
}
|
|
339
|
-
}
|
|
340
|
-
|
|
341
|
-
.e-chips-wrapper,
|
|
342
|
-
.e-overflow {
|
|
343
|
-
.e-chips {
|
|
344
|
-
margin-top: 8px;
|
|
345
|
-
padding: 0 8px;
|
|
346
|
-
}
|
|
347
|
-
}
|
|
348
|
-
|
|
349
|
-
&.e-input-group.e-control-wrapper:not(.e-float-input) {
|
|
350
|
-
.e-overflow {
|
|
351
|
-
&.e-show-text {
|
|
352
|
-
line-height: 39px;
|
|
353
|
-
padding: 0;
|
|
354
|
-
}
|
|
355
|
-
|
|
356
|
-
.e-remain {
|
|
357
|
-
&.e-wrap-count {
|
|
358
|
-
line-height: 39px;
|
|
359
|
-
padding-top: 0;
|
|
360
|
-
}
|
|
361
|
-
}
|
|
362
|
-
}
|
|
363
|
-
|
|
364
|
-
&.e-show-chip {
|
|
365
|
-
.e-chips-wrapper,
|
|
366
|
-
.e-overflow {
|
|
367
|
-
.e-chips {
|
|
368
|
-
height: 28px;
|
|
369
|
-
margin-top: 8px;
|
|
370
|
-
padding: 0 8px;
|
|
371
|
-
|
|
372
|
-
> .e-chipcontent {
|
|
373
|
-
font-size: 13px;
|
|
374
|
-
padding: 0 8px 0 0;
|
|
375
|
-
}
|
|
376
|
-
}
|
|
377
|
-
|
|
378
|
-
.e-chips-close::before {
|
|
379
|
-
@include close-style(14px, 12px, 12px);
|
|
380
|
-
}
|
|
381
|
-
}
|
|
382
|
-
}
|
|
383
|
-
|
|
384
|
-
&.e-show-dd-icon.e-show-text,
|
|
385
|
-
&.e-show-dd-icon.e-show-chip {
|
|
386
|
-
.e-ddt-icon {
|
|
387
|
-
@include icon-style(10px, 10px);
|
|
388
|
-
}
|
|
389
|
-
}
|
|
390
|
-
|
|
391
|
-
.e-clear-icon {
|
|
392
|
-
@include icon-style(9px, 38px);
|
|
393
|
-
}
|
|
394
|
-
|
|
395
|
-
&:not(.e-show-dd-icon) .e-clear-icon {
|
|
396
|
-
@include icon-style(9px, 10px);
|
|
397
|
-
}
|
|
398
|
-
}
|
|
399
|
-
}
|
|
400
|
-
}
|
|
401
|
-
|
|
402
|
-
.e-overflow {
|
|
403
|
-
white-space: nowrap;
|
|
404
|
-
|
|
405
|
-
&.e-show-text {
|
|
406
|
-
padding: $ddt-delim-padding;
|
|
407
|
-
@if $ddt-skin-name == 'tailwind' {
|
|
408
|
-
line-height: 22px;
|
|
409
|
-
|
|
410
|
-
.e-remain {
|
|
411
|
-
padding-left: 8px;
|
|
412
|
-
}
|
|
413
|
-
}
|
|
414
|
-
@if $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
|
|
415
|
-
line-height: 30px;
|
|
416
|
-
}
|
|
417
|
-
|
|
418
|
-
&.e-input-value:not(.e-icon-hide) {
|
|
419
|
-
display: inline-grid;
|
|
420
|
-
}
|
|
421
|
-
}
|
|
422
|
-
|
|
423
|
-
&.e-total-count {
|
|
424
|
-
box-sizing: border-box;
|
|
425
|
-
display: inline-block;
|
|
426
|
-
overflow: hidden;
|
|
427
|
-
text-overflow: ellipsis;
|
|
428
|
-
|
|
429
|
-
.e-remain {
|
|
430
|
-
@if $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
|
|
431
|
-
line-height: 30px;
|
|
432
|
-
}
|
|
433
|
-
@else {
|
|
434
|
-
padding: $ddt-rtl-remains-padding;
|
|
435
|
-
}
|
|
436
|
-
}
|
|
437
|
-
}
|
|
438
|
-
|
|
439
|
-
&.e-wrap-count {
|
|
440
|
-
@if $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'bootstrap5.3' and $ddt-skin-name != 'bootstrap5.3-dark' and $ddt-skin-name != 'tailwind3' {
|
|
441
|
-
padding-top: $ddt-remains-count-padding-top;
|
|
442
|
-
}
|
|
443
|
-
}
|
|
444
|
-
|
|
445
|
-
.e-remain {
|
|
446
|
-
cursor: pointer;
|
|
447
|
-
display: inline-block;
|
|
448
|
-
font-size: $ddt-chip-font-size;
|
|
449
|
-
padding: $ddt-remains-padding;
|
|
450
|
-
@if $ddt-skin-name == 'fluent2' {
|
|
451
|
-
line-height: $ddt-remains-line-height;
|
|
452
|
-
}
|
|
453
|
-
|
|
454
|
-
&.e-wrap-count {
|
|
455
|
-
@if $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'bootstrap5.3' or $ddt-skin-name == 'tailwind3' {
|
|
456
|
-
padding: $ddt-overflow-count-padding;
|
|
457
|
-
}
|
|
458
|
-
@else if $ddt-skin-name == 'FluentUI' {
|
|
459
|
-
line-height: 30px;
|
|
460
|
-
}
|
|
461
|
-
@else {
|
|
462
|
-
padding-top: $ddt-overflow-count-padding-top;
|
|
463
|
-
}
|
|
464
|
-
}
|
|
465
|
-
}
|
|
466
|
-
}
|
|
467
|
-
|
|
468
|
-
&.e-show-chip {
|
|
469
|
-
.e-overflow {
|
|
470
|
-
&.e-total-count {
|
|
471
|
-
.e-remain {
|
|
472
|
-
padding: $ddt-delim-padding;
|
|
473
|
-
}
|
|
474
|
-
}
|
|
475
|
-
@if $ddt-skin-name == 'FluentUI' {
|
|
476
|
-
.e-remain.e-wrap-count {
|
|
477
|
-
padding-left: 4px;
|
|
478
|
-
}
|
|
479
|
-
}
|
|
480
|
-
}
|
|
481
|
-
}
|
|
482
|
-
|
|
483
|
-
&.e-show-dd-icon {
|
|
484
|
-
@include chip-last($ddt-dd-icon-width, $ddt-chip-ddi-width);
|
|
485
|
-
}
|
|
486
|
-
|
|
487
|
-
&.e-show-clear {
|
|
488
|
-
@include chip-last($ddt-close-icon-width, $ddt-chip-ci-width);
|
|
489
|
-
}
|
|
490
|
-
|
|
491
|
-
&.e-show-clear.e-show-dd-icon {
|
|
492
|
-
@include chip-last($ddt-last-chip-right-margin, $ddt-chip-ddi-ci-width);
|
|
493
|
-
}
|
|
494
|
-
|
|
495
|
-
input[readonly],
|
|
496
|
-
.e-dropdowntree,
|
|
497
|
-
input[readonly].e-input {
|
|
498
|
-
pointer-events: none;
|
|
499
|
-
|
|
500
|
-
&.e-chip-input {
|
|
501
|
-
width: 0;
|
|
502
|
-
visibility: hidden;
|
|
503
|
-
}
|
|
504
|
-
}
|
|
505
|
-
|
|
506
|
-
&.e-popup {
|
|
507
|
-
@if $skin-name != 'material' and $skin-name != 'FluentUI' and $skin-name != 'Material3' {
|
|
508
|
-
border: 1px solid $ddt-popup-border-color;
|
|
509
|
-
}
|
|
510
|
-
@if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'tailwind3' {
|
|
511
|
-
margin-top: 4px;
|
|
512
|
-
}
|
|
513
|
-
@else if $skin-name == 'Material3' {
|
|
514
|
-
margin-top: 2px;
|
|
515
|
-
}
|
|
516
|
-
@else if $skin-name == 'fluent2' {
|
|
517
|
-
margin-top: 1px;
|
|
518
|
-
}
|
|
519
|
-
@if $skin-name == 'bootstrap4' or $skin-name == 'Material3' or $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $skin-name == 'FluentUI' or $skin-name == 'fluent2' or $ddt-skin-name == 'tailwind3' {
|
|
520
|
-
border-radius: $ddt-popup-radius;
|
|
521
|
-
}
|
|
522
|
-
box-shadow: $ddt-box-shadow;
|
|
523
|
-
position: absolute;
|
|
524
|
-
|
|
525
|
-
.e-active .e-checkbox-wrapper {
|
|
526
|
-
.e-frame:not(.e-check):not(.e-stop) {
|
|
527
|
-
@if $ddt-skin-name == 'bootstrap5' {
|
|
528
|
-
background-color: $ddt-readonly-input-bg-color;
|
|
529
|
-
}
|
|
530
|
-
}
|
|
531
|
-
}
|
|
532
|
-
|
|
533
|
-
.e-checkbox-wrapper {
|
|
534
|
-
.e-frame:not(.e-check):not(.e-stop) {
|
|
535
|
-
@if $ddt-skin-name == 'bootstrap5' {
|
|
536
|
-
background-color: transparent;
|
|
537
|
-
}
|
|
538
|
-
}
|
|
539
|
-
}
|
|
540
|
-
|
|
541
|
-
.e-selectall-parent {
|
|
542
|
-
border-bottom: 1px solid;
|
|
543
|
-
cursor: pointer;
|
|
544
|
-
display: block;
|
|
545
|
-
@if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'FluentUI' {
|
|
546
|
-
line-height: $ddt-select-all-height;
|
|
547
|
-
}
|
|
548
|
-
overflow: hidden;
|
|
549
|
-
position: relative;
|
|
550
|
-
text-indent: $ddt-select-all-text-indent;
|
|
551
|
-
white-space: nowrap;
|
|
552
|
-
width: 100%;
|
|
553
|
-
@if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' or $ddt-skin-name == 'fluent2' or $ddt-skin-name == 'Material3' {
|
|
554
|
-
padding: $ddt-select-all-padding;
|
|
555
|
-
}
|
|
556
|
-
|
|
557
|
-
&.e-hide-selectall {
|
|
558
|
-
display: none;
|
|
559
|
-
}
|
|
560
|
-
|
|
561
|
-
.e-checkbox-wrapper {
|
|
562
|
-
position: relative;
|
|
563
|
-
text-indent: 0;
|
|
564
|
-
bottom: $ddt-select-all-checkbox-bottom;
|
|
565
|
-
|
|
566
|
-
.e-frame {
|
|
567
|
-
@if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
|
|
568
|
-
margin-top: -3px;
|
|
569
|
-
}
|
|
570
|
-
}
|
|
571
|
-
}
|
|
572
|
-
|
|
573
|
-
.e-all-text {
|
|
574
|
-
font-family: inherit;
|
|
575
|
-
font-size: $ddt-select-all-font-size;
|
|
576
|
-
margin: $ddt-select-all-checkbox-margin;
|
|
577
|
-
@if $ddt-skin-name == 'tailwind' {
|
|
578
|
-
line-height: $ddt-select-all-height;
|
|
579
|
-
}
|
|
580
|
-
}
|
|
581
|
-
}
|
|
582
|
-
|
|
583
|
-
.e-filter-wrap {
|
|
584
|
-
border-top-width: $ddt-filter-top-border;
|
|
585
|
-
display: block;
|
|
586
|
-
padding: $ddt-filter-padding;
|
|
587
|
-
@if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'FluentUI' {
|
|
588
|
-
border-bottom: $ddt-filter-border;
|
|
589
|
-
}
|
|
590
|
-
@else {
|
|
591
|
-
border: $ddt-filter-border;
|
|
592
|
-
}
|
|
593
|
-
|
|
594
|
-
@if $ddt-skin-name == 'fabric' or $ddt-skin-name == 'fabric-dark' or $ddt-skin-name == 'highcontrast' or $ddt-skin-name == 'highcontrast-light' {
|
|
595
|
-
border-left-width: 0;
|
|
596
|
-
border-right-width: 0;
|
|
597
|
-
}
|
|
598
|
-
@if $ddt-skin-name == 'bootstrap-dark' or $ddt-skin-name == 'bootstrap' {
|
|
599
|
-
border-bottom: $ddt-filter-border-bottom-color;
|
|
600
|
-
}
|
|
601
|
-
@if $ddt-skin-name == 'bootstrap4' {
|
|
602
|
-
background: $ddt-filter-bg;
|
|
603
|
-
}
|
|
604
|
-
|
|
605
|
-
.e-input,
|
|
606
|
-
.e-input:focus {
|
|
607
|
-
@if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'bootstrap5.3' and $ddt-skin-name != 'tailwind3' {
|
|
608
|
-
padding: $ddt-list-filter-text-indent;
|
|
609
|
-
}
|
|
610
|
-
}
|
|
611
|
-
|
|
612
|
-
.e-input-group {
|
|
613
|
-
margin-bottom: 0;
|
|
614
|
-
|
|
615
|
-
@if $ddt-skin-name == 'tailwind' {
|
|
616
|
-
border: 1px solid $border;
|
|
617
|
-
border-radius: 4px;
|
|
618
|
-
}
|
|
619
|
-
|
|
620
|
-
@if $ddt-skin-name == 'bootstrap4' {
|
|
621
|
-
background: $ddt-filter-bg;
|
|
622
|
-
}
|
|
623
|
-
|
|
624
|
-
.e-clear-icon {
|
|
625
|
-
@if $ddt-skin-name == 'material' or $ddt-skin-name == 'material-dark' {
|
|
626
|
-
margin: 6px 6px 5px;
|
|
627
|
-
min-height: 12px;
|
|
628
|
-
min-width: 12px;
|
|
629
|
-
padding: 6px;
|
|
630
|
-
}
|
|
631
|
-
}
|
|
632
|
-
|
|
633
|
-
&:not(.e-disabled):not(.e-float-icon-left)::before,
|
|
634
|
-
&:not(.e-disabled):not(.e-float-icon-left)::after,
|
|
635
|
-
&.e-control-wrapper:not(.e-disabled):not(.e-float-icon-left)::before,
|
|
636
|
-
&.e-control-wrapper:not(.e-disabled):not(.e-float-icon-left)::after {
|
|
637
|
-
@if $ddt-skin-name == 'material' {
|
|
638
|
-
bottom: -1px;
|
|
639
|
-
height: 1px;
|
|
640
|
-
}
|
|
641
|
-
}
|
|
642
|
-
}
|
|
643
|
-
}
|
|
644
|
-
|
|
645
|
-
.e-popup-content {
|
|
646
|
-
overflow: auto;
|
|
647
|
-
position: relative;
|
|
648
|
-
|
|
649
|
-
.e-ddt-nodata {
|
|
650
|
-
display: none;
|
|
651
|
-
}
|
|
652
|
-
|
|
653
|
-
&.e-no-data {
|
|
654
|
-
cursor: default;
|
|
655
|
-
font-family: inherit;
|
|
656
|
-
font-size: 14px;
|
|
657
|
-
text-align: center;
|
|
658
|
-
@if $ddt-skin-name == 'tailwind' {
|
|
659
|
-
padding: 8px 16px;
|
|
660
|
-
}
|
|
661
|
-
@else if $ddt-skin-name == 'bootstrap5' {
|
|
662
|
-
padding: 7px 16px;
|
|
663
|
-
}
|
|
664
|
-
@else {
|
|
665
|
-
padding: 14px 16px;
|
|
666
|
-
}
|
|
667
|
-
|
|
668
|
-
.e-treeview {
|
|
669
|
-
display: none;
|
|
670
|
-
}
|
|
671
|
-
|
|
672
|
-
.e-ddt-nodata {
|
|
673
|
-
display: block;
|
|
674
|
-
@if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5'or $ddt-skin-name == 'FluentUI' {
|
|
675
|
-
line-height: 22px;
|
|
676
|
-
}
|
|
677
|
-
}
|
|
678
|
-
}
|
|
679
|
-
}
|
|
680
|
-
|
|
681
|
-
.e-treeview {
|
|
682
|
-
display: inline-table;
|
|
683
|
-
width: 100%;
|
|
684
|
-
@if $ddt-skin-name == 'tailwind3' {
|
|
685
|
-
border: none;
|
|
686
|
-
}
|
|
687
|
-
|
|
688
|
-
.e-list-item {
|
|
689
|
-
@if $ddt-skin-name != 'fluent2' {
|
|
690
|
-
padding: 0;
|
|
691
|
-
|
|
692
|
-
.e-ul {
|
|
693
|
-
margin: 0;
|
|
694
|
-
padding: 0 0 0 14px;
|
|
695
|
-
}
|
|
696
|
-
}
|
|
697
|
-
}
|
|
698
|
-
|
|
699
|
-
.e-fullrow {
|
|
700
|
-
@if $ddt-skin-name == 'highcontrast' or $ddt-skin-name == 'highcontrast-light' {
|
|
701
|
-
border-width: 2px;
|
|
702
|
-
}
|
|
703
|
-
@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 != 'fluent2' and $ddt-skin-name != 'tailwind3' {
|
|
704
|
-
height: $ddt-treeview-fullrow-height;
|
|
705
|
-
}
|
|
706
|
-
}
|
|
707
|
-
|
|
708
|
-
& > .e-ul {
|
|
709
|
-
overflow: hidden;
|
|
710
|
-
@if $ddt-skin-name != 'FluentUI' and $ddt-skin-name != 'Material3' and $ddt-skin-name != 'fluent2' {
|
|
711
|
-
padding: $ddt-treeview-padding;
|
|
712
|
-
}
|
|
713
|
-
}
|
|
714
|
-
|
|
715
|
-
&.e-fullrow-wrap .e-text-content {
|
|
716
|
-
@if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'bootstrap5.3' and $ddt-skin-name != 'FluentUI' and $ddt-skin-name != 'Material3' and $ddt-skin-name != 'fluent2' and $ddt-skin-name != 'tailwind3' {
|
|
717
|
-
padding-bottom: $ddt-treeview-content-padding-top;
|
|
718
|
-
padding-top: $ddt-treeview-content-padding-bottom;
|
|
719
|
-
}
|
|
720
|
-
}
|
|
721
|
-
}
|
|
722
|
-
|
|
723
|
-
.e-ddt-footer,
|
|
724
|
-
.e-ddt-header {
|
|
725
|
-
cursor: default;
|
|
726
|
-
}
|
|
727
|
-
}
|
|
728
|
-
|
|
729
|
-
&.e-rtl {
|
|
730
|
-
&.e-show-chip {
|
|
731
|
-
.e-chips {
|
|
732
|
-
float: right;
|
|
733
|
-
@if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' {
|
|
734
|
-
& > .e-chipcontent {
|
|
735
|
-
padding: $ddt-rtl-chip-content-padding;
|
|
736
|
-
}
|
|
737
|
-
}
|
|
738
|
-
}
|
|
739
|
-
}
|
|
740
|
-
|
|
741
|
-
&.e-show-chip,
|
|
742
|
-
&.e-show-text {
|
|
743
|
-
.e-overflow {
|
|
744
|
-
.e-remain {
|
|
745
|
-
padding: $ddt-rtl-remains-padding;
|
|
746
|
-
|
|
747
|
-
&.e-wrap-count {
|
|
748
|
-
@if $ddt-skin-name == 'bootstrap5' {
|
|
749
|
-
padding-top: 5px;
|
|
750
|
-
}
|
|
751
|
-
@else {
|
|
752
|
-
padding-top: $ddt-remains-count-padding-top;
|
|
753
|
-
}
|
|
754
|
-
}
|
|
755
|
-
}
|
|
756
|
-
|
|
757
|
-
&.e-wrap-count {
|
|
758
|
-
@include position(absolute, auto);
|
|
759
|
-
}
|
|
760
|
-
}
|
|
761
|
-
}
|
|
762
|
-
|
|
763
|
-
&.e-show-text {
|
|
764
|
-
.e-overflow {
|
|
765
|
-
&.e-total-count {
|
|
766
|
-
.e-remain {
|
|
767
|
-
padding: $ddt-remains-padding;
|
|
768
|
-
}
|
|
769
|
-
}
|
|
770
|
-
}
|
|
771
|
-
}
|
|
772
|
-
|
|
773
|
-
&.e-show-text {
|
|
774
|
-
.e-overflow {
|
|
775
|
-
&.e-wrap-count {
|
|
776
|
-
.e-remain {
|
|
777
|
-
@if $ddt-skin-name == 'tailwind' {
|
|
778
|
-
padding-right: 8px;
|
|
779
|
-
}
|
|
780
|
-
}
|
|
781
|
-
}
|
|
782
|
-
}
|
|
783
|
-
}
|
|
784
|
-
|
|
785
|
-
&.e-show-chip {
|
|
786
|
-
.e-overflow {
|
|
787
|
-
&.e-total-count {
|
|
788
|
-
.e-remain {
|
|
789
|
-
padding: $ddt-delim-padding;
|
|
790
|
-
}
|
|
791
|
-
}
|
|
792
|
-
}
|
|
793
|
-
}
|
|
794
|
-
|
|
795
|
-
@if $ddt-skin-name == 'material' or $ddt-skin-name == 'material-dark' {
|
|
796
|
-
&.e-outline {
|
|
797
|
-
&.e-input-group.e-control-wrapper,
|
|
798
|
-
&.e-float-input.e-control-wrapper {
|
|
799
|
-
&.e-show-dd-icon .e-clear-icon,
|
|
800
|
-
&.e-show-dd-icon.e-show-text .e-clear-icon,
|
|
801
|
-
&.e-show-dd-icon.e-show-chip .e-clear-icon {
|
|
802
|
-
left: 30px;
|
|
803
|
-
}
|
|
804
|
-
}
|
|
805
|
-
}
|
|
806
|
-
|
|
807
|
-
&.e-filled {
|
|
808
|
-
&.e-float-input.e-control-wrapper {
|
|
809
|
-
.e-overflow {
|
|
810
|
-
&.e-show-text {
|
|
811
|
-
padding: 14px 0 5px 2px;
|
|
812
|
-
}
|
|
813
|
-
}
|
|
814
|
-
}
|
|
815
|
-
|
|
816
|
-
&.e-float-input.e-control-wrapper.e-show-chip,
|
|
817
|
-
&.e-float-input.e-control-wrapper.e-show-text {
|
|
818
|
-
.e-ddt-icon {
|
|
819
|
-
left: 10px;
|
|
820
|
-
right: auto;
|
|
821
|
-
}
|
|
822
|
-
|
|
823
|
-
&.e-show-dd-icon .e-clear-icon {
|
|
824
|
-
left: 38px;
|
|
825
|
-
right: auto;
|
|
826
|
-
}
|
|
827
|
-
|
|
828
|
-
&:not(.e-show-dd-icon) .e-clear-icon {
|
|
829
|
-
left: 10px;
|
|
830
|
-
right: auto;
|
|
831
|
-
}
|
|
832
|
-
}
|
|
833
|
-
|
|
834
|
-
&.e-float-input.e-control-wrapper.e-show-chip {
|
|
835
|
-
.e-chips-wrapper,
|
|
836
|
-
.e-overflow {
|
|
837
|
-
.e-chips > .e-chipcontent {
|
|
838
|
-
padding: 0 0 0 4px;
|
|
839
|
-
}
|
|
840
|
-
}
|
|
841
|
-
}
|
|
842
|
-
|
|
843
|
-
&.e-input-group.e-control-wrapper:not(.e-float-input) {
|
|
844
|
-
&.e-show-chip {
|
|
845
|
-
.e-chips-wrapper,
|
|
846
|
-
.e-overflow {
|
|
847
|
-
.e-chips > .e-chipcontent {
|
|
848
|
-
padding: 0 0 0 8px;
|
|
849
|
-
}
|
|
850
|
-
}
|
|
851
|
-
}
|
|
852
|
-
|
|
853
|
-
&.e-show-dd-icon.e-show-text,
|
|
854
|
-
&.e-show-dd-icon.e-show-chip {
|
|
855
|
-
.e-ddt-icon {
|
|
856
|
-
left: 10px;
|
|
857
|
-
right: auto;
|
|
858
|
-
}
|
|
859
|
-
}
|
|
860
|
-
|
|
861
|
-
&.e-show-dd-icon .e-clear-icon {
|
|
862
|
-
left: 38px;
|
|
863
|
-
right: auto;
|
|
864
|
-
}
|
|
865
|
-
|
|
866
|
-
&:not(.e-show-dd-icon) .e-clear-icon {
|
|
867
|
-
left: 10px;
|
|
868
|
-
right: auto;
|
|
869
|
-
}
|
|
870
|
-
}
|
|
871
|
-
}
|
|
872
|
-
}
|
|
873
|
-
|
|
874
|
-
&.e-show-dd-icon {
|
|
875
|
-
@if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
|
|
876
|
-
@include chip-last-margin(4px, 18px);
|
|
877
|
-
}
|
|
878
|
-
@else {
|
|
879
|
-
@include chip-last-margin(1px, $ddt-dd-icon-width);
|
|
880
|
-
}
|
|
881
|
-
}
|
|
882
|
-
|
|
883
|
-
&.e-show-clear {
|
|
884
|
-
@if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
|
|
885
|
-
@include chip-last-margin(4px, 18px);
|
|
886
|
-
}
|
|
887
|
-
@else {
|
|
888
|
-
@include chip-last-margin(1px, $ddt-close-icon-width);
|
|
889
|
-
}
|
|
890
|
-
}
|
|
891
|
-
|
|
892
|
-
&.e-show-clear.e-show-dd-icon {
|
|
893
|
-
@if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
|
|
894
|
-
@include chip-last-margin(4px, $ddt-last-chip-right-margin);
|
|
895
|
-
}
|
|
896
|
-
@else {
|
|
897
|
-
@include chip-last-margin(1px, $ddt-last-chip-right-margin);
|
|
898
|
-
}
|
|
899
|
-
}
|
|
900
|
-
|
|
901
|
-
&.e-input-group.e-control-wrapper,
|
|
902
|
-
&.e-float-input.e-control-wrapper {
|
|
903
|
-
|
|
904
|
-
&.e-show-chip,
|
|
905
|
-
&.e-show-text {
|
|
906
|
-
|
|
907
|
-
.e-clear-icon,
|
|
908
|
-
.e-ddt-icon {
|
|
909
|
-
left: 0;
|
|
910
|
-
right: auto;
|
|
911
|
-
}
|
|
912
|
-
|
|
913
|
-
&.e-show-dd-icon .e-clear-icon {
|
|
914
|
-
@if $ddt-skin-name == 'tailwind' {
|
|
915
|
-
left: 28px;
|
|
916
|
-
}
|
|
917
|
-
@else {
|
|
918
|
-
left: $ddt-dd-icon-width;
|
|
919
|
-
}
|
|
920
|
-
}
|
|
921
|
-
}
|
|
922
|
-
}
|
|
923
|
-
|
|
924
|
-
&.e-popup {
|
|
925
|
-
.e-treeview .e-list-item .e-ul {
|
|
926
|
-
padding: 0 14px 0 0;
|
|
927
|
-
}
|
|
928
|
-
|
|
929
|
-
.e-selectall-parent {
|
|
930
|
-
text-indent: $ddt-rtl-select-all-text-indent;
|
|
931
|
-
.e-all-text {
|
|
932
|
-
margin: $ddt-rtl-select-all-checkbox-margin;
|
|
933
|
-
}
|
|
934
|
-
}
|
|
935
|
-
}
|
|
936
|
-
}
|
|
937
|
-
}
|
|
938
|
-
|
|
939
|
-
.e-ddt-icon-hide {
|
|
940
|
-
display: none;
|
|
941
|
-
}
|
|
942
|
-
}
|
|
1
|
+
@mixin ddt-rotate($position) {
|
|
2
|
+
transform: rotate($position);
|
|
3
|
+
transition: transform 300ms ease;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
@mixin position($position, $right){
|
|
7
|
+
position: $position;
|
|
8
|
+
right: $right;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
@mixin close-style($font-size, $height, $width) {
|
|
12
|
+
font-size: $font-size;
|
|
13
|
+
height: $height;
|
|
14
|
+
width: $width;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
@mixin min-style($min-height, $min-width, $font-size, $line-height) {
|
|
18
|
+
min-height: $min-height;
|
|
19
|
+
min-width: $min-width;
|
|
20
|
+
line-height: $line-height;
|
|
21
|
+
&::before {
|
|
22
|
+
font-size: $font-size;
|
|
23
|
+
@if ($ddt-skin-name == 'fluent2') {
|
|
24
|
+
padding: 3px;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
@mixin icon-style($bottom, $right) {
|
|
30
|
+
bottom: $bottom;
|
|
31
|
+
right: $right;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
@mixin chip-last($margin-right, $max-width) {
|
|
35
|
+
.e-chips-wrapper .e-chips:last-child {
|
|
36
|
+
margin-right: $margin-right;
|
|
37
|
+
max-width: $max-width;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
@mixin chip-last-margin($margin-right, $margin-left) {
|
|
42
|
+
.e-chips-wrapper .e-chips:last-child {
|
|
43
|
+
margin-right: $margin-right;
|
|
44
|
+
margin-left: $margin-left;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
@include export-module('dropdowntree-layout') {
|
|
49
|
+
|
|
50
|
+
.e-ddt {
|
|
51
|
+
cursor: pointer;
|
|
52
|
+
outline: none;
|
|
53
|
+
|
|
54
|
+
.e-ddt-icon::before {
|
|
55
|
+
@include ddt-rotate(0deg);
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
&.e-icon-anim {
|
|
59
|
+
@if $ddt-skin-name == 'Material3' {
|
|
60
|
+
.e-ddt-icon {
|
|
61
|
+
background: $ddt-dd-icon-bg;
|
|
62
|
+
border-radius: $ddt-dd-icon-radius;
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.e-ddt-icon::before {
|
|
67
|
+
@include ddt-rotate(180deg);
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.e-ddt-hidden {
|
|
72
|
+
border: 0;
|
|
73
|
+
height: 0;
|
|
74
|
+
visibility: hidden;
|
|
75
|
+
width: 0;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
&.e-input-group.e-control-wrapper,
|
|
79
|
+
&.e-float-input.e-control-wrapper {
|
|
80
|
+
.e-clear-icon {
|
|
81
|
+
box-sizing: content-box;
|
|
82
|
+
@if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'bootstrap5.3' and $ddt-skin-name != 'FluentUI' and $ddt-skin-name != 'Material3' and $ddt-skin-name != 'tailwind3' {
|
|
83
|
+
min-height: $ddt-close-icon-min-height;
|
|
84
|
+
}
|
|
85
|
+
@if $ddt-skin-name == 'Material3' {
|
|
86
|
+
margin: $ddt-dd-icon-margin;
|
|
87
|
+
}
|
|
88
|
+
@if $ddt-skin-name == 'FluentUI' {
|
|
89
|
+
min-height: $ddt-dd-icon-width;
|
|
90
|
+
}
|
|
91
|
+
@if $ddt-skin-name == 'fluent2' {
|
|
92
|
+
min-width: $ddt-close-icon-min-height;
|
|
93
|
+
margin: 5px 3px 5px 6px;
|
|
94
|
+
align-items: center;
|
|
95
|
+
&::before {
|
|
96
|
+
font-size: 14px;
|
|
97
|
+
padding: 3px;
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.e-input-group-icon.e-ddt-icon {
|
|
103
|
+
border: 0;
|
|
104
|
+
|
|
105
|
+
@if $ddt-skin-name == 'bootstrap4' {
|
|
106
|
+
font-size: 8px;
|
|
107
|
+
}
|
|
108
|
+
@else if $ddt-skin-name == 'bootstrap5' {
|
|
109
|
+
font-size: 20px;
|
|
110
|
+
}
|
|
111
|
+
@else if $ddt-skin-name == 'fluent2' {
|
|
112
|
+
font-size: 14px;
|
|
113
|
+
margin: 5px 9px 5px 3px;
|
|
114
|
+
padding: 0;
|
|
115
|
+
min-height: 20px;
|
|
116
|
+
min-width: 20px;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
@if $ddt-skin-name == 'Material3' {
|
|
120
|
+
font-size: $ddt-chip-icon-line-height;
|
|
121
|
+
margin: $ddt-dd-icon-margin;
|
|
122
|
+
line-height: $ddt-chip-icon-line-height;
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.e-icon-hide {
|
|
127
|
+
display: none;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
&.e-show-chip,
|
|
131
|
+
&.e-show-text {
|
|
132
|
+
.e-clear-icon {
|
|
133
|
+
@if $ddt-skin-name == 'tailwind3' {
|
|
134
|
+
bottom: 0;
|
|
135
|
+
}
|
|
136
|
+
@else {
|
|
137
|
+
bottom: $ddt-close-icon-bottom;
|
|
138
|
+
}
|
|
139
|
+
@include position(absolute, 0);
|
|
140
|
+
@if $ddt-skin-name == 'Material3' {
|
|
141
|
+
margin: 0;
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
&.e-show-dd-icon .e-clear-icon {
|
|
146
|
+
@if $ddt-skin-name == 'tailwind' {
|
|
147
|
+
right: 28px;
|
|
148
|
+
}
|
|
149
|
+
@else {
|
|
150
|
+
right: $ddt-dd-icon-width;
|
|
151
|
+
}
|
|
152
|
+
@if $ddt-skin-name == 'FluentUI' or $ddt-skin-name == 'fluent2' {
|
|
153
|
+
bottom: 0;
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.e-ddt-icon {
|
|
158
|
+
@if $ddt-skin-name != 'FluentUI' {
|
|
159
|
+
bottom: $ddt-dd-icon-bottom;
|
|
160
|
+
}
|
|
161
|
+
@include position(absolute, 0);
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
&.e-input-focus input.e-dropdowntree.e-chip-input,
|
|
165
|
+
input.e-dropdowntree.e-chip-input {
|
|
166
|
+
padding-left: 0;
|
|
167
|
+
padding-right: 0;
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
&.e-valid-input:hover:not(.e-disabled) .e-clear-icon {
|
|
172
|
+
display: flex;
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.e-chips-wrapper {
|
|
177
|
+
width: 100%;
|
|
178
|
+
@if ($ddt-skin-name =='tailwind3') {
|
|
179
|
+
margin: 2px 0 2px 6px;
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
&.e-show-chip {
|
|
184
|
+
|
|
185
|
+
.e-chips-close {
|
|
186
|
+
@if $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'Material3' and $ddt-skin-name != 'bootstrap5.3' {
|
|
187
|
+
@include min-style($ddt-chip-close-height, $ddt-chip-close-width, $ddt-chip-close-font, $ddt-chip-icon-line-height);
|
|
188
|
+
}
|
|
189
|
+
@else {
|
|
190
|
+
@include min-style($ddt-chip-close-height, $ddt-chip-close-width, $ddt-chip-close-font, null);
|
|
191
|
+
}
|
|
192
|
+
text-align: center;
|
|
193
|
+
|
|
194
|
+
&::before {
|
|
195
|
+
@if $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'material' and $ddt-skin-name != 'material-dark' and $ddt-skin-name != 'Material3' and $ddt-skin-name != 'bootstrap5.3' and $ddt-skin-name != 'bootstrap5.3-dark' {
|
|
196
|
+
vertical-align: middle;
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.e-chips {
|
|
202
|
+
align-items: center;
|
|
203
|
+
@if $theme-name =='fluent2-highcontrast' {
|
|
204
|
+
border-radius: 4px;
|
|
205
|
+
}
|
|
206
|
+
@else {
|
|
207
|
+
border-radius: $ddt-chip-radius;
|
|
208
|
+
}
|
|
209
|
+
box-sizing: border-box;
|
|
210
|
+
display: inline-flex;
|
|
211
|
+
float: left;
|
|
212
|
+
height: $ddt-chip-height;
|
|
213
|
+
margin: $ddt-chip-margin;
|
|
214
|
+
max-width: $ddt-chip-width;
|
|
215
|
+
overflow: hidden;
|
|
216
|
+
padding: $ddt-chip-padding;
|
|
217
|
+
text-overflow: ellipsis;
|
|
218
|
+
white-space: nowrap;
|
|
219
|
+
|
|
220
|
+
@if ($ddt-skin-name == 'tailwind3') {
|
|
221
|
+
border: 1px solid $border-light;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
& > .e-chipcontent {
|
|
225
|
+
max-width: 100%;
|
|
226
|
+
overflow: hidden;
|
|
227
|
+
padding: $ddt-chip-content-padding;
|
|
228
|
+
text-indent: 0;
|
|
229
|
+
text-overflow: ellipsis;
|
|
230
|
+
white-space: nowrap;
|
|
231
|
+
|
|
232
|
+
@if $ddt-skin-name == 'fabric' or $ddt-skin-name == 'fabric-dark' or $ddt-skin-name == 'highcontrast' or $ddt-skin-name == 'highcontrast-light' {
|
|
233
|
+
line-height: $ddt-chip-text-line-height;
|
|
234
|
+
}
|
|
235
|
+
@if ($ddt-skin-name == 'tailwind3') {
|
|
236
|
+
font-size: 12px;
|
|
237
|
+
line-height: 16px;
|
|
238
|
+
font-weight: 500;
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
.e-ddt-icon {
|
|
244
|
+
@if $ddt-skin-name == 'FluentUI' {
|
|
245
|
+
bottom: 0;
|
|
246
|
+
}
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
@if $ddt-skin-name == 'material' or $ddt-skin-name == 'material-dark' {
|
|
251
|
+
&.e-outline {
|
|
252
|
+
.e-overflow {
|
|
253
|
+
&.e-show-text {
|
|
254
|
+
padding: 10px 12px 9px;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
&.e-total-count {
|
|
258
|
+
padding: $ddt-outline-padding;
|
|
259
|
+
}
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
&.e-input-group.e-control-wrapper,
|
|
263
|
+
&.e-float-input.e-control-wrapper {
|
|
264
|
+
&.e-show-dd-icon .e-clear-icon {
|
|
265
|
+
right: 30px;
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
&:not(.e-show-chip) {
|
|
269
|
+
&.e-show-dd-icon.e-input-focus .e-clear-icon {
|
|
270
|
+
min-height: 20px;
|
|
271
|
+
}
|
|
272
|
+
}
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
&.e-show-chip {
|
|
276
|
+
.e-overflow,
|
|
277
|
+
.e-chips-wrapper {
|
|
278
|
+
padding: $ddt-outline-chip-padding;
|
|
279
|
+
}
|
|
280
|
+
}
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
&.e-filled {
|
|
284
|
+
&.e-float-input.e-control-wrapper {
|
|
285
|
+
.e-overflow {
|
|
286
|
+
&.e-show-text {
|
|
287
|
+
line-height: 21px;
|
|
288
|
+
padding: 14px 2px 5px 0;
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
.e-remain {
|
|
292
|
+
&.e-wrap-count {
|
|
293
|
+
padding-top: 10px;
|
|
294
|
+
}
|
|
295
|
+
}
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
&:not(.e-show-chip) {
|
|
299
|
+
.e-ddt-icon,
|
|
300
|
+
&.e-show-dd-icon .e-clear-icon {
|
|
301
|
+
padding-top: 8px;
|
|
302
|
+
}
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
&.e-show-chip,
|
|
306
|
+
&.e-show-text {
|
|
307
|
+
.e-ddt-icon {
|
|
308
|
+
@include icon-style(6px, 10px);
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
.e-clear-icon {
|
|
312
|
+
@include icon-style(5px, 38px);
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
&:not(.e-show-dd-icon) .e-clear-icon {
|
|
316
|
+
@include icon-style(9px, 10px);
|
|
317
|
+
}
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
&.e-show-chip {
|
|
321
|
+
.e-chips-wrapper,
|
|
322
|
+
.e-overflow {
|
|
323
|
+
padding-top: 8px;
|
|
324
|
+
|
|
325
|
+
.e-chips {
|
|
326
|
+
height: 18px;
|
|
327
|
+
|
|
328
|
+
> .e-chipcontent {
|
|
329
|
+
font-size: 12px;
|
|
330
|
+
padding: 0 4px 0 0;
|
|
331
|
+
}
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
.e-chips-close::before {
|
|
335
|
+
@include close-style(12px, 12px, 12px);
|
|
336
|
+
}
|
|
337
|
+
}
|
|
338
|
+
}
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
.e-chips-wrapper,
|
|
342
|
+
.e-overflow {
|
|
343
|
+
.e-chips {
|
|
344
|
+
margin-top: 8px;
|
|
345
|
+
padding: 0 8px;
|
|
346
|
+
}
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
&.e-input-group.e-control-wrapper:not(.e-float-input) {
|
|
350
|
+
.e-overflow {
|
|
351
|
+
&.e-show-text {
|
|
352
|
+
line-height: 39px;
|
|
353
|
+
padding: 0;
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
.e-remain {
|
|
357
|
+
&.e-wrap-count {
|
|
358
|
+
line-height: 39px;
|
|
359
|
+
padding-top: 0;
|
|
360
|
+
}
|
|
361
|
+
}
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
&.e-show-chip {
|
|
365
|
+
.e-chips-wrapper,
|
|
366
|
+
.e-overflow {
|
|
367
|
+
.e-chips {
|
|
368
|
+
height: 28px;
|
|
369
|
+
margin-top: 8px;
|
|
370
|
+
padding: 0 8px;
|
|
371
|
+
|
|
372
|
+
> .e-chipcontent {
|
|
373
|
+
font-size: 13px;
|
|
374
|
+
padding: 0 8px 0 0;
|
|
375
|
+
}
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
.e-chips-close::before {
|
|
379
|
+
@include close-style(14px, 12px, 12px);
|
|
380
|
+
}
|
|
381
|
+
}
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
&.e-show-dd-icon.e-show-text,
|
|
385
|
+
&.e-show-dd-icon.e-show-chip {
|
|
386
|
+
.e-ddt-icon {
|
|
387
|
+
@include icon-style(10px, 10px);
|
|
388
|
+
}
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
.e-clear-icon {
|
|
392
|
+
@include icon-style(9px, 38px);
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
&:not(.e-show-dd-icon) .e-clear-icon {
|
|
396
|
+
@include icon-style(9px, 10px);
|
|
397
|
+
}
|
|
398
|
+
}
|
|
399
|
+
}
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
.e-overflow {
|
|
403
|
+
white-space: nowrap;
|
|
404
|
+
|
|
405
|
+
&.e-show-text {
|
|
406
|
+
padding: $ddt-delim-padding;
|
|
407
|
+
@if $ddt-skin-name == 'tailwind' {
|
|
408
|
+
line-height: 22px;
|
|
409
|
+
|
|
410
|
+
.e-remain {
|
|
411
|
+
padding-left: 8px;
|
|
412
|
+
}
|
|
413
|
+
}
|
|
414
|
+
@if $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
|
|
415
|
+
line-height: 30px;
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
&.e-input-value:not(.e-icon-hide) {
|
|
419
|
+
display: inline-grid;
|
|
420
|
+
}
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
&.e-total-count {
|
|
424
|
+
box-sizing: border-box;
|
|
425
|
+
display: inline-block;
|
|
426
|
+
overflow: hidden;
|
|
427
|
+
text-overflow: ellipsis;
|
|
428
|
+
|
|
429
|
+
.e-remain {
|
|
430
|
+
@if $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
|
|
431
|
+
line-height: 30px;
|
|
432
|
+
}
|
|
433
|
+
@else {
|
|
434
|
+
padding: $ddt-rtl-remains-padding;
|
|
435
|
+
}
|
|
436
|
+
}
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
&.e-wrap-count {
|
|
440
|
+
@if $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'bootstrap5.3' and $ddt-skin-name != 'bootstrap5.3-dark' and $ddt-skin-name != 'tailwind3' {
|
|
441
|
+
padding-top: $ddt-remains-count-padding-top;
|
|
442
|
+
}
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
.e-remain {
|
|
446
|
+
cursor: pointer;
|
|
447
|
+
display: inline-block;
|
|
448
|
+
font-size: $ddt-chip-font-size;
|
|
449
|
+
padding: $ddt-remains-padding;
|
|
450
|
+
@if $ddt-skin-name == 'fluent2' {
|
|
451
|
+
line-height: $ddt-remains-line-height;
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
&.e-wrap-count {
|
|
455
|
+
@if $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'bootstrap5.3' or $ddt-skin-name == 'tailwind3' {
|
|
456
|
+
padding: $ddt-overflow-count-padding;
|
|
457
|
+
}
|
|
458
|
+
@else if $ddt-skin-name == 'FluentUI' {
|
|
459
|
+
line-height: 30px;
|
|
460
|
+
}
|
|
461
|
+
@else {
|
|
462
|
+
padding-top: $ddt-overflow-count-padding-top;
|
|
463
|
+
}
|
|
464
|
+
}
|
|
465
|
+
}
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
&.e-show-chip {
|
|
469
|
+
.e-overflow {
|
|
470
|
+
&.e-total-count {
|
|
471
|
+
.e-remain {
|
|
472
|
+
padding: $ddt-delim-padding;
|
|
473
|
+
}
|
|
474
|
+
}
|
|
475
|
+
@if $ddt-skin-name == 'FluentUI' {
|
|
476
|
+
.e-remain.e-wrap-count {
|
|
477
|
+
padding-left: 4px;
|
|
478
|
+
}
|
|
479
|
+
}
|
|
480
|
+
}
|
|
481
|
+
}
|
|
482
|
+
|
|
483
|
+
&.e-show-dd-icon {
|
|
484
|
+
@include chip-last($ddt-dd-icon-width, $ddt-chip-ddi-width);
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
&.e-show-clear {
|
|
488
|
+
@include chip-last($ddt-close-icon-width, $ddt-chip-ci-width);
|
|
489
|
+
}
|
|
490
|
+
|
|
491
|
+
&.e-show-clear.e-show-dd-icon {
|
|
492
|
+
@include chip-last($ddt-last-chip-right-margin, $ddt-chip-ddi-ci-width);
|
|
493
|
+
}
|
|
494
|
+
|
|
495
|
+
input[readonly],
|
|
496
|
+
.e-dropdowntree,
|
|
497
|
+
input[readonly].e-input {
|
|
498
|
+
pointer-events: none;
|
|
499
|
+
|
|
500
|
+
&.e-chip-input {
|
|
501
|
+
width: 0;
|
|
502
|
+
visibility: hidden;
|
|
503
|
+
}
|
|
504
|
+
}
|
|
505
|
+
|
|
506
|
+
&.e-popup {
|
|
507
|
+
@if $skin-name != 'material' and $skin-name != 'FluentUI' and $skin-name != 'Material3' {
|
|
508
|
+
border: 1px solid $ddt-popup-border-color;
|
|
509
|
+
}
|
|
510
|
+
@if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'tailwind3' {
|
|
511
|
+
margin-top: 4px;
|
|
512
|
+
}
|
|
513
|
+
@else if $skin-name == 'Material3' {
|
|
514
|
+
margin-top: 2px;
|
|
515
|
+
}
|
|
516
|
+
@else if $skin-name == 'fluent2' {
|
|
517
|
+
margin-top: 1px;
|
|
518
|
+
}
|
|
519
|
+
@if $skin-name == 'bootstrap4' or $skin-name == 'Material3' or $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $skin-name == 'FluentUI' or $skin-name == 'fluent2' or $ddt-skin-name == 'tailwind3' {
|
|
520
|
+
border-radius: $ddt-popup-radius;
|
|
521
|
+
}
|
|
522
|
+
box-shadow: $ddt-box-shadow;
|
|
523
|
+
position: absolute;
|
|
524
|
+
|
|
525
|
+
.e-active .e-checkbox-wrapper {
|
|
526
|
+
.e-frame:not(.e-check):not(.e-stop) {
|
|
527
|
+
@if $ddt-skin-name == 'bootstrap5' {
|
|
528
|
+
background-color: $ddt-readonly-input-bg-color;
|
|
529
|
+
}
|
|
530
|
+
}
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
.e-checkbox-wrapper {
|
|
534
|
+
.e-frame:not(.e-check):not(.e-stop) {
|
|
535
|
+
@if $ddt-skin-name == 'bootstrap5' {
|
|
536
|
+
background-color: transparent;
|
|
537
|
+
}
|
|
538
|
+
}
|
|
539
|
+
}
|
|
540
|
+
|
|
541
|
+
.e-selectall-parent {
|
|
542
|
+
border-bottom: 1px solid;
|
|
543
|
+
cursor: pointer;
|
|
544
|
+
display: block;
|
|
545
|
+
@if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'FluentUI' {
|
|
546
|
+
line-height: $ddt-select-all-height;
|
|
547
|
+
}
|
|
548
|
+
overflow: hidden;
|
|
549
|
+
position: relative;
|
|
550
|
+
text-indent: $ddt-select-all-text-indent;
|
|
551
|
+
white-space: nowrap;
|
|
552
|
+
width: 100%;
|
|
553
|
+
@if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' or $ddt-skin-name == 'fluent2' or $ddt-skin-name == 'Material3' {
|
|
554
|
+
padding: $ddt-select-all-padding;
|
|
555
|
+
}
|
|
556
|
+
|
|
557
|
+
&.e-hide-selectall {
|
|
558
|
+
display: none;
|
|
559
|
+
}
|
|
560
|
+
|
|
561
|
+
.e-checkbox-wrapper {
|
|
562
|
+
position: relative;
|
|
563
|
+
text-indent: 0;
|
|
564
|
+
bottom: $ddt-select-all-checkbox-bottom;
|
|
565
|
+
|
|
566
|
+
.e-frame {
|
|
567
|
+
@if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
|
|
568
|
+
margin-top: -3px;
|
|
569
|
+
}
|
|
570
|
+
}
|
|
571
|
+
}
|
|
572
|
+
|
|
573
|
+
.e-all-text {
|
|
574
|
+
font-family: inherit;
|
|
575
|
+
font-size: $ddt-select-all-font-size;
|
|
576
|
+
margin: $ddt-select-all-checkbox-margin;
|
|
577
|
+
@if $ddt-skin-name == 'tailwind' {
|
|
578
|
+
line-height: $ddt-select-all-height;
|
|
579
|
+
}
|
|
580
|
+
}
|
|
581
|
+
}
|
|
582
|
+
|
|
583
|
+
.e-filter-wrap {
|
|
584
|
+
border-top-width: $ddt-filter-top-border;
|
|
585
|
+
display: block;
|
|
586
|
+
padding: $ddt-filter-padding;
|
|
587
|
+
@if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'FluentUI' {
|
|
588
|
+
border-bottom: $ddt-filter-border;
|
|
589
|
+
}
|
|
590
|
+
@else {
|
|
591
|
+
border: $ddt-filter-border;
|
|
592
|
+
}
|
|
593
|
+
|
|
594
|
+
@if $ddt-skin-name == 'fabric' or $ddt-skin-name == 'fabric-dark' or $ddt-skin-name == 'highcontrast' or $ddt-skin-name == 'highcontrast-light' {
|
|
595
|
+
border-left-width: 0;
|
|
596
|
+
border-right-width: 0;
|
|
597
|
+
}
|
|
598
|
+
@if $ddt-skin-name == 'bootstrap-dark' or $ddt-skin-name == 'bootstrap' {
|
|
599
|
+
border-bottom: $ddt-filter-border-bottom-color;
|
|
600
|
+
}
|
|
601
|
+
@if $ddt-skin-name == 'bootstrap4' {
|
|
602
|
+
background: $ddt-filter-bg;
|
|
603
|
+
}
|
|
604
|
+
|
|
605
|
+
.e-input,
|
|
606
|
+
.e-input:focus {
|
|
607
|
+
@if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'bootstrap5.3' and $ddt-skin-name != 'tailwind3' {
|
|
608
|
+
padding: $ddt-list-filter-text-indent;
|
|
609
|
+
}
|
|
610
|
+
}
|
|
611
|
+
|
|
612
|
+
.e-input-group {
|
|
613
|
+
margin-bottom: 0;
|
|
614
|
+
|
|
615
|
+
@if $ddt-skin-name == 'tailwind' {
|
|
616
|
+
border: 1px solid $border;
|
|
617
|
+
border-radius: 4px;
|
|
618
|
+
}
|
|
619
|
+
|
|
620
|
+
@if $ddt-skin-name == 'bootstrap4' {
|
|
621
|
+
background: $ddt-filter-bg;
|
|
622
|
+
}
|
|
623
|
+
|
|
624
|
+
.e-clear-icon {
|
|
625
|
+
@if $ddt-skin-name == 'material' or $ddt-skin-name == 'material-dark' {
|
|
626
|
+
margin: 6px 6px 5px;
|
|
627
|
+
min-height: 12px;
|
|
628
|
+
min-width: 12px;
|
|
629
|
+
padding: 6px;
|
|
630
|
+
}
|
|
631
|
+
}
|
|
632
|
+
|
|
633
|
+
&:not(.e-disabled):not(.e-float-icon-left)::before,
|
|
634
|
+
&:not(.e-disabled):not(.e-float-icon-left)::after,
|
|
635
|
+
&.e-control-wrapper:not(.e-disabled):not(.e-float-icon-left)::before,
|
|
636
|
+
&.e-control-wrapper:not(.e-disabled):not(.e-float-icon-left)::after {
|
|
637
|
+
@if $ddt-skin-name == 'material' {
|
|
638
|
+
bottom: -1px;
|
|
639
|
+
height: 1px;
|
|
640
|
+
}
|
|
641
|
+
}
|
|
642
|
+
}
|
|
643
|
+
}
|
|
644
|
+
|
|
645
|
+
.e-popup-content {
|
|
646
|
+
overflow: auto;
|
|
647
|
+
position: relative;
|
|
648
|
+
|
|
649
|
+
.e-ddt-nodata {
|
|
650
|
+
display: none;
|
|
651
|
+
}
|
|
652
|
+
|
|
653
|
+
&.e-no-data {
|
|
654
|
+
cursor: default;
|
|
655
|
+
font-family: inherit;
|
|
656
|
+
font-size: 14px;
|
|
657
|
+
text-align: center;
|
|
658
|
+
@if $ddt-skin-name == 'tailwind' {
|
|
659
|
+
padding: 8px 16px;
|
|
660
|
+
}
|
|
661
|
+
@else if $ddt-skin-name == 'bootstrap5' {
|
|
662
|
+
padding: 7px 16px;
|
|
663
|
+
}
|
|
664
|
+
@else {
|
|
665
|
+
padding: 14px 16px;
|
|
666
|
+
}
|
|
667
|
+
|
|
668
|
+
.e-treeview {
|
|
669
|
+
display: none;
|
|
670
|
+
}
|
|
671
|
+
|
|
672
|
+
.e-ddt-nodata {
|
|
673
|
+
display: block;
|
|
674
|
+
@if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5'or $ddt-skin-name == 'FluentUI' {
|
|
675
|
+
line-height: 22px;
|
|
676
|
+
}
|
|
677
|
+
}
|
|
678
|
+
}
|
|
679
|
+
}
|
|
680
|
+
|
|
681
|
+
.e-treeview {
|
|
682
|
+
display: inline-table;
|
|
683
|
+
width: 100%;
|
|
684
|
+
@if $ddt-skin-name == 'tailwind3' {
|
|
685
|
+
border: none;
|
|
686
|
+
}
|
|
687
|
+
|
|
688
|
+
.e-list-item {
|
|
689
|
+
@if $ddt-skin-name != 'fluent2' {
|
|
690
|
+
padding: 0;
|
|
691
|
+
|
|
692
|
+
.e-ul {
|
|
693
|
+
margin: 0;
|
|
694
|
+
padding: 0 0 0 14px;
|
|
695
|
+
}
|
|
696
|
+
}
|
|
697
|
+
}
|
|
698
|
+
|
|
699
|
+
.e-fullrow {
|
|
700
|
+
@if $ddt-skin-name == 'highcontrast' or $ddt-skin-name == 'highcontrast-light' {
|
|
701
|
+
border-width: 2px;
|
|
702
|
+
}
|
|
703
|
+
@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 != 'fluent2' and $ddt-skin-name != 'tailwind3' {
|
|
704
|
+
height: $ddt-treeview-fullrow-height;
|
|
705
|
+
}
|
|
706
|
+
}
|
|
707
|
+
|
|
708
|
+
& > .e-ul {
|
|
709
|
+
overflow: hidden;
|
|
710
|
+
@if $ddt-skin-name != 'FluentUI' and $ddt-skin-name != 'Material3' and $ddt-skin-name != 'fluent2' {
|
|
711
|
+
padding: $ddt-treeview-padding;
|
|
712
|
+
}
|
|
713
|
+
}
|
|
714
|
+
|
|
715
|
+
&.e-fullrow-wrap .e-text-content {
|
|
716
|
+
@if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'bootstrap5.3' and $ddt-skin-name != 'FluentUI' and $ddt-skin-name != 'Material3' and $ddt-skin-name != 'fluent2' and $ddt-skin-name != 'tailwind3' {
|
|
717
|
+
padding-bottom: $ddt-treeview-content-padding-top;
|
|
718
|
+
padding-top: $ddt-treeview-content-padding-bottom;
|
|
719
|
+
}
|
|
720
|
+
}
|
|
721
|
+
}
|
|
722
|
+
|
|
723
|
+
.e-ddt-footer,
|
|
724
|
+
.e-ddt-header {
|
|
725
|
+
cursor: default;
|
|
726
|
+
}
|
|
727
|
+
}
|
|
728
|
+
|
|
729
|
+
&.e-rtl {
|
|
730
|
+
&.e-show-chip {
|
|
731
|
+
.e-chips {
|
|
732
|
+
float: right;
|
|
733
|
+
@if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' {
|
|
734
|
+
& > .e-chipcontent {
|
|
735
|
+
padding: $ddt-rtl-chip-content-padding;
|
|
736
|
+
}
|
|
737
|
+
}
|
|
738
|
+
}
|
|
739
|
+
}
|
|
740
|
+
|
|
741
|
+
&.e-show-chip,
|
|
742
|
+
&.e-show-text {
|
|
743
|
+
.e-overflow {
|
|
744
|
+
.e-remain {
|
|
745
|
+
padding: $ddt-rtl-remains-padding;
|
|
746
|
+
|
|
747
|
+
&.e-wrap-count {
|
|
748
|
+
@if $ddt-skin-name == 'bootstrap5' {
|
|
749
|
+
padding-top: 5px;
|
|
750
|
+
}
|
|
751
|
+
@else {
|
|
752
|
+
padding-top: $ddt-remains-count-padding-top;
|
|
753
|
+
}
|
|
754
|
+
}
|
|
755
|
+
}
|
|
756
|
+
|
|
757
|
+
&.e-wrap-count {
|
|
758
|
+
@include position(absolute, auto);
|
|
759
|
+
}
|
|
760
|
+
}
|
|
761
|
+
}
|
|
762
|
+
|
|
763
|
+
&.e-show-text {
|
|
764
|
+
.e-overflow {
|
|
765
|
+
&.e-total-count {
|
|
766
|
+
.e-remain {
|
|
767
|
+
padding: $ddt-remains-padding;
|
|
768
|
+
}
|
|
769
|
+
}
|
|
770
|
+
}
|
|
771
|
+
}
|
|
772
|
+
|
|
773
|
+
&.e-show-text {
|
|
774
|
+
.e-overflow {
|
|
775
|
+
&.e-wrap-count {
|
|
776
|
+
.e-remain {
|
|
777
|
+
@if $ddt-skin-name == 'tailwind' {
|
|
778
|
+
padding-right: 8px;
|
|
779
|
+
}
|
|
780
|
+
}
|
|
781
|
+
}
|
|
782
|
+
}
|
|
783
|
+
}
|
|
784
|
+
|
|
785
|
+
&.e-show-chip {
|
|
786
|
+
.e-overflow {
|
|
787
|
+
&.e-total-count {
|
|
788
|
+
.e-remain {
|
|
789
|
+
padding: $ddt-delim-padding;
|
|
790
|
+
}
|
|
791
|
+
}
|
|
792
|
+
}
|
|
793
|
+
}
|
|
794
|
+
|
|
795
|
+
@if $ddt-skin-name == 'material' or $ddt-skin-name == 'material-dark' {
|
|
796
|
+
&.e-outline {
|
|
797
|
+
&.e-input-group.e-control-wrapper,
|
|
798
|
+
&.e-float-input.e-control-wrapper {
|
|
799
|
+
&.e-show-dd-icon .e-clear-icon,
|
|
800
|
+
&.e-show-dd-icon.e-show-text .e-clear-icon,
|
|
801
|
+
&.e-show-dd-icon.e-show-chip .e-clear-icon {
|
|
802
|
+
left: 30px;
|
|
803
|
+
}
|
|
804
|
+
}
|
|
805
|
+
}
|
|
806
|
+
|
|
807
|
+
&.e-filled {
|
|
808
|
+
&.e-float-input.e-control-wrapper {
|
|
809
|
+
.e-overflow {
|
|
810
|
+
&.e-show-text {
|
|
811
|
+
padding: 14px 0 5px 2px;
|
|
812
|
+
}
|
|
813
|
+
}
|
|
814
|
+
}
|
|
815
|
+
|
|
816
|
+
&.e-float-input.e-control-wrapper.e-show-chip,
|
|
817
|
+
&.e-float-input.e-control-wrapper.e-show-text {
|
|
818
|
+
.e-ddt-icon {
|
|
819
|
+
left: 10px;
|
|
820
|
+
right: auto;
|
|
821
|
+
}
|
|
822
|
+
|
|
823
|
+
&.e-show-dd-icon .e-clear-icon {
|
|
824
|
+
left: 38px;
|
|
825
|
+
right: auto;
|
|
826
|
+
}
|
|
827
|
+
|
|
828
|
+
&:not(.e-show-dd-icon) .e-clear-icon {
|
|
829
|
+
left: 10px;
|
|
830
|
+
right: auto;
|
|
831
|
+
}
|
|
832
|
+
}
|
|
833
|
+
|
|
834
|
+
&.e-float-input.e-control-wrapper.e-show-chip {
|
|
835
|
+
.e-chips-wrapper,
|
|
836
|
+
.e-overflow {
|
|
837
|
+
.e-chips > .e-chipcontent {
|
|
838
|
+
padding: 0 0 0 4px;
|
|
839
|
+
}
|
|
840
|
+
}
|
|
841
|
+
}
|
|
842
|
+
|
|
843
|
+
&.e-input-group.e-control-wrapper:not(.e-float-input) {
|
|
844
|
+
&.e-show-chip {
|
|
845
|
+
.e-chips-wrapper,
|
|
846
|
+
.e-overflow {
|
|
847
|
+
.e-chips > .e-chipcontent {
|
|
848
|
+
padding: 0 0 0 8px;
|
|
849
|
+
}
|
|
850
|
+
}
|
|
851
|
+
}
|
|
852
|
+
|
|
853
|
+
&.e-show-dd-icon.e-show-text,
|
|
854
|
+
&.e-show-dd-icon.e-show-chip {
|
|
855
|
+
.e-ddt-icon {
|
|
856
|
+
left: 10px;
|
|
857
|
+
right: auto;
|
|
858
|
+
}
|
|
859
|
+
}
|
|
860
|
+
|
|
861
|
+
&.e-show-dd-icon .e-clear-icon {
|
|
862
|
+
left: 38px;
|
|
863
|
+
right: auto;
|
|
864
|
+
}
|
|
865
|
+
|
|
866
|
+
&:not(.e-show-dd-icon) .e-clear-icon {
|
|
867
|
+
left: 10px;
|
|
868
|
+
right: auto;
|
|
869
|
+
}
|
|
870
|
+
}
|
|
871
|
+
}
|
|
872
|
+
}
|
|
873
|
+
|
|
874
|
+
&.e-show-dd-icon {
|
|
875
|
+
@if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
|
|
876
|
+
@include chip-last-margin(4px, 18px);
|
|
877
|
+
}
|
|
878
|
+
@else {
|
|
879
|
+
@include chip-last-margin(1px, $ddt-dd-icon-width);
|
|
880
|
+
}
|
|
881
|
+
}
|
|
882
|
+
|
|
883
|
+
&.e-show-clear {
|
|
884
|
+
@if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
|
|
885
|
+
@include chip-last-margin(4px, 18px);
|
|
886
|
+
}
|
|
887
|
+
@else {
|
|
888
|
+
@include chip-last-margin(1px, $ddt-close-icon-width);
|
|
889
|
+
}
|
|
890
|
+
}
|
|
891
|
+
|
|
892
|
+
&.e-show-clear.e-show-dd-icon {
|
|
893
|
+
@if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
|
|
894
|
+
@include chip-last-margin(4px, $ddt-last-chip-right-margin);
|
|
895
|
+
}
|
|
896
|
+
@else {
|
|
897
|
+
@include chip-last-margin(1px, $ddt-last-chip-right-margin);
|
|
898
|
+
}
|
|
899
|
+
}
|
|
900
|
+
|
|
901
|
+
&.e-input-group.e-control-wrapper,
|
|
902
|
+
&.e-float-input.e-control-wrapper {
|
|
903
|
+
|
|
904
|
+
&.e-show-chip,
|
|
905
|
+
&.e-show-text {
|
|
906
|
+
|
|
907
|
+
.e-clear-icon,
|
|
908
|
+
.e-ddt-icon {
|
|
909
|
+
left: 0;
|
|
910
|
+
right: auto;
|
|
911
|
+
}
|
|
912
|
+
|
|
913
|
+
&.e-show-dd-icon .e-clear-icon {
|
|
914
|
+
@if $ddt-skin-name == 'tailwind' {
|
|
915
|
+
left: 28px;
|
|
916
|
+
}
|
|
917
|
+
@else {
|
|
918
|
+
left: $ddt-dd-icon-width;
|
|
919
|
+
}
|
|
920
|
+
}
|
|
921
|
+
}
|
|
922
|
+
}
|
|
923
|
+
|
|
924
|
+
&.e-popup {
|
|
925
|
+
.e-treeview .e-list-item .e-ul {
|
|
926
|
+
padding: 0 14px 0 0;
|
|
927
|
+
}
|
|
928
|
+
|
|
929
|
+
.e-selectall-parent {
|
|
930
|
+
text-indent: $ddt-rtl-select-all-text-indent;
|
|
931
|
+
.e-all-text {
|
|
932
|
+
margin: $ddt-rtl-select-all-checkbox-margin;
|
|
933
|
+
}
|
|
934
|
+
}
|
|
935
|
+
}
|
|
936
|
+
}
|
|
937
|
+
}
|
|
938
|
+
|
|
939
|
+
.e-ddt-icon-hide {
|
|
940
|
+
display: none;
|
|
941
|
+
}
|
|
942
|
+
}
|