@syncfusion/ej2-gantt 22.2.11 → 23.1.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 (127) hide show
  1. package/CHANGELOG.md +195 -163
  2. package/dist/ej2-gantt.min.js +2 -2
  3. package/dist/ej2-gantt.umd.min.js +2 -2
  4. package/dist/ej2-gantt.umd.min.js.map +1 -1
  5. package/dist/es6/ej2-gantt.es2015.js +1003 -292
  6. package/dist/es6/ej2-gantt.es2015.js.map +1 -1
  7. package/dist/es6/ej2-gantt.es5.js +1040 -313
  8. package/dist/es6/ej2-gantt.es5.js.map +1 -1
  9. package/dist/global/ej2-gantt.min.js +2 -2
  10. package/dist/global/ej2-gantt.min.js.map +1 -1
  11. package/dist/global/index.d.ts +1 -1
  12. package/package.json +21 -21
  13. package/src/gantt/actions/cell-edit.js +4 -1
  14. package/src/gantt/actions/context-menu.js +4 -1
  15. package/src/gantt/actions/critical-path.d.ts +2 -0
  16. package/src/gantt/actions/critical-path.js +81 -59
  17. package/src/gantt/actions/dependency.d.ts +1 -0
  18. package/src/gantt/actions/dependency.js +43 -25
  19. package/src/gantt/actions/dialog-edit.js +27 -7
  20. package/src/gantt/actions/edit.d.ts +12 -1
  21. package/src/gantt/actions/edit.js +91 -10
  22. package/src/gantt/actions/filter.js +3 -0
  23. package/src/gantt/actions/pdf-export.d.ts +4 -1
  24. package/src/gantt/actions/pdf-export.js +36 -3
  25. package/src/gantt/actions/rowdragdrop.js +10 -2
  26. package/src/gantt/actions/selection.js +22 -5
  27. package/src/gantt/actions/taskbar-edit.js +51 -36
  28. package/src/gantt/actions/toolbar.js +8 -0
  29. package/src/gantt/base/date-processor.js +3 -3
  30. package/src/gantt/base/gantt-chart.d.ts +1 -0
  31. package/src/gantt/base/gantt-chart.js +79 -6
  32. package/src/gantt/base/gantt-model.d.ts +7 -0
  33. package/src/gantt/base/gantt.d.ts +6 -0
  34. package/src/gantt/base/gantt.js +83 -13
  35. package/src/gantt/base/interface.d.ts +14 -0
  36. package/src/gantt/base/task-processor.d.ts +4 -4
  37. package/src/gantt/base/task-processor.js +86 -36
  38. package/src/gantt/base/tree-grid.js +19 -10
  39. package/src/gantt/export/export-helper.d.ts +5 -1
  40. package/src/gantt/export/export-helper.js +152 -4
  41. package/src/gantt/export/pdf-base/pdf-grid-table.js +2 -2
  42. package/src/gantt/export/pdf-base/pdf-style/gantt-theme.js +8 -0
  43. package/src/gantt/export/pdf-base/treegrid-layouter.js +6 -1
  44. package/src/gantt/export/pdf-connector-line.js +3 -1
  45. package/src/gantt/export/pdf-gantt.js +6 -0
  46. package/src/gantt/export/pdf-taskbar.d.ts +13 -0
  47. package/src/gantt/export/pdf-taskbar.js +39 -5
  48. package/src/gantt/export/pdf-timeline.js +17 -8
  49. package/src/gantt/export/pdf-treegrid.js +3 -0
  50. package/src/gantt/models/task-fields-model.d.ts +7 -0
  51. package/src/gantt/models/task-fields.d.ts +6 -0
  52. package/src/gantt/models/task-fields.js +3 -0
  53. package/src/gantt/renderer/chart-rows.d.ts +1 -1
  54. package/src/gantt/renderer/chart-rows.js +39 -20
  55. package/src/gantt/renderer/connector-line.js +49 -9
  56. package/src/gantt/renderer/edit-tooltip.js +11 -7
  57. package/src/gantt/renderer/timeline.js +19 -9
  58. package/src/gantt/renderer/tooltip.js +37 -33
  59. package/styles/bootstrap-dark.css +44 -100
  60. package/styles/bootstrap.css +44 -100
  61. package/styles/bootstrap4.css +44 -100
  62. package/styles/bootstrap5-dark.css +44 -100
  63. package/styles/bootstrap5.css +44 -100
  64. package/styles/fabric-dark.css +44 -100
  65. package/styles/fabric.css +44 -100
  66. package/styles/fluent-dark.css +44 -100
  67. package/styles/fluent.css +44 -100
  68. package/styles/gantt/_layout.scss +44 -31
  69. package/styles/gantt/_theme.scss +104 -98
  70. package/styles/gantt/bootstrap-dark.css +44 -100
  71. package/styles/gantt/bootstrap-dark.scss +1 -1
  72. package/styles/gantt/bootstrap.css +44 -100
  73. package/styles/gantt/bootstrap.scss +1 -1
  74. package/styles/gantt/bootstrap4.css +44 -100
  75. package/styles/gantt/bootstrap4.scss +1 -1
  76. package/styles/gantt/bootstrap5-dark.css +44 -100
  77. package/styles/gantt/bootstrap5-dark.scss +1 -1
  78. package/styles/gantt/bootstrap5.css +44 -100
  79. package/styles/gantt/bootstrap5.scss +1 -1
  80. package/styles/gantt/fabric-dark.css +44 -100
  81. package/styles/gantt/fabric-dark.scss +1 -1
  82. package/styles/gantt/fabric.css +44 -100
  83. package/styles/gantt/fabric.scss +1 -1
  84. package/styles/gantt/fluent-dark.css +44 -100
  85. package/styles/gantt/fluent-dark.scss +1 -1
  86. package/styles/gantt/fluent.css +44 -100
  87. package/styles/gantt/fluent.scss +1 -1
  88. package/styles/gantt/highcontrast-light.css +40 -100
  89. package/styles/gantt/highcontrast-light.scss +1 -1
  90. package/styles/gantt/highcontrast.css +44 -100
  91. package/styles/gantt/highcontrast.scss +1 -1
  92. package/styles/gantt/icons/_bootstrap-dark.scss +4 -0
  93. package/styles/gantt/icons/_bootstrap.scss +4 -0
  94. package/styles/gantt/icons/_bootstrap4.scss +4 -0
  95. package/styles/gantt/icons/_bootstrap5.scss +4 -0
  96. package/styles/gantt/icons/_fabric-dark.scss +4 -0
  97. package/styles/gantt/icons/_fabric.scss +4 -0
  98. package/styles/gantt/icons/_fluent.scss +4 -0
  99. package/styles/gantt/icons/_fusionnew.scss +4 -0
  100. package/styles/gantt/icons/_highcontrast.scss +4 -0
  101. package/styles/gantt/icons/_material-dark.scss +4 -0
  102. package/styles/gantt/icons/_material.scss +4 -0
  103. package/styles/gantt/icons/_material3.scss +4 -0
  104. package/styles/gantt/icons/_tailwind-dark.scss +4 -0
  105. package/styles/gantt/icons/_tailwind.scss +4 -0
  106. package/styles/gantt/material-dark.css +44 -101
  107. package/styles/gantt/material-dark.scss +1 -1
  108. package/styles/gantt/material.css +44 -101
  109. package/styles/gantt/material.scss +1 -1
  110. package/styles/gantt/material3-dark.css +45 -102
  111. package/styles/gantt/material3-dark.scss +1 -1
  112. package/styles/gantt/material3.css +45 -102
  113. package/styles/gantt/material3.scss +1 -1
  114. package/styles/gantt/tailwind-dark.css +44 -101
  115. package/styles/gantt/tailwind-dark.scss +1 -1
  116. package/styles/gantt/tailwind.css +44 -101
  117. package/styles/gantt/tailwind.scss +1 -1
  118. package/styles/highcontrast-light.css +40 -100
  119. package/styles/highcontrast.css +44 -100
  120. package/styles/material-dark.css +44 -101
  121. package/styles/material.css +44 -101
  122. package/styles/material3-dark.css +45 -102
  123. package/styles/material3-dark.scss +1 -1
  124. package/styles/material3.css +45 -102
  125. package/styles/material3.scss +1 -1
  126. package/styles/tailwind-dark.css +44 -101
  127. package/styles/tailwind.css +44 -101
