@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
@@ -486,6 +486,9 @@
486
486
  .e-gantt .e-add::before {
487
487
  content: "\e759";
488
488
  }
489
+ .e-gantt .e-critical-path::before {
490
+ content: "\e93a";
491
+ }
489
492
  .e-gantt .e-edit::before {
490
493
  content: "\e78f";
491
494
  }
@@ -566,26 +569,222 @@
566
569
  content: "\e903";
567
570
  }
568
571
 
572
+ .e-gantt-tooltip-arrow-left::before {
573
+ content: "\e7c1";
574
+ }
575
+
576
+ .e-gantt-tooltip-arrow-right::before {
577
+ content: "\e7ce";
578
+ }
579
+
569
580
  .e-bigger .e-gantt .e-gantt-chart .e-timeline-header-container {
570
581
  height: 64px;
571
582
  }
572
583
  .e-bigger .e-gantt .e-gantt-chart .e-timeline-top-header-cell {
573
584
  height: 32px;
574
585
  }
586
+ .e-bigger .e-gantt .e-gantt-chart .e-event-markers .e-span-label {
587
+ border-radius: 4px !important;
588
+ font-size: 12px !important;
589
+ height: 26px !important;
590
+ padding: 4px 11px 4px 9px !important;
591
+ top: 65px !important;
592
+ }
593
+ .e-bigger .e-gantt .e-gantt-chart .e-event-markers .e-gantt-right-arrow {
594
+ border-bottom: 6px solid transparent;
595
+ border-right: 6px solid transparent;
596
+ border-right-color: #ffc107;
597
+ border-top: 6px solid transparent;
598
+ top: 73px !important;
599
+ }
600
+ .e-bigger .e-gantt .e-gantt-chart .e-left-resize-gripper::before,
601
+ .e-bigger .e-gantt .e-gantt-chart .e-right-resize-gripper::before {
602
+ content: "\e92c";
603
+ }
604
+ .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right,
605
+ .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left,
606
+ .e-bigger .e-gantt .e-gantt-chart .e-right-connectorpoint-outer-div,
607
+ .e-bigger .e-gantt .e-gantt-chart .e-left-connectorpoint-outer-div {
608
+ border-radius: 50%;
609
+ display: inline-block;
610
+ position: absolute;
611
+ }
612
+ .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover,
613
+ .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
614
+ border-style: solid;
615
+ border-width: 1px;
616
+ box-sizing: content-box;
617
+ cursor: pointer;
618
+ display: inline-block;
619
+ }
620
+ .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover,
621
+ .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
622
+ background-color: #0056b3;
623
+ border-color: #fff;
624
+ }
625
+ .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover:hover,
626
+ .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover:hover {
627
+ background-color: #0056b3;
628
+ border-color: #fff;
629
+ outline: 2px solid #007bff;
630
+ }
631
+ .e-bigger .e-gantt .e-tab .e-content {
632
+ height: 250px !important;
633
+ }
575
634
  .e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
576
635
  height: 63px !important;
577
636
  }
637
+ .e-bigger .e-gantt .e-dialog .e-dlg-header-content {
638
+ padding: 16px 4px 16px 16px !important;
639
+ }
640
+ .e-bigger .e-gantt .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
641
+ left: 1px !important;
642
+ }
643
+ .e-bigger .e-gantt .e-dialog .e-btn .e-btn-icon.e-icon-dlg-close {
644
+ font-size: 14px !important;
645
+ }
646
+ .e-bigger .e-gantt .e-dialog .e-footer-content {
647
+ height: 70px !important;
648
+ padding: 16px !important;
649
+ }
650
+ .e-bigger .e-gantt .e-dialog .e-footer-content .e-btn {
651
+ margin-left: 12px;
652
+ }
653
+ .e-bigger .e-gantt .e-dialog .e-dlg-header {
654
+ line-height: 28px;
655
+ }
656
+ .e-bigger .e-gantt .e-filter-popup {
657
+ width: 350px !important;
658
+ }
659
+ .e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
660
+ padding: 16px 0 0 !important;
661
+ }
662
+ .e-bigger .e-gantt .e-filter-popup .e-dlg-content {
663
+ border-radius: 6px !important;
664
+ padding: 32px 16px 16px !important;
665
+ }
578
666
  .e-bigger .e-columnmenu {
579
667
  top: 38px;
580
668
  }
