@syncfusion/ej2-gantt 19.3.57 → 19.4.38

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.
Files changed (34) hide show
  1. package/CHANGELOG.md +7 -1
  2. package/dist/ej2-gantt.umd.min.js +2 -2
  3. package/dist/ej2-gantt.umd.min.js.map +1 -1
  4. package/dist/es6/ej2-gantt.es2015.js +102 -46
  5. package/dist/es6/ej2-gantt.es2015.js.map +1 -1
  6. package/dist/es6/ej2-gantt.es5.js +99 -43
  7. package/dist/es6/ej2-gantt.es5.js.map +1 -1
  8. package/dist/global/ej2-gantt.min.js +2 -2
  9. package/dist/global/ej2-gantt.min.js.map +1 -1
  10. package/dist/global/index.d.ts +1 -1
  11. package/package.json +18 -18
  12. package/src/gantt/actions/context-menu.js +35 -14
  13. package/src/gantt/actions/dialog-edit.js +4 -1
  14. package/src/gantt/actions/edit.js +4 -0
  15. package/src/gantt/actions/rowdragdrop.js +2 -0
  16. package/src/gantt/actions/taskbar-edit.js +4 -1
  17. package/src/gantt/base/gantt.d.ts +15 -13
  18. package/src/gantt/base/gantt.js +30 -24
  19. package/src/gantt/base/task-processor.js +20 -3
  20. package/styles/bootstrap5-dark.css +6 -5
  21. package/styles/bootstrap5.css +6 -5
  22. package/styles/gantt/_bootstrap4-definition.scss +1 -0
  23. package/styles/gantt/_bootstrap5-definition.scss +1 -1
  24. package/styles/gantt/_fluent-definition.scss +163 -0
  25. package/styles/gantt/_layout.scss +1 -6
  26. package/styles/gantt/_theme.scss +2 -1
  27. package/styles/gantt/bootstrap5-dark.css +6 -5
  28. package/styles/gantt/bootstrap5.css +6 -5
  29. package/styles/gantt/icons/_fluent.scss +112 -0
  30. package/styles/gantt/icons/_tailwind-dark.scss +112 -112
  31. package/styles/gantt/tailwind-dark.css +1 -1
  32. package/styles/gantt/tailwind.css +1 -1
  33. package/styles/tailwind-dark.css +1 -1
  34. package/styles/tailwind.css +1 -1
