@syncfusion/ej2-gantt 20.1.58 → 20.2.36

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 (105) hide show
  1. package/CHANGELOG.md +37 -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 +1100 -74
  5. package/dist/es6/ej2-gantt.es2015.js.map +1 -1
  6. package/dist/es6/ej2-gantt.es5.js +1099 -71
  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/actions.d.ts +1 -0
  13. package/src/gantt/actions/actions.js +1 -0
  14. package/src/gantt/actions/cell-edit.js +5 -3
  15. package/src/gantt/actions/connector-line-edit.js +20 -6
  16. package/src/gantt/actions/context-menu.js +3 -4
  17. package/src/gantt/actions/critical-path.d.ts +26 -0
  18. package/src/gantt/actions/critical-path.js +735 -0
  19. package/src/gantt/actions/dependency.js +3 -0
  20. package/src/gantt/actions/dialog-edit.js +1 -1
  21. package/src/gantt/actions/edit.js +29 -3
  22. package/src/gantt/actions/filter.js +1 -1
  23. package/src/gantt/actions/keyboard.js +2 -2
  24. package/src/gantt/actions/selection.js +3 -0
  25. package/src/gantt/actions/taskbar-edit.js +6 -4
  26. package/src/gantt/actions/toolbar.js +22 -4
  27. package/src/gantt/base/css-constants.d.ts +12 -0
  28. package/src/gantt/base/css-constants.js +12 -0
  29. package/src/gantt/base/date-processor.d.ts +1 -1
  30. package/src/gantt/base/date-processor.js +8 -2
  31. package/src/gantt/base/enum.d.ts +3 -1
  32. package/src/gantt/base/gantt-chart.js +6 -2
  33. package/src/gantt/base/gantt-model.d.ts +8 -1
  34. package/src/gantt/base/gantt.d.ts +32 -1
  35. package/src/gantt/base/gantt.js +133 -5
  36. package/src/gantt/base/interface.d.ts +16 -0
  37. package/src/gantt/base/splitter.js +4 -0
  38. package/src/gantt/base/task-processor.js +19 -6
  39. package/src/gantt/base/tree-grid.js +1 -1
  40. package/src/gantt/export/export-helper.js +19 -6
  41. package/src/gantt/export/pdf-base/pdf-style/gantt-theme.js +16 -0
  42. package/src/gantt/renderer/chart-rows.js +16 -5
  43. package/src/gantt/renderer/nonworking-day.js +5 -2
  44. package/src/gantt/renderer/timeline.js +35 -14
  45. package/src/global.js +1 -1
  46. package/styles/bootstrap-dark.css +272 -14
  47. package/styles/bootstrap.css +271 -14
  48. package/styles/bootstrap4.css +273 -12
  49. package/styles/bootstrap5-dark.css +272 -15
  50. package/styles/bootstrap5.css +272 -15
  51. package/styles/fabric-dark.css +270 -12
  52. package/styles/fabric.css +276 -18
  53. package/styles/fluent-dark.css +272 -14
  54. package/styles/fluent.css +272 -14
  55. package/styles/gantt/_bootstrap-dark-definition.scss +59 -16
  56. package/styles/gantt/_bootstrap-definition.scss +57 -14
  57. package/styles/gantt/_bootstrap4-definition.scss +65 -21
  58. package/styles/gantt/_bootstrap5-definition.scss +55 -12
  59. package/styles/gantt/_fabric-dark-definition.scss +58 -15
  60. package/styles/gantt/_fabric-definition.scss +58 -15
  61. package/styles/gantt/_fluent-definition.scss +53 -10
  62. package/styles/gantt/_fusionnew-definition.scss +212 -0
  63. package/styles/gantt/_highcontrast-definition.scss +57 -14
  64. package/styles/gantt/_highcontrast-light-definition.scss +55 -12
  65. package/styles/gantt/_layout.scss +293 -7
  66. package/styles/gantt/_material-dark-definition.scss +60 -16
  67. package/styles/gantt/_material-definition.scss +65 -21
  68. package/styles/gantt/_material3-definition.scss +213 -0
  69. package/styles/gantt/_tailwind-definition.scss +52 -8
  70. package/styles/gantt/_theme.scss +56 -1
  71. package/styles/gantt/bootstrap-dark.css +272 -14
  72. package/styles/gantt/bootstrap.css +271 -14
  73. package/styles/gantt/bootstrap4.css +273 -12
  74. package/styles/gantt/bootstrap5-dark.css +272 -15
  75. package/styles/gantt/bootstrap5.css +272 -15
  76. package/styles/gantt/fabric-dark.css +270 -12
  77. package/styles/gantt/fabric.css +276 -18
  78. package/styles/gantt/fluent-dark.css +272 -14
  79. package/styles/gantt/fluent.css +272 -14
  80. package/styles/gantt/highcontrast-light.css +260 -13
  81. package/styles/gantt/highcontrast.css +271 -13
  82. package/styles/gantt/icons/_bootstrap-dark.scss +12 -1
  83. package/styles/gantt/icons/_bootstrap.scss +12 -1
  84. package/styles/gantt/icons/_bootstrap4.scss +12 -1
  85. package/styles/gantt/icons/_bootstrap5.scss +12 -0
  86. package/styles/gantt/icons/_fabric-dark.scss +12 -0
  87. package/styles/gantt/icons/_fabric.scss +12 -0
  88. package/styles/gantt/icons/_fluent.scss +12 -0
  89. package/styles/gantt/icons/_fusionnew.scss +120 -0
  90. package/styles/gantt/icons/_highcontrast.scss +12 -0
  91. package/styles/gantt/icons/_material-dark.scss +12 -0
  92. package/styles/gantt/icons/_material.scss +12 -0
  93. package/styles/gantt/icons/_material3.scss +124 -0
  94. package/styles/gantt/icons/_tailwind-dark.scss +12 -0
  95. package/styles/gantt/icons/_tailwind.scss +12 -0
  96. package/styles/gantt/material-dark.css +277 -12
  97. package/styles/gantt/material.css +279 -14
  98. package/styles/gantt/tailwind-dark.css +279 -15
  99. package/styles/gantt/tailwind.css +276 -12
  100. package/styles/highcontrast-light.css +260 -13
  101. package/styles/highcontrast.css +271 -13
  102. package/styles/material-dark.css +277 -12
  103. package/styles/material.css +279 -14
  104. package/styles/tailwind-dark.css +279 -15
  105. package/styles/tailwind.css +276 -12
