@syncfusion/ej2-gantt 19.3.53 → 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 (54) hide show
  1. package/CHANGELOG.md +31 -0
  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 +127 -51
  5. package/dist/es6/ej2-gantt.es2015.js.map +1 -1
  6. package/dist/es6/ej2-gantt.es5.js +124 -48
  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 +36 -15
  13. package/src/gantt/actions/dialog-edit.js +7 -2
  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.d.ts +0 -15
  17. package/src/gantt/actions/taskbar-edit.js +6 -24
  18. package/src/gantt/base/gantt.d.ts +17 -0
  19. package/src/gantt/base/gantt.js +32 -3
  20. package/src/gantt/base/task-processor.js +20 -3
  21. package/src/gantt/renderer/timeline.js +17 -1
  22. package/styles/bootstrap-dark.css +1 -1
  23. package/styles/bootstrap.css +1 -1
  24. package/styles/bootstrap4.css +1 -1
  25. package/styles/bootstrap5-dark.css +7 -6
  26. package/styles/bootstrap5.css +7 -6
  27. package/styles/fabric-dark.css +1 -1
  28. package/styles/fabric.css +1 -1
  29. package/styles/gantt/_bootstrap4-definition.scss +1 -0
  30. package/styles/gantt/_bootstrap5-definition.scss +1 -1
  31. package/styles/gantt/_fluent-definition.scss +163 -0
  32. package/styles/gantt/_layout.scss +2 -7
  33. package/styles/gantt/_theme.scss +2 -1
  34. package/styles/gantt/bootstrap-dark.css +1 -1
  35. package/styles/gantt/bootstrap.css +1 -1
  36. package/styles/gantt/bootstrap4.css +1 -1
  37. package/styles/gantt/bootstrap5-dark.css +7 -6
  38. package/styles/gantt/bootstrap5.css +7 -6
  39. package/styles/gantt/fabric-dark.css +1 -1
  40. package/styles/gantt/fabric.css +1 -1
  41. package/styles/gantt/highcontrast-light.css +1 -1
  42. package/styles/gantt/highcontrast.css +1 -1
  43. package/styles/gantt/icons/_fluent.scss +112 -0
  44. package/styles/gantt/icons/_tailwind-dark.scss +112 -112
  45. package/styles/gantt/material-dark.css +1 -1
  46. package/styles/gantt/material.css +1 -1
  47. package/styles/gantt/tailwind-dark.css +2 -2
  48. package/styles/gantt/tailwind.css +2 -2
  49. package/styles/highcontrast-light.css +1 -1
  50. package/styles/highcontrast.css +1 -1
  51. package/styles/material-dark.css +1 -1
  52. package/styles/material.css +1 -1
  53. package/styles/tailwind-dark.css +2 -2
  54. package/styles/tailwind.css +2 -2
package/styles/fabric.css CHANGED
@@ -787,7 +787,7 @@
787
787
  .e-gantt .e-gantt-chart .e-right-resize-gripper {
788
788
  -ms-flex-align: center;
789
789
  align-items: center;
790
- cursor: e-resize;
790
+ cursor: ew-resize;
791
791
  display: -ms-inline-flexbox;
792
792
  display: inline-flex;
793
793
  }
@@ -142,6 +142,7 @@ $gantt-header-font-weight: 500 !default;
142
142
  $gantt-drag-clone-font-weight: $gantt-header-font-weight !default;
143
143
  $gantt-drag-clone-opacity: 1 !default;
144
144
  $gantt-group-clone-text-align: center !default;
145
+ $grid-grey-base: #000 !default;
145
146
  $gantt-clone-prop-box-shadow: 0 6px 12px rgba($grid-grey-base, .175) !default;
146
147
  $gantt-drag-clone-bg-color: $content-bg !default;
147
148
  $gantt-drag-clone-border-color: #ddd !default;
@@ -104,7 +104,7 @@ $gantt-parent-task-bar-border: 1px solid $border-dark !default;
104
104
  $gantt-progress-bar-left-radius: 2px !default;
105
105
  $gantt-unscheduled-taskbar-left-radius: 0px !default;
106
106
  $gantt-connector-point-right-margin-left: 2px !default;
