@syncfusion/ej2-gantt 19.4.56 → 20.1.47-1460716
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/CHANGELOG.md +1072 -1060
- package/README.md +75 -75
- package/dist/ej2-gantt.umd.min.js +1 -10
- package/dist/ej2-gantt.umd.min.js.map +1 -1
- package/dist/es6/ej2-gantt.es2015.js +274 -176
- package/dist/es6/ej2-gantt.es2015.js.map +1 -1
- package/dist/es6/ej2-gantt.es5.js +642 -534
- package/dist/es6/ej2-gantt.es5.js.map +1 -1
- package/dist/global/ej2-gantt.min.js +1 -10
- package/dist/global/ej2-gantt.min.js.map +1 -1
- package/dist/global/index.d.ts +0 -9
- package/dist/ts/components.ts +4 -0
- package/dist/ts/gantt/actions/actions.ts +18 -0
- package/dist/ts/gantt/actions/cell-edit.ts +606 -0
- package/dist/ts/gantt/actions/chart-scroll.ts +167 -0
- package/dist/ts/gantt/actions/column-menu.ts +35 -0
- package/dist/ts/gantt/actions/column-reorder.ts +52 -0
- package/dist/ts/gantt/actions/column-resize.ts +52 -0
- package/dist/ts/gantt/actions/connector-line-edit.ts +829 -0
- package/dist/ts/gantt/actions/context-menu.ts +754 -0
- package/dist/ts/gantt/actions/day-markers.ts +80 -0
- package/dist/ts/gantt/actions/dependency.ts +692 -0
- package/dist/ts/gantt/actions/dialog-edit.ts +2208 -0
- package/dist/ts/gantt/actions/edit.ts +3499 -0
- package/dist/ts/gantt/actions/excel-export.ts +61 -0
- package/dist/ts/gantt/actions/filter.ts +302 -0
- package/dist/ts/gantt/actions/keyboard.ts +306 -0
- package/dist/ts/gantt/actions/pdf-export.ts +214 -0
- package/dist/ts/gantt/actions/rowdragdrop.ts +839 -0
- package/dist/ts/gantt/actions/selection.ts +536 -0
- package/dist/ts/gantt/actions/sort.ts +98 -0
- package/dist/ts/gantt/actions/taskbar-edit.ts +1940 -0
- package/dist/ts/gantt/actions/toolbar.ts +489 -0
- package/dist/ts/gantt/actions/virtual-scroll.ts +60 -0
- package/dist/ts/gantt/base/common.ts +9 -0
- package/dist/ts/gantt/base/constant.ts +13 -0
- package/dist/ts/gantt/base/css-constants.ts +148 -0
- package/dist/ts/gantt/base/date-processor.ts +1257 -0
- package/dist/ts/gantt/base/enum.ts +372 -0
- package/dist/ts/gantt/base/gantt-chart.ts +1248 -0
- package/dist/ts/gantt/base/gantt.ts +4069 -0
- package/dist/ts/gantt/base/interface.ts +955 -0
- package/dist/ts/gantt/base/splitter.ts +174 -0
- package/dist/ts/gantt/base/task-processor.ts +2217 -0
- package/dist/ts/gantt/base/tree-grid.ts +694 -0
- package/dist/ts/gantt/base/utils.ts +208 -0
- package/dist/ts/gantt/export/export-helper.ts +552 -0
- package/dist/ts/gantt/export/pdf-base/dictionary.ts +152 -0
- package/dist/ts/gantt/export/pdf-base/pdf-borders.ts +277 -0
- package/dist/ts/gantt/export/pdf-base/pdf-grid-table.ts +901 -0
- package/dist/ts/gantt/export/pdf-base/pdf-style/gantt-theme.ts +131 -0
- package/dist/ts/gantt/export/pdf-base/pdf-style/style.ts +91 -0
- package/dist/ts/gantt/export/pdf-base/treegrid-layouter.ts +414 -0
- package/dist/ts/gantt/export/pdf-connector-line.ts +422 -0
- package/dist/ts/gantt/export/pdf-gantt.ts +282 -0
- package/dist/ts/gantt/export/pdf-taskbar.ts +395 -0
- package/dist/ts/gantt/export/pdf-timeline.ts +202 -0
- package/dist/ts/gantt/export/pdf-treegrid.ts +406 -0
- package/dist/ts/gantt/models/add-dialog-field-settings.ts +33 -0
- package/dist/ts/gantt/models/column.ts +464 -0
- package/dist/ts/gantt/models/day-working-time.ts +22 -0
- package/dist/ts/gantt/models/edit-dialog-field-settings.ts +33 -0
- package/dist/ts/gantt/models/edit-settings.ts +79 -0
- package/dist/ts/gantt/models/event-marker.ts +27 -0
- package/dist/ts/gantt/models/filter-settings.ts +53 -0
- package/dist/ts/gantt/models/holiday.ts +34 -0
- package/dist/ts/gantt/models/label-settings.ts +30 -0
- package/dist/ts/gantt/models/models.ts +36 -0
- package/dist/ts/gantt/models/resource-fields.ts +38 -0
- package/dist/ts/gantt/models/search-settings.ts +77 -0
- package/dist/ts/gantt/models/selection-settings.ts +56 -0
- package/dist/ts/gantt/models/sort-settings.ts +50 -0
- package/dist/ts/gantt/models/splitter-settings.ts +47 -0
- package/dist/ts/gantt/models/task-fields.ts +171 -0
- package/dist/ts/gantt/models/timeline-settings.ts +112 -0
- package/dist/ts/gantt/models/tooltip-settings.ts +46 -0
- package/dist/ts/gantt/renderer/chart-rows.ts +1838 -0
- package/dist/ts/gantt/renderer/connector-line.ts +1025 -0
- package/dist/ts/gantt/renderer/edit-tooltip.ts +228 -0
- package/dist/ts/gantt/renderer/event-marker.ts +96 -0
- package/dist/ts/gantt/renderer/nonworking-day.ts +205 -0
- package/dist/ts/gantt/renderer/render.ts +5 -0
- package/dist/ts/gantt/renderer/timeline.ts +1397 -0
- package/dist/ts/gantt/renderer/tooltip.ts +450 -0
- package/dist/ts/gantt/renderer/virtual-content-render.ts +50 -0
- package/license +9 -9
- package/package.json +80 -80
- package/src/gantt/actions/cell-edit.js +2 -1
- package/src/gantt/actions/dialog-edit.js +2 -1
- package/src/gantt/actions/edit.js +11 -2
- package/src/gantt/actions/rowdragdrop.js +37 -15
- package/src/gantt/actions/taskbar-edit.js +24 -24
- package/src/gantt/base/date-processor.js +0 -1
- package/src/gantt/base/gantt-chart.js +9 -4
- package/src/gantt/base/gantt-model.d.ts +779 -779
- package/src/gantt/base/gantt.d.ts +27 -27
- package/src/gantt/base/gantt.js +22 -22
- package/src/gantt/base/splitter.js +1 -0
- package/src/gantt/base/task-processor.js +13 -13
- package/src/gantt/base/tree-grid.js +3 -1
- package/src/gantt/export/pdf-base/treegrid-layouter.js +13 -13
- package/src/gantt/export/pdf-connector-line.js +11 -11
- package/src/gantt/export/pdf-gantt.js +24 -24
- package/src/gantt/export/pdf-taskbar.js +11 -11
- package/src/gantt/export/pdf-treegrid.js +13 -13
- package/src/gantt/models/add-dialog-field-settings-model.d.ts +21 -21
- package/src/gantt/models/add-dialog-field-settings.js +19 -19
- package/src/gantt/models/day-working-time-model.d.ts +11 -11
- package/src/gantt/models/day-working-time.js +19 -19
- package/src/gantt/models/edit-dialog-field-settings-model.d.ts +21 -21
- package/src/gantt/models/edit-dialog-field-settings.js +19 -19
- package/src/gantt/models/edit-settings-model.d.ts +50 -50
- package/src/gantt/models/edit-settings.js +19 -19
- package/src/gantt/models/event-marker-model.d.ts +16 -16
- package/src/gantt/models/event-marker.js +19 -19
- package/src/gantt/models/filter-settings-model.d.ts +34 -34
- package/src/gantt/models/filter-settings.js +19 -19
- package/src/gantt/models/holiday-model.d.ts +21 -21
- package/src/gantt/models/holiday.js +19 -19
- package/src/gantt/models/label-settings-model.d.ts +16 -16
- package/src/gantt/models/label-settings.js +19 -19
- package/src/gantt/models/resource-fields-model.d.ts +21 -21
- package/src/gantt/models/resource-fields.js +19 -19
- package/src/gantt/models/search-settings-model.d.ts +56 -56
- package/src/gantt/models/search-settings.js +19 -19
- package/src/gantt/models/selection-settings-model.d.ts +35 -35
- package/src/gantt/models/selection-settings.js +19 -19
- package/src/gantt/models/sort-settings-model.d.ts +24 -24
- package/src/gantt/models/sort-settings.js +19 -19
- package/src/gantt/models/splitter-settings-model.d.ts +30 -30
- package/src/gantt/models/splitter-settings.js +19 -19
- package/src/gantt/models/task-fields-model.d.ts +110 -110
- package/src/gantt/models/task-fields.js +19 -19
- package/src/gantt/models/timeline-settings-model.d.ts +71 -71
- package/src/gantt/models/timeline-settings.js +19 -19
- package/src/gantt/models/tooltip-settings-model.d.ts +26 -26
- package/src/gantt/models/tooltip-settings.js +19 -19
- package/src/gantt/renderer/chart-rows.js +49 -37
- package/src/gantt/renderer/connector-line.js +22 -18
- package/src/gantt/renderer/event-marker.js +1 -0
- package/src/gantt/renderer/nonworking-day.js +13 -6
- package/src/gantt/renderer/timeline.d.ts +1 -0
- package/src/gantt/renderer/timeline.js +48 -12
- package/src/gantt/renderer/tooltip.js +11 -3
- package/styles/bootstrap-dark.css +442 -427
- package/styles/bootstrap.css +442 -433
- package/styles/bootstrap4.css +454 -479
- package/styles/bootstrap5-dark.css +457 -433
- package/styles/bootstrap5.css +457 -433
- package/styles/fabric-dark.css +438 -421
- package/styles/fabric.css +445 -428
- package/styles/fluent-dark.css +1938 -0
- package/styles/fluent-dark.scss +1 -0
- package/styles/fluent.css +1938 -0
- package/styles/fluent.scss +1 -0
- package/styles/gantt/_all.scss +2 -2
- package/styles/gantt/_bootstrap-dark-definition.scss +210 -156
- package/styles/gantt/_bootstrap-definition.scss +211 -157
- package/styles/gantt/_bootstrap4-definition.scss +213 -158
- package/styles/gantt/_bootstrap5-definition.scss +215 -162
- package/styles/gantt/_fabric-dark-definition.scss +211 -157
- package/styles/gantt/_fabric-definition.scss +211 -157
- package/styles/gantt/_fluent-dark-definition.scss +1 -0
- package/styles/gantt/_fluent-definition.scss +215 -162
- package/styles/gantt/_fusionnew-definition.scss +214 -0
- package/styles/gantt/_highcontrast-definition.scss +211 -157
- package/styles/gantt/_highcontrast-light-definition.scss +211 -157
- package/styles/gantt/_layout.scss +1446 -1027
- package/styles/gantt/_material-dark-definition.scss +212 -157
- package/styles/gantt/_material-definition.scss +212 -157
- package/styles/gantt/_material3-definition.scss +215 -0
- package/styles/gantt/_tailwind-definition.scss +215 -161
- package/styles/gantt/_theme.scss +702 -668
- package/styles/gantt/bootstrap-dark.css +442 -427
- package/styles/gantt/bootstrap.css +442 -433
- package/styles/gantt/bootstrap4.css +454 -479
- package/styles/gantt/bootstrap5-dark.css +457 -433
- package/styles/gantt/bootstrap5.css +457 -433
- package/styles/gantt/fabric-dark.css +438 -421
- package/styles/gantt/fabric.css +445 -428
- package/styles/gantt/fluent-dark.css +1938 -0
- package/styles/gantt/fluent-dark.scss +22 -0
- package/styles/gantt/fluent.css +1938 -0
- package/styles/gantt/fluent.scss +22 -0
- package/styles/gantt/highcontrast-light.css +405 -405
- package/styles/gantt/highcontrast.css +444 -456
- package/styles/gantt/icons/_bootstrap-dark.scss +124 -113
- package/styles/gantt/icons/_bootstrap.scss +124 -113
- package/styles/gantt/icons/_bootstrap4.scss +124 -113
- package/styles/gantt/icons/_bootstrap5.scss +124 -112
- package/styles/gantt/icons/_fabric-dark.scss +124 -112
- package/styles/gantt/icons/_fabric.scss +124 -112
- package/styles/gantt/icons/_fluent-dark.scss +1 -0
- package/styles/gantt/icons/_fluent.scss +124 -112
- package/styles/gantt/icons/_fusionnew.scss +120 -0
- package/styles/gantt/icons/_highcontrast.scss +124 -112
- package/styles/gantt/icons/_material-dark.scss +124 -112
- package/styles/gantt/icons/_material.scss +124 -112
- package/styles/gantt/icons/_material3.scss +124 -0
- package/styles/gantt/icons/_tailwind-dark.scss +124 -113
- package/styles/gantt/icons/_tailwind.scss +124 -113
- package/styles/gantt/material-dark.css +446 -417
- package/styles/gantt/material.css +445 -419
- package/styles/gantt/tailwind-dark.css +452 -482
- package/styles/gantt/tailwind.css +449 -479
- package/styles/highcontrast-light.css +405 -405
- package/styles/highcontrast.css +444 -456
- package/styles/material-dark.css +446 -417
- package/styles/material.css +445 -419
- package/styles/tailwind-dark.css +452 -482
- package/styles/tailwind.css +449 -479
package/styles/gantt/_theme.scss
CHANGED
|
@@ -1,668 +1,702 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
/*! Gantt theme */
|
|
4
|
-
|
|
5
|
-
.e-gantt {
|
|
6
|
-
|
|
7
|
-
.e-gantt-splitter {
|
|
8
|
-
border-color: $gantt-header-border-color;
|
|
9
|
-
border-radius: $gantt-header-border-radius;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
.e-cloneproperties.e-draganddrop {
|
|
13
|
-
box-shadow: $gantt-clone-prop-box-shadow;
|
|
14
|
-
opacity: .95;
|
|
15
|
-
overflow: visible;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
.e-cloneproperties {
|
|
19
|
-
background-color: $gantt-drag-clone-bg-color;
|
|
20
|
-
border-color: $gantt-drag-clone-border-color;
|
|
21
|
-
color: $gantt-drag-clone-color;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
.e-cloneproperties.e-draganddrop .e-rowcell {
|
|
25
|
-
color: $gantt-content-font-color;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
.e-cloneproperties.e-draganddrop table,
|
|
29
|
-
.e-cloneproperties.e-draganddrop table .e-selectionbackground {
|
|
30
|
-
background-color: $gantt-clone-dragdrop-bg-color;
|
|
31
|
-
height: 30px;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
.e-gantt-toolbar + .e-gantt-splitter {
|
|
35
|
-
border-top-left-radius: $gantt-splitter-border-top-left-radius;
|
|
36
|
-
border-top-right-radius: $gantt-splitter-border-top-right-radius;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
.e-grid .e-focused:not(.e-menu-item) {
|
|
40
|
-
box-shadow: $grid-active-container-border !important;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
.e-temp-content {
|
|
44
|
-
border-color: $gantt-header-border-color;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
.e-splitter-box {
|
|
48
|
-
border-color: $gantt-header-border-color;
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
.e-gantt-temp-header {
|
|
52
|
-
border-color: $gantt-header-border-color;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
.e-gantt-chart-pane {
|
|
56
|
-
border-color: $gantt-header-border-color;
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
.e-gantt-tree-grid-pane {
|
|
60
|
-
.e-timeline-single-header-outer-div {
|
|
61
|
-
height: $gantt-timeline-single-header-outer-div !important;
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
.e-grid td.e-active {
|
|
65
|
-
background: $gantt-active-background;
|
|
66
|
-
opacity: $gantt-active-color-opacity;
|
|
67
|
-
}
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
.e-gantt-chart {
|
|
71
|
-
.e-timeline-header-container {
|
|
72
|
-
background: $gantt-header-bg-color;
|
|
73
|
-
border-bottom-color: $gantt-header-border-color;
|
|
74
|
-
border-bottom-width: $gantt-header-border-bottom-width;
|
|
75
|
-
border-right-color: $gantt-header-border-color;
|
|
76
|
-
color: $gantt-header-color;
|
|
77
|
-
height: $gantt-header-border-height;
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
.e-timeline-top-header-cell,
|
|
81
|
-
.e-timeline-single-header-cell {
|
|
82
|
-
border-color: $gantt-header-border-color;
|
|
83
|
-
color: $gantt-header-color;
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
.e-timeline-single-header-cell {
|
|
87
|
-
height: $gantt-chart-timeline-single-header-outer-div;
|
|
88
|
-
line-height: $gantt-chart-timeline-single-header-outer-div;
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
.e-timeline-single-header-outer-div {
|
|
92
|
-
height: $gantt-chart-timeline-single-header-outer-div !important;
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
.e-timeline-top-header-cell {
|
|
96
|
-
height: $gantt-timeline-top-header-cell-height;
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
.e-chart-root-container {
|
|
100
|
-
background-color: $gantt-table-background;
|
|
101
|
-
border-color: $gantt-header-border-color;
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
.e-timeline-header-table-body {
|
|
105
|
-
border-spacing: $gantt-header-border-spacing;
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
.e-chart-row-border {
|
|
109
|
-
border-top-color: $gantt-grid-line-color;
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
.e-chart-row-cell {
|
|
113
|
-
color: $gantt-content-color;
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
.e-chart-row-border.e-lastrow {
|
|
117
|
-
border-bottom-color: $gantt-grid-line-color;
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
.e-line-container-cell {
|
|
121
|
-
border-color: $gantt-line-container-cell-border-color;
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
.e-active-container {
|
|
125
|
-
outline-color: $gantt-active-container-border;
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
.e-gantt-child-taskbar-inner-div {
|
|
129
|
-
background-color: $gantt-child-task-bar;
|
|
130
|
-
border: $gantt-child-task-bar-border;
|
|
131
|
-
border-radius: $gantt-parent-progress-bar-border-radius;
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
.e-collapse-parent {
|
|
135
|
-
.e-gantt-child-taskbar-inner-div {
|
|
136
|
-
border: 1px solid $gantt-task-label-font-color;
|
|
137
|
-
border-bottom: 0;
|
|
138
|
-
border-top: 0;
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
.e-gantt-child-progressbar {
|
|
142
|
-
width: $gantt-collapse-progress-width;
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
border: $gantt-child-progress-bar-border;
|
|
175
|
-
//margin-left: $gantt-child-progress-margin-left;
|
|
176
|
-
}
|
|
177
|
-
|
|
178
|
-
.e-gantt-child-manualtaskbar {
|
|
179
|
-
background-color: $gantt-manualchild-task-bar;
|
|
180
|
-
border: $gantt-manualchild-task-bar-border;
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
.e-gantt-unscheduled-taskbar.e-gantt-child-manualtaskbar {
|
|
184
|
-
background: $gantt-unscheduled-manualtaskbar-background;
|
|
185
|
-
}
|
|
186
|
-
|
|
187
|
-
.e-gantt-child-manualprogressbar {
|
|
188
|
-
background-color: $gantt-manualchild-progress-bar;
|
|
189
|
-
border: $gantt-manualchild-progress-bar-border;
|
|
190
|
-
}
|
|
191
|
-
|
|
192
|
-
.e-
|
|
193
|
-
background: $
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
border-
|
|
241
|
-
}
|
|
242
|
-
|
|
243
|
-
.e-unscheduled-milestone-
|
|
244
|
-
border-
|
|
245
|
-
}
|
|
246
|
-
|
|
247
|
-
.e-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
border-
|
|
358
|
-
border-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
border: $gantt-connected-task !important;
|
|
542
|
-
}
|
|
543
|
-
|
|
544
|
-
.e-milestone-
|
|
545
|
-
border-
|
|
546
|
-
}
|
|
547
|
-
|
|
548
|
-
.e-
|
|
549
|
-
border-
|
|
550
|
-
}
|
|
551
|
-
|
|
552
|
-
.e-line {
|
|
553
|
-
border-color: $gantt-child-progress-bar !important;
|
|
554
|
-
}
|
|
555
|
-
|
|
556
|
-
.e-connector-line-
|
|
557
|
-
border-
|
|
558
|
-
}
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
.e-
|
|
575
|
-
color: $gantt-
|
|
576
|
-
}
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
.e-dlg-
|
|
583
|
-
color: $gantt-dialog-
|
|
584
|
-
}
|
|
585
|
-
|
|
586
|
-
.e-dlg-
|
|
587
|
-
background: $gantt-dialog-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
}
|
|
593
|
-
|
|
594
|
-
.e-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
.e-tab-wrap {
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
}
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
}
|
|
654
|
-
|
|
655
|
-
.e-gantt.e-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
}
|
|
667
|
-
|
|
668
|
-
|
|
1
|
+
@include export-module('gantt-theme') {
|
|
2
|
+
|
|
3
|
+
/*! Gantt theme */
|
|
4
|
+
|
|
5
|
+
.e-gantt {
|
|
6
|
+
|
|
7
|
+
.e-gantt-splitter {
|
|
8
|
+
border-color: $gantt-header-border-color;
|
|
9
|
+
border-radius: $gantt-header-border-radius;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.e-cloneproperties.e-draganddrop {
|
|
13
|
+
box-shadow: $gantt-clone-prop-box-shadow;
|
|
14
|
+
opacity: .95;
|
|
15
|
+
overflow: visible;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.e-cloneproperties {
|
|
19
|
+
background-color: $gantt-drag-clone-bg-color;
|
|
20
|
+
border-color: $gantt-drag-clone-border-color;
|
|
21
|
+
color: $gantt-drag-clone-color;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.e-cloneproperties.e-draganddrop .e-rowcell {
|
|
25
|
+
color: $gantt-content-font-color;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.e-cloneproperties.e-draganddrop table,
|
|
29
|
+
.e-cloneproperties.e-draganddrop table .e-selectionbackground {
|
|
30
|
+
background-color: $gantt-clone-dragdrop-bg-color;
|
|
31
|
+
height: 30px;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.e-gantt-toolbar + .e-gantt-splitter {
|
|
35
|
+
border-top-left-radius: $gantt-splitter-border-top-left-radius;
|
|
36
|
+
border-top-right-radius: $gantt-splitter-border-top-right-radius;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.e-grid .e-focused:not(.e-menu-item) {
|
|
40
|
+
box-shadow: $grid-active-container-border !important; /* stylelint-disable-line declaration-no-important */
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.e-temp-content {
|
|
44
|
+
border-color: $gantt-header-border-color;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.e-splitter-box {
|
|
48
|
+
border-color: $gantt-header-border-color;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.e-gantt-temp-header {
|
|
52
|
+
border-color: $gantt-header-border-color;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.e-gantt-chart-pane {
|
|
56
|
+
border-color: $gantt-header-border-color;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.e-gantt-tree-grid-pane {
|
|
60
|
+
.e-timeline-single-header-outer-div {
|
|
61
|
+
height: $gantt-timeline-single-header-outer-div !important; /* stylelint-disable-line declaration-no-important */
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.e-grid td.e-active {
|
|
65
|
+
background: $gantt-active-background;
|
|
66
|
+
opacity: $gantt-active-color-opacity;
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.e-gantt-chart {
|
|
71
|
+
.e-timeline-header-container {
|
|
72
|
+
background: $gantt-header-bg-color;
|
|
73
|
+
border-bottom-color: $gantt-header-border-color;
|
|
74
|
+
border-bottom-width: $gantt-header-border-bottom-width;
|
|
75
|
+
border-right-color: $gantt-header-border-color;
|
|
76
|
+
color: $gantt-header-color;
|
|
77
|
+
height: $gantt-header-border-height;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.e-timeline-top-header-cell,
|
|
81
|
+
.e-timeline-single-header-cell {
|
|
82
|
+
border-color: $gantt-header-border-color;
|
|
83
|
+
color: $gantt-header-color;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.e-timeline-single-header-cell {
|
|
87
|
+
height: $gantt-chart-timeline-single-header-outer-div;
|
|
88
|
+
line-height: $gantt-chart-timeline-single-header-outer-div;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.e-timeline-single-header-outer-div {
|
|
92
|
+
height: $gantt-chart-timeline-single-header-outer-div !important; /* stylelint-disable-line declaration-no-important */
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.e-timeline-top-header-cell {
|
|
96
|
+
height: $gantt-timeline-top-header-cell-height;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.e-chart-root-container {
|
|
100
|
+
background-color: $gantt-table-background;
|
|
101
|
+
border-color: $gantt-header-border-color;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.e-timeline-header-table-body {
|
|
105
|
+
border-spacing: $gantt-header-border-spacing;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.e-chart-row-border {
|
|
109
|
+
border-top-color: $gantt-grid-line-color;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.e-chart-row-cell {
|
|
113
|
+
color: $gantt-content-color;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.e-chart-row-border.e-lastrow {
|
|
117
|
+
border-bottom-color: $gantt-grid-line-color;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.e-line-container-cell {
|
|
121
|
+
border-color: $gantt-line-container-cell-border-color;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.e-active-container {
|
|
125
|
+
outline-color: $gantt-active-container-border;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.e-gantt-child-taskbar-inner-div {
|
|
129
|
+
background-color: $gantt-child-task-bar;
|
|
130
|
+
border: $gantt-child-task-bar-border;
|
|
131
|
+
border-radius: $gantt-parent-progress-bar-border-radius;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.e-collapse-parent {
|
|
135
|
+
.e-gantt-child-taskbar-inner-div {
|
|
136
|
+
border: 1px solid $gantt-task-label-font-color;
|
|
137
|
+
border-bottom: 0;
|
|
138
|
+
border-top: 0;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.e-gantt-child-progressbar {
|
|
142
|
+
width: $gantt-collapse-progress-width;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.e-collapsed-taskbar-drag {
|
|
146
|
+
background-color: $gantt-child-progress-bar;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.e-left-connectorpoint-outer-div {
|
|
150
|
+
display: none;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.e-right-connectorpoint-outer-div {
|
|
154
|
+
display: none;
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.e-gantt-parent-taskbar-inner-div {
|
|
159
|
+
background-color: $gantt-parent-task-bar;
|
|
160
|
+
border: $gantt-parent-task-bar-border;
|
|
161
|
+
border-radius: $gantt-parent-progress-bar-border-radius;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.e-gantt-parent-progressbar-inner-div {
|
|
165
|
+
background-color: $gantt-parent-progress-bar;
|
|
166
|
+
border: $gantt-parent-progress-bar-border;
|
|
167
|
+
border-radius: $gantt-parent-progress-bar-border-radius;
|
|
168
|
+
//margin-left: $gantt-child-progress-margin-left;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.e-gantt-child-progressbar-inner-div {
|
|
172
|
+
background-color: $gantt-child-progress-bar;
|
|
173
|
+
border: $gantt-child-progress-bar-border;
|
|
174
|
+
border-radius: $gantt-child-progress-bar-border-radious;
|
|
175
|
+
//margin-left: $gantt-child-progress-margin-left;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.e-gantt-child-manualtaskbar {
|
|
179
|
+
background-color: $gantt-manualchild-task-bar;
|
|
180
|
+
border: $gantt-manualchild-task-bar-border;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.e-gantt-unscheduled-taskbar.e-gantt-child-manualtaskbar {
|
|
184
|
+
background: $gantt-unscheduled-manualtaskbar-background;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
.e-gantt-child-manualprogressbar {
|
|
188
|
+
background-color: $gantt-manualchild-progress-bar;
|
|
189
|
+
border: $gantt-manualchild-progress-bar-border;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.e-gantt-critical-child-manualprogressbar {
|
|
193
|
+
background-color: $gantt-manualchild-progress-bar;
|
|
194
|
+
border: $gantt-manualchild-progress-bar-border;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.e-holiday {
|
|
198
|
+
background: $holiday-background;
|
|
199
|
+
|
|
200
|
+
.e-span {
|
|
201
|
+
color: $holiday-label-color;
|
|
202
|
+
font-size: $holiday-label-font-size;
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
.e-weekend {
|
|
207
|
+
background: $weekend-background;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
.e-weekend-header-cell {
|
|
211
|
+
background: $weekend-background;
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
.e-rangecontainer {
|
|
215
|
+
|
|
216
|
+
.e-rg-rangdiv {
|
|
217
|
+
border: 2px solid $rangecontainer-border-color;
|
|
218
|
+
width: 5px;
|
|
219
|
+
z-index: 6;
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
.e-event-markers {
|
|
224
|
+
border-left-color: $event-marker-line-color;
|
|
225
|
+
|
|
226
|
+
.e-span-label {
|
|
227
|
+
background-color: $event-marker-label-color;
|
|
228
|
+
color: $event-marker-label-font-color;
|
|
229
|
+
font-size: $event-marker-label-font-size;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
.e-gantt-right-arrow {
|
|
233
|
+
border-right-color: $event-marker-label-color;
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
.e-gantt-unscheduled-taskbar {
|
|
238
|
+
background: $gantt-unscheduled-taskbar-background;
|
|
239
|
+
border: $gantt-unscheduled-taskbar-border;
|
|
240
|
+
border-radius: $gantt-unscheduled-taskbar-border-radius;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
.e-unscheduled-milestone-top {
|
|
244
|
+
border-bottom-color: $gantt-unscheduled-milestone-top-border;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
.e-unscheduled-milestone-bottom {
|
|
248
|
+
border-top-color: $gantt-unscheduled-milestone-bottom-border;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
.e-progress-resize-gripper {
|
|
252
|
+
|
|
253
|
+
.e-progressbar-handler {
|
|
254
|
+
background: $progress-handler-background;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
.e-progressbar-handler-after {
|
|
258
|
+
border-bottom-color: $progress-handler-background;
|
|
259
|
+
}
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
.e-gantt-dependency-view-container {
|
|
263
|
+
display: block;
|
|
264
|
+
z-index: 5;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
.e-line {
|
|
268
|
+
border-color: $connector-line-color;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
.e-connector-line-right-arrow {
|
|
272
|
+
border-left-color: $connector-line-color;
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
.e-connector-line-left-arrow {
|
|
276
|
+
border-right-color: $connector-line-color;
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
.e-connector-line-right-arrow-hover {
|
|
280
|
+
border-left-color: $connector-line-hover-color;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
.e-connector-line-left-arrow-hover {
|
|
284
|
+
border-right-color: $connector-line-hover-color;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
.e-connector-line-hover {
|
|
288
|
+
border-color: $connector-line-hover-color;
|
|
289
|
+
outline-color: $connector-line-hover-color;
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
.e-gantt-false-line {
|
|
293
|
+
border-top-color: $connector-false-line-color;
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
.e-connectorpoint-left-hover,
|
|
297
|
+
.e-connectorpoint-right-hover {
|
|
298
|
+
background-color: $connector-point-hover-color;
|
|
299
|
+
border-color: $connector-point-border-color;
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
.e-connectorpoint-left-hover:hover,
|
|
303
|
+
.e-connectorpoint-right-hover:hover {
|
|
304
|
+
background-color: $connector-point-hover-bg-color;
|
|
305
|
+
border-color: $connector-point-hover-border-color;
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
.e-left-label-inner-div,
|
|
309
|
+
.e-right-label-inner-div {
|
|
310
|
+
color: $gantt-label-color;
|
|
311
|
+
font-size: $gantt-label-size;
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
.e-left-label-temp-container {
|
|
315
|
+
color: $gantt-label-font-color;
|
|
316
|
+
font-size: $gantt-label-font-size;
|
|
317
|
+
padding-right: $gantt-right-label-container-margin-left;
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
.e-right-label-temp-container {
|
|
321
|
+
color: $gantt-label-font-color;
|
|
322
|
+
font-size: $gantt-label-font-size;
|
|
323
|
+
margin-left: $gantt-right-label-container-margin-left;
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
.e-right-label-container {
|
|
327
|
+
margin-left: $gantt-right-label-container-margin-left;
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
.e-left-label-container {
|
|
331
|
+
padding-right: $gantt-right-label-container-margin-left;
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
.e-connectorpoint-right {
|
|
335
|
+
margin-left: $gantt-connector-point-right-margin-left;
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
.e-right-connectorpoint-outer-div,
|
|
339
|
+
.e-left-connectorpoint-outer-div {
|
|
340
|
+
height: $gantt-connector-point-height;
|
|
341
|
+
width: $gantt-connector-point-width;
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
.e-left-connectorpoint-outer-div {
|
|
345
|
+
left: $gantt-connector-left-point-left;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
.e-gantt-unscheduled-taskbar-left,
|
|
349
|
+
.e-gantt-unscheduled-taskbar-right {
|
|
350
|
+
border-right: transparent;
|
|
351
|
+
border-width: $gantt-unscheduled-taskbar-left;
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
.e-gantt-unscheduled-taskbar-right {
|
|
355
|
+
border-bottom-left-radius: $gantt-unscheduled-taskbar-left-radius;
|
|
356
|
+
border-bottom-right-radius: $gantt-unscheduled-taskbar-right-radius;
|
|
357
|
+
border-top-left-radius: $gantt-unscheduled-taskbar-left-radius;
|
|
358
|
+
border-top-right-radius: $gantt-unscheduled-taskbar-right-radius;
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
.e-gantt-unscheduled-taskbar-left {
|
|
362
|
+
border-bottom-left-radius: $gantt-progress-bar-left-radius;
|
|
363
|
+
border-top-left-radius: $gantt-progress-bar-left-radius;
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
.e-task-label {
|
|
367
|
+
color: $gantt-task-label-font-color;
|
|
368
|
+
font-size: $gantt-task-label-font-size;
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
.e-icon {
|
|
372
|
+
color: $gantt-edit-icon-color;
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
.e-milestone-top {
|
|
376
|
+
border-bottom-color: $gantt-milestone-border-color;
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
.e-milestone-bottom {
|
|
380
|
+
border-top-color: $gantt-milestone-border-color;
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
.e-parent-milestone-top {
|
|
384
|
+
border-bottom-color: $gantt-parent-milestone-border-color;
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
.e-parent-milestone-bottom {
|
|
388
|
+
border-top-color: $gantt-parent-milestone-border-color;
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
.e-manualparent-milestone-top {
|
|
392
|
+
border-bottom-color: $gantt-manualparent-background-color;
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
.e-manualparent-milestone-bottom {
|
|
396
|
+
border-top-color: $gantt-manualparent-background-color;
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
.e-gantt-unscheduled-manualtask {
|
|
400
|
+
background: $gantt-unscheduledmanualparent-background-color;
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
.e-label {
|
|
404
|
+
color: $gantt-label-font-color;
|
|
405
|
+
font-size: $gantt-label-font-size;
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
.e-active {
|
|
409
|
+
background: $gantt-active-background;
|
|
410
|
+
color: $gantt-active-color;
|
|
411
|
+
opacity: $gantt-active-color-opacity;
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
.e-active .e-label {
|
|
415
|
+
color: $gantt-active-color;
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
.e-baseline-bar {
|
|
419
|
+
background-color: $gantt-baseline-color;
|
|
420
|
+
}
|
|
421
|
+
|
|
422
|
+
.e-baseline-milestone-top {
|
|
423
|
+
border-bottom-color: $gantt-baseline-color;
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
.e-baseline-milestone-bottom {
|
|
427
|
+
border-top-color: $gantt-baseline-color;
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
.e-uptail::before {
|
|
431
|
+
border-bottom-color: $gantt-uptail-border;
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
.e-downtail::after {
|
|
435
|
+
border-top-color: $progress-handler-outline;
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
.e-downtail::before {
|
|
439
|
+
border-top-color: $gantt-uptail-border;
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
.e-ganttpopup .e-content {
|
|
443
|
+
background-color: $progress-handler-outline;
|
|
444
|
+
border-color: $gantt-uptail-border;
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
.e-spanclicked,
|
|
448
|
+
.e-grid .e-gridpopup .e-spanclicked {
|
|
449
|
+
border-color: $gantt-gridpopup-span;
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
.e-active-parent-task {
|
|
453
|
+
border-radius: 4px;
|
|
454
|
+
box-shadow: 4px 4px 3px 0 $gantt-active-parent-shadow;
|
|
455
|
+
|
|
456
|
+
.e-gantt-parent-taskbar-inner-div {
|
|
457
|
+
background: $gantt-active-parent-task;
|
|
458
|
+
border: $gantt-active-parent-task;
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
.e-gantt-parent-progressbar-inner-div {
|
|
462
|
+
background-color: transparent;
|
|
463
|
+
border: transparent;
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
.e-task-label {
|
|
467
|
+
color: transparent;
|
|
468
|
+
}
|
|
469
|
+
}
|
|
470
|
+
|
|
471
|
+
.e-predecessor-touch-mode {
|
|
472
|
+
|
|
473
|
+
.e-task-label {
|
|
474
|
+
color: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
.e-line {
|
|
478
|
+
border-color: $gantt-inactive-parent !important; /* stylelint-disable-line declaration-no-important */
|
|
479
|
+
}
|
|
480
|
+
|
|
481
|
+
.e-connector-line-right-arrow {
|
|
482
|
+
border-left-color: $gantt-inactive-parent !important; /* stylelint-disable-line declaration-no-important */
|
|
483
|
+
}
|
|
484
|
+
|
|
485
|
+
.e-connector-line-left-arrow {
|
|
486
|
+
border-right-color: $gantt-inactive-parent !important; /* stylelint-disable-line declaration-no-important */
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
.e-gantt-child-taskbar-inner-div {
|
|
490
|
+
background: $gantt-inactive-child !important; /* stylelint-disable-line declaration-no-important */
|
|
491
|
+
border: $gantt-inactive-child !important; /* stylelint-disable-line declaration-no-important */
|
|
492
|
+
}
|
|
493
|
+
|
|
494
|
+
.e-gantt-child-progressbar-inner-div {
|
|
495
|
+
background-color: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
496
|
+
border: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
.e-milestone-top {
|
|
500
|
+
border-bottom-color: $gantt-inactive-child !important; /* stylelint-disable-line declaration-no-important */
|
|
501
|
+
}
|
|
502
|
+
|
|
503
|
+
.e-milestone-bottom {
|
|
504
|
+
border-top-color: $gantt-inactive-child !important; /* stylelint-disable-line declaration-no-important */
|
|
505
|
+
}
|
|
506
|
+
|
|
507
|
+
.e-gantt-parent-taskbar-inner-div {
|
|
508
|
+
background-color: $gantt-inactive-parent !important; /* stylelint-disable-line declaration-no-important */
|
|
509
|
+
border: $gantt-inactive-parent !important; /* stylelint-disable-line declaration-no-important */
|
|
510
|
+
}
|
|
511
|
+
|
|
512
|
+
.e-gantt-parent-progressbar-inner-div {
|
|
513
|
+
background-color: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
514
|
+
border: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
515
|
+
}
|
|
516
|
+
|
|
517
|
+
.e-active-child-task {
|
|
518
|
+
|
|
519
|
+
.e-gantt-child-taskbar-inner-div {
|
|
520
|
+
background: $gantt-child-progress-bar !important; /* stylelint-disable-line declaration-no-important */
|
|
521
|
+
border: $gantt-child-progress-bar !important; /* stylelint-disable-line declaration-no-important */
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
.e-milestone-top {
|
|
525
|
+
border-bottom-color: $gantt-child-progress-bar !important; /* stylelint-disable-line declaration-no-important */
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
.e-milestone-bottom {
|
|
529
|
+
border-top-color: $gantt-child-progress-bar !important; /* stylelint-disable-line declaration-no-important */
|
|
530
|
+
}
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
.e-active-connected-task {
|
|
534
|
+
|
|
535
|
+
.e-gantt-child-taskbar-inner-div {
|
|
536
|
+
background: $gantt-connected-task !important; /* stylelint-disable-line declaration-no-important */
|
|
537
|
+
border: $gantt-connected-task !important; /* stylelint-disable-line declaration-no-important */
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
.e-milestone-top {
|
|
541
|
+
border-bottom-color: $gantt-connected-task !important; /* stylelint-disable-line declaration-no-important */
|
|
542
|
+
}
|
|
543
|
+
|
|
544
|
+
.e-milestone-bottom {
|
|
545
|
+
border-top-color: $gantt-connected-task !important; /* stylelint-disable-line declaration-no-important */
|
|
546
|
+
}
|
|
547
|
+
|
|
548
|
+
.e-line {
|
|
549
|
+
border-color: $gantt-child-progress-bar !important; /* stylelint-disable-line declaration-no-important */
|
|
550
|
+
}
|
|
551
|
+
|
|
552
|
+
.e-connector-line-right-arrow {
|
|
553
|
+
border-left-color: $gantt-child-progress-bar !important; /* stylelint-disable-line declaration-no-important */
|
|
554
|
+
}
|
|
555
|
+
|
|
556
|
+
.e-connector-line-left-arrow {
|
|
557
|
+
border-right-color: $gantt-child-progress-bar !important; /* stylelint-disable-line declaration-no-important */
|
|
558
|
+
}
|
|
559
|
+
}
|
|
560
|
+
}
|
|
561
|
+
}
|
|
562
|
+
|
|
563
|
+
.e-icons {
|
|
564
|
+
color: $gantt-icons-color;
|
|
565
|
+
}
|
|
566
|
+
|
|
567
|
+
.e-grid .e-icons:not(.e-stop):not(.e-check):not(.e-icon-left):not(.e-date-icon) {
|
|
568
|
+
color: $gantt-context-menu-icon-color !important; /* stylelint-disable-line declaration-no-important */
|
|
569
|
+
}
|
|
570
|
+
}
|
|
571
|
+
|
|
572
|
+
.e-gantt-dialog {
|
|
573
|
+
|
|
574
|
+
.e-dlg-header {
|
|
575
|
+
color: $gantt-dialog-header-font-color;
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
.e-dlg-header-content {
|
|
579
|
+
background: $gantt-dialog-tab-background;
|
|
580
|
+
}
|
|
581
|
+
|
|
582
|
+
.e-icon-dlg-close {
|
|
583
|
+
color: $gantt-dialog-icon-color;
|
|
584
|
+
}
|
|
585
|
+
|
|
586
|
+
.e-btn.e-dlg-closeicon-btn:hover {
|
|
587
|
+
background-color: $gantt-dialog-icon-hover-color;
|
|
588
|
+
|
|
589
|
+
.e-icon-dlg-close {
|
|
590
|
+
color: $gantt-dialog-close-icon-hover-color;
|
|
591
|
+
}
|
|
592
|
+
}
|
|
593
|
+
|
|
594
|
+
.e-tab {
|
|
595
|
+
|
|
596
|
+
.e-tab-header {
|
|
597
|
+
background: $gantt-dialog-tab-background;
|
|
598
|
+
|
|
599
|
+
.e-indicator {
|
|
600
|
+
background: $gantt-tab-selection-indicator-color;
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
.e-toolbar-item.e-active {
|
|
604
|
+
background-color: $gantt-dialog-active-tab-background;
|
|
605
|
+
|
|
606
|
+
.e-tab-wrap {
|
|
607
|
+
.e-tab-text {
|
|
608
|
+
color: $gantt-tab-header-active-font-color;
|
|
609
|
+
}
|
|
610
|
+
}
|
|
611
|
+
}
|
|
612
|
+
|
|
613
|
+
.e-toolbar-item {
|
|
614
|
+
|
|
615
|
+
.e-tab-wrap {
|
|
616
|
+
border-color: $gantt-dialog-tab-header-border-no-color;
|
|
617
|
+
|
|
618
|
+
.e-tab-text {
|
|
619
|
+
color: $gantt-tab-header-font-color;
|
|
620
|
+
}
|
|
621
|
+
}
|
|
622
|
+
}
|
|
623
|
+
|
|
624
|
+
.e-toolbar-item:not(.e-active) .e-tab-wrap:hover {
|
|
625
|
+
background: $gantt-tab-header-hover-color;
|
|
626
|
+
border-bottom: $gantt-dialog-tab-hover-border-bottom;
|
|
627
|
+
border-bottom-left-radius: $gantt-dialog-tab-hover-border-bottom-radius;
|
|
628
|
+
border-bottom-right-radius: $gantt-dialog-tab-hover-border-bottom-radius;
|
|
629
|
+
border-color: $gantt-dialog-tab-hover-border-color;
|
|
630
|
+
|
|
631
|
+
.e-tab-text {
|
|
632
|
+
color: $gantt-tab-header-hover-font-color;
|
|
633
|
+
}
|
|
634
|
+
}
|
|
635
|
+
}
|
|
636
|
+
}
|
|
637
|
+
}
|
|
638
|
+
|
|
639
|
+
.e-gantt.e-device {
|
|
640
|
+
.e-left-resize-gripper,
|
|
641
|
+
.e-right-resize-gripper {
|
|
642
|
+
border-color: $gantt-left-resize-gripper-border;
|
|
643
|
+
color: $gantt-left-resize-gripper-color;
|
|
644
|
+
}
|
|
645
|
+
|
|
646
|
+
.e-backarrowspan {
|
|
647
|
+
color: $gantt-gridpopup-span;
|
|
648
|
+
}
|
|
649
|
+
}
|
|
650
|
+
|
|
651
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line {
|
|
652
|
+
border-color: $critical-connector-line-color;
|
|
653
|
+
}
|
|
654
|
+
|
|
655
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line-right-arrow {
|
|
656
|
+
border-left-color: $critical-connector-line-color;
|
|
657
|
+
}
|
|
658
|
+
|
|
659
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line-left-arrow {
|
|
660
|
+
border-right-color: $critical-connector-line-color;
|
|
661
|
+
}
|
|
662
|
+
|
|
663
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-hover {
|
|
664
|
+
border-color: $critical-connector-line-hover-color;
|
|
665
|
+
outline-color: $critical-connector-line-hover-color;
|
|
666
|
+
}
|
|
667
|
+
|
|
668
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-right-arrow-hover {
|
|
669
|
+
border-left-color: $critical-connector-line-hover-color;
|
|
670
|
+
}
|
|
671
|
+
|
|
672
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-left-arrow-hover {
|
|
673
|
+
border-right-color: $critical-connector-line-hover-color;
|
|
674
|
+
}
|
|
675
|
+
|
|
676
|
+
.e-gantt .e-gantt-chart .e-gantt-child-critical-taskbar-inner-div {
|
|
677
|
+
background-color: $gantt-critical-child-task-bar;
|
|
678
|
+
border: $gantt-critical-child-task-bar-border;
|
|
679
|
+
border-radius: $gantt-parent-progress-bar-border-radius;
|
|
680
|
+
}
|
|
681
|
+
|
|
682
|
+
.e-gantt .e-gantt-chart .e-gantt-child-critical-progressbar-inner-div {
|
|
683
|
+
background-color: $gantt-critical-child-progress-bar;
|
|
684
|
+
border: $gantt-child-progress-bar-border;
|
|
685
|
+
border-radius: $gantt-child-progress-bar-border-radious;
|
|
686
|
+
}
|
|
687
|
+
|
|
688
|
+
.e-gantt .e-gantt-chart .e-gantt-critical-unscheduled-taskbar {
|
|
689
|
+
background: $gantt-unscheduled-critical-taskbar-background;
|
|
690
|
+
background-color: $gantt-unscheduled-critical-taskbar-background-color;
|
|
691
|
+
border: $gantt-unscheduled-taskbar-border;
|
|
692
|
+
border-radius: $gantt-unscheduled-taskbar-border-radius;
|
|
693
|
+
}
|
|
694
|
+
|
|
695
|
+
.e-gantt .e-gantt-chart .e-critical-milestone-top {
|
|
696
|
+
border-bottom-color: $gantt-critical-milestone-border-color;
|
|
697
|
+
}
|
|
698
|
+
|
|
699
|
+
.e-gantt .e-gantt-chart .e-critical-milestone-bottom {
|
|
700
|
+
border-top-color: $gantt-critical-milestone-border-color;
|
|
701
|
+
}
|
|
702
|
+
}
|