@@ -10,6 +10,73 @@
10
10
  .e-timeline-top-header-cell {
11
11
  height: $gantt-bigger-timeline-top-header-cell-height;
12
12
  }
13
+
14
+ .e-event-markers {
15
+ .e-span-label {
16
+ border-radius: $gantt-bigger-event-markers-border-radius;
17
+ font-size: $gantt-bigger-event-arrow-font-size;
18
+ height: $gantt-bigger-event-markers-height;
19
+ padding: $gantt-bigger-event-markers-padding;
20
+ top: $gantt-bigger-event-markers-top;
21
+ }
22
+
23
+ .e-gantt-right-arrow {
24
+ border-bottom: $gantt-bigger-event-arrow-bottom;
25
+ border-right: $gantt-bigger-event-arrow-right;
26
+ border-right-color: $gantt-bigger-event-arrow-color;
27
+ border-top: $gantt-bigger-event-arrow-top;
28
+ top: $gantt-bigger-event-arrow-top-value;
29
+ }
30
+ }
31
+
32
+ @if($skin-name == 'FluentUI' or $skin-name == 'bootstrap5' or $skin-name == 'tailwind') {
33
+ .e-left-resize-gripper::before,
34
+ .e-right-resize-gripper::before {
35
+ content: '\e888';
36
+ }
37
+ }
38
+ @else {
39
+ .e-left-resize-gripper::before,
40
+ .e-right-resize-gripper::before {
41
+ content: '\e92c';
42
+ }
43
+ }
44
+
45
+ .e-connectorpoint-right,
46
+ .e-connectorpoint-left,
47
+ .e-right-connectorpoint-outer-div,
48
+ .e-left-connectorpoint-outer-div {
49
+ border-radius: 50%;
50
+ display: inline-block;
51
+ position: absolute;
52
+ }
53
+
54
+ .e-connectorpoint-left-hover,
55
+ .e-connectorpoint-right-hover {
56
+ border-style: solid;
57
+ border-width: 1px;
58
+ box-sizing: content-box;
59
+ cursor: pointer;
60
+ display: inline-block;
61
+ }
62
+
63
+ .e-connectorpoint-left-hover,
64
+ .e-connectorpoint-right-hover {
65
+ background-color: $connector-point-hover-color;
66
+ border-color: $connector-point-border-color;
67
+ }
68
+
69
+ .e-connectorpoint-left-hover:hover,
70
+ .e-connectorpoint-right-hover:hover {
71
+ background-color: $connector-point-hover-color;
72
+ border-color: $connector-point-border-color;
73
+ outline: 2px solid $connector-point-hover-outerline-color;
74
+ }
75
+
76
+ }
77
+
78
+ .e-tab .e-content {
79
+ height: $gantt-bigger-add-dialog-content-height;
13
80
  }