669
+ .e-bigger .e-gantt-dialog {
670
+ border-radius: 6px;
671
+ width: 556px !important;
672
+ }
673
+ .e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
674
+ padding: 0 16px !important;
675
+ }
581
676
  .e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(odd) {
582
- padding: 16px 18px 0 18px;
677
+ padding: 16px 12px 0 16px;
583
678
  }
584
679
  .e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(even) {
585
- padding: 16px 18px 0 0;
680
+ padding: 16px 16px 0 12px;
586
681
  }
587
682
  .e-bigger .e-gantt-dialog .e-edit-form-row.e-scroll .e-edit-form-column:nth-child(even) {
588
- padding: 16px 18px 0 0;
683
+ padding: 16px 18px 0 9px;
684
+ }
685
+ .e-bigger .e-gantt-dialog .e-edit-form-row {
686
+ height: 250px !important;
687
+ }
688
+ .e-bigger .e-gantt-dialog .e-edit-form-column {
689
+ height: 76px !important;
690
+ }
691
+ .e-bigger .e-gantt-dialog .e-dlg-header-content {
692
+ border-bottom: 0 !important;
693
+ }
694
+ .e-bigger .e-gantt-dialog > .e-dlg-content {
695
+ border-radius: 0 !important;
696
+ }
697
+ .e-bigger .e-gantt-dialog .e-dlg-header-content {
698
+ border-radius: 6px 6px 0px 0px;
699
+ padding-bottom: 20px;
700
+ }
701
+ .e-bigger .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
702
+ border-radius: 50%;
703
+ height: auto !important;
704
+ width: auto;
705
+ }
706
+ .e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
707
+ margin-left: 5px !important;
708
+ }
709
+ .e-bigger .e-gantt-dialog .e-icon-dlg-close {
710
+ color: #fff;
711
+ }
712
+ .e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
713
+ font-size: 16px !important;
714
+ }
715
+ .e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
716
+ min-height: 35px !important;
717
+ min-width: 35.82px !important;
718
+ }
719
+ .e-bigger .e-gantt-dialog .e-btn.e-flat {
720
+ line-height: 24px;
721
+ padding: 6px 16px 6px 15px !important;
722
+ }
723
+ .e-bigger .e-gantt-dialog .e-btn.e-primary {
724
+ padding: 6px 21px 6px 23px !important;
725
+ }
726
+ .e-bigger .e-gantt-dialog .e-datetime-wrapper .e-time-icon.e-icons::before {
727
+ font-size: 16px !important;
728
+ }
729
+ .e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text {
730
+ font-size: 14px;
731
+ line-height: 22px;
732
+ }
733
+ .e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input[disabled] ~ label.e-label-top.e-float-text {
734
+ font-size: 14px;
735
+ line-height: 22px;
736
+ }
737
+ .e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input {
738
+ height: 34px !important;
739
+ }
740
+ .e-bigger .e-gantt-dialog .e-numeric.e-control-wrapper.e-input-group .e-input-group-icon {
741
+ min-height: 35px !important;
742
+ min-width: 35.82px !important;
743
+ }
744
+ .e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-time-icon {
745
+ min-height: 35px !important;
746
+ min-width: 35.82px !important;
747
+ }
748
+ .e-bigger .e-gantt-dialog .e-input-group.e-control-wrapper {
749
+ height: 36px;
750
+ }
751
+ .e-bigger .e-gantt-dialog .e-input-group-icon.e-date-icon {
752
+ min-width: 36px !important;
753
+ }
754
+ .e-bigger .e-predecessor-tooltip {
755
+ background-color: #000;
756
+ }
757
+ .e-bigger .e-predecessor-tooltip .e-left-btn:disabled {
758
+ color: #adb5bd !important;
759
+ }
760
+ .e-bigger .e-predecessor-tooltip .e-right-btn:disabled {
761
+ color: #adb5bd !important;
762
+ }
763
+ .e-bigger .e-predecessor-tooltip .e-tip-content {
764
+ padding: 3px !important;
765
+ }
766
+ .e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type {
767
+ background-color: #000;
768
+ border-color: #000;
769
+ color: #f8f9fa;
770
+ font-size: 12px;
771
+ line-height: 18px;
772
+ padding: 0 8px 0 0;
773
+ }
774
+ .e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:last-of-type {
775
+ background-color: #000;
776
+ border-color: #000;
777
+ color: #f8f9fa;
778
+ font-size: 12px;
779
+ line-height: 18px;
780
+ padding: 0 0 0 8px;
781
+ }
782
+ .e-bigger .e-predecessor-dialog {
783
+ background-color: #f8f9fa;
784
+ }
785
+ .e-bigger .e-predecessor-dialog .e-dlg-content {
786
+ background-color: #f8f9fa;
787
+ padding: 10px 9px 9px 14px !important;
589
788
  }
