@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
|
@@ -1,157 +1,211 @@
|
|
|
1
|
-
$gantt-header-bg-color: $bg-base-0 !default;
|
|
2
|
-
$gantt-header-border-color: $border-default !default;
|
|
3
|
-
$gantt-header-color: $hover-font !default;
|
|
4
|
-
$gantt-context-menu-icon-color: $hover-font !default;
|
|
5
|
-
$gantt-grid-line-color: $border-default !default;
|
|
6
|
-
$gantt-label-color: rgba($content-font, .87) !default;
|
|
7
|
-
$gantt-content-color:
|
|
8
|
-
$holiday-background: $bg-base-20 !default;
|
|
9
|
-
$holiday-label-color: $content-font !default;
|
|
10
|
-
$holiday-label-font-size: 13px !default;
|
|
11
|
-
$weekend-background: $bg-base-10 !default;
|
|
12
|
-
$event-marker-line-color: #29c400 !default;
|
|
13
|
-
$event-marker-label-color: $bg-base-100 !default;
|
|
14
|
-
$event-marker-label-font-color: $invert-font !default;
|
|
15
|
-
$event-marker-label-font-size: 12px !default;
|
|
16
|
-
$event-marker-label-padding: 7px 12px !default;
|
|
17
|
-
$event-marker-label-height: 30px !default;
|
|
18
|
-
$event-marker-label-arrow-top: 60px !default;
|
|
19
|
-
$connector-line-color: #29c400 !default;
|
|
20
|
-
$connector-line-
|
|
21
|
-
$connector-
|
|
22
|
-
$connector-
|
|
23
|
-
$connector-
|
|
24
|
-
$connector-point-hover-
|
|
25
|
-
$connector-point-
|
|
26
|
-
$
|
|
27
|
-
$
|
|
28
|
-
$gantt-connector-point-
|
|
29
|
-
$gantt-
|
|
30
|
-
$gantt-
|
|
31
|
-
$gantt-
|
|
32
|
-
$gantt-
|
|
33
|
-
$gantt-
|
|
34
|
-
|
|
35
|
-
$gantt-
|
|
36
|
-
|
|
37
|
-
$gantt-unscheduled-
|
|
38
|
-
$gantt-unscheduled-
|
|
39
|
-
$gantt-
|
|
40
|
-
$gantt-
|
|
41
|
-
$gantt-
|
|
42
|
-
$gantt-child-task-bar
|
|
43
|
-
$gantt-
|
|
44
|
-
$gantt-
|
|
45
|
-
$gantt-
|
|
46
|
-
$gantt-
|
|
47
|
-
$gantt-
|
|
48
|
-
$gantt-
|
|
49
|
-
$gantt-
|
|
50
|
-
$gantt-
|
|
51
|
-
$
|
|
52
|
-
$gantt-
|
|
53
|
-
$gantt-
|
|
54
|
-
$gantt-
|
|
55
|
-
$gantt-
|
|
56
|
-
$gantt-
|
|
57
|
-
$gantt-progress-bar-
|
|
58
|
-
$gantt-
|
|
59
|
-
$gantt-
|
|
60
|
-
$gantt-
|
|
61
|
-
$gantt-
|
|
62
|
-
$gantt-
|
|
63
|
-
$gantt-
|
|
64
|
-
$gantt-
|
|
65
|
-
$gantt-
|
|
66
|
-
$gantt-
|
|
67
|
-
$gantt-
|
|
68
|
-
$gantt-
|
|
69
|
-
$gantt-
|
|
70
|
-
$gantt-
|
|
71
|
-
$gantt-
|
|
72
|
-
$gantt-
|
|
73
|
-
$gantt-
|
|
74
|
-
$gantt-
|
|
75
|
-
$gantt-
|
|
76
|
-
$gantt-
|
|
77
|
-
$gantt-
|
|
78
|
-
$gantt-
|
|
79
|
-
$gantt-
|
|
80
|
-
$gantt-dialog-
|
|
81
|
-
$gantt-dialog-
|
|
82
|
-
$gantt-dialog-
|
|
83
|
-
$gantt-dialog-
|
|
84
|
-
$gantt-
|
|
85
|
-
$gantt-dialog-
|
|
86
|
-
$gantt-dialog-
|
|
87
|
-
$gantt-
|
|
88
|
-
$gantt-
|
|
89
|
-
$gantt-
|
|
90
|
-
$gantt-
|
|
91
|
-
$gantt-
|
|
92
|
-
$gantt-
|
|
93
|
-
$gantt-
|
|
94
|
-
$gantt-
|
|
95
|
-
$gantt-
|
|
96
|
-
$gantt-
|
|
97
|
-
$gantt-
|
|
98
|
-
$gantt-
|
|
99
|
-
$gantt-
|
|
100
|
-
$gantt-
|
|
101
|
-
$gantt-
|
|
102
|
-
$gantt-
|
|
103
|
-
$gantt-
|
|
104
|
-
$gantt-
|
|
105
|
-
$gantt-
|
|
106
|
-
$gantt-
|
|
107
|
-
$gantt-
|
|
108
|
-
$gantt-
|
|
109
|
-
$gantt-
|
|
110
|
-
$gantt-
|
|
111
|
-
$gantt-
|
|
112
|
-
$gantt-
|
|
113
|
-
$gantt-
|
|
114
|
-
$gantt-
|
|
115
|
-
$gantt-
|
|
116
|
-
$
|
|
117
|
-
$
|
|
118
|
-
$gantt-
|
|
119
|
-
$gantt-
|
|
120
|
-
$gantt-
|
|
121
|
-
$gantt-
|
|
122
|
-
$gantt-dialog-
|
|
123
|
-
$gantt-dialog-tab-
|
|
124
|
-
$gantt-dialog-border-radius: 0px !default;
|
|
125
|
-
$
|
|
126
|
-
$gantt-
|
|
127
|
-
$gantt-
|
|
128
|
-
$gantt-
|
|
129
|
-
$gantt-
|
|
130
|
-
$gantt-
|
|
131
|
-
$gantt-
|
|
132
|
-
$gantt-
|
|
133
|
-
$gantt-
|
|
134
|
-
$gantt-
|
|
135
|
-
$gantt-
|
|
136
|
-
$gantt-
|
|
137
|
-
$gantt-
|
|
138
|
-
$gantt-
|
|
139
|
-
$gantt-header-
|
|
140
|
-
$gantt-header-
|
|
141
|
-
$gantt-
|
|
142
|
-
$gantt-
|
|
143
|
-
$gantt-
|
|
144
|
-
$gantt-
|
|
145
|
-
$gantt-
|
|
146
|
-
$gantt-
|
|
147
|
-
$gantt-
|
|
148
|
-
$gantt-
|
|
149
|
-
$gantt-
|
|
150
|
-
$gantt-
|
|
151
|
-
$
|
|
152
|
-
$gantt-
|
|
153
|
-
$gantt-
|
|
154
|
-
$
|
|
155
|
-
$gantt-
|
|
156
|
-
$
|
|
157
|
-
$gantt-
|
|
1
|
+
$gantt-header-bg-color: $bg-base-0 !default;
|
|
2
|
+
$gantt-header-border-color: $border-default !default;
|
|
3
|
+
$gantt-header-color: $hover-font !default;
|
|
4
|
+
$gantt-context-menu-icon-color: $hover-font !default;
|
|
5
|
+
$gantt-grid-line-color: $border-default !default;
|
|
6
|
+
$gantt-label-color: rgba($content-font, .87) !default;
|
|
7
|
+
$gantt-content-color: $hover-font !default;
|
|
8
|
+
$holiday-background: $bg-base-20 !default;
|
|
9
|
+
$holiday-label-color: $content-font !default;
|
|
10
|
+
$holiday-label-font-size: 13px !default;
|
|
11
|
+
$weekend-background: $bg-base-10 !default;
|
|
12
|
+
$event-marker-line-color: #29c400 !default;
|
|
13
|
+
$event-marker-label-color: $bg-base-100 !default;
|
|
14
|
+
$event-marker-label-font-color: $invert-font !default;
|
|
15
|
+
$event-marker-label-font-size: 12px !default;
|
|
16
|
+
$event-marker-label-padding: 7px 12px !default;
|
|
17
|
+
$event-marker-label-height: 30px !default;
|
|
18
|
+
$event-marker-label-arrow-top: 60px !default;
|
|
19
|
+
$connector-line-color: #29c400 !default;
|
|
20
|
+
$critical-connector-line-color: #d13438 !default;
|
|
21
|
+
$connector-line-hover-color: #29c400 !default;
|
|
22
|
+
$critical-connector-line-hover-color: #f3d8da !default;
|
|
23
|
+
$connector-false-line-color: #29c400 !default;
|
|
24
|
+
$connector-point-hover-color: $selection-border !default;
|
|
25
|
+
$connector-point-border-color: $selection-font !default;
|
|
26
|
+
$connector-point-hover-bg-color: $bg-base-0 !default;
|
|
27
|
+
$connector-point-hover-border-color: $selection-border !default;
|
|
28
|
+
$gantt-connector-point-margin-top: 7.5px !default;
|
|
29
|
+
$gantt-connector-point-margin-radius: 4px !default;
|
|
30
|
+
$gantt-connector-point-left: 8px !default;
|
|
31
|
+
$gantt-unscheduled-taskbar-left: 3px !default;
|
|
32
|
+
$gantt-unscheduled-taskbar-right-radius: 2px !default;
|
|
33
|
+
$gantt-label-size: 13px !default;
|
|
34
|
+
$gantt-header-border-spacing: 0 !default;
|
|
35
|
+
$gantt-line-container-cell-border-color: $border-default !default;
|
|
36
|
+
/* stylelint-disable */
|
|
37
|
+
$gantt-unscheduled-taskbar-background: linear-gradient(to right, rgba(#3e047d, 0.2), #3e047d 30%, #3e047d 70%, #3e047d 70%, rgba(#3e047d, 0.2) 100%) !default;
|
|
38
|
+
$gantt-unscheduled-critical-taskbar-background: linear-gradient(to right, rgba(285,85,85, 0.2), #D13438 30%, #D13438 70%, #D13438 70%, rgba(285,85,85, 0.2) 100%) !default;
|
|
39
|
+
$gantt-unscheduled-critical-taskbar-background-color: rgba(285,85,85, .2) !default;
|
|
40
|
+
$gantt-unscheduled-milestone-top-border: rgba(51, 51, 51, .6) !default;
|
|
41
|
+
$gantt-unscheduled-milestone-bottom-border: rgba(51, 51, 51, .6) !default;
|
|
42
|
+
$gantt-child-task-bar: #6e06f1 !default;
|
|
43
|
+
$gantt-critical-child-task-bar: #F3D8DA !default;
|
|
44
|
+
$gantt-child-progress-bar: #3e047d !default;
|
|
45
|
+
$gantt-critical-child-progress-bar: #D13438 !default;
|
|
46
|
+
$gantt-child-task-bar-border: 1px solid $hover-border !default;
|
|
47
|
+
$gantt-critical-child-task-bar-border: 1px solid #F3D8DA !default;
|
|
48
|
+
$gantt-manualchild-task-bar: #4731FE;
|
|
49
|
+
$gantt-manualchild-task-bar-border: 1px solid #FFFFFF;
|
|
50
|
+
$gantt-manualchild-progress-bar: #1B00F7 ;
|
|
51
|
+
$connector-point-hover-outerline-color: $hover-bg !default;
|
|
52
|
+
$gantt-manualchild-progress-bar-border: 0px !default;
|
|
53
|
+
$gantt-manualparent-background-color: #989A9C;
|
|
54
|
+
$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;
|
|
55
|
+
$gantt-unscheduled-manualtaskbar-background: linear-gradient(to right, rgba(63,81,181, 0.2), #6e06f1 30%, #6e06f1 70%, #6e06f1 70%, rgba(63,81,181, 0.2) 100%) !default;
|
|
56
|
+
$gantt-child-progress-bar-border: 0px !default;
|
|
57
|
+
$gantt-child-progress-bar-border-radious:4px;
|
|
58
|
+
$gantt-parent-task-bar: #007d01 !default;
|
|
59
|
+
$gantt-parent-progress-bar: #005201 !default;
|
|
60
|
+
$gantt-milestone-border-color: $bg-base-100 !default;
|
|
61
|
+
$gantt-critical-milestone-border-color: #D13438 !default;
|
|
62
|
+
$gantt-parent-milestone-border-color: #005201 !default;
|
|
63
|
+
$gantt-parent-task-bar-border: 1px solid $hover-border !default;
|
|
64
|
+
$gantt-parent-progress-bar-border: 0px !default;
|
|
65
|
+
$gantt-progress-bar-left-radius: 2px !default;
|
|
66
|
+
$gantt-unscheduled-taskbar-left-radius: 0px !default;
|
|
67
|
+
$gantt-connector-point-right-margin-left: 2px !default;
|
|
68
|
+
$gantt-right-label-container-margin-left: 25px !default;
|
|
69
|
+
$gantt-task-label-font-size: 12px !default;
|
|
70
|
+
$gantt-task-label-font-color: $hover-font !default;
|
|
71
|
+
$gantt-tab-header-active-font-color: $selection-font !default;
|
|
72
|
+
$gantt-tab-header-font-color: rgba($selection-font, .70) !default;
|
|
73
|
+
$gantt-label-font-size: 13px !default;
|
|
74
|
+
$gantt-bigger-label-font-size: 13px !default;
|
|
75
|
+
$gantt-label-font-color: $content-font !default;
|
|
76
|
+
$gantt-edit-icon-color: $content-font !default;
|
|
77
|
+
$gantt-icons-color: $hover-font;
|
|
78
|
+
$gantt-unscheduled-taskbar-border: 0px !default;
|
|
79
|
+
$gantt-unscheduled-taskbar-border-radius: 0px !default;
|
|
80
|
+
$gantt-dialog-general-height: 241px !default;
|
|
81
|
+
$gantt-dialog-edit-form-odd-padding: 16px 18px 0 18px !default;
|
|
82
|
+
$gantt-dialog-edit-form-even-padding: 16px 16px 0 0 !default;
|
|
83
|
+
$gantt-dialog-edit-form-scroll-padding: 16px 16px 0 0 !default;
|
|
84
|
+
$gantt-bigger-predecessor-dialog-padding: 10px 9px 9px 14px !important;
|
|
85
|
+
$gantt-bigger-predecessor-dialog-font-size: 12px;
|
|
86
|
+
$gantt-bigger-predecessor-dialog-font-weight: 400 !default;
|
|
87
|
+
$gantt-bigger-predecessor-dialog-line-height: 1.8 !default;
|
|
88
|
+
$gantt-bigger-tooltip-button-color: $selection-font;
|
|
89
|
+
$gantt-bigger-tooltip-dialog-color: $bg-base-10;
|
|
90
|
+
$gantt-bigger-dialog-edit-form-odd-padding: 16px 9px 0 18px !default;
|
|
91
|
+
$gantt-bigger-dialog-edit-form-even-padding: 16px 18px 0 9px !default;
|
|
92
|
+
$gantt-bigger-dialog-close-button-left: 2px !important;
|
|
93
|
+
$gantt-bigger-dialog-close-button-size: 12px !important;
|
|
94
|
+
$gantt-bigger-dialog-header-padding: 16px 4px 12px 18px !important;
|
|
95
|
+
$gantt-bigger-add-dialog-content-height: 241px !important;
|
|
96
|
+
$gantt-bigger-event-arrow-color: $hover-font;
|
|
97
|
+
$gantt-bigger-tooltip-button-text-color: #F9FAFB;
|
|
98
|
+
$gantt-bigger-tooltip-disabled-button-color: $border-alt !important;
|
|
99
|
+
$gantt-bigger-event-arrow-font-size: 12px !important;
|
|
100
|
+
$gantt-bigger-event-markers-border-radius: 4px !important;
|
|
101
|
+
$gantt-bigger-event-markers-height: 26px !important;
|
|
102
|
+
$gantt-bigger-event-arrow-bottom: 6px solid transparent;
|
|
103
|
+
$gantt-bigger-event-arrow-right: 6px solid transparent;
|
|
104
|
+
$gantt-bigger-event-arrow-top: 6px solid transparent;
|
|
105
|
+
$gantt-bigger-event-arrow-top-value: 43px !important;
|
|
106
|
+
$gantt-bigger-event-markers-top: 36px !important;
|
|
107
|
+
$gantt-bigger-event-markers-padding: 4px 11px 4px 8px !important;
|
|
108
|
+
$gantt-bigger-add-dialog-input-height: 78px !important;
|
|
109
|
+
$gantt-bigger-add-dialog-input-width: 250px !important;
|
|
110
|
+
$gantt-bigger-add-dialog-input-field-width: 175px !default;
|
|
111
|
+
$gantt-bigger-filter-dialog-footer-padding: 19px 18px 19px 16px !important;
|
|
112
|
+
$gantt-bigger-add-dialog-footer-padding: 16px 18px 20px 18px !important;
|
|
113
|
+
$gantt-bigger-filter-dialog-footer-height: 76px !important;
|
|
114
|
+
$gantt-bigger-filter-dialog-input-padding: 20px 0 0 !important;
|
|
115
|
+
$gantt-bigger-add-dialog-footer-height: 70px !important;
|
|
116
|
+
$gantt-bigger-dialog-width: 554px !important;
|
|
117
|
+
$gantt-bigger-filter-dialog-width: 307px !important;
|
|
118
|
+
$gantt-dialog-bigger-input-field: 40px !default;
|
|
119
|
+
$gantt-dialog-bigger-input-padding-field: 20px 18px 0px 18px !important;
|
|
120
|
+
$gantt-bigger-dialog-input-field-height: 38px !important;
|
|
121
|
+
$gantt-bigger-dialog-input-icon: 38px !important;
|
|
122
|
+
$gantt-dialog-bigger-border-radius: 0px !important;
|
|
123
|
+
$gantt-bigger-dialog-tab-padding-left: 6px !important;
|
|
124
|
+
$gantt-bigger-dialog-border-radius: 6px 6px 0px 0px !default;
|
|
125
|
+
$gantt-bigger-dialog-edit-form-scroll-padding: 16px 18px 0 9px !default;
|
|
126
|
+
$gantt-dialog-dependent-height: 161px !default;
|
|
127
|
+
$gantt-dialog-resource-height: 202px !default;
|
|
128
|
+
$gantt-dialog-rte-height: 241px !default;
|
|
129
|
+
$gantt-dialog-rte-content-height: 200px !default;
|
|
130
|
+
$gantt-dialog-padding-bottom: 4px !default;
|
|
131
|
+
$gantt-dialog-active-tab-background: transparent !default;
|
|
132
|
+
$gantt-dialog-tab-padding-left: 13px !default;
|
|
133
|
+
$gantt-dialog-tab-background: $selection-bg !default;
|
|
134
|
+
$gantt-dialog-header-font-color: $selection-font !default;
|
|
135
|
+
$gantt-dialog-icon-color: $selection-font !default;
|
|
136
|
+
$gantt-dialog-icon-hover-color: rgba(#685708, .4) !default;
|
|
137
|
+
$gantt-dialog-close-icon-hover-color: $selection-font !default;
|
|
138
|
+
$gantt-dialog-tab-hover-border-color: transparent !default;
|
|
139
|
+
$gantt-dialog-tab-header-border-no-color: transparent !default;
|
|
140
|
+
$gantt-tab-header-border-width: 0px;
|
|
141
|
+
$gantt-depedent-div-border-bottom: 1px !default;
|
|
142
|
+
$gantt-resource-div-border-bottom: 1px !default;
|
|
143
|
+
$gantt-richtext-border-bottom: 1px !default;
|
|
144
|
+
$gantt-richtext-content-border-bottom: 0px !default;
|
|
145
|
+
$gantt-tab-selection-indicator-color: $selection-font !default;
|
|
146
|
+
$gantt-tab-header-hover-color: transparent !default;
|
|
147
|
+
$gantt-tab-header-hover-font-color: rgba($selection-font, 1) !default;
|
|
148
|
+
$gantt-connector-point-width: 12px !default;
|
|
149
|
+
$gantt-connector-point-height: 8px !default;
|
|
150
|
+
$gantt-connector-left-point-left: -12px !default;
|
|
151
|
+
$gantt-parent-progress-bar-border-radius: 0px !default;
|
|
152
|
+
$gantt-timeline-top-headercell-font-size: 14px !default;
|
|
153
|
+
$gantt-timeline-top-headercell-font-weight: 400 !default;
|
|
154
|
+
$gantt-active-background: rgba($selection-bg, 0.70) !default;
|
|
155
|
+
$gantt-active-color: $selection-font !default;
|
|
156
|
+
$gantt-active-color-opacity: 1 !default;
|
|
157
|
+
$gantt-table-background: $selection-font !default;
|
|
158
|
+
$gantt-baseline-color: $alert-alt !default;
|
|
159
|
+
$gantt-child-progress-margin-left: 0.5px !default;
|
|
160
|
+
$gantt-timeline-single-header-outer-div: 45px !default;
|
|
161
|
+
$gantt-chart-timeline-single-header-outer-div: 46px !default;
|
|
162
|
+
$gantt-header-border-height: 64px !default;
|
|
163
|
+
$gantt-bigger-header-border-height: 64px !default;
|
|
164
|
+
$gantt-treegrid-header-border-height: 63px !default;
|
|
165
|
+
$gantt-bigger-treegrid-header-border-height: 63px !default;
|
|
166
|
+
$gantt-header-border-bottom-width: 1px !default;
|
|
167
|
+
$gantt-timeline-top-header-cell-height: 32px !default;
|
|
168
|
+
$gantt-bigger-timeline-top-header-cell-height: 32px !default;
|
|
169
|
+
$progress-handler-background: #222 !default;
|
|
170
|
+
$progress-handler-outline: $hover-font !default;
|
|
171
|
+
$gantt-header-border-radius: 0px !default;
|
|
172
|
+
$gantt-splitter-border-top-right-radius: 0px !default;
|
|
173
|
+
$gantt-splitter-border-top-left-radius: 0px !default;
|
|
174
|
+
$gantt-filter-menu-value-div-padding: 24px !default;
|
|
175
|
+
$gantt-dialog-tab-hover-border-bottom: 0px !default;
|
|
176
|
+
$gantt-dialog-tab-hover-border-bottom-radius: 0px !default;
|
|
177
|
+
$gantt-dialog-border-radius: 0px !default;
|
|
178
|
+
$event-marker-line-height: 1.2 !default;
|
|
179
|
+
$gantt-inactive-parent: #8A8A8A !default;
|
|
180
|
+
$gantt-inactive-child: #D5D5D5 !default;
|
|
181
|
+
$gantt-connected-task: lighten(#6e06f1, 20%) !default;
|
|
182
|
+
$gantt-active-parent-task: lighten(#000000, 10%) !default;
|
|
183
|
+
$gantt-uptail-border: #e0e0e0 !default;
|
|
184
|
+
$gantt-gridpopup-span: $selection-font !default;
|
|
185
|
+
$gantt-active-parent-shadow: rgba($gantt-gridpopup-span, 0.5) !default;
|
|
186
|
+
$gantt-left-resize-gripper-border: #9e9e9e !default;
|
|
187
|
+
$gantt-left-resize-gripper-color: #eee !default;
|
|
188
|
+
$gantt-clone-padding: 4px 5px !default;
|
|
189
|
+
$gantt-bigger-clone-padding: $gantt-clone-padding !default;
|
|
190
|
+
$gantt-cell-border-color: $border-default !default;
|
|
191
|
+
$gantt-group-clone-box-shadow: 0 0 !default;
|
|
192
|
+
$gantt-header-font-size: 12px !default;
|
|
193
|
+
$gantt-header-font-weight: 500 !default;
|
|
194
|
+
$gantt-drag-clone-font-weight: $gantt-header-font-weight !default;
|
|
195
|
+
$gantt-drag-clone-opacity: 1 !default;
|
|
196
|
+
$gantt-group-clone-text-align: center !default;
|
|
197
|
+
$gantt-clone-prop-box-shadow: 0 0 10px 0 rgba($bg-base-0, .2) !default;
|
|
198
|
+
$gantt-drag-clone-bg-color: $selection-bg !default;
|
|
199
|
+
$gantt-drag-clone-border-color: $border-default !default;
|
|
200
|
+
$gantt-drag-clone-color: $selection-font !default;
|
|
201
|
+
$gantt-content-font-color: $content-font !default;
|
|
202
|
+
$gantt-table-background-color: $bg-base-0 !default;
|
|
203
|
+
$gantt-clone-dragdrop-bg-color: $gantt-table-background-color !default;
|
|
204
|
+
$error-elem-color: #e3165b;
|
|
205
|
+
$gantt-border-size: $border-size !default;
|
|
206
|
+
$gantt-active-container-border: $border-default !default;
|
|
207
|
+
$grid-active-container-border: 0 0 0 1px #ffff inset !default;
|
|
208
|
+
$gantt-collapse-progress-width: 0px !important;
|
|
209
|
+
$rangecontainer-border-color: #FC7A05;
|
|
210
|
+
$gantt-range-container-arc-radius: 0px !default;
|
|
211
|
+
$bigger-column-menu-size: 45px !default;
|