14
81
 
15
82
  .e-gantt-tree-grid-pane {
@@ -19,6 +86,54 @@
19
86
  }
20
87
  }
21
88
  }
89
+
90
+ .e-dialog {
91
+ .e-dlg-header-content {
92
+ padding: $gantt-bigger-dialog-header-padding; // sass-lint:disable-line no-important
93
+
94
+ .e-btn.e-dlg-closeicon-btn {
95
+ left: $gantt-bigger-dialog-close-button-left;
96
+ }
97
+ }
98
+
99
+ @if($skin-name == 'tailwind') {
100
+ .e-dlg-header-content {
101
+ height: 68px !important; // sass-lint:disable-line no-important
102
+ }
103
+ }
104
+
105
+ .e-btn .e-btn-icon.e-icon-dlg-close {
106
+ font-size: $gantt-bigger-dialog-close-button-size;
107
+ }
108
+
109
+ .e-footer-content {
110
+ height: $gantt-bigger-filter-dialog-footer-height;
111
+ padding: $gantt-bigger-filter-dialog-footer-padding;
112
+
113
+ .e-btn {
114
+ margin-left: 12px;
115
+ }
116
+ }
117
+
118
+ .e-dlg-header {
119
+ line-height: 28px;
120
+ }
121
+ }
122
+
123
+ .e-filter-popup {
124
+ width: $gantt-bigger-filter-dialog-width;
125
+ }
126
+
127
+ .e-grid .e-flmenu-valuediv {
128
+ padding: $gantt-bigger-filter-dialog-input-padding;
129
+ }
130
+
131
+ .e-filter-popup {
132
+ .e-dlg-content {
133
+ border-radius: $gantt-dialog-bigger-border-radius;
134
+ padding: $gantt-dialog-bigger-input-padding-field;
135
+ }
136
+ }
22
137
  }
23
138
 
24
139
  .e-columnmenu {
@@ -34,6 +149,13 @@
34
149
  }
35
150
 
36
151
  .e-gantt-dialog {
152
+ border-radius: 6px;
153
+ width: $gantt-bigger-dialog-width;
154
+
155
+ .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
156
+ padding: 0 16px !important; // sass-lint:disable-line no-important
157
+ }
158
+
37
159
  .e-edit-form-column:nth-child(odd) {
38
160
  padding: $gantt-bigger-dialog-edit-form-odd-padding;
39
161
  }
@@ -45,6 +167,162 @@
45
167
  .e-edit-form-row.e-scroll .e-edit-form-column:nth-child(even) {
46
168
  padding: $gantt-bigger-dialog-edit-form-scroll-padding;
47
169
  }
