@syncfusion/ej2-gantt 20.4.53 → 21.1.35

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 (95) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/README.md +1 -1
  3. package/dist/ej2-gantt.min.js +2 -2
  4. package/dist/ej2-gantt.umd.min.js +2 -2
  5. package/dist/ej2-gantt.umd.min.js.map +1 -1
  6. package/dist/es6/ej2-gantt.es2015.js +1104 -450
  7. package/dist/es6/ej2-gantt.es2015.js.map +1 -1
  8. package/dist/es6/ej2-gantt.es5.js +1084 -430
  9. package/dist/es6/ej2-gantt.es5.js.map +1 -1
  10. package/dist/global/ej2-gantt.min.js +2 -2
  11. package/dist/global/ej2-gantt.min.js.map +1 -1
  12. package/dist/global/index.d.ts +1 -1
  13. package/package.json +20 -20
  14. package/src/gantt/actions/cell-edit.js +8 -6
  15. package/src/gantt/actions/chart-scroll.d.ts +1 -0
  16. package/src/gantt/actions/chart-scroll.js +15 -4
  17. package/src/gantt/actions/connector-line-edit.js +39 -28
  18. package/src/gantt/actions/context-menu.js +5 -5
  19. package/src/gantt/actions/critical-path.js +10 -8
  20. package/src/gantt/actions/dependency.js +28 -12
  21. package/src/gantt/actions/dialog-edit.js +41 -21
  22. package/src/gantt/actions/edit.js +56 -55
  23. package/src/gantt/actions/filter.d.ts +2 -1
  24. package/src/gantt/actions/filter.js +88 -2
  25. package/src/gantt/actions/keyboard.js +0 -1
  26. package/src/gantt/actions/pdf-export.d.ts +3 -1
  27. package/src/gantt/actions/pdf-export.js +12 -6
  28. package/src/gantt/actions/rowdragdrop.js +2 -2
  29. package/src/gantt/actions/selection.js +5 -2
  30. package/src/gantt/actions/taskbar-edit.d.ts +5 -0
  31. package/src/gantt/actions/taskbar-edit.js +114 -10
  32. package/src/gantt/base/date-processor.js +78 -52
  33. package/src/gantt/base/gantt-chart.js +20 -4
  34. package/src/gantt/base/gantt-model.d.ts +43 -0
  35. package/src/gantt/base/gantt.d.ts +39 -1
  36. package/src/gantt/base/gantt.js +79 -33
  37. package/src/gantt/base/interface.d.ts +2 -0
  38. package/src/gantt/base/task-processor.js +133 -98
  39. package/src/gantt/base/tree-grid.js +31 -1
  40. package/src/gantt/base/utils.js +1 -1
  41. package/src/gantt/export/export-helper.js +6 -0
  42. package/src/gantt/renderer/chart-rows.d.ts +2 -0
  43. package/src/gantt/renderer/chart-rows.js +156 -24
  44. package/src/gantt/renderer/connector-line.js +50 -20
  45. package/src/gantt/renderer/edit-tooltip.js +0 -3
  46. package/src/gantt/renderer/event-marker.js +4 -1
  47. package/src/gantt/renderer/nonworking-day.js +4 -1
  48. package/src/gantt/renderer/timeline.js +3 -3
  49. package/src/gantt/renderer/tooltip.js +101 -33
  50. package/styles/bootstrap-dark.css +33 -10
  51. package/styles/bootstrap.css +31 -10
  52. package/styles/bootstrap4.css +28 -7
  53. package/styles/bootstrap5-dark.css +30 -9
  54. package/styles/bootstrap5.css +30 -9
  55. package/styles/fabric-dark.css +28 -7
  56. package/styles/fabric.css +28 -7
  57. package/styles/fluent-dark.css +56 -29
  58. package/styles/fluent.css +56 -29
  59. package/styles/gantt/_bootstrap-dark-definition.scss +5 -4
  60. package/styles/gantt/_bootstrap-definition.scss +5 -4
  61. package/styles/gantt/_bootstrap4-definition.scss +3 -2
  62. package/styles/gantt/_bootstrap5-definition.scss +15 -14
  63. package/styles/gantt/_fabric-dark-definition.scss +3 -2
  64. package/styles/gantt/_fabric-definition.scss +3 -2
  65. package/styles/gantt/_fluent-definition.scss +18 -17
  66. package/styles/gantt/_fusionnew-definition.scss +5 -4
  67. package/styles/gantt/_highcontrast-definition.scss +3 -2
  68. package/styles/gantt/_highcontrast-light-definition.scss +3 -2
  69. package/styles/gantt/_layout.scss +45 -13
  70. package/styles/gantt/_material-dark-definition.scss +3 -2
  71. package/styles/gantt/_material-definition.scss +3 -2
  72. package/styles/gantt/_tailwind-definition.scss +9 -8
  73. package/styles/gantt/_theme.scss +25 -6
  74. package/styles/gantt/bootstrap-dark.css +33 -10
  75. package/styles/gantt/bootstrap.css +31 -10
  76. package/styles/gantt/bootstrap4.css +28 -7
  77. package/styles/gantt/bootstrap5-dark.css +30 -9
  78. package/styles/gantt/bootstrap5.css +30 -9
  79. package/styles/gantt/fabric-dark.css +28 -7
  80. package/styles/gantt/fabric.css +28 -7
  81. package/styles/gantt/fluent-dark.css +56 -29
  82. package/styles/gantt/fluent.css +56 -29
  83. package/styles/gantt/highcontrast-light.css +28 -9
  84. package/styles/gantt/highcontrast.css +28 -7
  85. package/styles/gantt/material-dark.css +31 -14
  86. package/styles/gantt/material.css +28 -7
  87. package/styles/gantt/tailwind-dark.css +28 -7
  88. package/styles/gantt/tailwind.css +28 -7
  89. package/styles/highcontrast-light.css +28 -9
  90. package/styles/highcontrast.css +28 -7
  91. package/styles/material-dark.css +31 -14
  92. package/styles/material.css +28 -7
  93. package/styles/tailwind-dark.css +28 -7
  94. package/styles/tailwind.css +28 -7
  95. package/styles/gantt/_material3-definition.scss +0 -218
