@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
@@ -199,6 +199,9 @@
199
199
  .e-gantt .e-add::before {
200
200
  content: "\e7d5";
201
201
  }
202
+ .e-gantt .e-critical-path::before {
203
+ content: "\e931";
204
+ }
202
205
  .e-gantt .e-edit::before {
203
206
  content: "\e97c";
204
207
  }
@@ -279,26 +282,219 @@
279
282
  content: "\e903";
280
283
  }
281
284
 
285
+ .e-gantt-tooltip-arrow-left::before {
286
+ content: "\e85b";
287
+ }
288
+
289
+ .e-gantt-tooltip-arrow-right::before {
290
+ content: "\e85f";
291
+ }
292
+
282
293
  .e-bigger .e-gantt .e-gantt-chart .e-timeline-header-container {
283
294
  height: 64px;
284
295
  }
285
296
  .e-bigger .e-gantt .e-gantt-chart .e-timeline-top-header-cell {
286
297
  height: 32px;
287
298
  }
299
+ .e-bigger .e-gantt .e-gantt-chart .e-event-markers .e-span-label {
300
+ border-radius: 4px !important;
301
+ font-size: 12px !important;
302
+ height: 26px !important;
303
+ padding: 4px 11px 4px 8px !important;
304
+ top: 36px !important;
305
+ }
306
+ .e-bigger .e-gantt .e-gantt-chart .e-event-markers .e-gantt-right-arrow {
307
+ border-bottom: 6px solid transparent;
308
+ border-right: 6px solid transparent;
309
+ border-right-color: #fff;
310
+ border-top: 6px solid transparent;
311
+ top: 43px !important;
312
+ }
313
+ .e-bigger .e-gantt .e-gantt-chart .e-left-resize-gripper::before,
314
+ .e-bigger .e-gantt .e-gantt-chart .e-right-resize-gripper::before {
315
+ content: "\e92c";
316
+ }
317
+ .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right,
318
+ .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left,
319
+ .e-bigger .e-gantt .e-gantt-chart .e-right-connectorpoint-outer-div,
320
+ .e-bigger .e-gantt .e-gantt-chart .e-left-connectorpoint-outer-div {
321
+ border-radius: 50%;
322
+ display: inline-block;
323
+ position: absolute;
324
+ }
325
+ .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover,
326
+ .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
327
+ border-style: solid;
328
+ border-width: 1px;
329
+ box-sizing: content-box;
330
+ cursor: pointer;
331
+ display: inline-block;
332
+ }
333
+ .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover,
334
+ .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
335
+ background-color: #ffd939;
336
+ border-color: #000;
337
+ }
338
+ .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover:hover,
339
+ .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover:hover {
340
+ background-color: #ffd939;
341
+ border-color: #000;
342
+ outline: 2px solid #685708;
343
+ }
344
+ .e-bigger .e-gantt .e-tab .e-content {
345
+ height: 241px !important;
346
+ }
288
347
  .e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
289
348
  height: 63px !important;
290
349
  }
350
+ .e-bigger .e-gantt .e-dialog .e-dlg-header-content {
351
+ padding: 16px 4px 12px 18px !important;
352
+ }
353
+ .e-bigger .e-gantt .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
354
+ left: 2px !important;
355
+ }
356
+ .e-bigger .e-gantt .e-dialog .e-btn .e-btn-icon.e-icon-dlg-close {
357
+ font-size: 12px !important;
358
+ }
359
+ .e-bigger .e-gantt .e-dialog .e-footer-content {
360
+ height: 76px !important;
361
+ padding: 19px 18px 19px 16px !important;
362
+ }
363
+ .e-bigger .e-gantt .e-dialog .e-footer-content .e-btn {
364
+ margin-left: 12px;
365
+ }
366
+ .e-bigger .e-gantt .e-dialog .e-dlg-header {
367
+ line-height: 28px;
368
+ }
369
+ .e-bigger .e-gantt .e-filter-popup {
370
+ width: 307px !important;
371
+ }
372
+ .e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
373
+ padding: 20px 0 0 !important;
374
+ }
375
+ .e-bigger .e-gantt .e-filter-popup .e-dlg-content {
376
+ border-radius: 0px !important;
377
+ padding: 20px 18px 0px 18px !important;
378
+ }
291
379
  .e-bigger .e-columnmenu {
292
380
  top: 45px;
293
381
  }