170
+
171
+ .e-edit-form-row {
172
+ height: $gantt-bigger-add-dialog-content-height;
173
+ }
174
+
175
+ .e-edit-form-column {
176
+ height: $gantt-bigger-add-dialog-input-height;
177
+ }
178
+
179
+ .e-dlg-header-content {
180
+ border-bottom: 0 !important; // sass-lint:disable-line no-important
181
+ }
182
+
183
+ > .e-dlg-content {
184
+ border-radius: 0 !important; // sass-lint:disable-line no-important
185
+ }
186
+
187
+ .e-dlg-header-content {
188
+ border-radius: $gantt-bigger-dialog-border-radius;
189
+ padding-bottom: $gantt-dialog-padding-bottom;
190
+
191
+ .e-btn.e-dlg-closeicon-btn {
192
+ border-radius: 50%;
193
+ height: auto !important; // sass-lint:disable-line no-important
194
+ width: auto;
195
+ }
196
+ }
197
+
198
+ .e-tab {
199
+ .e-tab-header .e-toolbar-item.e-active {
200
+ margin-left: $gantt-bigger-dialog-tab-padding-left;
201
+ }
202
+ }
203
+
204
+ @if($skin-name == 'bootstrap4') {
205
+ .e-icon-dlg-close {
206
+ color: $gantt-bigger-dialog-icon-color;
207
+ }
208
+ }
209
+
210
+ .e-control-wrapper .e-input-group-icon.e-date-icon {
211
+ font-size: 16px !important; // sass-lint:disable-line no-important
212
+ }
213
+
214
+ .e-control-wrapper .e-input-group-icon.e-date-icon {
215
+ min-height: $gantt-bigger-dialog-input-icon;
216
+ min-width: 35.82px !important; // sass-lint:disable-line no-important
217
+ }
218
+
219
+ .e-btn.e-flat {
220
+ line-height: 24px;
221
+ padding: 6px 16px 6px 15px !important; // sass-lint:disable-line no-important
222
+ }
223
+
224
+ .e-btn.e-primary {
225
+ padding: 6px 21px 6px 23px !important; // sass-lint:disable-line no-important
226
+ }
227
+
228
+ .e-datetime-wrapper .e-time-icon.e-icons::before {
229
+ font-size: 16px !important; // sass-lint:disable-line no-important
230
+ }
231
+
232
+ .e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text {
233
+ font-size: 14px;
234
+ line-height: 22px;
235
+ }
236
+
237
+ .e-float-input.e-control-wrapper input[disabled] ~ label.e-label-top.e-float-text {
238
+ font-size: 14px;
239
+ line-height: 22px;
240
+ }
241
+
242
+ .e-float-input.e-control-wrapper input {
243
+ height: $gantt-bigger-dialog-input-field-height;
244
+
245
+ @if($skin-name == 'material') {
246
+ padding: 5px 0 11px !important; // sass-lint:disable-line no-important
247
+ }
248
+ }
249
+
250
+ .e-numeric.e-control-wrapper.e-input-group .e-input-group-icon {
251
+ min-height: $gantt-bigger-dialog-input-icon;
252
+ min-width: 35.82px !important; // sass-lint:disable-line no-important
253
+ }
254
+
255
+ .e-control-wrapper .e-input-group-icon.e-time-icon {
256
+ min-height: $gantt-bigger-dialog-input-icon;
257
+ min-width: 35.82px !important; // sass-lint:disable-line no-important
258
+ }
259
+
260
+ .e-input-group.e-control-wrapper {
261
+ height: $gantt-dialog-bigger-input-field;
262
+ }
263
+
264
+ .e-input-group-icon.e-date-icon {
265
+ min-width: 36px !important; // sass-lint:disable-line no-important
266
+ }
267
+
268
+ @if($skin-name == 'material') {
269
+ .e-datetime-wrapper .e-input-group-icon.e-time-icon {
270
+ margin: 5px 0 6px !important; // sass-lint:disable-line no-important
271
+ }
272
+
273
+ .e-input-group.e-control-wrapper .e-input-group-icon {
274
+ margin-right: 0 !important; // sass-lint:disable-line no-important
275
+ }
276
+ }
277
+
278
+ @if($skin-name == 'tailwind') {
279
+ .e-input-group.e-control-wrapper .e-input-group-icon {
280
+ padding: 7px 0 !important; // sass-lint:disable-line no-important
281
+ }
282
+ }
283
+ }
284
+
285
+ .e-predecessor-tooltip {
286
+ background-color: $gantt-bigger-tooltip-button-color;
287
+
288
+ .e-left-btn:disabled {
289
+ color: $gantt-bigger-tooltip-disabled-button-color;
290
+ }
291
+
292
+ .e-right-btn:disabled {
293
+ color: $gantt-bigger-tooltip-disabled-button-color;
294
+ }
295
+
296
+ .e-tip-content {
297
+ padding: 3px !important; // sass-lint:disable-line no-important
298
+ }
299
+
300
+ .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type {
301
+ background-color: $gantt-bigger-tooltip-button-color;
302
+ border-color: $gantt-bigger-tooltip-button-color;
303
+ color: $gantt-bigger-tooltip-button-text-color;
304
+ font-size: 12px;
305
+ line-height: 18px;
306
+ padding: 0 8px 0 0;
307
+ }
308
+
309
+ .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:last-of-type {
310
+ background-color: $gantt-bigger-tooltip-button-color;
311
+ border-color: $gantt-bigger-tooltip-button-color;
312
+ color: $gantt-bigger-tooltip-button-text-color;
313
+ font-size: 12px;
314
+ line-height: 18px;
315
+ padding: 0 0 0 8px;
316
+ }
317
+ }
318
+
319
+ .e-predecessor-dialog {
320
+ background-color: $gantt-bigger-tooltip-dialog-color;
321
+
322
+ .e-dlg-content {
323
+ background-color: $gantt-bigger-tooltip-dialog-color;
324
+ padding: $gantt-bigger-predecessor-dialog-padding;
325
+ }
48
326
  }