@@ -324,7 +324,7 @@
324
324
  .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover:hover {
325
325
  background-color: #005ba1;
326
326
  border-color: #1b1a19;
327
- outline: 2px solid #c7e0f4;
327
+ outline: 2px solid #1b1a19;
328
328
  }
329
329
  .e-bigger .e-gantt .e-tab .e-content {
330
330
  height: 254px !important;
@@ -332,6 +332,14 @@
332
332
  .e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
333
333
  height: 63px !important; /* stylelint-disable-line declaration-no-important */
334
334
  }
335
+ .e-bigger .e-gantt .e-gantt-dialog .e-tab .e-tab-header {
336
+ padding-left: 0px;
337
+ }
338
+ .e-bigger .e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-indicator {
339
+ display: block;
340
+ bottom: 0;
341
+ height: 3px;
342
+ }
335
343
  .e-bigger .e-gantt .e-dialog .e-dlg-header-content {
336
344
  padding: 16px 4px 16px 28px !important; /* stylelint-disable-line declaration-no-important */
337
345
  }
@@ -364,7 +372,7 @@
364
372
  border-radius: 2px !important;
365
373
  padding: 28px 28px 0px 28px !important;
366
374
  }
367
- .e-bigger .e-grid .e-columnmenu {
375
+ .e-bigger .e-gantt .e-grid .e-columnmenu {
368
376
  top: 38px;
369
377
  }
370
378
  .e-bigger .e-gantt-dialog .e-dialog {
@@ -450,11 +458,11 @@
450
458
  min-width: 36px !important; /* stylelint-disable-line declaration-no-important */
451
459
  }
452
460
  .e-bigger .e-predecessor-tooltip .e-arrow-tip-outer.e-tip-bottom {
453
- border-top: 8px solid #000;
454
- border-top: 12.5px solid #000;
461
+ border-top: 8px solid #f3f2f1;
462
+ border-top: 12.5px solid #f3f2f1;
455
463
  }
456
464
  .e-bigger .e-predecessor-tooltip .e-arrow-tip-inner.e-tip-bottom {
457
- color: #000;
465
+ color: #f3f2f1;
458
466
  }
459
467
  .e-bigger .e-predecessor-tooltip .e-left-btn:disabled {
460
468
  color: #484644 !important;
@@ -466,17 +474,17 @@
466
474
  padding: 3px !important; /* stylelint-disable-line declaration-no-important */
467
475
  }
468
476
  .e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type {
469
- background-color: #000;
470
- border-color: #000;
471
- color: #eff6fc;
477
+ background-color: #f3f2f1;
478
+ border-color: #f3f2f1;
479
+ color: #252423;
472
480
  font-size: 12px;
473
481
  line-height: 18px;
474
482
  padding: 0 8px 0 0;
475
483
  }
476
484
  .e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:last-of-type {
477
- background-color: #000;
478
- border-color: #000;
479
- color: #eff6fc;
485
+ background-color: #f3f2f1;
486
+ border-color: #f3f2f1;
487
+ color: #252423;
480
488
  font-size: 12px;
481
489
  line-height: 18px;
482
490
  padding: 0 0 0 8px;
@@ -578,7 +586,7 @@
578
586
  border-width: 1px;
579
587
  box-shadow: 0 0;
580
588
  font-size: 12px;
581
- font-weight: bold;
589
+ font-weight: 700;
582
590
  opacity: 1;
583
591
  overflow: hidden;
584
592
  padding: 2px 8px 1px;
@@ -770,7 +778,7 @@
770
778
  display: -ms-inline-flexbox;
771
779
  display: inline-flex;
772
780
  font-size: 14px;
773
- font-weight: bold;
781
+ font-weight: 700;
774
782
  margin: 0;
775
783
  padding: 0;
776
784
  position: static;
@@ -1293,6 +1301,9 @@
1293
1301
  outline: 1px solid;
1294
1302
  outline-offset: 2px;
1295
1303
  }
1304
+ .e-gantt .e-dialog.e-filter-popup .e-footer-content {
1305
+ padding-top: 0;
1306
+ }
1296
1307
 
1297
1308
  .e-gantt-dialog .e-tab .e-tab-header {
1298
1309
  padding-left: 0px;
@@ -1520,16 +1531,16 @@
1520
1531
  }
1521
1532
 
1522
1533
  .e-predecessor-tooltip {
1523
- background-color: #000 !important; /* stylelint-disable-line declaration-no-important */
1524
- border-color: #000 !important; /* stylelint-disable-line declaration-no-important */
1534
+ background-color: #f3f2f1 !important; /* stylelint-disable-line declaration-no-important */
1535
+ border-color: #f3f2f1 !important; /* stylelint-disable-line declaration-no-important */
1525
1536
  visibility: hidden;
1526
1537
  }
1527
1538
  .e-predecessor-tooltip .e-arrow-tip-outer.e-tip-bottom {
1528
- border-top: 8px solid #000;
1529
- border-top: 12.5px solid #000;
1539
+ border-top: 8px solid #f3f2f1;
1540
+ border-top: 12.5px solid #f3f2f1;
1530
1541
  }
1531
1542
  .e-predecessor-tooltip .e-arrow-tip-inner.e-tip-bottom {
1532
- color: #000;
1543
+ color: #f3f2f1;
1533
1544
  }
1534
1545
  .e-predecessor-tooltip .e-left-btn:disabled {
1535
1546
  color: #484644 !important;
@@ -1541,17 +1552,17 @@
1541
1552
  padding: 3px !important; /* stylelint-disable-line declaration-no-important */
1542
1553
  }
1543
1554
  .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type {
1544
- background-color: #000;
1545
- border-color: #000;
1546
- color: #eff6fc;
1555
+ background-color: #f3f2f1;
1556
+ border-color: #f3f2f1;
1557
+ color: #252423;
1547
1558
  font-size: 12px;
1548
1559
  line-height: 18px;
1549
1560
  padding: 0 8px 0 0;
1550
1561
  }
1551
1562
  .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:last-of-type {
1552
- background-color: #000;
1553
- border-color: #000;
1554
- color: #eff6fc;
1563
+ background-color: #f3f2f1;
1564
+ border-color: #f3f2f1;
1565
+ color: #252423;
1555
1566
  font-size: 12px;
1556
1567
  line-height: 18px;
1557
1568
  padding: 0 0 0 8px;
@@ -1700,7 +1711,7 @@
1700
1711
  .e-gantt .e-gantt-chart .e-gantt-child-progressbar-inner-div {
1701
1712
  background-color: #0078d4;
1702
1713
  border: 0px;
1703
- border-radius: 2px;
1714
+ border-radius: 3px;
1704
1715
  }
1705
1716
  .e-gantt .e-gantt-chart .e-gantt-child-manualtaskbar {
1706
1717
  background-color: #dff6dd;
@@ -1711,7 +1722,7 @@
1711
1722
  }
1712
1723
  .e-gantt .e-gantt-chart .e-gantt-child-manualprogressbar {
1713
1724
  background-color: #0b6a0b;
1714
- border: 0px;
1725
+ outline: 0px;
1715
1726
  }
1716
1727
  .e-gantt .e-gantt-chart .e-gantt-critical-child-manualprogressbar {
1717
1728
  background-color: #0b6a0b;
@@ -1771,6 +1782,18 @@
1771
1782
  .e-gantt .e-gantt-chart .e-line {
1772
1783
  border-color: #0078d4;
1773
1784
  }
1785
+ .e-gantt .e-gantt-chart .e-connector-line {
1786
+ stroke: #0078d4;
1787
+ }
1788
+ .e-gantt .e-gantt-chart .e-critical-line {
1789
+ stroke: #d13438;
1790
+ }
1791
+ .e-gantt .e-gantt-chart .e-connector-line-arrow {
1792
+ fill: #0078d4;
1793
+ }
1794
+ .e-gantt .e-gantt-chart .e-critical-line-arrow {
1795
+ fill: #d13438;
1796
+ }
1774
1797
  .e-gantt .e-gantt-chart .e-connector-line-right-arrow {
1775
1798
  border-left-color: #0078d4;
1776
1799
  }
@@ -1822,7 +1845,10 @@
1822
1845
  padding-right: 25px;
1823
1846
  }
1824
1847
  .e-gantt .e-gantt-chart .e-connectorpoint-right {
1825
- margin-left: 2px;
1848
+ margin-left: 3px;
1849
+ }
1850
+ .e-gantt .e-gantt-chart .e-connectorpoint-left {
1851
+ margin-right: 3px;
1826
1852
  }
1827
1853
  .e-gantt .e-gantt-chart .e-right-connectorpoint-outer-div,
1828
1854
  .e-gantt .e-gantt-chart .e-left-connectorpoint-outer-div {
@@ -2083,14 +2109,15 @@
2083
2109
 
2084
2110
  .e-gantt .e-gantt-chart .e-gantt-child-critical-taskbar-inner-div {
2085
2111
  background-color: #fed9cc;
2086
- border: 1px solid #fed9cc;
2112
+ outline: 1px solid #fed9cc;
2087
2113
  border-radius: 4px;
2088
2114
  }
2089
2115
 
2090
2116
  .e-gantt .e-gantt-chart .e-gantt-child-critical-progressbar-inner-div {
2091
2117
  background-color: #d13438;
2092
2118
  border: 0px;
2093
- border-radius: 2px;
2119
+ position: absolute;
2120
+ border-radius: 3px;
2094
2121
  }
2095
2122
 
2096
2123
  .e-gantt .e-gantt-chart .e-gantt-critical-unscheduled-taskbar {
@@ -324,7 +324,7 @@
324
324
  .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover:hover {
325
325
  background-color: #005ba1;
326
326
  border-color: #fff;
327
- outline: 2px solid #c7e0f4;
327
+ outline: 2px solid #fff;
328
328
  }
329
329
  .e-bigger .e-gantt .e-tab .e-content {
330
330
  height: 254px !important;
@@ -332,6 +332,14 @@
332
332
  .e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
333
333
  height: 63px !important; /* stylelint-disable-line declaration-no-important */
334
334
  }
335
+ .e-bigger .e-gantt .e-gantt-dialog .e-tab .e-tab-header {
336
+ padding-left: 0px;
337
+ }
338
+ .e-bigger .e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-indicator {
339
+ display: block;
340
+ bottom: 0;
341
+ height: 3px;
342
+ }
335
343
  .e-bigger .e-gantt .e-dialog .e-dlg-header-content {
336
344
  padding: 16px 4px 16px 28px !important; /* stylelint-disable-line declaration-no-important */
337
345
  }
@@ -364,7 +372,7 @@
364
372
  border-radius: 2px !important;
365
373
  padding: 28px 28px 0px 28px !important;
366
374
  }
367
- .e-bigger .e-grid .e-columnmenu {
375
+ .e-bigger .e-gantt .e-grid .e-columnmenu {
368
376
  top: 38px;
369
377
  }
370
378
  .e-bigger .e-gantt-dialog .e-dialog {
@@ -450,11 +458,11 @@
450
458
  min-width: 36px !important; /* stylelint-disable-line declaration-no-important */
451
459
  }
452
460
  .e-bigger .e-predecessor-tooltip .e-arrow-tip-outer.e-tip-bottom {
453
- border-top: 8px solid #000;
454
- border-top: 12.5px solid #000;
461
+ border-top: 8px solid #323130;
462
+ border-top: 12.5px solid #323130;
455
463
  }
456
464
  .e-bigger .e-predecessor-tooltip .e-arrow-tip-inner.e-tip-bottom {
457
- color: #000;
465
+ color: #323130;
458
466
  }
459
467
  .e-bigger .e-predecessor-tooltip .e-left-btn:disabled {
460
468
  color: #a19f9d !important;
@@ -466,17 +474,17 @@
466
474
  padding: 3px !important; /* stylelint-disable-line declaration-no-important */
467
475
  }
468
476
  .e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type {
469
- background-color: #000;
470
- border-color: #000;
471
- color: #eff6fc;
477
+ background-color: #323130;
478
+ border-color: #323130;
479
+ color: #fff;
472
480
  font-size: 12px;
473
481
  line-height: 18px;
474
482
  padding: 0 8px 0 0;
475
483
  }
476
484
  .e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:last-of-type {
477
- background-color: #000;
478
- border-color: #000;
479
- color: #eff6fc;
485
+ background-color: #323130;
486
+ border-color: #323130;
487
+ color: #fff;
480
488
  font-size: 12px;
481
489
  line-height: 18px;
482
490
  padding: 0 0 0 8px;
@@ -578,7 +586,7 @@
578
586
  border-width: 1px;
579
587
  box-shadow: 0 0;
580
588
  font-size: 12px;
581
- font-weight: bold;
589
+ font-weight: 700;
582
590
  opacity: 1;
583
591
  overflow: hidden;
584
592
  padding: 2px 8px 1px;
@@ -770,7 +778,7 @@
770
778
  display: -ms-inline-flexbox;
771
779
  display: inline-flex;
772
780
  font-size: 14px;
773
- font-weight: bold;
781
+ font-weight: 700;
774
782
  margin: 0;
775
783
  padding: 0;
776
784
  position: static;
@@ -1293,6 +1301,9 @@
1293
1301
  outline: 1px solid;
1294
1302
  outline-offset: 2px;
1295
1303
  }
1304
+ .e-gantt .e-dialog.e-filter-popup .e-footer-content {
1305
+ padding-top: 0;
1306
+ }
1296
1307
 
1297
1308
  .e-gantt-dialog .e-tab .e-tab-header {
1298
1309
  padding-left: 0px;
@@ -1520,16 +1531,16 @@
1520
1531
  }
1521
1532
 
1522
1533
  .e-predecessor-tooltip {
1523
- background-color: #000 !important; /* stylelint-disable-line declaration-no-important */
1524
- border-color: #000 !important; /* stylelint-disable-line declaration-no-important */
1534
+ background-color: #323130 !important; /* stylelint-disable-line declaration-no-important */
1535
+ border-color: #323130 !important; /* stylelint-disable-line declaration-no-important */
1525
1536
  visibility: hidden;
1526
1537
  }
1527
1538
  .e-predecessor-tooltip .e-arrow-tip-outer.e-tip-bottom {
1528
- border-top: 8px solid #000;
1529
- border-top: 12.5px solid #000;
1539
+ border-top: 8px solid #323130;
1540
+ border-top: 12.5px solid #323130;
1530
1541
  }
1531
1542
  .e-predecessor-tooltip .e-arrow-tip-inner.e-tip-bottom {
1532
- color: #000;
1543
+ color: #323130;
1533
1544
  }
1534
1545
  .e-predecessor-tooltip .e-left-btn:disabled {
1535
1546
  color: #a19f9d !important;
@@ -1541,17 +1552,17 @@
1541
1552
  padding: 3px !important; /* stylelint-disable-line declaration-no-important */
1542
1553
  }
1543
1554
  .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type {
1544
- background-color: #000;
1545
- border-color: #000;
1546
- color: #eff6fc;
1555
+ background-color: #323130;
1556
+ border-color: #323130;
1557
+ color: #fff;
1547
1558
  font-size: 12px;
1548
1559
  line-height: 18px;
1549
1560
  padding: 0 8px 0 0;
1550
1561
  }
1551
1562
  .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:last-of-type {
1552
- background-color: #000;
1553
- border-color: #000;
1554
- color: #eff6fc;
1563
+ background-color: #323130;
1564
+ border-color: #323130;
1565
+ color: #fff;
1555
1566
  font-size: 12px;
1556
1567
  line-height: 18px;
1557
1568
  padding: 0 0 0 8px;
@@ -1700,7 +1711,7 @@
1700
1711
  .e-gantt .e-gantt-chart .e-gantt-child-progressbar-inner-div {
1701
1712
  background-color: #0078d4;
1702
1713
  border: 0px;
1703
- border-radius: 2px;
1714
+ border-radius: 3px;
1704
1715
  }
1705
1716
  .e-gantt .e-gantt-chart .e-gantt-child-manualtaskbar {
1706
1717
  background-color: #dff6dd;
@@ -1711,7 +1722,7 @@
1711
1722
  }
1712
1723
  .e-gantt .e-gantt-chart .e-gantt-child-manualprogressbar {
1713
1724
  background-color: #0b6a0b;
1714
- border: 0px;
1725
+ outline: 0px;
1715
1726
  }
1716
1727
  .e-gantt .e-gantt-chart .e-gantt-critical-child-manualprogressbar {
1717
1728
  background-color: #0b6a0b;
@@ -1771,6 +1782,18 @@
1771
1782
  .e-gantt .e-gantt-chart .e-line {
1772
1783
  border-color: #0078d4;
1773
1784
  }
1785
+ .e-gantt .e-gantt-chart .e-connector-line {
1786
+ stroke: #0078d4;
1787
+ }
1788
+ .e-gantt .e-gantt-chart .e-critical-line {
1789
+ stroke: #d13438;
1790
+ }
1791
+ .e-gantt .e-gantt-chart .e-connector-line-arrow {
1792
+ fill: #0078d4;
1793
+ }
1794
+ .e-gantt .e-gantt-chart .e-critical-line-arrow {
1795
+ fill: #d13438;
1796
+ }
1774
1797
  .e-gantt .e-gantt-chart .e-connector-line-right-arrow {
1775
1798
  border-left-color: #0078d4;
1776
1799
  }
@@ -1822,7 +1845,10 @@
1822
1845
  padding-right: 25px;
1823
1846
  }
1824
1847
  .e-gantt .e-gantt-chart .e-connectorpoint-right {
1825
- margin-left: 2px;
1848
+ margin-left: 3px;
1849
+ }
1850
+ .e-gantt .e-gantt-chart .e-connectorpoint-left {
1851
+ margin-right: 3px;
1826
1852
  }
1827
1853
  .e-gantt .e-gantt-chart .e-right-connectorpoint-outer-div,
1828
1854
  .e-gantt .e-gantt-chart .e-left-connectorpoint-outer-div {
@@ -2083,14 +2109,15 @@
2083
2109
 
2084
2110
  .e-gantt .e-gantt-chart .e-gantt-child-critical-taskbar-inner-div {
2085
2111
  background-color: #fed9cc;
2086
- border: 1px solid #fed9cc;
2112
+ outline: 1px solid #fed9cc;
2087
2113
  border-radius: 4px;
2088
2114
  }
2089
2115
 
2090
2116
  .e-gantt .e-gantt-chart .e-gantt-child-critical-progressbar-inner-div {
2091
2117
  background-color: #d13438;
2092
2118
  border: 0px;
2093
- border-radius: 2px;
2119
+ position: absolute;
2120
+ border-radius: 3px;
2094
2121
  }
2095
2122
 
2096
2123
  .e-gantt .e-gantt-chart .e-gantt-critical-unscheduled-taskbar {
@@ -251,6 +251,12 @@
251
251
  .e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
252
252
  height: 63px !important; /* stylelint-disable-line declaration-no-important */
253
253
  }
254
+ .e-bigger .e-gantt .e-gantt-dialog .e-tab .e-tab-header {
255
+ padding-left: 0px;
256
+ }
257
+ .e-bigger .e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-indicator {
258
+ display: block;
259
+ }
254
260
  .e-bigger .e-gantt .e-dialog .e-dlg-header-content {
255
261
  padding: 16px 4px 12px 18px !important; /* stylelint-disable-line declaration-no-important */
256
262
  }
@@ -280,7 +286,7 @@
280
286
  border-radius: 0px !important;
281
287
  padding: 20px 18px 0px 18px !important;
282
288
  }
283
- .e-bigger .e-grid .e-columnmenu {
289
+ .e-bigger .e-gantt .e-grid .e-columnmenu {
284
290
  top: 45px;
285
291
  }
286
292
  .e-bigger .e-gantt-dialog .e-dialog {
@@ -367,7 +373,6 @@
367
373
  }
368
374
  .e-bigger .e-predecessor-tooltip .e-arrow-tip-outer.e-tip-bottom {
369
375
  border-top: 8px solid #000;
370
- border-top: 7px solid #000;
371
376
  }
372
377
  .e-bigger .e-predecessor-tooltip .e-arrow-tip-inner.e-tip-bottom {
373
378
  color: #000;
@@ -1208,7 +1213,6 @@
1208
1213
  outline: 1px solid;
1209
1214
  outline-offset: 2px;
1210
1215
  }
1211
-
1212
1216
  .e-gantt-dialog .e-tab .e-tab-header {
1213
1217
  padding-left: 0px;
1214
1218
  }
@@ -1439,7 +1443,6 @@
1439
1443
  }
1440
1444
  .e-predecessor-tooltip .e-arrow-tip-outer.e-tip-bottom {
1441
1445
  border-top: 8px solid #000;
1442
- border-top: 7px solid #000;
1443
1446
  }
1444
1447
  .e-predecessor-tooltip .e-arrow-tip-inner.e-tip-bottom {
1445
1448
  color: #000;
@@ -1612,7 +1615,7 @@
1612
1615
  .e-gantt .e-gantt-chart .e-gantt-child-progressbar-inner-div {
1613
1616
  background-color: #6e06f1;
1614
1617
  border: 0px;
1615
- border-radius: 4px;
1618
+ border-radius: 3px;
1616
1619
  }
1617
1620
  .e-gantt .e-gantt-chart .e-gantt-child-manualtaskbar {
1618
1621
  background-color: #8dd1c4;
@@ -1623,7 +1626,7 @@
1623
1626
  }
1624
1627
  .e-gantt .e-gantt-chart .e-gantt-child-manualprogressbar {
1625
1628
  background-color: #67c1b2;
1626
- border: #4fb29f;
1629
+ outline: #4fb29f;
1627
1630
  }
1628
1631
  .e-gantt .e-gantt-chart .e-gantt-critical-child-manualprogressbar {
1629
1632
  background-color: #67c1b2;
@@ -1683,6 +1686,18 @@
1683
1686
  .e-gantt .e-gantt-chart .e-line {
1684
1687
  border-color: #29c400;
1685
1688
  }
1689
+ .e-gantt .e-gantt-chart .e-connector-line {
1690
+ stroke: #29c400;
1691
+ }
1692
+ .e-gantt .e-gantt-chart .e-critical-line {
1693
+ stroke: #d13438;
1694
+ }
1695
+ .e-gantt .e-gantt-chart .e-connector-line-arrow {
1696
+ fill: #29c400;
1697
+ }
1698
+ .e-gantt .e-gantt-chart .e-critical-line-arrow {
1699
+ fill: #d13438;
1700
+ }
1686
1701
  .e-gantt .e-gantt-chart .e-connector-line-right-arrow {
1687
1702
  border-left-color: #29c400;
1688
1703
  }
@@ -1734,7 +1749,10 @@
1734
1749
  padding-right: 25px;
1735
1750
  }
1736
1751
  .e-gantt .e-gantt-chart .e-connectorpoint-right {
1737
- margin-left: 2px;
1752
+ margin-left: 3px;
1753
+ }
1754
+ .e-gantt .e-gantt-chart .e-connectorpoint-left {
1755
+ margin-right: 3px;
1738
1756
  }
1739
1757
  .e-gantt .e-gantt-chart .e-right-connectorpoint-outer-div,
1740
1758
  .e-gantt .e-gantt-chart .e-left-connectorpoint-outer-div {
@@ -1995,14 +2013,15 @@
1995
2013
 
1996
2014
  .e-gantt .e-gantt-chart .e-gantt-child-critical-taskbar-inner-div {
1997
2015
  background-color: #F3D8DA;
1998
- border: 1px solid #F3D8DA;
2016
+ outline: 1px solid #F3D8DA;
1999
2017
  border-radius: 0px;
2000
2018
  }
2001
2019
 
2002
2020
  .e-gantt .e-gantt-chart .e-gantt-child-critical-progressbar-inner-div {
2003
2021
  background-color: #D13438;
2004
2022
  border: 0px;
2005
- border-radius: 4px;
2023
+ position: absolute;
2024
+ border-radius: 3px;
2006
2025
  }
2007
2026
 
2008
2027
  .e-gantt .e-gantt-chart .e-gantt-critical-unscheduled-taskbar {
@@ -352,6 +352,12 @@
352
352
  .e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
353
353
  height: 63px !important; /* stylelint-disable-line declaration-no-important */
354
354
  }
355
+ .e-bigger .e-gantt .e-gantt-dialog .e-tab .e-tab-header {
356
+ padding-left: 13px;
357
+ }
358
+ .e-bigger .e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-indicator {
359
+ display: block;
360
+ }
355
361
  .e-bigger .e-gantt .e-dialog .e-dlg-header-content {
356
362
  padding: 16px 4px 12px 18px !important; /* stylelint-disable-line declaration-no-important */
357
363
  }
@@ -381,7 +387,7 @@
381
387
  border-radius: 0px !important;
382
388
  padding: 20px 18px 0px 18px !important;
383
389
  }
384
- .e-bigger .e-grid .e-columnmenu {
390
+ .e-bigger .e-gantt .e-grid .e-columnmenu {
385
391
  top: 45px;
386
392
  }
387
393
  .e-bigger .e-gantt-dialog .e-dialog {
@@ -1309,7 +1315,6 @@
1309
1315
  outline: 1px solid;
1310
1316
  outline-offset: 2px;
1311
1317
  }
1312
-
1313
1318
  .e-gantt-dialog .e-tab .e-tab-header {
1314
1319
  padding-left: 13px;
1315
1320
  }
@@ -1713,7 +1718,7 @@
1713
1718
  .e-gantt .e-gantt-chart .e-gantt-child-progressbar-inner-div {
1714
1719
  background-color: #3e047d;
1715
1720
  border: 0px;
1716
- border-radius: 4px;
1721
+ border-radius: 3px;
1717
1722
  }
1718
1723
  .e-gantt .e-gantt-chart .e-gantt-child-manualtaskbar {
1719
1724
  background-color: #4731FE;
@@ -1724,7 +1729,7 @@
1724
1729
  }
1725
1730
  .e-gantt .e-gantt-chart .e-gantt-child-manualprogressbar {
1726
1731
  background-color: #1B00F7;
1727
- border: 0px;
1732
+ outline: 0px;
1728
1733
  }
1729
1734
  .e-gantt .e-gantt-chart .e-gantt-critical-child-manualprogressbar {
1730
1735
  background-color: #1B00F7;
@@ -1784,6 +1789,18 @@
1784
1789
  .e-gantt .e-gantt-chart .e-line {
1785
1790
  border-color: #29c400;
1786
1791
  }
1792
+ .e-gantt .e-gantt-chart .e-connector-line {
1793
+ stroke: #29c400;
1794
+ }
1795
+ .e-gantt .e-gantt-chart .e-critical-line {
1796
+ stroke: #d13438;
1797
+ }
1798
+ .e-gantt .e-gantt-chart .e-connector-line-arrow {
1799
+ fill: #29c400;
1800
+ }
1801
+ .e-gantt .e-gantt-chart .e-critical-line-arrow {
1802
+ fill: #d13438;
1803
+ }
1787
1804
  .e-gantt .e-gantt-chart .e-connector-line-right-arrow {
1788
1805
  border-left-color: #29c400;
1789
1806
  }
@@ -1835,7 +1852,10 @@
1835
1852
  padding-right: 25px;
1836
1853
  }
1837
1854
  .e-gantt .e-gantt-chart .e-connectorpoint-right {
1838
- margin-left: 2px;
1855
+ margin-left: 3px;
1856
+ }
1857
+ .e-gantt .e-gantt-chart .e-connectorpoint-left {
1858
+ margin-right: 3px;
1839
1859
  }
1840
1860
  .e-gantt .e-gantt-chart .e-right-connectorpoint-outer-div,
1841
1861
  .e-gantt .e-gantt-chart .e-left-connectorpoint-outer-div {
@@ -2096,14 +2116,15 @@
2096
2116
 
2097
2117
  .e-gantt .e-gantt-chart .e-gantt-child-critical-taskbar-inner-div {
2098
2118
  background-color: #F3D8DA;
2099
- border: 1px solid #F3D8DA;
2119
+ outline: 1px solid #F3D8DA;
2100
2120
  border-radius: 0px;
2101
2121
  }
2102
2122
 
2103
2123
  .e-gantt .e-gantt-chart .e-gantt-child-critical-progressbar-inner-div {
2104
2124
  background-color: #D13438;
2105
2125
  border: 0px;
2106
- border-radius: 4px;
2126
+ position: absolute;
2127
+ border-radius: 3px;
2107
2128
  }
2108
2129
 
2109
2130
  .e-gantt .e-gantt-chart .e-gantt-critical-unscheduled-taskbar {