382
+ .e-bigger .e-gantt-dialog {
383
+ border-radius: 6px;
384
+ width: 554px !important;
385
+ }
386
+ .e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
387
+ padding: 0 16px !important;
388
+ }
294
389
  .e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(odd) {
295
- padding: 16px 18px 0 18px;
390
+ padding: 16px 9px 0 18px;
296
391
  }
297
392
  .e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(even) {
298
- padding: 16px 18px 0 0;
393
+ padding: 16px 18px 0 9px;
299
394
  }
300
395
  .e-bigger .e-gantt-dialog .e-edit-form-row.e-scroll .e-edit-form-column:nth-child(even) {
301
- padding: 16px 18px 0 0;
396
+ padding: 16px 18px 0 9px;
397
+ }
398
+ .e-bigger .e-gantt-dialog .e-edit-form-row {
399
+ height: 241px !important;
400
+ }
401
+ .e-bigger .e-gantt-dialog .e-edit-form-column {
402
+ height: 78px !important;
403
+ }
404
+ .e-bigger .e-gantt-dialog .e-dlg-header-content {
405
+ border-bottom: 0 !important;
406
+ }
407
+ .e-bigger .e-gantt-dialog > .e-dlg-content {
408
+ border-radius: 0 !important;
409
+ }
410
+ .e-bigger .e-gantt-dialog .e-dlg-header-content {
411
+ border-radius: 6px 6px 0px 0px;
412
+ padding-bottom: 4px;
413
+ }
414
+ .e-bigger .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
415
+ border-radius: 50%;
416
+ height: auto !important;
417
+ width: auto;
418
+ }
419
+ .e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
420
+ margin-left: 6px !important;
421
+ }
422
+ .e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
423
+ font-size: 16px !important;
424
+ }
425
+ .e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
426
+ min-height: 38px !important;
427
+ min-width: 35.82px !important;
428
+ }
429
+ .e-bigger .e-gantt-dialog .e-btn.e-flat {
430
+ line-height: 24px;
431
+ padding: 6px 16px 6px 15px !important;
432
+ }
433
+ .e-bigger .e-gantt-dialog .e-btn.e-primary {
434
+ padding: 6px 21px 6px 23px !important;
435
+ }
436
+ .e-bigger .e-gantt-dialog .e-datetime-wrapper .e-time-icon.e-icons::before {
437
+ font-size: 16px !important;
438
+ }
439
+ .e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text {
440
+ font-size: 14px;
441
+ line-height: 22px;
442
+ }
443
+ .e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input[disabled] ~ label.e-label-top.e-float-text {
444
+ font-size: 14px;
445
+ line-height: 22px;
446
+ }
447
+ .e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input {
448
+ height: 38px !important;
449
+ }
450
+ .e-bigger .e-gantt-dialog .e-numeric.e-control-wrapper.e-input-group .e-input-group-icon {
451
+ min-height: 38px !important;
452
+ min-width: 35.82px !important;
453
+ }
454
+ .e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-time-icon {
455
+ min-height: 38px !important;
456
+ min-width: 35.82px !important;
457
+ }
458
+ .e-bigger .e-gantt-dialog .e-input-group.e-control-wrapper {
459
+ height: 40px;
460
+ }
461
+ .e-bigger .e-gantt-dialog .e-input-group-icon.e-date-icon {
462
+ min-width: 36px !important;
463
+ }
464
+ .e-bigger .e-predecessor-tooltip {
465
+ background-color: #000;
466
+ }
467
+ .e-bigger .e-predecessor-tooltip .e-left-btn:disabled {
468
+ color: #757575 !important;
469
+ }
470
+ .e-bigger .e-predecessor-tooltip .e-right-btn:disabled {
471
+ color: #757575 !important;
472
+ }
473
+ .e-bigger .e-predecessor-tooltip .e-tip-content {
474
+ padding: 3px !important;
475
+ }
476
+ .e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type {
477
+ background-color: #000;
478
+ border-color: #000;
479
+ color: #F9FAFB;
480
+ font-size: 12px;
481
+ line-height: 18px;
482
+ padding: 0 8px 0 0;
483
+ }
484
+ .e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:last-of-type {
485
+ background-color: #000;
486
+ border-color: #000;
487
+ color: #F9FAFB;
488
+ font-size: 12px;
489
+ line-height: 18px;
490
+ padding: 0 0 0 8px;
491
+ }
492
+ .e-bigger .e-predecessor-dialog {
493
+ background-color: #1a1a1a;
494
+ }
495
+ .e-bigger .e-predecessor-dialog .e-dlg-content {
496
+ background-color: #1a1a1a;
497
+ padding: 10px 9px 9px 14px !important;
302
498
  }