49
327
  }
50
328
 
@@ -235,10 +513,12 @@
235
513
  }
236
514
 
237
515
  .e-holiday-container {
516
+ height: 100%;
238
517
  position: absolute;
239
518
  }
240
519
 
241
520
  .e-weekend-container {
521
+ height: 100%;
242
522
  position: absolute;
243
523
  }
244
524
 
@@ -522,24 +802,22 @@
522
802
  cursor: col-resize;
523
803
 
524
804
  .e-progressbar-handler {
525
- border-style: solid;
526
805
  border-width: 1px;
527
806
  box-sizing: content-box;
528
807
  cursor: col-resize;
529
808
  height: 2px;
530
809
  position: absolute;
531
810
  top: 7px;
532
- width: 12px;
533
811
  }
534
812
 
535
813
  .e-progressbar-handler-element {
536
814
  border-bottom-style: solid;
537
- border-bottom-width: 6px;
815
+ border-bottom-width: 8px;
538
816
  border-left: 7px solid transparent;
539
817
  border-right: 7px solid transparent;
540
818
  cursor: col-resize;
541
819
  height: 0;
542
- left: -1px;
820
+ left: 0;
543
821
  position: absolute;
544
822
  top: -7px;
545
823
  width: 0;
@@ -547,14 +825,14 @@
547
825
 
548
826
  .e-progressbar-handler-after {
549
827
  border-bottom-style: solid;
550
- border-bottom-width: 6px;
828
+ border-bottom-width: 8px;
551
829
  border-left: 6px solid transparent;
552
830
  border-right: 6px solid transparent;
553
831
  cursor: col-resize;
554
832
  height: 0;
555
- left: -1px;
833
+ left: 1px;
556
834
  position: absolute;
557
- top: -6px;
835
+ top: -7px;
558
836
  width: 0;
559
837
  }
560
838
  }
@@ -715,6 +993,10 @@
715
993
  outline: 1px solid;
716
994
  }