@@ -42,7 +42,7 @@
42
42
  }
43
43
  }
44
44
 
45
- @if ($skin-name == 'FluentUI' or $skin-name == 'bootstrap5' or $skin-name == 'tailwind') {
45
+ @if ($skin-name == 'FluentUI' or $skin-name == 'bootstrap5' or $skin-name == 'tailwind' or $skin-name =='Material3') {
46
46
  .e-left-resize-gripper::before,
47
47
  .e-right-resize-gripper::before {
48
48
  content: '\e888';
@@ -77,6 +77,7 @@
77
77
  .e-connectorpoint-right-hover {
78
78
  background-color: $connector-point-hover-color;
79
79
  border-color: $connector-point-border-color;
80
+ position: relative;
80
81
  }
81
82
 
82
83
  .e-connectorpoint-left-hover:hover,
@@ -85,6 +86,17 @@
85
86
  border-color: $connector-point-border-color;
86
87
  outline: 2px solid $connector-point-hover-outerline-color;
87
88
  }
89
+ .e-connectorpoint-left-hover::after,
90
+ .e-connectorpoint-right-hover::after{
91
+ content: '';
92
+ position: absolute;
93
+ width: 30px;
94
+ height: 40px;
95
+ top: -10px;
96
+ }
97
+ .e-connectorpoint-allow-block {
98
+ cursor: no-drop;
99
+ }
88
100
  }
89
101
 
90
102
  .e-tab .e-content {
@@ -185,7 +197,7 @@
185
197
  .e-gantt-dialog {
186
198
  .e-dialog {
187
199
  border-radius: 6px;
188
- width: $gantt-bigger-dialog-width;
200
+ //width: $gantt-bigger-dialog-width;
189
201
  }
190
202
  .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
191
203
  padding: 0 16px !important; /* stylelint-disable-line declaration-no-important */
@@ -422,10 +434,6 @@
422
434
  border-right: none !important; /* stylelint-disable-line declaration-no-important */
423
435
  border-left-color: $connector-line-hover-color;
424
436
  }
425
- .e-toolbar-right{
426
- left: auto !important; /* stylelint-disable-line declaration-no-important */
427
- right: 0 !important; /* stylelint-disable-line declaration-no-important */
428
- }
429
437
  .e-gantt-chart{
430
438
  .e-timeline-header-container{
431
439
  border-right: none !important; /* stylelint-disable-line declaration-no-important */
@@ -815,6 +823,14 @@
815
823
  z-index: 3;
816
824
  }
817
825
 
826
+ .e-taskbar-main-container:hover{
827
+ z-index: 4;
828
+ }
829
+
830
+ .e-taskbar-main-container.e-gantt-multi-taskbar:hover {
831
+ z-index: 4;
832
+ }
833
+
818
834
  .e-left-label-container.e-left-label-temp-container {
819
835
  align-items: center;
820
836
  display: inline-flex;
@@ -985,28 +1001,24 @@
985
1001
  height: 16px;
986
1002
  width: 16px;
987
1003
  left: 14px;
988
- background: $gantt-masked-table-background-color;
989
1004
  }
990
1005
 
991
1006
  .e-innerHTML1 {
992
1007
  height: 16px;
993
1008
  width: 16px;
994
1009
  left: 30px;
995
- background: $gantt-masked-table-background-color;
996
1010
  }
997
1011
 
998
1012
  .e-innerHTML2 {
999
1013
  height: 16px;
1000
1014
  width: 16px;
1001
1015
  left: 60px;
1002
- background: $gantt-masked-table-background-color;
1003
1016
  }
1004
1017
 
1005
1018
  .e-timelineHeader {
1006
1019
  height: 16px;
1007
1020
  width: 82px;
1008
1021
  left: 20px;
1009
- background: $gantt-masked-table-background-color;
1010
1022
  }
1011
1023
 
1012
1024
  .e-maskcell01 {
@@ -1014,14 +1026,12 @@
1014
1026
  width: 88px;
1015
1027
  left: 14px;
1016
1028
  border-radius: 0;
1017
- background: $gantt-masked-table-background-color;
1018
1029
  }
1019
1030
 
1020
1031
  .e-maskcell02 {
1021
1032
  height: 18px;
1022
1033
  width: 410px;
1023
1034
  border-radius: 0;
1024
- background: $gantt-masked-table-background-color;
1025
1035
  }
1026
1036
 
1027
1037
  .e-maskcell03 {
@@ -1029,14 +1039,12 @@
1029
1039
  width: 88px;
1030
1040
  left: 14px;
1031
1041
  border-radius: 0;
1032
- background: $gantt-masked-table-background-color;
1033
1042
  }
1034
1043
 
1035
1044
  .e-maskcell04 {
1036
1045
  height: 18px;
1037
1046
  width: 208px;
1038
1047
  border-radius: 0;
1039
- background: $gantt-masked-table-background-color;
1040
1048
  }
1041
1049
 
1042
1050
  .e-maskcell05 {
@@ -1044,7 +1052,6 @@
1044
1052
  width: 108px;
1045
1053
  left: 64px;
1046
1054
  border-radius: 0;
1047
- background: $gantt-masked-table-background-color;
1048
1055
  }
1049
1056
 
1050
1057
  .e-maskcell06 {
@@ -1052,7 +1059,6 @@
1052
1059
  width: 195px;
1053
1060
  left: 192px;
1054
1061
  border-radius: 0;
1055
- background: $gantt-masked-table-background-color;
1056
1062
  }
1057
1063
 
1058
1064
  .e-maskcell07 {
@@ -1060,7 +1066,6 @@
1060
1066
  width: 156px;
1061
1067
  left: 388px;
1062
1068
  border-radius: 0;
1063
- background: $gantt-masked-table-background-color;
1064
1069
  }
1065
1070
 
1066
1071
  .e-taskbar-left-resizer,
@@ -1221,7 +1226,7 @@
1221
1226
  border-left: 1px dashed;
1222
1227
  position: absolute;
1223
1228
  width: 1px;
1224
- z-index: 2;
1229
+ z-index: 4;
1225
1230
 
1226
1231
  .e-span-label {
1227
1232
  border-radius: 3px;
@@ -1507,10 +1512,6 @@
1507
1512
  }
1508
1513
  }
1509
1514
 
1510
- .e-icon-rowselect::before {
1511
- content: '\e930';
1512
- }
1513
-
1514
1515
  .e-ganttpopup {
1515
1516
  -moz-user-select: none; /* stylelint-disable-line property-no-vendor-prefix */
1516
1517
  -ms-user-select: none; /* stylelint-disable-line property-no-vendor-prefix */
@@ -1573,6 +1574,13 @@
1573
1574
  .e-bigger .e-gantt .e-gantt-chart .e-label {
1574
1575
  font-size: $gantt-bigger-label-font-size;
1575
1576
  }
1577
+ .e-bigger .e-gantt .e-gantt-chart .e-timeline-single-header-outer-div{
1578
+ height: 64px !important; /* stylelint-disable-line declaration-no-important */
1579
+ }
1580
+ .e-bigger .e-timeline-single-header-cell {
1581
+ height: 64px !important; /* stylelint-disable-line declaration-no-important */
1582
+ line-height: 64px !important; /* stylelint-disable-line declaration-no-important */
1583
+ }
1576
1584
 
1577
1585
  .e-gantt-tooltip-label {
1578
1586
  padding-bottom: 2px;
@@ -1633,16 +1641,16 @@
1633
1641
  font-size: 12px;
1634
1642
  }
1635
1643
 
1636
- .e-right-resize-gripper,
1637
- .e-left-resize-gripper {
1638
- border: 7px solid;
1639
- z-index: -1;
1644
+ // .e-right-resize-gripper,
1645
+ // .e-left-resize-gripper {
1646
+ // border: 7px solid;
1647
+ // z-index: -1;
1640
1648
 
1641
- &::before {
1642
- font-size: 14px;
1643
- margin-left: -7px;
1644
- }
1645
- }
1649
+ // &::before {
1650
+ // font-size: 14px;
1651
+ // margin-left: -7px;
1652
+ // }
1653
+ // }
1646
1654
 
1647
1655
  .e-dependent-div .e-content {
1648
1656
  height: 100%;
@@ -1727,4 +1735,9 @@
1727
1735
  }
1728
1736
  }
1729
1737
  }
1738
+ .e-gantt-chart-resize-indicator{
1739
+ height: 100%;
1740
+ position: absolute;
1741
+ z-index: 1;
1742
+ }
1730
1743
  }