107
- $gantt-right-label-container-margin-left: 16px !default;
107
+ $gantt-right-label-container-margin-left: 25px !default;
108
108
  $gantt-task-label-font-size: 12px !default;
109
109
  $gantt-label-font-size: 14px !default;
110
110
  $gantt-bigger-label-font-size: 16px !default;
@@ -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;
@@ -551,7 +551,7 @@
551
551
  .e-left-resize-gripper,
552
552
  .e-right-resize-gripper {
553
553
  align-items: center;
554
- cursor: e-resize;
554
+ cursor: ew-resize;
555
555
  display: inline-flex;
556
556
  }
557
557
 
@@ -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 {
@@ -835,7 +835,7 @@
835
835
  .e-gantt .e-gantt-chart .e-right-resize-gripper {
836
836
  -ms-flex-align: center;
837
837
  align-items: center;
838
- cursor: e-resize;
838
+ cursor: ew-resize;
839
839
  display: -ms-inline-flexbox;
840
840
  display: inline-flex;
841
841
  }
@@ -985,7 +985,7 @@
985
985
  .e-gantt .e-gantt-chart .e-right-resize-gripper {
986
986
  -ms-flex-align: center;
987
987
  align-items: center;
988
- cursor: e-resize;
988
+ cursor: ew-resize;
989
989
  display: -ms-inline-flexbox;
990
990
  display: inline-flex;
991
991
  }
@@ -1202,7 +1202,7 @@
1202
1202
  .e-gantt .e-gantt-chart .e-right-resize-gripper {
1203
1203
  -ms-flex-align: center;
1204
1204
  align-items: center;
1205
- cursor: e-resize;
1205
+ cursor: ew-resize;
1206
1206
  display: -ms-inline-flexbox;
1207
1207
  display: inline-flex;
1208
1208
  }
@@ -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 */
@@ -868,7 +869,7 @@
868
869
  .e-gantt .e-gantt-chart .e-right-resize-gripper {
869
870
  -ms-flex-align: center;
870
871
  align-items: center;
871
- cursor: e-resize;
872
+ cursor: ew-resize;
872
873
  display: -ms-inline-flexbox;
873
874
  display: inline-flex;
874
875
  }
@@ -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 */
@@ -868,7 +869,7 @@
868
869
  .e-gantt .e-gantt-chart .e-right-resize-gripper {
869
870
  -ms-flex-align: center;
870
871
  align-items: center;
871
- cursor: e-resize;
872
+ cursor: ew-resize;
872
873
  display: -ms-inline-flexbox;
873
874
  display: inline-flex;
874
875
  }
@@ -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 {
@@ -789,7 +789,7 @@
789
789
  .e-gantt .e-gantt-chart .e-right-resize-gripper {
790
790
  -ms-flex-align: center;
791
791
  align-items: center;
792
- cursor: e-resize;
792
+ cursor: ew-resize;
793
793
  display: -ms-inline-flexbox;
794
794
  display: inline-flex;
795
795
  }
@@ -787,7 +787,7 @@
787
787
  .e-gantt .e-gantt-chart .e-right-resize-gripper {
788
788
  -ms-flex-align: center;
789
789
  align-items: center;
790
- cursor: e-resize;
790
+ cursor: ew-resize;
791
791
  display: -ms-inline-flexbox;
792
792
  display: inline-flex;
793
793
  }
@@ -790,7 +790,7 @@
790
790
  .e-gantt .e-gantt-chart .e-right-resize-gripper {
791
791
  -ms-flex-align: center;
792
792
  align-items: center;
793
- cursor: e-resize;
793
+ cursor: ew-resize;
794
794
  display: -ms-inline-flexbox;
795
795
  display: inline-flex;
796
796
  }
@@ -904,7 +904,7 @@
904
904
  .e-gantt .e-gantt-chart .e-right-resize-gripper {
905
905
  -ms-flex-align: center;
906
906
  align-items: center;
907
- cursor: e-resize;
907
+ cursor: ew-resize;
908
908
  display: -ms-inline-flexbox;
909
909
  display: inline-flex;
910
910
  }
@@ -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
+ }