@@ -0,0 +1,163 @@
1
+ // color
2
+
3
+ $gantt-header-bg-color: $content-bg-color !default;
4
+ $gantt-header-border-color: $border-light !default;
5
+ $gantt-header-color: $content-text-color !default;
6
+ $gantt-context-menu-icon-color: rgb(108, 117, 125) !default;
7
+ $gantt-grid-line-color: $border-light !default;
8
+ $gantt-label-color: $content-text-color-alt2 !default;
9
+ $gantt-content-color: $content-text-color-alt2 !default;
10
+ $holiday-background: $content-bg-color-alt1 !default;
11
+ $progress-handler-outline: $white !default;
12
+ $progress-handler-background: $content-text-color !default;
13
+ $holiday-label-color: $content-text-color-alt2 !default;
14
+ $weekend-background: $content-bg-color-alt1 !default;
15
+ $event-marker-line-color: $primary !default;
16
+ $event-marker-label-color: $warning-light !default;
17
+ $event-marker-label-font-color: $warning-dark !default;
18
+ $connector-line-color: $primary !default;
19
+ $connector-line-hover-color: $primary !default;
20
+ $connector-false-line-color: $primary !default;
21
+ $connector-point-hover-color: $icon-color !default;
22
+ $connector-point-border-color: $content-bg-color !default;
23
+ $connector-point-hover-bg-color: $icon-color-hover !default;
24
+ $connector-point-hover-border-color: $content-bg-color !default;
25
+ $gantt-line-container-cell-border-color: $border-light !default;
26
+ // sass-lint:disable-all
27
+ $gantt-unscheduled-taskbar-background: linear-gradient(to right, $primary-light, $primary 30%, $primary 70%, $primary 70%, $primary-light 100%) !default;
28
+ $gantt-unscheduled-taskbar-background-color: rgba(63,81,181, .2) !default;
29
+ $gantt-unscheduled-milestone-top-border: $content-bg-color-alt5 !default;
30
+ $gantt-unscheduled-milestone-bottom-border: $content-bg-color-alt5 !default;
31
+ $gantt-resize-gripper: rgba(249, 146, 11, .2) !default;
32
+ $gantt-child-task-bar: $primary-light !default;
33
+ $gantt-child-progress-bar: $primary !default;
34
+ $gantt-manualchild-task-bar: $success-light !default;
35
+ $gantt-manualchild-task-bar-border: 1px solid $success;
36
+ $gantt-manualchild-progress-bar: $success;
37
+ $gantt-manualparent-background-color: $content-bg-color-alt5;
38
+ $gantt-unscheduledmanualparent-background-color: linear-gradient(to right, rgba(63, 81, 181, 0.2), #989A9C 30%, #989A9C 70%, #989A9C 70%, rgba(63, 81, 181, 0.2) 100%) !default;
39
+ $gantt-unscheduled-manualtaskbar-background: linear-gradient(to right, $success-light, $success 30%, $success 70%, $success 70%, $success-light 100%) !default;
40
+ $gantt-parent-task-bar: $content-bg-color-alt4 !default;
41
+ $gantt-parent-progress-bar: $content-bg-color-alt5 !default;
42
+ $gantt-milestone-border-color: $content-bg-color-alt5 !default;
43
+ $gantt-parent-milestone-border-color: $content-bg-color-alt5 !default;
44
+ $gantt-label-font-color: $content-text-color-alt2 !default;
45
+ $gantt-task-label-font-color: $primary-text-color !default;
46
+ $gantt-tab-header-active-font-color: $primary !default;
47
+ $gantt-tab-header-font-color: $content-text-color-alt2 !default;
48
+ $gantt-edit-icon-color: $white !default;
49
+ $gantt-icons-color: $icon-color !default;
50
+ $gantt-cell-border-color: $border !default;
51
+ $gantt-dialog-active-tab-background: $transparent !default;
52
+ $gantt-dialog-tab-background: $content-bg-color-alt1 !default;
53
+ $gantt-dialog-header-font-color: $content-text-color !default;
54
+ $gantt-dialog-icon-color: $icon-color !default;
55
+ $gantt-dialog-icon-hover-color: $content-bg-color-alt1 !default;
56
+ $gantt-dialog-close-icon-hover-color: $icon-color !default;
57
+ $gantt-dialog-tab-hover-border-color: $transparent !default;
58
+ $gantt-dialog-tab-header-border-no-color: $transparent !default;
59
+ $gantt-tab-selection-indicator-color: $primary !default;
60
+ $gantt-tab-header-hover-color: $transparent !default;
61
+ $gantt-tab-header-hover-font-color: $content-text-color-alt2 !default;
62
+ $gantt-active-background: $table-bg-color-selected;
63
+ $gantt-active-color: $table-text-color-selected !default;
64
+ $gantt-table-background: $content-bg-color !default;
65
+ $gantt-baseline-color: $content-bg-color-alt5 !default;
66
+ $gantt-inactive-parent: $content-bg-color-alt4 !default;
67
+ $gantt-inactive-child: $primary-light !default;
68
+ $gantt-connected-task: lighten($primary, 20%) !default;
69
+ $gantt-active-parent-task: lighten($black, 10%) !default;
70
+ $gantt-uptail-border: $border-light !default;
71
+ $gantt-gridpopup-span: $black !default;
72
+ $gantt-active-parent-shadow: rgba($gantt-gridpopup-span, 0.5) !default;
73
+ $gantt-left-resize-gripper-border: $content-bg-color-alt4 !default;
74
+ $gantt-left-resize-gripper-color: $primary-text-color !default;
75
+ $gantt-drag-clone-bg-color: $content-bg-color !default;
76
+ $gantt-drag-clone-border-color: $border-light !default;
77
+ $gantt-drag-clone-color: $content-text-color !default;
78
+ $gantt-content-font-color: $content-text-color !default;
79
+ $gantt-table-background-color: $content-bg-color !default;
80
+ $gantt-clone-dragdrop-bg-color: $gantt-table-background-color !default;
81
+ $error-elem-color: $danger;
82
+ $gantt-active-container-border: $border !default;
83
+ $rangecontainer-border-color: $border-warning;
84
+
85
+ // Layout
86
+ $holiday-label-font-size: 13px !default;
87
+ $event-marker-label-font-size: 14px !default;
88
+ $event-marker-label-padding: 3px 12px !default;
89
+ $event-marker-label-height: 28px !default;
90
+ $event-marker-label-arrow-top: 56px !default;
91
+ $gantt-connector-point-margin-top: 7.5px !default;
92
+ $gantt-connector-point-margin-radius: 4px !default;
93
+ $gantt-connector-point-left: 8px !default;
94
+ $gantt-unscheduled-taskbar-left: 3px !default;
95
+ $gantt-unscheduled-taskbar-right-radius: 2px !default;
96
+ $gantt-label-size: 13px !default;
97
+ $gantt-header-border-spacing: 0 !default;
98
+ // sass-lint:disable-all
99
+ $gantt-child-progress-bar-border: 0px !default;
100
+ $gantt-child-task-bar-border: 1px solid $primary !default;
101
+ $gantt-manualchild-progress-bar-border: 0px !default;
102
+ $gantt-parent-progress-bar-border: 0px !default;
103
+ $gantt-parent-task-bar-border: 1px solid $border-dark !default;
104
+ $gantt-progress-bar-left-radius: 2px !default;
105
+ $gantt-unscheduled-taskbar-left-radius: 0px !default;
106
+ $gantt-connector-point-right-margin-left: 2px !default;
107
+ $gantt-right-label-container-margin-left: 16px !default;
108
+ $gantt-task-label-font-size: 12px !default;
109
+ $gantt-label-font-size: 14px !default;
110
+ $gantt-bigger-label-font-size: 16px !default;
111
+ $gantt-unscheduled-taskbar-border: 0px !default;
112
+ $gantt-unscheduled-taskbar-border-radius: 4px !default;
113
+ $gantt-dialog-general-height: 241px !default;
114
+ $gantt-dialog-edit-form-odd-padding: 16px 18px 0 18px !default;
115
+ $gantt-dialog-edit-form-even-padding: 16px 16px 0 0 !default;
116
+ $gantt-dialog-edit-form-scroll-padding: 16px 16px 0 0 !default;
117
+ $gantt-dialog-dependent-height: 161px !default;
118
+ $gantt-dialog-resource-height: 202px !default;
119
+ $gantt-dialog-rte-height: 241px !default;
120
+ $gantt-dialog-rte-content-height: 200px !default;
121
+ $gantt-dialog-padding-bottom: 20px !default;
122
+ $gantt-dialog-tab-padding-left: 12px !default;
123
+ $gantt-tab-header-border-width: 1px;
124
+ $gantt-depedent-div-border-bottom: 0px !default;
125
+ $gantt-resource-div-border-bottom: 0px !default;
126
+ $gantt-richtext-border-bottom: 0px !default;
127
+ $gantt-richtext-content-border-bottom: 0px !default;
128
+ $gantt-connector-point-width: 12px !default;
129
+ $gantt-connector-point-height: 8px !default;
130
+ $gantt-connector-left-point-left: -12px !default;
131
+ $gantt-parent-progress-bar-border-radius: 4px !default;
132
+ $gantt-timeline-top-headercell-font-size: 14px !default;
133
+ $gantt-timeline-top-headercell-font-weight: bold !default;
134
+ $gantt-active-color-opacity: 0.9 !default;
135
+ $gantt-child-progress-margin-left: 0.5px !default;
136
+ $gantt-timeline-single-header-outer-div: 45px !default;
137
+ $gantt-chart-timeline-single-header-outer-div: 46px !default;
138
+ $gantt-header-border-height: 64px !default;
139
+ $gantt-treegrid-header-border-height: 63px !default;
140
+ $gantt-header-border-bottom-width: 1px !default;
141
+ $gantt-timeline-top-header-cell-height: 33px !default;
142
+ $gantt-header-border-radius: 0px !default;
143
+ $gantt-splitter-border-top-right-radius: 0px !default;
144
+ $gantt-splitter-border-top-left-radius: 0px !default;
145
+ $gantt-dialog-general-padding-bottom: 12px !default;
146
+ $gantt-filter-menu-value-div-padding: 16px !default;
147
+ $gantt-dialog-tab-hover-border-bottom: 0px !default;
148
+ $gantt-dialog-tab-hover-border-bottom-radius: 0px !default;
149
+ $gantt-dialog-border-radius: 3px 3px 0px 0px !default;
150
+ $event-marker-line-height: 1.5 !default;
151
+ $gantt-clone-padding: 2px 8px 1px !default;
152
+ $gantt-bigger-clone-padding: $gantt-clone-padding !default;
153
+ $gantt-group-clone-box-shadow: 0 0 !default;
154
+ $gantt-header-font-size: 12px !default;
155
+ $gantt-header-font-weight: bold !default;
156
+ $gantt-drag-clone-font-weight: $gantt-header-font-weight !default;
157
+ $gantt-drag-clone-opacity: 1 !default;
158
+ $gantt-group-clone-text-align: center !default;
159
+ $gantt-clone-prop-box-shadow: 0 6px 12px rgba($black, .175) !default;
160
+ $gantt-border-size: 1px !default;
161
+ $grid-active-container-border: 0 0 0 1px $border inset !default;
162
+ $gantt-collapse-progress-width: 0px !important;
163
+ $gantt-range-container-arc-radius: 2px !default;
@@ -647,12 +647,7 @@
647
647
  }