@@ -483,106 +483,107 @@
483
483
  .e-grid .e-gridpopup .e-spanclicked {
484
484
  border-color: $gantt-gridpopup-span;
485
485
  }
486
-
487
- .e-active-parent-task {
488
- border-radius: 4px;
489
- box-shadow: 4px 4px 3px 0 $gantt-active-parent-shadow;
490
-
491
- .e-gantt-parent-taskbar-inner-div {
492
- background: $gantt-active-parent-task;
493
- border: $gantt-active-parent-task;
494
- }
495
-
496
- .e-gantt-parent-progressbar-inner-div {
497
- background-color: transparent;
498
- border: transparent;
499
- }
500
-
501
- .e-task-label {
502
- color: transparent;
503
- }
504
- }
505
-
506
- .e-predecessor-touch-mode {
507
-
508
- .e-task-label {
509
- color: transparent !important; /* stylelint-disable-line declaration-no-important */
510
- }
511
-
512
- .e-line {
513
- border-color: $gantt-inactive-parent !important; /* stylelint-disable-line declaration-no-important */
514
- }
515
-
516
- .e-connector-line-right-arrow {
517
- border-left-color: $gantt-inactive-parent !important; /* stylelint-disable-line declaration-no-important */
518
- }
519
-
520
- .e-connector-line-left-arrow {
521
- border-right-color: $gantt-inactive-parent !important; /* stylelint-disable-line declaration-no-important */
522
- }
523
-
524
- .e-gantt-child-taskbar-inner-div {
525
- background: $gantt-inactive-child !important; /* stylelint-disable-line declaration-no-important */
526
- border: $gantt-inactive-child !important; /* stylelint-disable-line declaration-no-important */
527
- }
528
-
529
- .e-gantt-child-progressbar-inner-div {
530
- background-color: transparent !important; /* stylelint-disable-line declaration-no-important */
531
- border: transparent !important; /* stylelint-disable-line declaration-no-important */
532
- }
533
-
534
- .e-gantt-milestone {
535
- background-color: $gantt-inactive-child !important; /* stylelint-disable-line declaration-no-important */
536
- }
537
-
538
- .e-gantt-parent-taskbar-inner-div {
539
- background-color: $gantt-inactive-parent !important; /* stylelint-disable-line declaration-no-important */
540
- border: $gantt-inactive-parent !important; /* stylelint-disable-line declaration-no-important */
541
- }
542
-
543
- .e-gantt-parent-progressbar-inner-div {
544
- background-color: transparent !important; /* stylelint-disable-line declaration-no-important */
545
- border: transparent !important; /* stylelint-disable-line declaration-no-important */
546
- }
547
-
548
- .e-active-child-task {
549
-
550
- .e-gantt-child-taskbar-inner-div {
551
- background: $gantt-child-progress-bar !important; /* stylelint-disable-line declaration-no-important */
552
- border: $gantt-child-progress-bar !important; /* stylelint-disable-line declaration-no-important */
553
- }
554
-
555
- .e-gantt-milestone {
556
- background-color: $gantt-child-progress-bar !important; /* stylelint-disable-line declaration-no-important */
557
- }
558
- }
559
-
560
- .e-active-connected-task {
561
-
562
- .e-gantt-child-taskbar-inner-div {
563
- background: $gantt-connected-task !important; /* stylelint-disable-line declaration-no-important */
564
- border: $gantt-connected-task !important; /* stylelint-disable-line declaration-no-important */
565
- }
566
-
567
- .e-gantt-milestone {
568
- background-color: $gantt-connected-task !important; /* stylelint-disable-line declaration-no-important */
569
- }
570
-
571
- .e-line {
572
- border-color: $gantt-child-progress-bar !important; /* stylelint-disable-line declaration-no-important */
573
- }
574
-
575
- .e-connector-line-right-arrow {
576
- border-left-color: $gantt-child-progress-bar !important; /* stylelint-disable-line declaration-no-important */
577
- }
578
-
579
- .e-connector-line-left-arrow {
580
- border-right-color: $gantt-child-progress-bar !important; /* stylelint-disable-line declaration-no-important */
581
- }
582
- }
583
- }
584
486
  }