303
499
 
304
500
  .e-gantt {
@@ -453,9 +649,11 @@
453
649
  position: absolute;
454
650
  }
455
651
  .e-gantt .e-gantt-chart .e-chart-root-container .e-holiday-container {
652
+ height: 100%;
456
653
  position: absolute;
457
654
  }
458
655
  .e-gantt .e-gantt-chart .e-chart-root-container .e-weekend-container {
656
+ height: 100%;
459
657
  position: absolute;
460
658
  }
461
659
  .e-gantt .e-gantt-chart .e-timeline-header-container {
@@ -704,37 +902,35 @@
704
902
  cursor: col-resize;
705
903
  }
706
904
  .e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler {
707
- border-style: solid;
708
905
  border-width: 1px;
709
906
  box-sizing: content-box;
710
907
  cursor: col-resize;
711
908
  height: 2px;
712
909
  position: absolute;
713
910
  top: 7px;
714
- width: 12px;
715
911
  }
716
912
  .e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-element {
717
913
  border-bottom-style: solid;
718
- border-bottom-width: 6px;
914
+ border-bottom-width: 8px;
719
915
  border-left: 7px solid transparent;
720
916
  border-right: 7px solid transparent;
721
917
  cursor: col-resize;
722
918
  height: 0;
723
- left: -1px;
919
+ left: 0;
724
920
  position: absolute;
725
921
  top: -7px;
726
922
  width: 0;
727
923
  }
728
924
  .e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-after {
729
925
  border-bottom-style: solid;
730
- border-bottom-width: 6px;
926
+ border-bottom-width: 8px;
731
927
  border-left: 6px solid transparent;
732
928
  border-right: 6px solid transparent;
733
929
  cursor: col-resize;
734
930
  height: 0;
735
- left: -1px;
931
+ left: 1px;
736
932
  position: absolute;
737
- top: -6px;
933
+ top: -7px;
738
934
  width: 0;
739
935
  }
740
936
  .e-gantt .e-gantt-chart .e-baseline-bar {
@@ -869,6 +1065,9 @@
869
1065
  .e-gantt .e-gantt-chart .e-connector-line-hover {
870
1066
  outline: 1px solid;
871
1067
  }
1068
+ .e-gantt .e-gantt-chart .e-critical-connector-line-hover {
1069
+ outline: 1px solid;
1070
+ }
872
1071
  .e-gantt .e-gantt-chart .e-connector-line-hover-z-index {
873
1072
  z-index: 100;
874
1073
  }
@@ -1161,6 +1360,10 @@
1161
1360
  height: 100%;
1162
1361
  }
1163
1362
 
1363
+ .e-predecessor-tooltip {
1364
+ visibility: hidden;
1365
+ }
1366
+
1164
1367
  /*! Gantt theme */
1165
1368
  .e-gantt .e-gantt-splitter {
1166
1369
  border-color: #969696;
@@ -1244,7 +1447,7 @@
1244
1447
  border-top-color: #969696;
1245
1448
  }
1246
1449
  .e-gantt .e-gantt-chart .e-chart-row-cell {
1247
- color: rgb(0, 0, 0);
1450
+ color: #fff;
1248
1451
  }