648
648
 
649
649
  .e-connector-line-z-index {
650
- @if $skin-name == 'tailwind' or $skin-name == 'tailwind-dark' {
651
- z-index: 2;
652
- }
653
- @else {
654
- z-index: 1;
655
- }
650
+ z-index: 1;
656
651
  }
657
652
 
658
653
  .e-connector-line-hover {
@@ -1,4 +1,5 @@
1
- @include export-module('gantt-theme') {
1
+ 
2
+ @include export-module('gantt-theme') {
2
3
  /*! Gantt theme */
3
4
 
4
5
  .e-gantt {
@@ -62,7 +62,6 @@
62
62
  .e-input-group.e-control-wrapper.e-ddl .e-input[readonly],
63
63
  .e-float-input.e-control-wrapper.e-ddl input[readonly] {
64
64
  background: transparent;
65
- color: inherit;
66
65
  }
67
66
 
68
67
  .e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
@@ -181,6 +180,8 @@
181
180
  border-left-width: 0;
182
181
  }
183
182
 
183
+ /*! Toolbar's bootstrap5 theme wise override definitions and variables */
184
+ /*! Tab's bootstrap5 theme wise override definitions and variables */
184
185
  /*! Horizontal Tab */
185
186
  /*! Bootstrap specific themes definition's */
186
187
  /*! Vertical Tab */
@@ -1608,21 +1609,21 @@
1608
1609
  .e-gantt .e-gantt-chart .e-left-label-temp-container {
1609
1610
  color: #ced4da;
1610
1611
  font-size: 14px;
1611
- padding-right: 16px;
1612
+ padding-right: 25px;
1612
1613
  }
1613
1614
 
1614
1615
  .e-gantt .e-gantt-chart .e-right-label-temp-container {
1615
1616
  color: #ced4da;
1616
1617
  font-size: 14px;
1617
- margin-left: 16px;
1618
+ margin-left: 25px;
1618
1619
  }
1619
1620
 
1620
1621
  .e-gantt .e-gantt-chart .e-right-label-container {
1621
- margin-left: 16px;
1622
+ margin-left: 25px;
1622
1623
  }
1623
1624
 
1624
1625
  .e-gantt .e-gantt-chart .e-left-label-container {
1625
- padding-right: 16px;
1626
+ padding-right: 25px;
1626
1627
  }
1627
1628
 
1628
1629
  .e-gantt .e-gantt-chart .e-connectorpoint-right {
@@ -62,7 +62,6 @@
62
62
  .e-input-group.e-control-wrapper.e-ddl .e-input[readonly],
63
63
  .e-float-input.e-control-wrapper.e-ddl input[readonly] {
64
64
  background: transparent;
65
- color: inherit;
66
65
  }
67
66
 
68
67
  .e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
@@ -181,6 +180,8 @@
181
180
  border-left-width: 0;
182
181
  }
183
182
 
183
+ /*! Toolbar's bootstrap5 theme wise override definitions and variables */
184
+ /*! Tab's bootstrap5 theme wise override definitions and variables */
184
185
  /*! Horizontal Tab */
185
186
  /*! Bootstrap specific themes definition's */
186
187
  /*! Vertical Tab */
@@ -1608,21 +1609,21 @@
1608
1609
  .e-gantt .e-gantt-chart .e-left-label-temp-container {
1609
1610
  color: #495057;
1610
1611
  font-size: 14px;
1611
- padding-right: 16px;
1612
+ padding-right: 25px;
1612
1613
  }
1613
1614
 
1614
1615
  .e-gantt .e-gantt-chart .e-right-label-temp-container {
1615
1616
  color: #495057;
1616
1617
  font-size: 14px;
1617
- margin-left: 16px;
1618
+ margin-left: 25px;
1618
1619
  }
1619
1620
 
1620
1621
  .e-gantt .e-gantt-chart .e-right-label-container {
1621
- margin-left: 16px;
1622
+ margin-left: 25px;
1622
1623
  }
1623
1624
 
1624
1625
  .e-gantt .e-gantt-chart .e-left-label-container {
1625
- padding-right: 16px;
1626
+ padding-right: 25px;
1626
1627
  }
1627
1628
 
1628
1629
  .e-gantt .e-gantt-chart .e-connectorpoint-right {
@@ -0,0 +1,112 @@
1
+ @include export-module('gantt-fluent-icons') {
2
+ #{&}.e-gantt {
3
+ .e-add::before {
4
+ content: '\e805';
5
+ }
6
+
7
+ .e-edit::before {
8
+ content: '\e730';
9
+ }
10
+
11
+ .e-delete::before {
12
+ content: '\e820';
13
+ }
14
+
15
+ .e-cancel::before {
16
+ content: '\e7e7';
17
+ }
18
+
19
+ .e-save::before {
20
+ content: '\e7c8';
21
+ }
22
+
23
+ .e-update::before {
24
+ content: '\e7c8';
25
+ }
26
+
27
+ .e-search-icon::before {
28
+ content: '\e754';
29
+ }
30
+
31
+ .e-cancel-icon::before {
32
+ content: '\e7e7';
33
+ }
34
+
35
+ .e-notes-info::before {
36
+ content: '\e72d';
37
+ }
38
+
39
+ .e-left-resize-gripper::before,
40
+ .e-right-resize-gripper::before {
41
+ content: '\e770';
42
+ }
43
+
44
+ .e-expandall::before {
45
+ content: '\e7c9';
46
+ }
47
+
48
+ .e-collapseall::before {
49
+ content: '\e80f';
50
+ }
51
+
52
+ .e-prevtimespan::before {
53
+ content: '\e773';
54
+ }
55
+
56
+ .e-nexttimespan::before {
57
+ content: '\e7f9';
58
+ }
59
+
60
+ .e-zoomin::before {
61
+ content: '\e795';
62
+ }
63
+
64
+ .e-zoomout::before {
65
+ content: '\e825';
66
+ }
67
+
68
+ .e-zoomtofit::before {
69
+ content: '\e838';
70
+ }
71
+
72
+ .e-csvexport::before {
73
+ content: '\e7ba';
74
+ }
75
+
76
+ .e-excelexport::before {
77
+ content: '\e7c1';
78
+ }
79
+
80
+ .e-pdfexport::before {
81
+ content: '\e700';
82
+ }
83
+
84
+ .e-indent::before {
85
+ content: '\e810';
86
+ }
87
+
88
+ .e-outdent::before {
89
+ content: '\e72a';
90
+ }
91
+
92
+ .e-add-above::before {
93
+ content: '\e836';
94
+ }
95
+
96
+ .e-add-below::before {
97
+ content: '\e801';
98
+ }
99
+ }
100
+
101
+ #{&}.e-gantt.e-device {
102
+ .e-backarrowspan::before,
103
+ .e-icon-dlg-close::before {
104
+ content: '\e773';
105
+ }
106
+
107
+ .e-left-resize-gripper::before,
108
+ .e-right-resize-gripper::before {
109
+ content: '\e770';
110
+ }
111
+ }
112
+ }
@@ -1,113 +1,113 @@
1
- @include export-module('gantt-tailwind-dark-icons') {
2
- #{&}.e-gantt {
3
- .e-add::before {
4
- content: '\e78a';
5
- }
6
-
7
- .e-edit::before {
8
- content: '\e7d2';
9
- }
10
-
11
- .e-delete::before {
12
- content: '\e78d';
13
- }
14
-
15
- .e-cancel::before {
16
- content: '\e771';
17
- }
18
-
19
- .e-save::before {
20
- content: '\e704';
21
- }
22
-
23
- .e-update::before {
24
- content: '\e704';
25
- }
26
-
27
- .e-search-icon::before {
28
- content: '\e737';
29
- }
30
-
31
- .e-cancel-icon::before {
32
- content: '\e771';
33
- }
34
-
35
- .e-notes-info::before {
36
- content: '\e7a6';
37
- }
38
-
39
- .e-left-resize-gripper::before,
40
- .e-right-resize-gripper::before {
41
- content: '\e75b';
42
- }
43
-
44
- .e-expandall::before {
45
- content: '\e762';
46
- }
47
-
48
- .e-collapseall::before {
49
- content: '\e750';
50
- }
51
-
52
- .e-prevtimespan::before {
53
- content: '\e7a5';
54
- }
55
-
56
- .e-nexttimespan::before {
57
- content: '\e7a8';
58
- }
59
-
60
- .e-zoomin::before {
61
- content: '\e70a';
62
- }
63
-
64
- .e-zoomout::before {
65
- content: '\e779';
66
- }
67
-
68
- .e-zoomtofit::before {
69
- content: '\e808';
70
- }
71
-
72
- .e-csvexport::before {
73
- content: '\e73d';
74
- }
75
-
76
- .e-excelexport::before {
77
- content: '\e780';
78
- }
79
-
80
- .e-pdfexport::before {
81
- content: '\e741';
82
- }
83
-
84
- .e-indent::before {
85
- content: '\e7ac';
86
- }
87
-
88
- .e-outdent::before {
89
- content: '\e735';
90
- }
91
-
92
- .e-add-above::before {
93
- content: '\e7dd';
94
- }
95
-
96
- .e-add-below::before {
97
- content: '\e757';
98
- }
99
- }
100
-
101
- #{&}.e-gantt.e-device {
102
- .e-backarrowspan::before,
103
- .e-icon-dlg-close::before {
104
- content: '\e7a5';
105
- }
106
-
107
- .e-left-resize-gripper::before,
108
- .e-right-resize-gripper::before {
109
- content: '\e781';
110
- }
111
- }
112
- }
1
+ @include export-module('gantt-tailwind-dark-icons') {
2
+ #{&}.e-gantt {
3
+ .e-add::before {
4
+ content: '\e78a';
5
+ }
6
+
7
+ .e-edit::before {
8
+ content: '\e7d2';
9
+ }
10
+
11
+ .e-delete::before {
12
+ content: '\e78d';
13
+ }
14
+
15
+ .e-cancel::before {
16
+ content: '\e771';
17
+ }
18
+
19
+ .e-save::before {
20
+ content: '\e704';
21
+ }
22
+
23
+ .e-update::before {
24
+ content: '\e704';
25
+ }
26
+
27
+ .e-search-icon::before {
28
+ content: '\e737';
29
+ }
30
+
31
+ .e-cancel-icon::before {
32
+ content: '\e771';
33
+ }
34
+
35
+ .e-notes-info::before {
36
+ content: '\e7a6';
37
+ }
38
+
39
+ .e-left-resize-gripper::before,
40
+ .e-right-resize-gripper::before {
41
+ content: '\e75b';
42
+ }
43
+
44
+ .e-expandall::before {
45
+ content: '\e762';
46
+ }
47
+
48
+ .e-collapseall::before {
49
+ content: '\e750';
50
+ }
51
+
52
+ .e-prevtimespan::before {
53
+ content: '\e7a5';
54
+ }
55
+
56
+ .e-nexttimespan::before {
57
+ content: '\e7a8';
58
+ }
59
+
60
+ .e-zoomin::before {
61
+ content: '\e70a';
62
+ }
63
+
64
+ .e-zoomout::before {
65
+ content: '\e779';
66
+ }
67
+
68
+ .e-zoomtofit::before {
69
+ content: '\e808';
70
+ }
71
+
72
+ .e-csvexport::before {
73
+ content: '\e73d';
74
+ }
75
+
76
+ .e-excelexport::before {
77
+ content: '\e780';
78
+ }
79
+
80
+ .e-pdfexport::before {
81
+ content: '\e741';
82
+ }
83
+
84
+ .e-indent::before {
85
+ content: '\e7ac';
86
+ }
87
+
88
+ .e-outdent::before {
89
+ content: '\e735';
90
+ }
91
+
92
+ .e-add-above::before {
93
+ content: '\e7dd';
94
+ }
95
+
96
+ .e-add-below::before {
97
+ content: '\e757';
98
+ }
99
+ }
100
+
101
+ #{&}.e-gantt.e-device {
102
+ .e-backarrowspan::before,
103
+ .e-icon-dlg-close::before {
104
+ content: '\e7a5';
105
+ }
106
+
107
+ .e-left-resize-gripper::before,
108
+ .e-right-resize-gripper::before {
109
+ content: '\e781';
110
+ }
111
+ }
112
+ }
113
113
 