585
487
 
488
+ // .e-active-parent-task {
489
+ // border-radius: 4px;
490
+ // box-shadow: 4px 4px 3px 0 $gantt-active-parent-shadow;
491
+
492
+ // .e-gantt-parent-taskbar-inner-div {
493
+ // background: $gantt-active-parent-task;
494
+ // border: $gantt-active-parent-task;
495
+ // }
496
+
497
+ // .e-gantt-parent-progressbar-inner-div {
498
+ // background-color: transparent;
499
+ // border: transparent;
500
+ // }
501
+
502
+ // .e-task-label {
503
+ // color: transparent;
504
+ // }
505
+ // }
506
+
507
+ // .e-predecessor-touch-mode {
508
+
509
+ // .e-task-label {
510
+ // color: transparent !important; /* stylelint-disable-line declaration-no-important */
511
+ // }
512
+
513
+ // .e-line {
514
+ // border-color: $gantt-inactive-parent !important; /* stylelint-disable-line declaration-no-important */
515
+ // }
516
+
517
+ // .e-connector-line-right-arrow {
518
+ // border-left-color: $gantt-inactive-parent !important; /* stylelint-disable-line declaration-no-important */
519
+ // }
520
+
521
+ // .e-connector-line-left-arrow {
522
+ // border-right-color: $gantt-inactive-parent !important; /* stylelint-disable-line declaration-no-important */
523
+ // }
524
+
525
+ // .e-gantt-child-taskbar-inner-div {
526
+ // background: $gantt-inactive-child !important; /* stylelint-disable-line declaration-no-important */
527
+ // border: $gantt-inactive-child !important; /* stylelint-disable-line declaration-no-important */
528
+ // }
529
+
530
+ // .e-gantt-child-progressbar-inner-div {
531
+ // background-color: transparent !important; /* stylelint-disable-line declaration-no-important */
532
+ // border: transparent !important; /* stylelint-disable-line declaration-no-important */
533
+ // }
534
+
535
+ // .e-gantt-milestone {
536
+ // background-color: $gantt-inactive-child !important; /* stylelint-disable-line declaration-no-important */
537
+ // }
538
+
539
+ // .e-gantt-parent-taskbar-inner-div {
540
+ // background-color: $gantt-inactive-parent !important; /* stylelint-disable-line declaration-no-important */
541
+ // border: $gantt-inactive-parent !important; /* stylelint-disable-line declaration-no-important */
542
+ // }
543
+
544
+ // .e-gantt-parent-progressbar-inner-div {
545
+ // background-color: transparent !important; /* stylelint-disable-line declaration-no-important */
546
+ // border: transparent !important; /* stylelint-disable-line declaration-no-important */
547
+ // }
548
+
549
+ // .e-active-child-task {
550
+
551
+ // .e-gantt-child-taskbar-inner-div {
552
+ // background: $gantt-child-progress-bar !important; /* stylelint-disable-line declaration-no-important */
553
+ // border: $gantt-child-progress-bar !important; /* stylelint-disable-line declaration-no-important */
554
+ // }
555
+
556
+ // .e-gantt-milestone {
557
+ // background-color: $gantt-child-progress-bar !important; /* stylelint-disable-line declaration-no-important */
558
+ // }
559
+ // }
560
+
561
+ // .e-active-connected-task {
562
+
563
+ // .e-gantt-child-taskbar-inner-div {
564
+ // background: $gantt-connected-task !important; /* stylelint-disable-line declaration-no-important */
565
+ // border: $gantt-connected-task !important; /* stylelint-disable-line declaration-no-important */
566
+ // }
567
+
568
+ // .e-gantt-milestone {
569
+ // background-color: $gantt-connected-task !important; /* stylelint-disable-line declaration-no-important */
570
+ // }
571
+
572
+ // .e-line {
573
+ // border-color: $gantt-child-progress-bar !important; /* stylelint-disable-line declaration-no-important */
574
+ // }
575
+
576
+ // .e-connector-line-right-arrow {
577
+ // border-left-color: $gantt-child-progress-bar !important; /* stylelint-disable-line declaration-no-important */
578
+ // }
579
+
580
+ // .e-connector-line-left-arrow {
581
+ // border-right-color: $gantt-child-progress-bar !important; /* stylelint-disable-line declaration-no-important */
582
+ // }
583
+ // }
584
+ // }
585
+ // }
586
+
586
587
  .e-icons {
587
588
  color: $gantt-icons-color;
588
589
  }
@@ -730,4 +731,9 @@
730
731
  border: 1px solid $gantt-critical-child-progress-bar;
731
732
  }
732
733
  }
734
+ .e-gantt-chart-resize-indicator{
735
+ border: 1px dashed $gantt-child-task-bar;
736
+ border-bottom: none;
737
+ border-top: none;
738
+ }
733
739
  }