@syncfusion/ej2-dropdowns 18.1.57 → 18.2.44-4569
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 +244 -0
- package/CHANGELOG.md +1524 -1514
- package/README.md +118 -118
- package/dist/ej2-dropdowns.umd.min.js +1 -10
- package/dist/ej2-dropdowns.umd.min.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es2015.js +198 -126
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +290 -217
- package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
- package/dist/global/ej2-dropdowns.min.js +1 -10
- package/dist/global/ej2-dropdowns.min.js.map +1 -1
- package/dist/global/index.d.ts +0 -9
- package/dist/ts/auto-complete/auto-complete.ts +527 -0
- package/dist/ts/combo-box/combo-box.ts +957 -0
- package/dist/ts/common/highlight-search.ts +47 -0
- package/dist/ts/common/incremental-search.ts +81 -0
- package/dist/ts/drop-down-base/drop-down-base.ts +1572 -0
- package/dist/ts/drop-down-list/drop-down-list.ts +2993 -0
- package/dist/ts/drop-down-tree/drop-down-tree.ts +3066 -0
- package/dist/ts/list-box/list-box.ts +2317 -0
- package/dist/ts/multi-select/checkbox-selection.ts +528 -0
- package/dist/ts/multi-select/float-label.ts +155 -0
- package/dist/ts/multi-select/interface.ts +66 -0
- package/dist/ts/multi-select/multi-select.ts +4216 -0
- package/helpers/e2e/index.js +3 -3
- package/license +2 -2
- package/package.json +77 -77
- package/src/auto-complete/auto-complete-model.d.ts +179 -179
- package/src/auto-complete/auto-complete.d.ts +12 -12
- package/src/auto-complete/auto-complete.js +21 -21
- package/src/combo-box/combo-box-model.d.ts +212 -212
- package/src/combo-box/combo-box.d.ts +27 -27
- package/src/combo-box/combo-box.js +29 -29
- package/src/common/incremental-search.d.ts +1 -1
- package/src/common/incremental-search.js +4 -2
- package/src/drop-down-base/drop-down-base-model.d.ts +191 -191
- package/src/drop-down-base/drop-down-base.d.ts +17 -17
- package/src/drop-down-base/drop-down-base.js +20 -20
- package/src/drop-down-list/drop-down-list-model.d.ts +222 -222
- package/src/drop-down-list/drop-down-list.d.ts +3 -2
- package/src/drop-down-list/drop-down-list.js +43 -30
- package/src/drop-down-tree/drop-down-tree-model.d.ts +344 -344
- package/src/drop-down-tree/drop-down-tree.js +32 -26
- package/src/list-box/index.d.ts +1 -0
- package/src/list-box/index.js +1 -0
- package/src/list-box/list-box-model.d.ts +156 -156
- package/src/list-box/list-box.d.ts +2 -2
- package/src/list-box/list-box.js +57 -59
- package/src/multi-select/index.d.ts +1 -0
- package/src/multi-select/index.js +1 -0
- package/src/multi-select/multi-select-model.d.ts +452 -452
- package/src/multi-select/multi-select.d.ts +2 -0
- package/src/multi-select/multi-select.js +98 -43
- package/styles/_all.scss +3 -3
- package/styles/auto-complete/_bootstrap-dark-definition.scss +3 -3
- package/styles/auto-complete/_bootstrap4-definition.scss +11 -11
- package/styles/auto-complete/_fabric-dark-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/bootstrap-dark.css +67 -61
- package/styles/bootstrap.css +69 -63
- package/styles/bootstrap4.css +81 -61
- package/styles/combo-box/_bootstrap-dark-definition.scss +2 -2
- package/styles/combo-box/_bootstrap4-definition.scss +11 -11
- package/styles/combo-box/_fabric-dark-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/drop-down-base/_all.scss +2 -2
- package/styles/drop-down-base/_bootstrap-dark-definition.scss +64 -64
- package/styles/drop-down-base/_bootstrap-definition.scss +64 -64
- package/styles/drop-down-base/_bootstrap4-definition.scss +78 -78
- package/styles/drop-down-base/_definition.scss +23 -23
- package/styles/drop-down-base/_fabric-dark-definition.scss +68 -68
- package/styles/drop-down-base/_fabric-definition.scss +66 -66
- package/styles/drop-down-base/_highcontrast-definition.scss +82 -82
- package/styles/drop-down-base/_highcontrast-light-definition.scss +81 -81
- package/styles/drop-down-base/_layout.scss +108 -108
- package/styles/drop-down-base/_material-dark-definition.scss +67 -67
- package/styles/drop-down-base/_material-definition.scss +65 -65
- package/styles/drop-down-base/_theme.scss +242 -242
- package/styles/drop-down-list/_all.scss +2 -2
- package/styles/drop-down-list/_bootstrap-dark-definition.scss +157 -157
- package/styles/drop-down-list/_bootstrap-definition.scss +156 -156
- package/styles/drop-down-list/_bootstrap4-definition.scss +184 -184
- package/styles/drop-down-list/_fabric-dark-definition.scss +127 -127
- package/styles/drop-down-list/_fabric-definition.scss +122 -122
- package/styles/drop-down-list/_highcontrast-definition.scss +131 -131
- package/styles/drop-down-list/_highcontrast-light-definition.scss +133 -133
- package/styles/drop-down-list/_layout.scss +218 -218
- package/styles/drop-down-list/_material-dark-definition.scss +143 -143
- package/styles/drop-down-list/_material-definition.scss +166 -166
- package/styles/drop-down-list/_theme.scss +10 -10
- package/styles/drop-down-list/icons/_bootstrap-dark.scss +14 -14
- package/styles/drop-down-list/icons/_bootstrap.scss +14 -14
- package/styles/drop-down-list/icons/_bootstrap4.scss +14 -14
- package/styles/drop-down-list/icons/_fabric-dark.scss +14 -14
- package/styles/drop-down-list/icons/_fabric.scss +14 -14
- package/styles/drop-down-list/icons/_highcontrast-light.scss +14 -14
- package/styles/drop-down-list/icons/_highcontrast.scss +14 -14
- package/styles/drop-down-list/icons/_material-dark.scss +14 -14
- package/styles/drop-down-list/icons/_material.scss +14 -14
- package/styles/drop-down-list/material.css +9 -0
- package/styles/drop-down-tree/_all.scss +2 -2
- package/styles/drop-down-tree/_bootstrap-dark-definition.scss +62 -49
- package/styles/drop-down-tree/_bootstrap-definition.scss +62 -49
- package/styles/drop-down-tree/_bootstrap4-definition.scss +63 -50
- package/styles/drop-down-tree/_fabric-dark-definition.scss +63 -49
- package/styles/drop-down-tree/_fabric-definition.scss +63 -49
- package/styles/drop-down-tree/_highcontrast-definition.scss +63 -49
- package/styles/drop-down-tree/_highcontrast-light-definition.scss +63 -49
- package/styles/drop-down-tree/_layout.scss +437 -398
- package/styles/drop-down-tree/_material-dark-definition.scss +61 -54
- package/styles/drop-down-tree/_material-definition.scss +61 -54
- package/styles/drop-down-tree/_theme.scss +68 -63
- package/styles/drop-down-tree/bootstrap-dark.css +67 -61
- package/styles/drop-down-tree/bootstrap.css +69 -63
- package/styles/drop-down-tree/bootstrap4.css +81 -61
- package/styles/drop-down-tree/fabric-dark.css +71 -63
- package/styles/drop-down-tree/fabric.css +71 -63
- package/styles/drop-down-tree/highcontrast-light.css +71 -63
- package/styles/drop-down-tree/highcontrast.css +75 -63
- 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/_fabric-dark.scss +11 -11
- package/styles/drop-down-tree/icons/_fabric.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/material-dark.css +76 -85
- package/styles/drop-down-tree/material.css +93 -85
- package/styles/fabric-dark.css +71 -63
- package/styles/fabric.css +71 -63
- package/styles/highcontrast-light.css +71 -63
- package/styles/highcontrast.css +75 -63
- package/styles/list-box/_all.scss +2 -2
- package/styles/list-box/_bootstrap-dark-definition.scss +118 -118
- package/styles/list-box/_bootstrap-definition.scss +112 -112
- package/styles/list-box/_bootstrap4-definition.scss +118 -118
- package/styles/list-box/_fabric-dark-definition.scss +118 -118
- package/styles/list-box/_fabric-definition.scss +112 -112
- package/styles/list-box/_highcontrast-definition.scss +112 -112
- package/styles/list-box/_highcontrast-light-definition.scss +118 -118
- package/styles/list-box/_layout.scss +458 -458
- package/styles/list-box/_material-dark-definition.scss +118 -118
- package/styles/list-box/_material-definition.scss +112 -112
- package/styles/list-box/_theme.scss +273 -273
- 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/_fabric-dark.scss +25 -25
- package/styles/list-box/icons/_fabric.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/material-dark.css +4 -4
- package/styles/list-box/material.css +4 -4
- package/styles/material-dark.css +80 -89
- package/styles/material.css +115 -89
- package/styles/multi-select/_all.scss +2 -2
- package/styles/multi-select/_bootstrap-dark-definition.scss +171 -171
- package/styles/multi-select/_bootstrap-definition.scss +166 -166
- package/styles/multi-select/_bootstrap4-definition.scss +233 -233
- package/styles/multi-select/_fabric-dark-definition.scss +170 -170
- package/styles/multi-select/_fabric-definition.scss +167 -167
- package/styles/multi-select/_highcontrast-definition.scss +257 -257
- package/styles/multi-select/_highcontrast-light-definition.scss +258 -258
- package/styles/multi-select/_layout.scss +1153 -1153
- package/styles/multi-select/_material-dark-definition.scss +186 -186
- package/styles/multi-select/_material-definition.scss +191 -191
- package/styles/multi-select/_theme.scss +384 -384
- package/styles/multi-select/icons/_bootstrap-dark.scss +26 -26
- package/styles/multi-select/icons/_bootstrap.scss +26 -26
- package/styles/multi-select/icons/_bootstrap4.scss +37 -37
- package/styles/multi-select/icons/_fabric-dark.scss +26 -26
- package/styles/multi-select/icons/_fabric.scss +26 -26
- package/styles/multi-select/icons/_highcontrast-light.scss +26 -26
- package/styles/multi-select/icons/_highcontrast.scss +26 -26
- package/styles/multi-select/icons/_material-dark.scss +26 -26
- package/styles/multi-select/icons/_material.scss +324 -324
- package/styles/multi-select/material.css +9 -0
|
@@ -1,54 +1,61 @@
|
|
|
1
|
-
// sass-lint:disable-all
|
|
2
|
-
$ddt-skin-name: 'material-dark' !default;
|
|
3
|
-
$ddt-box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 0px rgba(0, 0, 0, 0.14), 0 3px 14px 0px rgba(0, 0, 0, 0.12) !default;
|
|
4
|
-
$ddt-
|
|
5
|
-
$ddt-close-icon-min-height:
|
|
6
|
-
$ddt-close-icon-
|
|
7
|
-
$ddt-close-icon-width:
|
|
8
|
-
$ddt-close-icon-
|
|
9
|
-
$ddt-
|
|
10
|
-
$ddt-
|
|
11
|
-
$ddt-
|
|
12
|
-
$ddt-
|
|
13
|
-
$ddt-
|
|
14
|
-
$ddt-
|
|
15
|
-
$ddt-
|
|
16
|
-
$ddt-
|
|
17
|
-
$ddt-
|
|
18
|
-
$ddt-
|
|
19
|
-
$ddt-
|
|
20
|
-
$ddt-
|
|
21
|
-
$ddt-
|
|
22
|
-
$ddt-
|
|
23
|
-
$ddt-
|
|
24
|
-
$ddt-
|
|
25
|
-
$ddt-chip-
|
|
26
|
-
$ddt-chip-
|
|
27
|
-
$ddt-chip-height:
|
|
28
|
-
$ddt-chip-
|
|
29
|
-
$ddt-chip-
|
|
30
|
-
$ddt-chip-
|
|
31
|
-
$ddt-chip-close-
|
|
32
|
-
$ddt-chip-
|
|
33
|
-
$ddt-last-chip-right-margin:
|
|
34
|
-
$ddt-last-chip-bigger-right-margin:
|
|
35
|
-
$ddt-select-all-height: 36px !default;
|
|
36
|
-
$ddt-select-all-checkbox-margin: 10px !default;
|
|
37
|
-
$ddt-select-all-text-indent:
|
|
38
|
-
$ddt-select-all-bigger-text-indent:
|
|
39
|
-
$ddt-select-all-text-font-size: 14px !default;
|
|
40
|
-
$ddt-popup-reorder-border: rgba($grey-light-font, .12) !default;
|
|
41
|
-
$ddt-treeview-padding: 0 8px !default;
|
|
42
|
-
$ddt-treeview-fullrow-height: 36px !default;
|
|
43
|
-
$ddt-treeview-fullrow-bigger-height: 44px !default;
|
|
44
|
-
$ddt-treeview-content-padding-top: 2px !default;
|
|
45
|
-
$ddt-treeview-content-padding-bottom: 2px !default;
|
|
46
|
-
$ddt-popup-background-color: $grey-800 !default;
|
|
47
|
-
$ddt-popup-border-color: transparent !default;
|
|
48
|
-
$ddt-chip-close: rgba($grey-dark-font, .7) !default;
|
|
49
|
-
$ddt-chip-font-color: $grey-dark-font !default;
|
|
50
|
-
$ddt-chip-hover-bg-color: rgba($grey-white, .1) !default;
|
|
51
|
-
$ddt-chip-hover-font-color: $grey-dark-font !default;
|
|
52
|
-
$ddt-nodata-font-color: rgba($grey-dark-font, .7) !default;
|
|
53
|
-
$ddt-select-all-font-color: $grey-dark-font !default;
|
|
54
|
-
$ddt-icon-bg-color: $shadow !default;
|
|
1
|
+
// sass-lint:disable-all
|
|
2
|
+
$ddt-skin-name: 'material-dark' !default;
|
|
3
|
+
$ddt-box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 0px rgba(0, 0, 0, 0.14), 0 3px 14px 0px rgba(0, 0, 0, 0.12) !default;
|
|
4
|
+
$ddt-close-icon-min-height: 22px !default;
|
|
5
|
+
$ddt-close-icon-bigger-min-height: 26px !default;
|
|
6
|
+
$ddt-close-icon-width: 26px !default;
|
|
7
|
+
$ddt-close-icon-bigger-width: 32px !default;
|
|
8
|
+
$ddt-close-icon-bottom: 2px !default;
|
|
9
|
+
$ddt-spin-icon-margin: inherit !default;
|
|
10
|
+
$ddt-dd-icon-bottom: 2px !default;
|
|
11
|
+
$ddt-dd-icon-bigger-bottom: 3px !default;
|
|
12
|
+
$ddt-dd-icon-width: 18px !default;
|
|
13
|
+
$ddt-dd-icon-bigger-width: 20px !default;
|
|
14
|
+
$ddt-rtl-close-left: -7px !default;
|
|
15
|
+
$ddt-chip-margin: 3px 1px !default;
|
|
16
|
+
$ddt-chip-padding: 0 4px 0 4px !default;
|
|
17
|
+
$ddt-chip-bg-color: $grey-800 !default;
|
|
18
|
+
$ddt-list-filter-text-indent: 8px 16px 8px !default;
|
|
19
|
+
$ddt-filter-box-shadow-color: rgba(0, 0, 0, .3) !default;
|
|
20
|
+
$ddt-filter-border: 0 !default;
|
|
21
|
+
$ddt-filter-top-border: 0 !default;
|
|
22
|
+
$ddt-filter-padding: 0 !default;
|
|
23
|
+
$ddt-filter-box-shadow: 0 1.5px 5px -2px $ddt-filter-box-shadow-color !default;
|
|
24
|
+
$ddt-filter-background-color: $grey-100 !default;
|
|
25
|
+
$ddt-chip-radius: 16px !default;
|
|
26
|
+
$ddt-chip-height: 24px !default;
|
|
27
|
+
$ddt-chip-bigger-height: 31px !default;
|
|
28
|
+
$ddt-chip-content-padding: 0 4px 0 4px !default;
|
|
29
|
+
$ddt-chip-close-font: 16px !default;
|
|
30
|
+
$ddt-chip-close-height: 16px !default;
|
|
31
|
+
$ddt-chip-close-width: 16px !default;
|
|
32
|
+
$ddt-chip-icon-line-height: 16px !default;
|
|
33
|
+
$ddt-last-chip-right-margin: 45px !default;
|
|
34
|
+
$ddt-last-chip-bigger-right-margin: 52px !default;
|
|
35
|
+
$ddt-select-all-height: 36px !default;
|
|
36
|
+
$ddt-select-all-checkbox-margin: 10px !default;
|
|
37
|
+
$ddt-select-all-text-indent: 38px !default;
|
|
38
|
+
$ddt-select-all-bigger-text-indent: 43px !default;
|
|
39
|
+
$ddt-select-all-text-font-size: 14px !default;
|
|
40
|
+
$ddt-popup-reorder-border: rgba($grey-light-font, .12) !default;
|
|
41
|
+
$ddt-treeview-padding: 0 8px !default;
|
|
42
|
+
$ddt-treeview-fullrow-height: 36px !default;
|
|
43
|
+
$ddt-treeview-fullrow-bigger-height: 44px !default;
|
|
44
|
+
$ddt-treeview-content-padding-top: 2px !default;
|
|
45
|
+
$ddt-treeview-content-padding-bottom: 2px !default;
|
|
46
|
+
$ddt-popup-background-color: $grey-800 !default;
|
|
47
|
+
$ddt-popup-border-color: transparent !default;
|
|
48
|
+
$ddt-chip-close: rgba($grey-dark-font, .7) !default;
|
|
49
|
+
$ddt-chip-font-color: $grey-dark-font !default;
|
|
50
|
+
$ddt-chip-hover-bg-color: rgba($grey-white, .1) !default;
|
|
51
|
+
$ddt-chip-hover-font-color: $grey-dark-font !default;
|
|
52
|
+
$ddt-nodata-font-color: rgba($grey-dark-font, .7) !default;
|
|
53
|
+
$ddt-select-all-font-color: $grey-dark-font !default;
|
|
54
|
+
$ddt-icon-bg-color: $shadow !default;
|
|
55
|
+
$ddt-chip-width: calc(100% - 2px) !default;
|
|
56
|
+
$ddt-chip-ddi-width: calc(100% - 19px) !default;
|
|
57
|
+
$ddt-chip-ci-width: calc(100% - 27px) !default;
|
|
58
|
+
$ddt-chip-ddi-ci-width: calc(100% - 45px) !default;
|
|
59
|
+
$ddt-big-chip-ddi-width: calc(100% - 21px) !default;
|
|
60
|
+
$ddt-big-chip-ci-width: calc(100% - 33px) !default;
|
|
61
|
+
$ddt-big-chip-ddi-ci-width: calc(100% - 53px) !default;
|
|
@@ -1,54 +1,61 @@
|
|
|
1
|
-
// sass-lint:disable-all
|
|
2
|
-
$ddt-skin-name: 'material' !default;
|
|
3
|
-
$ddt-box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 0px rgba(0, 0, 0, 0.14), 0 3px 14px 0px rgba(0, 0, 0, 0.12) !default;
|
|
4
|
-
$ddt-
|
|
5
|
-
$ddt-close-icon-min-height:
|
|
6
|
-
$ddt-close-icon-
|
|
7
|
-
$ddt-close-icon-width:
|
|
8
|
-
$ddt-close-icon-
|
|
9
|
-
$ddt-
|
|
10
|
-
$ddt-
|
|
11
|
-
$ddt-
|
|
12
|
-
$ddt-
|
|
13
|
-
$ddt-
|
|
14
|
-
$ddt-
|
|
15
|
-
$ddt-
|
|
16
|
-
$ddt-
|
|
17
|
-
$ddt-
|
|
18
|
-
$ddt-
|
|
19
|
-
$ddt-
|
|
20
|
-
$ddt-
|
|
21
|
-
$ddt-rtl-close-left: -7px !default;
|
|
22
|
-
$ddt-chip-margin:
|
|
23
|
-
$ddt-chip-padding: 0 4px 0
|
|
24
|
-
$ddt-chip-
|
|
25
|
-
$ddt-chip-
|
|
26
|
-
$ddt-chip-
|
|
27
|
-
$ddt-chip-height:
|
|
28
|
-
$ddt-chip-
|
|
29
|
-
$ddt-chip-
|
|
30
|
-
$ddt-chip-
|
|
31
|
-
$ddt-chip-close-
|
|
32
|
-
$ddt-chip-
|
|
33
|
-
$ddt-last-chip-right-margin:
|
|
34
|
-
$ddt-last-chip-bigger-right-margin:
|
|
35
|
-
$ddt-select-all-height: 36px !default;
|
|
36
|
-
$ddt-select-all-checkbox-margin: 10px !default;
|
|
37
|
-
$ddt-select-all-text-indent:
|
|
38
|
-
$ddt-select-all-bigger-text-indent:
|
|
39
|
-
$ddt-select-all-text-font-size: 14px !default;
|
|
40
|
-
$ddt-popup-reorder-border: rgba($grey-light-font, .12) !default;
|
|
41
|
-
$ddt-treeview-padding: 0 8px !default;
|
|
42
|
-
$ddt-treeview-fullrow-height: 36px !default;
|
|
43
|
-
$ddt-treeview-fullrow-bigger-height: 44px !default;
|
|
44
|
-
$ddt-treeview-content-padding-top: 2px !default;
|
|
45
|
-
$ddt-treeview-content-padding-bottom: 2px !default;
|
|
46
|
-
$ddt-popup-background-color: $grey-white !default;
|
|
47
|
-
$ddt-popup-border-color: transparent !default;
|
|
48
|
-
$ddt-chip-close: rgba($grey-light-font, .54) !default;
|
|
49
|
-
$ddt-chip-font-color: rgba($grey-light-font, .87) !default;
|
|
50
|
-
$ddt-chip-hover-bg-color: darken($grey-300, 4%) !default;;
|
|
51
|
-
$ddt-chip-hover-font-color: rgba($grey-light-font, .87) !default;
|
|
52
|
-
$ddt-nodata-font-color: $grey-black !default;
|
|
53
|
-
$ddt-select-all-font-color: rgba($grey-light-font, .87) !default;
|
|
54
|
-
$ddt-icon-bg-color: $grey-white !default;
|
|
1
|
+
// sass-lint:disable-all
|
|
2
|
+
$ddt-skin-name: 'material' !default;
|
|
3
|
+
$ddt-box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 0px rgba(0, 0, 0, 0.14), 0 3px 14px 0px rgba(0, 0, 0, 0.12) !default;
|
|
4
|
+
$ddt-close-icon-min-height: 22px !default;
|
|
5
|
+
$ddt-close-icon-bigger-min-height: 26px !default;
|
|
6
|
+
$ddt-close-icon-width: 26px !default;
|
|
7
|
+
$ddt-close-icon-bigger-width: 32px !default;
|
|
8
|
+
$ddt-close-icon-bottom: 2px !default;
|
|
9
|
+
$ddt-spin-icon-margin: inherit !default;
|
|
10
|
+
$ddt-dd-icon-bottom: 2px !default;
|
|
11
|
+
$ddt-dd-icon-bigger-bottom: 3px !default;
|
|
12
|
+
$ddt-dd-icon-width: 18px !default;
|
|
13
|
+
$ddt-dd-icon-bigger-width: 20px !default;
|
|
14
|
+
$ddt-filter-box-shadow-color: rgba(0, 0, 0, .3) !default;
|
|
15
|
+
$ddt-filter-border: 0 !default;
|
|
16
|
+
$ddt-filter-top-border: 0 !default;
|
|
17
|
+
$ddt-filter-padding: 0 !default;
|
|
18
|
+
$ddt-filter-box-shadow: 0 1.5px 5px -2px $ddt-filter-box-shadow-color !default;
|
|
19
|
+
$ddt-filter-background-color: $grey-100 !default;
|
|
20
|
+
$ddt-list-filter-text-indent: 8px 16px 8px !default;
|
|
21
|
+
$ddt-rtl-close-left: -7px !default;
|
|
22
|
+
$ddt-chip-margin: 3px 1px !default;
|
|
23
|
+
$ddt-chip-padding: 0 4px 0 4px !default;
|
|
24
|
+
$ddt-chip-bg-color: $grey-200 !default;
|
|
25
|
+
$ddt-chip-radius: 16px !default;
|
|
26
|
+
$ddt-chip-height: 24px !default;
|
|
27
|
+
$ddt-chip-bigger-height: 31px !default;
|
|
28
|
+
$ddt-chip-content-padding: 0 4px 0 4px !default;
|
|
29
|
+
$ddt-chip-close-font: 16px !default;
|
|
30
|
+
$ddt-chip-close-height: 16px !default;
|
|
31
|
+
$ddt-chip-close-width: 16px !default;
|
|
32
|
+
$ddt-chip-icon-line-height: 16px !default;
|
|
33
|
+
$ddt-last-chip-right-margin: 45px !default;
|
|
34
|
+
$ddt-last-chip-bigger-right-margin: 52px !default;
|
|
35
|
+
$ddt-select-all-height: 36px !default;
|
|
36
|
+
$ddt-select-all-checkbox-margin: 10px !default;
|
|
37
|
+
$ddt-select-all-text-indent: 38px !default;
|
|
38
|
+
$ddt-select-all-bigger-text-indent: 43px !default;
|
|
39
|
+
$ddt-select-all-text-font-size: 14px !default;
|
|
40
|
+
$ddt-popup-reorder-border: rgba($grey-light-font, .12) !default;
|
|
41
|
+
$ddt-treeview-padding: 0 8px !default;
|
|
42
|
+
$ddt-treeview-fullrow-height: 36px !default;
|
|
43
|
+
$ddt-treeview-fullrow-bigger-height: 44px !default;
|
|
44
|
+
$ddt-treeview-content-padding-top: 2px !default;
|
|
45
|
+
$ddt-treeview-content-padding-bottom: 2px !default;
|
|
46
|
+
$ddt-popup-background-color: $grey-white !default;
|
|
47
|
+
$ddt-popup-border-color: transparent !default;
|
|
48
|
+
$ddt-chip-close: rgba($grey-light-font, .54) !default;
|
|
49
|
+
$ddt-chip-font-color: rgba($grey-light-font, .87) !default;
|
|
50
|
+
$ddt-chip-hover-bg-color: darken($grey-300, 4%) !default;;
|
|
51
|
+
$ddt-chip-hover-font-color: rgba($grey-light-font, .87) !default;
|
|
52
|
+
$ddt-nodata-font-color: $grey-black !default;
|
|
53
|
+
$ddt-select-all-font-color: rgba($grey-light-font, .87) !default;
|
|
54
|
+
$ddt-icon-bg-color: $grey-white !default;
|
|
55
|
+
$ddt-chip-width: calc(100% - 2px) !default;
|
|
56
|
+
$ddt-chip-ddi-width: calc(100% - 19px) !default;
|
|
57
|
+
$ddt-chip-ci-width: calc(100% - 27px) !default;
|
|
58
|
+
$ddt-chip-ddi-ci-width: calc(100% - 45px) !default;
|
|
59
|
+
$ddt-big-chip-ddi-width: calc(100% - 21px) !default;
|
|
60
|
+
$ddt-big-chip-ci-width: calc(100% - 33px) !default;
|
|
61
|
+
$ddt-big-chip-ddi-ci-width: calc(100% - 53px) !default;
|
|
@@ -1,63 +1,68 @@
|
|
|
1
|
-
@include export-module('dropdowntree-theme') {
|
|
2
|
-
|
|
3
|
-
#{&}.e-ddt {
|
|
4
|
-
|
|
5
|
-
.e-chips {
|
|
6
|
-
background-color: $ddt-chip-bg-color;
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
1
|
+
@include export-module('dropdowntree-theme') {
|
|
2
|
+
|
|
3
|
+
#{&}.e-ddt {
|
|
4
|
+
|
|
5
|
+
.e-chips {
|
|
6
|
+
background-color: $ddt-chip-bg-color;
|
|
7
|
+
|
|
8
|
+
.e-chips-close::before {
|
|
9
|
+
color: $ddt-chip-close;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
>.e-chipcontent {
|
|
13
|
+
color: $ddt-chip-font-color;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
&:hover {
|
|
17
|
+
background-color: $ddt-chip-hover-bg-color;
|
|
18
|
+
|
|
19
|
+
@if $ddt-skin-name == 'highcontrast' {
|
|
20
|
+
.e-chips-close::before {
|
|
21
|
+
color: $ddt-chip-hover-font-color;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
>.e-chipcontent {
|
|
26
|
+
color: $ddt-chip-hover-font-color;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
&.e-input-group.e-control-wrapper,
|
|
32
|
+
&.e-float-input.e-control-wrapper {
|
|
33
|
+
.e-clear-icon {
|
|
34
|
+
background-color: $ddt-icon-bg-color;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.e-input-group-icon.e-ddt-icon {
|
|
38
|
+
@if $ddt-skin-name == 'material' or $ddt-skin-name == 'material-dark' {
|
|
39
|
+
background-color: $ddt-icon-bg-color;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
&.e-input-group.e-control-wrapper .e-input[readonly],
|
|
45
|
+
&.e-float-input.e-control-wrapper input[readonly] {
|
|
46
|
+
@if $ddt-skin-name == 'bootstrap4' {
|
|
47
|
+
background: $ddt-readonly-input-bg-color;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
&.e-popup {
|
|
52
|
+
background: $ddt-popup-background-color;
|
|
53
|
+
border-color: $ddt-popup-border-color;
|
|
54
|
+
|
|
55
|
+
.e-popup-content.e-no-data {
|
|
56
|
+
color: $ddt-nodata-font-color;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.e-selectall-parent {
|
|
60
|
+
border-bottom-color: $ddt-popup-reorder-border;
|
|
61
|
+
|
|
62
|
+
.e-all-text {
|
|
63
|
+
color: $ddt-select-all-font-color;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
@@ -60,13 +60,13 @@
|
|
|
60
60
|
outline: none;
|
|
61
61
|
}
|
|
62
62
|
|
|
63
|
-
.e-ddt
|
|
64
|
-
transform: rotate(
|
|
63
|
+
.e-ddt .e-ddt-icon::before {
|
|
64
|
+
transform: rotate(0deg);
|
|
65
65
|
transition: transform 300ms ease;
|
|
66
66
|
}
|
|
67
67
|
|
|
68
|
-
.e-ddt .e-ddt-icon::before {
|
|
69
|
-
transform: rotate(
|
|
68
|
+
.e-ddt.e-icon-anim .e-ddt-icon::before {
|
|
69
|
+
transform: rotate(180deg);
|
|
70
70
|
transition: transform 300ms ease;
|
|
71
71
|
}
|
|
72
72
|
|
|
@@ -89,10 +89,6 @@
|
|
|
89
89
|
display: none;
|
|
90
90
|
}
|
|
91
91
|
|
|
92
|
-
.e-ddt.e-input-group.e-control-wrapper.e-input-focus input ~ label.e-float-text, .e-ddt.e-float-input.e-control-wrapper.e-input-focus input ~ label.e-float-text {
|
|
93
|
-
top: 16px;
|
|
94
|
-
}
|
|
95
|
-
|
|
96
92
|
.e-ddt.e-input-group.e-control-wrapper.e-show-chip .e-clear-icon, .e-ddt.e-float-input.e-control-wrapper.e-show-chip .e-clear-icon {
|
|
97
93
|
bottom: 0;
|
|
98
94
|
position: absolute;
|
|
@@ -129,19 +125,22 @@
|
|
|
129
125
|
|
|
130
126
|
.e-ddt .e-chips-wrapper .e-chips-close::before {
|
|
131
127
|
font-size: 10px;
|
|
128
|
+
vertical-align: middle;
|
|
132
129
|
}
|
|
133
130
|
|
|
134
131
|
.e-ddt .e-chips-wrapper .e-chips {
|
|
135
132
|
-ms-flex-align: center;
|
|
136
133
|
align-items: center;
|
|
134
|
+
border-radius: 4px;
|
|
135
|
+
box-sizing: border-box;
|
|
137
136
|
display: -ms-inline-flexbox;
|
|
138
137
|
display: inline-flex;
|
|
139
138
|
float: left;
|
|
140
139
|
height: 28px;
|
|
141
140
|
margin: 2px 1px;
|
|
142
|
-
max-width: 100
|
|
141
|
+
max-width: calc(100% - 2px);
|
|
143
142
|
overflow: hidden;
|
|
144
|
-
padding: 0
|
|
143
|
+
padding: 0;
|
|
145
144
|
text-overflow: ellipsis;
|
|
146
145
|
white-space: nowrap;
|
|
147
146
|
}
|
|
@@ -149,22 +148,25 @@
|
|
|
149
148
|
.e-ddt .e-chips-wrapper .e-chips > .e-chipcontent {
|
|
150
149
|
max-width: 100%;
|
|
151
150
|
overflow: hidden;
|
|
152
|
-
padding: 0 10px 0
|
|
151
|
+
padding: 0 10px 0 10px;
|
|
153
152
|
text-indent: 0;
|
|
154
153
|
text-overflow: ellipsis;
|
|
155
154
|
white-space: nowrap;
|
|
156
155
|
}
|
|
157
156
|
|
|
158
|
-
.e-ddt.e-show-
|
|
159
|
-
margin-right:
|
|
157
|
+
.e-ddt.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
158
|
+
margin-right: 32px;
|
|
159
|
+
max-width: calc(100% - 33px);
|
|
160
160
|
}
|
|
161
161
|
|
|
162
|
-
.e-ddt.e-show-clear .e-chips-wrapper .e-chips
|
|
162
|
+
.e-ddt.e-show-clear .e-chips-wrapper .e-chips:last-child {
|
|
163
163
|
margin-right: 32px;
|
|
164
|
+
max-width: calc(100% - 33px);
|
|
164
165
|
}
|
|
165
166
|
|
|
166
|
-
.e-ddt.e-show-dd-icon .e-chips-wrapper .e-chips
|
|
167
|
-
margin-right:
|
|
167
|
+
.e-ddt.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
168
|
+
margin-right: 64px;
|
|
169
|
+
max-width: calc(100% - 65px);
|
|
168
170
|
}
|
|
169
171
|
|
|
170
172
|
.e-ddt input[readonly],
|
|
@@ -180,9 +182,8 @@
|
|
|
180
182
|
}
|
|
181
183
|
|
|
182
184
|
.e-ddt.e-popup {
|
|
183
|
-
border: 1px solid;
|
|
185
|
+
border: 1px solid #414141;
|
|
184
186
|
box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 0px rgba(0, 0, 0, 0.14), 0 3px 14px 0px rgba(0, 0, 0, 0.12);
|
|
185
|
-
margin-top: 2px;
|
|
186
187
|
position: absolute;
|
|
187
188
|
}
|
|
188
189
|
|
|
@@ -193,7 +194,7 @@
|
|
|
193
194
|
line-height: 36px;
|
|
194
195
|
overflow: hidden;
|
|
195
196
|
position: relative;
|
|
196
|
-
text-indent:
|
|
197
|
+
text-indent: 38px;
|
|
197
198
|
white-space: nowrap;
|
|
198
199
|
width: 100%;
|
|
199
200
|
}
|
|
@@ -203,7 +204,6 @@
|
|
|
203
204
|
}
|
|
204
205
|
|
|
205
206
|
.e-ddt.e-popup .e-selectall-parent .e-checkbox-wrapper {
|
|
206
|
-
margin-right: 10px;
|
|
207
207
|
position: relative;
|
|
208
208
|
text-indent: 0;
|
|
209
209
|
}
|
|
@@ -211,10 +211,27 @@
|
|
|
211
211
|
.e-ddt.e-popup .e-selectall-parent .e-all-text {
|
|
212
212
|
font-family: inherit;
|
|
213
213
|
font-size: 14px;
|
|
214
|
+
margin: 10px;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.e-ddt.e-popup .e-filter-wrap .e-input,
|
|
218
|
+
.e-ddt.e-popup .e-filter-wrap .e-input:focus {
|
|
219
|
+
padding: 0 12px;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
.e-ddt.e-popup .e-filter-wrap {
|
|
223
|
+
border: #414141;
|
|
224
|
+
border-top-width: 0;
|
|
225
|
+
display: block;
|
|
226
|
+
padding: 5px 8px;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
.e-ddt.e-popup .e-filter-wrap {
|
|
230
|
+
border-bottom: 1px solid #484848;
|
|
214
231
|
}
|
|
215
232
|
|
|
216
233
|
.e-ddt.e-popup .e-filter-wrap .e-input-group {
|
|
217
|
-
|
|
234
|
+
margin-bottom: 0;
|
|
218
235
|
}
|
|
219
236
|
|
|
220
237
|
.e-ddt.e-popup .e-popup-content {
|
|
@@ -277,29 +294,26 @@
|
|
|
277
294
|
|
|
278
295
|
.e-ddt.e-rtl .e-chips-wrapper .e-chips {
|
|
279
296
|
float: right;
|
|
280
|
-
padding: 0 10px 0 0;
|
|
281
|
-
}
|
|
282
|
-
|
|
283
|
-
.e-ddt.e-rtl .e-chips-wrapper .e-chips > .e-chipcontent {
|
|
284
|
-
padding: 0 0 0 10px;
|
|
285
297
|
}
|
|
286
298
|
|
|
287
|
-
.e-ddt.e-rtl.e-show-
|
|
288
|
-
margin-left:
|
|
299
|
+
.e-ddt.e-rtl.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
300
|
+
margin-left: 32px;
|
|
289
301
|
margin-right: 1px;
|
|
290
302
|
}
|
|
291
303
|
|
|
292
|
-
.e-ddt.e-rtl.e-show-clear .e-chips-wrapper .e-chips
|
|
304
|
+
.e-ddt.e-rtl.e-show-clear .e-chips-wrapper .e-chips:last-child {
|
|
293
305
|
margin-left: 32px;
|
|
294
306
|
margin-right: 1px;
|
|
295
307
|
}
|
|
296
308
|
|
|
297
|
-
.e-ddt.e-rtl.e-show-dd-icon .e-chips-wrapper .e-chips
|
|
298
|
-
margin-left:
|
|
309
|
+
.e-ddt.e-rtl.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
310
|
+
margin-left: 64px;
|
|
299
311
|
margin-right: 1px;
|
|
300
312
|
}
|
|
301
313
|
|
|
302
|
-
.e-ddt.e-rtl.e-input-group.e-control-wrapper.e-show-chip .e-clear-icon,
|
|
314
|
+
.e-ddt.e-rtl.e-input-group.e-control-wrapper.e-show-chip .e-clear-icon,
|
|
315
|
+
.e-ddt.e-rtl.e-input-group.e-control-wrapper.e-show-chip .e-ddt-icon, .e-ddt.e-rtl.e-float-input.e-control-wrapper.e-show-chip .e-clear-icon,
|
|
316
|
+
.e-ddt.e-rtl.e-float-input.e-control-wrapper.e-show-chip .e-ddt-icon {
|
|
303
317
|
left: 0;
|
|
304
318
|
right: auto;
|
|
305
319
|
}
|
|
@@ -308,16 +322,6 @@
|
|
|
308
322
|
left: 32px;
|
|
309
323
|
}
|
|
310
324
|
|
|
311
|
-
.e-ddt.e-rtl.e-input-group.e-control-wrapper.e-show-chip .e-ddt-icon, .e-ddt.e-rtl.e-float-input.e-control-wrapper.e-show-chip .e-ddt-icon {
|
|
312
|
-
left: 0;
|
|
313
|
-
right: auto;
|
|
314
|
-
}
|
|
315
|
-
|
|
316
|
-
.e-ddt.e-rtl.e-popup .e-selectall-parent .e-checkbox-wrapper {
|
|
317
|
-
margin-left: 10px;
|
|
318
|
-
margin-right: 0;
|
|
319
|
-
}
|
|
320
|
-
|
|
321
325
|
.e-ddt.e-rtl.e-popup .e-treeview .e-list-item .e-ul {
|
|
322
326
|
padding: 0 14px 0 0;
|
|
323
327
|
}
|
|
@@ -345,24 +349,27 @@
|
|
|
345
349
|
min-height: 38px;
|
|
346
350
|
}
|
|
347
351
|
|
|
348
|
-
.e-bigger .e-ddt.e-show-
|
|
349
|
-
.e-ddt.e-bigger.e-show-
|
|
350
|
-
margin-right:
|
|
352
|
+
.e-bigger .e-ddt.e-show-dd-icon .e-chips-wrapper .e-chips:last-child,
|
|
353
|
+
.e-ddt.e-bigger.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
354
|
+
margin-right: 38px;
|
|
355
|
+
max-width: calc(100% - 39px);
|
|
351
356
|
}
|
|
352
357
|
|
|
353
|
-
.e-bigger .e-ddt.e-show-clear .e-chips-wrapper .e-chips
|
|
354
|
-
.e-ddt.e-bigger.e-show-clear .e-chips-wrapper .e-chips
|
|
358
|
+
.e-bigger .e-ddt.e-show-clear .e-chips-wrapper .e-chips:last-child,
|
|
359
|
+
.e-ddt.e-bigger.e-show-clear .e-chips-wrapper .e-chips:last-child {
|
|
355
360
|
margin-right: 38px;
|
|
361
|
+
max-width: calc(100% - 39px);
|
|
356
362
|
}
|
|
357
363
|
|
|
358
|
-
.e-bigger .e-ddt.e-show-dd-icon .e-chips-wrapper .e-chips
|
|
359
|
-
.e-ddt.e-bigger.e-show-dd-icon .e-chips-wrapper .e-chips
|
|
360
|
-
margin-right:
|
|
364
|
+
.e-bigger .e-ddt.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child,
|
|
365
|
+
.e-ddt.e-bigger.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
366
|
+
margin-right: 76px;
|
|
367
|
+
max-width: calc(100% - 77px);
|
|
361
368
|
}
|
|
362
369
|
|
|
363
370
|
.e-bigger .e-ddt.e-popup .e-selectall-parent,
|
|
364
371
|
.e-ddt.e-bigger.e-popup .e-selectall-parent {
|
|
365
|
-
text-indent:
|
|
372
|
+
text-indent: 43px;
|
|
366
373
|
}
|
|
367
374
|
|
|
368
375
|
.e-bigger .e-ddt.e-popup .e-treeview .e-fullrow,
|
|
@@ -370,21 +377,21 @@
|
|
|
370
377
|
height: 44px;
|
|
371
378
|
}
|
|
372
379
|
|
|
373
|
-
.e-bigger .e-ddt.e-rtl.e-show-
|
|
374
|
-
.e-ddt.e-bigger.e-rtl.e-show-
|
|
375
|
-
margin-left:
|
|
380
|
+
.e-bigger .e-ddt.e-rtl.e-show-dd-icon .e-chips-wrapper .e-chips:last-child,
|
|
381
|
+
.e-ddt.e-bigger.e-rtl.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
382
|
+
margin-left: 38px;
|
|
376
383
|
margin-right: 1px;
|
|
377
384
|
}
|
|
378
385
|
|
|
379
|
-
.e-bigger .e-ddt.e-rtl.e-show-clear .e-chips-wrapper .e-chips
|
|
380
|
-
.e-ddt.e-bigger.e-rtl.e-show-clear .e-chips-wrapper .e-chips
|
|
386
|
+
.e-bigger .e-ddt.e-rtl.e-show-clear .e-chips-wrapper .e-chips:last-child,
|
|
387
|
+
.e-ddt.e-bigger.e-rtl.e-show-clear .e-chips-wrapper .e-chips:last-child {
|
|
381
388
|
margin-left: 38px;
|
|
382
389
|
margin-right: 1px;
|
|
383
390
|
}
|
|
384
391
|
|
|
385
|
-
.e-bigger .e-ddt.e-rtl.e-show-dd-icon .e-chips-wrapper .e-chips
|
|
386
|
-
.e-ddt.e-bigger.e-rtl.e-show-dd-icon .e-chips-wrapper .e-chips
|
|
387
|
-
margin-left:
|
|
392
|
+
.e-bigger .e-ddt.e-rtl.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child,
|
|
393
|
+
.e-ddt.e-bigger.e-rtl.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
394
|
+
margin-left: 76px;
|
|
388
395
|
margin-right: 1px;
|
|
389
396
|
}
|
|
390
397
|
|
|
@@ -396,7 +403,6 @@
|
|
|
396
403
|
|
|
397
404
|
.e-ddt .e-chips {
|
|
398
405
|
background-color: #414141;
|
|
399
|
-
border-radius: 4px;
|
|
400
406
|
}
|
|
401
407
|
|
|
402
408
|
.e-ddt .e-chips .e-chips-close::before {
|
|
@@ -429,7 +435,7 @@
|
|
|
429
435
|
}
|
|
430
436
|
|
|
431
437
|
.e-ddt.e-popup .e-selectall-parent {
|
|
432
|
-
border-bottom:
|
|
438
|
+
border-bottom-color: #484848;
|
|
433
439
|
}
|
|
434
440
|
|
|
435
441
|
.e-ddt.e-popup .e-selectall-parent .e-all-text {
|