590
789
 
591
790
  .e-gantt {
@@ -740,9 +939,11 @@
740
939
  position: absolute;
741
940
  }
742
941
  .e-gantt .e-gantt-chart .e-chart-root-container .e-holiday-container {
942
+ height: 100%;
743
943
  position: absolute;
744
944
  }
745
945
  .e-gantt .e-gantt-chart .e-chart-root-container .e-weekend-container {
946
+ height: 100%;
746
947
  position: absolute;
747
948
  }
748
949
  .e-gantt .e-gantt-chart .e-timeline-header-container {
@@ -991,37 +1192,35 @@
991
1192
  cursor: col-resize;
992
1193
  }
993
1194
  .e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler {
994
- border-style: solid;
995
1195
  border-width: 1px;
996
1196
  box-sizing: content-box;
997
1197
  cursor: col-resize;
998
1198
  height: 2px;
999
1199
  position: absolute;
1000
1200
  top: 7px;
1001
- width: 12px;
1002
1201
  }
1003
1202
  .e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-element {
1004
1203
  border-bottom-style: solid;
1005
- border-bottom-width: 6px;
1204
+ border-bottom-width: 8px;
1006
1205
  border-left: 7px solid transparent;
1007
1206
  border-right: 7px solid transparent;
1008
1207
  cursor: col-resize;
1009
1208
  height: 0;
1010
- left: -1px;
1209
+ left: 0;
1011
1210
  position: absolute;
1012
1211
  top: -7px;
1013
1212
  width: 0;
1014
1213
  }
1015
1214
  .e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-after {
1016
1215
  border-bottom-style: solid;
1017
- border-bottom-width: 6px;
1216
+ border-bottom-width: 8px;
1018
1217
  border-left: 6px solid transparent;
1019
1218
  border-right: 6px solid transparent;
1020
1219
  cursor: col-resize;
1021
1220
  height: 0;
1022
- left: -1px;
1221
+ left: 1px;
1023
1222
  position: absolute;
1024
- top: -6px;
1223
+ top: -7px;
1025
1224
  width: 0;
1026
1225
  }
1027
1226
  .e-gantt .e-gantt-chart .e-baseline-bar {
@@ -1156,6 +1355,9 @@
1156
1355
  .e-gantt .e-gantt-chart .e-connector-line-hover {
1157
1356
  outline: 1px solid;
1158
1357
  }
1358
+ .e-gantt .e-gantt-chart .e-critical-connector-line-hover {
1359
+ outline: 1px solid;
1360
+ }
1159
1361
  .e-gantt .e-gantt-chart .e-connector-line-hover-z-index {
1160
1362
  z-index: 100;
1161
1363
  }
@@ -1448,6 +1650,10 @@
1448
1650
  height: 100%;
1449
1651
  }
1450
1652
 
1653
+ .e-predecessor-tooltip {
1654
+ visibility: hidden;
1655
+ }
1656
+
1451
1657
  /*! Gantt theme */