1249
1452
  .e-gantt .e-gantt-chart .e-chart-row-border.e-lastrow {
1250
1453
  border-bottom-color: #969696;
@@ -1303,6 +1506,10 @@
1303
1506
  background-color: #1B00F7;
1304
1507
  border: 0px;
1305
1508
  }
1509
+ .e-gantt .e-gantt-chart .e-gantt-critical-child-manualprogressbar {
1510
+ background-color: #1B00F7;
1511
+ border: 0px;
1512
+ }
1306
1513
  .e-gantt .e-gantt-chart .e-holiday {
1307
1514
  background: #333;
1308
1515
  }
@@ -1334,7 +1541,6 @@
1334
1541
  }
1335
1542
  .e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar {
1336
1543
  background: linear-gradient(to right, rgba(62, 4, 125, 0.2), #3e047d 30%, #3e047d 70%, #3e047d 70%, rgba(62, 4, 125, 0.2) 100%);
1337
- background-color: rgba(255, 207, 6, 0.2);
1338
1544
  border: 0px;
1339
1545
  border-radius: 0px;
1340
1546
  }
@@ -1378,7 +1584,7 @@
1378
1584
  }
1379
1585
  .e-gantt .e-gantt-chart .e-connectorpoint-left-hover,
1380
1586
  .e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
1381
- background-color: #bfbfbf;
1587
+ background-color: #ffd939;
1382
1588
  border-color: #000;
1383
1589
  }
1384
1590
  .e-gantt .e-gantt-chart .e-connectorpoint-left-hover:hover,
@@ -1635,4 +1841,56 @@
1635
1841
  }
1636
1842
  .e-gantt.e-device .e-backarrowspan {
1637
1843
  color: #000;
1844
+ }
1845
+
1846
+ .e-gantt .e-gantt-chart .e-criticalconnector-line {
1847
+ border-color: #d13438;
1848
+ }
1849
+
1850
+ .e-gantt .e-gantt-chart .e-criticalconnector-line-right-arrow {
1851
+ border-left-color: #d13438;
1852
+ }
1853
+
1854
+ .e-gantt .e-gantt-chart .e-criticalconnector-line-left-arrow {
1855
+ border-right-color: #d13438;
1856
+ }
1857
+
1858
+ .e-gantt .e-gantt-chart .e-critical-connector-line-hover {
1859
+ border-color: #f3d8da;
1860
+ outline-color: #f3d8da;
1861
+ }
1862
+
1863
+ .e-gantt .e-gantt-chart .e-critical-connector-line-right-arrow-hover {
1864
+ border-left-color: #f3d8da;
1865
+ }
1866
+
1867
+ .e-gantt .e-gantt-chart .e-critical-connector-line-left-arrow-hover {
1868
+ border-right-color: #f3d8da;
1869
+ }
1870
+
1871
+ .e-gantt .e-gantt-chart .e-gantt-child-critical-taskbar-inner-div {
1872
+ background-color: #F3D8DA;
1873
+ border: 1px solid #F3D8DA;
1874
+ border-radius: 0px;
1875
+ }
1876
+
1877
+ .e-gantt .e-gantt-chart .e-gantt-child-critical-progressbar-inner-div {
1878
+ background-color: #D13438;
1879
+ border: 0px;
1880
+ border-radius: 4px;
1881
+ }
1882
+
1883
+ .e-gantt .e-gantt-chart .e-gantt-critical-unscheduled-taskbar {
1884
+ background: linear-gradient(to right, rgba(255, 85, 85, 0.2), #D13438 30%, #D13438 70%, #D13438 70%, rgba(255, 85, 85, 0.2) 100%);
1885
+ background-color: rgba(255, 85, 85, 0.2);
1886
+ border: 0px;
1887
+ border-radius: 0px;
1888
+ }
1889
+
1890
+ .e-gantt .e-gantt-chart .e-critical-milestone-top {
1891
+ border-bottom-color: #D13438;
1892
+ }
1893
+
1894
+ .e-gantt .e-gantt-chart .e-critical-milestone-bottom {
1895
+ border-top-color: #D13438;
1638
1896
  }