717
995
 
996
+ .e-critical-connector-line-hover {
997
+ outline: 1px solid;
998
+ }
999
+
718
1000
  .e-connector-line-hover-z-index {
719
1001
  z-index: 100;
720
1002
  }
@@ -1075,4 +1357,8 @@
1075
1357
  }
1076
1358
  }
1077
1359
  }
1360
+
1361
+ .e-predecessor-tooltip {
1362
+ visibility: hidden;
1363
+ }
1078
1364
  }
@@ -6,10 +6,11 @@ $gantt-grid-line-color: $grey-700 !default;
6
6
  $gantt-label-color: rgba($grey-light-font, .87) !default;
7
7
  $gantt-content-color: rgb(0, 0, 0) !default;
8
8
  $holiday-background: $grey-700 !default;
9
- $progress-handler-outline: #fff !default;
9
+ $progress-handler-outline: $primary-font !default;
10
10
  $progress-handler-background: #222 !default;
11
11
  $holiday-label-color: $grey-dark-font !default;
12
12
  $holiday-label-font-size: 12px !default;
13
+ $connector-point-hover-outerline-color: $primary-200 !default;
13
14
  $weekend-background: $grey-800 !default;
14
15
  $event-marker-line-color: $accent !default;
15
16
  $event-marker-label-color: #cae8ff !default;
@@ -19,9 +20,11 @@ $event-marker-label-padding: 7px 12px !default;
19
20
  $event-marker-label-height: 30px !default;
20
21
  $event-marker-label-arrow-top: 60px !default;
21
22
  $connector-line-color: lighten($primary, 15%) !default;
23
+ $critical-connector-line-color: #d13438 !default;
22
24
  $connector-line-hover-color: lighten($primary, 15%) !default;
25
+ $critical-connector-line-hover-color: #f3d8da !default;
23
26
  $connector-false-line-color: lighten($primary, 15%) !default;
24
- $connector-point-hover-color: $grey-300 !default;
27
+ $connector-point-hover-color: #005a9e !default;
25
28
  $connector-point-border-color: $grey-dark !default;
26
29
  $connector-point-hover-bg-color: $grey-700 !default;
27
30
  $connector-point-hover-border-color: lighten($primary, 15%) !default;
@@ -35,15 +38,18 @@ $gantt-header-border-spacing: 0 !default;
35
38
  $gantt-line-container-cell-border-color: $grey-700 !default;
36
39
  // sass-lint:disable-all