1452
1658
  .e-gantt .e-gantt-splitter {
1453
1659
  border-color: #dee2e6;
@@ -1590,6 +1796,10 @@
1590
1796
  background-color: #6628EE;
1591
1797
  border: 0px;
1592
1798
  }
1799
+ .e-gantt .e-gantt-chart .e-gantt-critical-child-manualprogressbar {
1800
+ background-color: #6628EE;
1801
+ border: 0px;
1802
+ }
1593
1803
  .e-gantt .e-gantt-chart .e-holiday {
1594
1804
  background: #e9ecef;
1595
1805
  }
@@ -1621,7 +1831,6 @@
1621
1831
  }
1622
1832
  .e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar {
1623
1833
  background: linear-gradient(to right, rgba(0, 123, 255, 0.2), #007bff 30%, #007bff 70%, #007bff 70%, rgba(0, 123, 255, 0.2) 100%);
1624
- background-color: rgba(0, 123, 255, 0.2);
1625
1834
  border: 0px;
1626
1835
  border-radius: 4px;
1627
1836
  }
@@ -1665,7 +1874,7 @@
1665
1874
  }
1666
1875
  .e-gantt .e-gantt-chart .e-connectorpoint-left-hover,
1667
1876
  .e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
1668
- background-color: #333;
1877
+ background-color: #0056b3;
1669
1878
  border-color: #fff;
1670
1879
  }
1671
1880
  .e-gantt .e-gantt-chart .e-connectorpoint-left-hover:hover,
@@ -1922,4 +2131,56 @@
1922
2131
  }
1923
2132
  .e-gantt.e-device .e-backarrowspan {
1924
2133
  color: #000;
2134
+ }
2135
+
2136
+ .e-gantt .e-gantt-chart .e-criticalconnector-line {
2137
+ border-color: #d13438;
2138
+ }
2139
+
2140
+ .e-gantt .e-gantt-chart .e-criticalconnector-line-right-arrow {
2141
+ border-left-color: #d13438;
2142
+ }
2143
+
2144
+ .e-gantt .e-gantt-chart .e-criticalconnector-line-left-arrow {
2145
+ border-right-color: #d13438;
2146
+ }
2147
+
2148
+ .e-gantt .e-gantt-chart .e-critical-connector-line-hover {
2149
+ border-color: #f3d8da;
2150
+ outline-color: #f3d8da;
2151
+ }
2152
+
2153
+ .e-gantt .e-gantt-chart .e-critical-connector-line-right-arrow-hover {
2154
+ border-left-color: #f3d8da;
2155
+ }
2156
+
2157
+ .e-gantt .e-gantt-chart .e-critical-connector-line-left-arrow-hover {
2158
+ border-right-color: #f3d8da;
2159
+ }
2160
+
2161
+ .e-gantt .e-gantt-chart .e-gantt-child-critical-taskbar-inner-div {
2162
+ background-color: #F3D8DA;
2163
+ border: 1px solid #F3D8DA;
2164
+ border-radius: 4px;
2165
+ }
2166
+
2167
+ .e-gantt .e-gantt-chart .e-gantt-child-critical-progressbar-inner-div {
2168
+ background-color: #D13438;
2169
+ border: 0px;
2170
+ border-radius: 4px;
2171
+ }
2172
+
2173
+ .e-gantt .e-gantt-chart .e-gantt-critical-unscheduled-taskbar {
2174
+ background: linear-gradient(to right, rgba(255, 85, 85, 0.2), #D13438 30%, #D13438 70%, #D13438 70%, rgba(255, 85, 85, 0.2) 100%);
2175
+ background-color: rgba(255, 85, 85, 0.2);
2176
+ border: 0px;
2177
+ border-radius: 4px;
2178
+ }
2179
+
2180
+ .e-gantt .e-gantt-chart .e-critical-milestone-top {
2181
+ border-bottom-color: #D13438;
2182
+ }
2183
+
2184
+ .e-gantt .e-gantt-chart .e-critical-milestone-bottom {
2185
+ border-top-color: #D13438;
1925
2186
  }