@@ -987,7 +987,7 @@
987
987
  }
988
988
 
989
989
  .e-gantt .e-gantt-chart .e-connector-line-z-index {
990
- z-index: 2;
990
+ z-index: 1;
991
991
  }
992
992
 
993
993
  .e-gantt .e-gantt-chart .e-connector-line-hover {
@@ -987,7 +987,7 @@
987
987
  }
988
988
 
989
989
  .e-gantt .e-gantt-chart .e-connector-line-z-index {
990
- z-index: 2;
990
+ z-index: 1;
991
991
  }
992
992
 
993
993
  .e-gantt .e-gantt-chart .e-connector-line-hover {
@@ -987,7 +987,7 @@
987
987
  }
988
988
 
989
989
  .e-gantt .e-gantt-chart .e-connector-line-z-index {
990
- z-index: 2;
990
+ z-index: 1;
991
991
  }
992
992
 
993
993
  .e-gantt .e-gantt-chart .e-connector-line-hover {
@@ -987,7 +987,7 @@
987
987
  }
988
988
 
989
989
  .e-gantt .e-gantt-chart .e-connector-line-z-index {
990
- z-index: 2;
990
+ z-index: 1;
991
991
  }
992
992
 
993
993
  .e-gantt .e-gantt-chart .e-connector-line-hover {