37
40
  $gantt-unscheduled-taskbar-background: linear-gradient(to right, rgba(63,81,181, 0.2), #3f51b5 30%, #3f51b5 70%, #3f51b5 70%, rgba(63,81,181, 0.2) 100%) !default;
38
- $gantt-unscheduled-taskbar-background-color: rgba(63,81,181, .2) !default;
41
+ $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;
42
+ $gantt-unscheduled-critical-taskbar-background-color: rgba(285,85,85, .2) !default;
39
43
  $gantt-unscheduled-milestone-top-border: #dadada !default;
40
44
  $gantt-unscheduled-milestone-bottom-border: #dadada !default;
41
- $gantt-resize-gripper: rgba(249, 146, 11, .2) !default;
42
45
  $gantt-child-task-bar: $primary !default;
46
+ $gantt-critical-child-task-bar: #F3D8DA !default;
43
47
  $gantt-child-progress-bar: lighten($primary, 15%) !default;
48
+ $gantt-critical-child-progress-bar: #D13438 !default;
44
49
  $gantt-child-progress-bar-border: 0px !default;
45
50
  $gantt-child-progress-bar-border-radious:4px;
46
51
  $gantt-child-task-bar-border: 1px solid lighten($primary, 15%) !default;
52
+ $gantt-critical-child-task-bar-border: 1px solid #F3D8DA !default;
47
53
  $gantt-manualchild-task-bar: #8dd1c4;
48
54
  $gantt-manualchild-progress-bar: #67c1b2;
49
55
  $gantt-manualchild-progress-bar-border: #4fb29f;
@@ -54,6 +60,7 @@ $gantt-unscheduled-manualtaskbar-background: linear-gradient(to right, rgba(63,8
54
60
  $gantt-parent-task-bar: #029f90 !default;
55
61
  $gantt-parent-progress-bar: #4cc7ba !default;
56
62
  $gantt-milestone-border-color: #dadada !default;
63
+ $gantt-critical-milestone-border-color: #d13438 !default;
57
64
  $gantt-parent-milestone-border-color: #4cc7ba !default;
58
65
  $gantt-parent-progress-bar-border: 0px !default;
59
66
  $gantt-parent-task-bar-border: 1px solid #4cc7ba !default;
@@ -66,19 +73,56 @@ $gantt-task-label-font-color: $primary-font !default;
66
73
  $gantt-label-font-size: 13px !default;
67
74
  $gantt-bigger-label-font-size: 14px !default;
68
75
  $gantt-label-font-color: $grey-dark-font !default;
69
- $gantt-tab-header-active-font-color: #fff !default;
76
+ $gantt-tab-header-active-font-color: $primary-font !default;
70
77
  $gantt-tab-header-font-color: rgba(255, 255, 255, 0.64) !default;
71
78
  $gantt-edit-icon-color: $grey-white !default;
72
- $gantt-icons-color: #fff;
79
+ $gantt-icons-color: $primary-font;
73
80
  $gantt-unscheduled-taskbar-border: 0px !default;
74
81
  $gantt-unscheduled-taskbar-border-radius: 0px !default;
75
82
  $gantt-dialog-general-height: 241px !default;
76
83
  $gantt-dialog-edit-form-odd-padding: 16px 18px 0 18px !default;
77
84
  $gantt-dialog-edit-form-even-padding: 16px 16px 0 0 !default;
78
85
  $gantt-dialog-edit-form-scroll-padding: 16px 16px 0 0 !default;
79
- $gantt-bigger-dialog-edit-form-odd-padding: 16px 18px 0 18px !default;
80
- $gantt-bigger-dialog-edit-form-even-padding: 16px 18px 0 0 !default;
81
- $gantt-bigger-dialog-edit-form-scroll-padding: 16px 18px 0 0 !default;
86
+ $gantt-bigger-predecessor-dialog-padding: 10px 9px 9px 14px !important;
87
+ $gantt-bigger-tooltip-button-color: $grey-black;
88
+ $gantt-bigger-tooltip-dialog-color: #f3f3f3;
89
+ $gantt-bigger-tooltip-button-text-color: $grey-white;
90
+ $gantt-bigger-tooltip-disabled-button-color: $grey-600 !important;
91
+ $gantt-bigger-dialog-edit-form-odd-padding: 16px 9px 0 16px !default;
92
+ $gantt-bigger-dialog-edit-form-even-padding: 16px 16px 0 9px !default;
93
+ $gantt-bigger-dialog-close-button-left: 1px !important;
94
+ $gantt-bigger-dialog-close-button-size: 12px !important;
95
+ $gantt-bigger-dialog-edit-form-odd-padding: 16px 9px 0 16px !default;
96
+ $gantt-bigger-dialog-header-padding: 16px 4px 17px 16px !important;
97
+ $gantt-bigger-add-dialog-content-height: 241px !important;
98
+ $gantt-bigger-event-arrow-color: #cae8ff;
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: 73px !important;
106
+ $gantt-bigger-event-markers-top: 65px !important;
107
+ $gantt-bigger-event-markers-padding: 4px 12px 4px 9px !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: 16px !important;
112
+ $gantt-bigger-add-dialog-footer-padding: 16px !important;
113
+ $gantt-bigger-filter-dialog-footer-height: 70px !important;
114
+ $gantt-bigger-filter-dialog-input-padding: 14px 0 0 !important;
115
+ $gantt-bigger-add-dialog-footer-height: 70px !important;
116
+ $gantt-bigger-dialog-width: 550px !important;
117
+ $gantt-bigger-filter-dialog-width: 350px !important;
118
+ $gantt-dialog-bigger-input-field: 44px !default;
119
+ $gantt-dialog-bigger-input-padding-field: 20px 16px 6px 16px !important;
120
+ $gantt-bigger-dialog-input-field-height: 27px !important;
121
+ $gantt-bigger-dialog-input-icon: 26px !important;
122
+ $gantt-dialog-bigger-border-radius: 6px !important;
123
+ $gantt-bigger-dialog-tab-padding-left: 4px !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;
82
126
  $gantt-dialog-dependent-height: 153px !default;
83
127
  $gantt-dialog-resource-height: 196px !default;
84
128
  $gantt-dialog-rte-height: 241px !default;
@@ -90,7 +134,7 @@ $gantt-dialog-tab-background: $primary !default;
90
134
  $gantt-dialog-header-font-color: $primary-font !default;
91
135
  $gantt-dialog-icon-color: $grey-white !default;
92
136
  $gantt-dialog-icon-hover-color: rgba(255, 255, 255, 0.15) !default;
93
- $gantt-dialog-close-icon-hover-color: #fff !default;
137
+ $gantt-dialog-close-icon-hover-color: $primary-font !default;
94
138
  $gantt-dialog-tab-hover-border-color: transparent !default;
95
139
  $gantt-dialog-tab-header-border-no-color: transparent !default;
96
140
  $gantt-tab-header-border-width: 0px;
@@ -98,7 +142,7 @@ $gantt-depedent-div-border-bottom: 1px !default;
98
142
  $gantt-resource-div-border-bottom: 1px !default;
99
143
  $gantt-richtext-border-bottom: 1px !default;
100
144
  $gantt-richtext-content-border-bottom: 0px !default;
101
- $gantt-tab-selection-indicator-color: #00b0ff !default;
145
+ $gantt-tab-selection-indicator-color: $accent !default;
102
146
  $gantt-tab-header-hover-color: transparent !default;
103
147
  $gantt-tab-header-hover-font-color: rgba(0, 0, 0, 0.87) !default;
104
148
  $gantt-connector-point-width: 12px !default;
@@ -108,7 +152,7 @@ $gantt-parent-progress-bar-border-radius: 4px !default;
108
152
  $gantt-timeline-top-headercell-font-size: 12px !default;
109
153
  $gantt-timeline-top-headercell-font-weight: 500 !default;
110
154
  $gantt-active-background: rgba(255, 255, 255, 0.28) !default;
111
- $gantt-active-color: #fff !default;
155
+ $gantt-active-color: $primary-font !default;
112
156
  $gantt-active-color-opacity: 0.87 !default;
113
157
  $gantt-table-background: $grey-dark !default;
114
158
  $gantt-baseline-color: #ff9800 !default;
@@ -134,11 +178,11 @@ $gantt-inactive-parent: #8A8A8A !default;
134
178
  $gantt-inactive-child: #D5D5D5 !default;
135
179
  $gantt-connected-task: lighten($primary, 20%) !default;
136
180
  $gantt-active-parent-task: lighten(#000000, 10%) !default;
137
- $gantt-uptail-border: #e0e0e0 !default;
138
- $gantt-gridpopup-span: #000 !default;
181
+ $gantt-uptail-border: $grey-300 !default;
182
+ $gantt-gridpopup-span: $accent-font !default;
139
183
  $gantt-active-parent-shadow: rgba($gantt-gridpopup-span, 0.5) !default;
140
- $gantt-left-resize-gripper-border: #9e9e9e !default;
141
- $gantt-left-resize-gripper-color: #eee !default;
184
+ $gantt-left-resize-gripper-border: $grey-500 !default;
185
+ $gantt-left-resize-gripper-color: $grey-200 !default;
142
186
  $gantt-clone-padding: 4px 5px !default;
143
187
  $gantt-bigger-clone-padding: $gantt-clone-padding !default;
144
188
  $gantt-cell-border-color: $grey-700 !default;