@syncfusion/ej2-gantt 23.2.5 → 24.1.41

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 (113) hide show
  1. package/CHANGELOG.md +3 -0
  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 +2980 -336
  6. package/dist/es6/ej2-gantt.es2015.js.map +1 -1
  7. package/dist/es6/ej2-gantt.es5.js +3034 -370
  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 +7 -3
  14. package/src/gantt/actions/chart-scroll.d.ts +9 -1
  15. package/src/gantt/actions/chart-scroll.js +111 -3
  16. package/src/gantt/actions/connector-line-edit.js +8 -1
  17. package/src/gantt/actions/context-menu.js +2 -2
  18. package/src/gantt/actions/day-markers.d.ts +2 -1
  19. package/src/gantt/actions/dependency.js +2 -2
  20. package/src/gantt/actions/dialog-edit.d.ts +24 -0
  21. package/src/gantt/actions/dialog-edit.js +383 -1
  22. package/src/gantt/actions/edit.js +104 -41
  23. package/src/gantt/actions/keyboard.js +5 -1
  24. package/src/gantt/actions/pdf-export.js +12 -4
  25. package/src/gantt/actions/rowdragdrop.js +24 -5
  26. package/src/gantt/actions/selection.js +6 -3
  27. package/src/gantt/actions/taskbar-edit.d.ts +14 -0
  28. package/src/gantt/actions/taskbar-edit.js +513 -78
  29. package/src/gantt/actions/toolbar.js +4 -1
  30. package/src/gantt/base/css-constants.d.ts +2 -0
  31. package/src/gantt/base/css-constants.js +2 -0
  32. package/src/gantt/base/enum.d.ts +22 -0
  33. package/src/gantt/base/gantt-chart.js +63 -21
  34. package/src/gantt/base/gantt-model.d.ts +9 -1
  35. package/src/gantt/base/gantt.d.ts +11 -1
  36. package/src/gantt/base/gantt.js +46 -18
  37. package/src/gantt/base/interface.d.ts +135 -3
  38. package/src/gantt/base/splitter.js +6 -0
  39. package/src/gantt/base/task-processor.d.ts +1 -1
  40. package/src/gantt/base/task-processor.js +37 -9
  41. package/src/gantt/base/tree-grid.js +1 -1
  42. package/src/gantt/export/export-helper.d.ts +12 -0
  43. package/src/gantt/export/export-helper.js +316 -9
  44. package/src/gantt/export/pdf-base/pdf-grid-table.js +14 -1
  45. package/src/gantt/export/pdf-base/pdf-style/gantt-theme.js +36 -0
  46. package/src/gantt/export/pdf-connector-line.js +137 -32
  47. package/src/gantt/export/pdf-event-marker.d.ts +10 -0
  48. package/src/gantt/export/pdf-event-marker.js +57 -0
  49. package/src/gantt/export/pdf-gantt.d.ts +2 -0
  50. package/src/gantt/export/pdf-gantt.js +30 -10
  51. package/src/gantt/export/pdf-taskbar.d.ts +23 -2
  52. package/src/gantt/export/pdf-taskbar.js +771 -43
  53. package/src/gantt/export/pdf-timeline.d.ts +9 -0
  54. package/src/gantt/export/pdf-timeline.js +98 -20
  55. package/src/gantt/models/column.d.ts +12 -0
  56. package/src/gantt/renderer/chart-rows.d.ts +1 -1
  57. package/src/gantt/renderer/chart-rows.js +29 -16
  58. package/src/gantt/renderer/connector-line.js +8 -5
  59. package/src/gantt/renderer/edit-tooltip.js +3 -0
  60. package/src/gantt/renderer/event-marker.js +4 -1
  61. package/src/gantt/renderer/nonworking-day.js +18 -5
  62. package/src/gantt/renderer/timeline.d.ts +9 -0
  63. package/src/gantt/renderer/timeline.js +169 -21
  64. package/styles/bootstrap-dark.css +77 -16
  65. package/styles/bootstrap.css +78 -17
  66. package/styles/bootstrap4.css +78 -17
  67. package/styles/bootstrap5-dark.css +78 -17
  68. package/styles/bootstrap5.css +78 -17
  69. package/styles/fabric-dark.css +78 -17
  70. package/styles/fabric.css +78 -17
  71. package/styles/fluent-dark.css +78 -17
  72. package/styles/fluent.css +78 -17
  73. package/styles/gantt/_bootstrap-dark-definition.scss +7 -2
  74. package/styles/gantt/_bootstrap-definition.scss +7 -2
  75. package/styles/gantt/_bootstrap4-definition.scss +7 -2
  76. package/styles/gantt/_bootstrap5-definition.scss +7 -2
  77. package/styles/gantt/_fabric-dark-definition.scss +7 -2
  78. package/styles/gantt/_fabric-definition.scss +7 -2
  79. package/styles/gantt/_fluent-definition.scss +7 -2
  80. package/styles/gantt/_fusionnew-definition.scss +6 -2
  81. package/styles/gantt/_highcontrast-definition.scss +7 -2
  82. package/styles/gantt/_highcontrast-light-definition.scss +7 -2
  83. package/styles/gantt/_layout.scss +92 -20
  84. package/styles/gantt/_material-dark-definition.scss +7 -2
  85. package/styles/gantt/_material-definition.scss +7 -2
  86. package/styles/gantt/_material3-definition.scss +7 -2
  87. package/styles/gantt/_tailwind-definition.scss +6 -1
  88. package/styles/gantt/_theme.scss +11 -0
  89. package/styles/gantt/bootstrap-dark.css +77 -16
  90. package/styles/gantt/bootstrap.css +78 -17
  91. package/styles/gantt/bootstrap4.css +78 -17
  92. package/styles/gantt/bootstrap5-dark.css +78 -17
  93. package/styles/gantt/bootstrap5.css +78 -17
  94. package/styles/gantt/fabric-dark.css +78 -17
  95. package/styles/gantt/fabric.css +78 -17
  96. package/styles/gantt/fluent-dark.css +78 -17
  97. package/styles/gantt/fluent.css +78 -17
  98. package/styles/gantt/highcontrast-light.css +78 -17
  99. package/styles/gantt/highcontrast.css +78 -17
  100. package/styles/gantt/material-dark.css +78 -17
  101. package/styles/gantt/material.css +78 -17
  102. package/styles/gantt/material3-dark.css +77 -16
  103. package/styles/gantt/material3.css +77 -16
  104. package/styles/gantt/tailwind-dark.css +78 -17
  105. package/styles/gantt/tailwind.css +78 -17
  106. package/styles/highcontrast-light.css +78 -17
  107. package/styles/highcontrast.css +78 -17
  108. package/styles/material-dark.css +78 -17
  109. package/styles/material.css +78 -17
  110. package/styles/material3-dark.css +77 -16
  111. package/styles/material3.css +77 -16
  112. package/styles/tailwind-dark.css +78 -17
  113. package/styles/tailwind.css +78 -17
@@ -335,6 +335,22 @@
335
335
  .e-bigger .e-gantt .e-toolbar .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
336
336
  font-size: 18px;
337
337
  }
338
+ .e-bigger .e-gantt .e-gantt-chart .e-taskbar-left-resizer,
339
+ .e-bigger .e-gantt .e-gantt-chart .e-taskbar-right-resizer {
340
+ display: inline-block;
341
+ position: absolute;
342
+ top: 0;
343
+ width: 25px;
344
+ z-index: 4;
345
+ }
346
+ .e-bigger .e-gantt .e-gantt-chart .e-left-resize-gripper,
347
+ .e-bigger .e-gantt .e-gantt-chart .e-right-resize-gripper {
348
+ -ms-flex-align: center;
349
+ align-items: center;
350
+ cursor: ew-resize;
351
+ display: -ms-inline-flexbox;
352
+ display: inline-flex;
353
+ }
338
354
  .e-bigger .e-gantt .e-gantt-chart .e-timeline-header-container {
339
355
  height: 64px;
340
356
  }
@@ -416,7 +432,8 @@
416
432
  padding: 20px !important; /* stylelint-disable-line declaration-no-important */
417
433
  }
418
434
  .e-bigger .e-gantt .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
419
- left: 2px !important;
435
+ left: -11px;
436
+ top: 3px;
420
437
  }
421
438
  .e-bigger .e-gantt .e-dialog .e-btn .e-btn-icon.e-icon-dlg-close {
422
439
  font-size: 20px !important;
@@ -429,7 +446,7 @@
429
446
  .e-bigger .e-gantt .e-dialog .e-footer-content .e-btn {
430
447
  margin-left: 12px;
431
448
  }
432
- .e-bigger .e-gantt .e-dialog .e-dlg-header {
449
+ .e-bigger .e-gantt .e-dialog .e-dlg-header:not(.e-gantt-adaptive-dialog .e-dialog .e-dlg-header) {
433
450
  line-height: 28px;
434
451
  }
435
452
  .e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
@@ -444,6 +461,7 @@
444
461
  }
445
462
  .e-bigger .e-gantt-dialog .e-dialog {
446
463
  border-radius: 6px;
464
+ width: 556px !important;
447
465
  }
448
466
  .e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
449
467
  padding: 0 16px !important; /* stylelint-disable-line declaration-no-important */
@@ -473,7 +491,7 @@
473
491
  border-radius: 16px 16px 0px 0px;
474
492
  padding-bottom: 12px;
475
493
  }
476
- .e-bigger .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
494
+ .e-bigger .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn:not(.e-gantt-adaptive-dialog .e-dialog .e-dlg-closeicon-btn) {
477
495
  border-radius: 50%;
478
496
  height: auto !important; /* stylelint-disable-line declaration-no-important */
479
497
  width: auto;
@@ -525,6 +543,16 @@
525
543
  .e-bigger .e-gantt-dialog .e-input-group-icon.e-date-icon {
526
544
  min-width: 36px !important; /* stylelint-disable-line declaration-no-important */
527
545
  }
546
+ .e-bigger .e-gantt-dialog .e-gantt-adaptive-dialog .e-dialog {
547
+ position: absolute !important; /* stylelint-disable-line declaration-no-important */
548
+ left: 0 !important; /* stylelint-disable-line declaration-no-important */
549
+ }
550
+ .e-bigger .e-gantt-dialog .e-gantt-adaptive-dialog .e-dialog .e-dlg-header-content {
551
+ padding: 16px !important; /* stylelint-disable-line declaration-no-important */
552
+ }
553
+ .e-bigger .e-gantt-dialog .e-gantt-adaptive-dialog .e-dialog td {
554
+ width: 100% !important; /* stylelint-disable-line declaration-no-important */
555
+ }
528
556
  .e-bigger .e-predecessor-tooltip .e-arrow-tip-outer.e-tip-bottom {
529
557
  border-top: 8px solid rgba(var(--color-sf-inverse-surface));
530
558
  }
@@ -754,9 +782,6 @@
754
782
  .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content {
755
783
  overflow-x: scroll !important; /* stylelint-disable-line declaration-no-important */
756
784
  }
757
- .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-gantt-frozen {
758
- overflow-x: hidden !important; /* stylelint-disable-line declaration-no-important */
759
- }
760
785
  .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content.e-gantt-scroll-padding {
761
786
  width: calc(100% + 17px);
762
787
  }
@@ -879,7 +904,7 @@
879
904
  box-sizing: border-box;
880
905
  }
881
906
  .e-gantt .e-gantt-chart .e-zero-spacing {
882
- border-spacing: 0;
907
+ border-spacing: 0.25px;
883
908
  }
884
909
  .e-gantt .e-gantt-chart .e-chart-row:first-child .e-chart-row-border {
885
910
  border-top: 0;
@@ -909,9 +934,6 @@
909
934
  vertical-align: middle;
910
935
  z-index: 3;
911
936
  }
912
- .e-gantt .e-gantt-chart .e-taskbar-main-container:hover {
913
- z-index: 4;
914
- }
915
937
  .e-gantt .e-gantt-chart .e-taskbar-main-container.e-gantt-multi-taskbar:hover {
916
938
  z-index: 4;
917
939
  }
@@ -1395,7 +1417,7 @@
1395
1417
  border-spacing: 0;
1396
1418
  }
1397
1419
  .e-gantt-dialog .e-item {
1398
- height: 241px;
1420
+ height: 100%;
1399
1421
  }
1400
1422
  .e-gantt-dialog .e-dependent-div {
1401
1423
  border-bottom-width: 0px;
@@ -1454,6 +1476,9 @@
1454
1476
  .e-gantt-dialog > .e-dlg-content {
1455
1477
  padding: 0 !important; /* stylelint-disable-line declaration-no-important */
1456
1478
  }
1479
+ .e-gantt-dialog .e-dlg-header {
1480
+ line-height: 30px;
1481
+ }
1457
1482
  .e-gantt-dialog .e-dlg-header-content {
1458
1483
  border-bottom: 0 !important; /* stylelint-disable-line declaration-no-important */
1459
1484
  }
@@ -1461,6 +1486,10 @@
1461
1486
  border-radius: 16px 16px 0px 0px;
1462
1487
  padding-bottom: 12px;
1463
1488
  }
1489
+ .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
1490
+ left: -11px;
1491
+ top: 6px !important;
1492
+ }
1464
1493
  .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
1465
1494
  border-radius: 50%;
1466
1495
  height: auto !important; /* stylelint-disable-line declaration-no-important */
@@ -1525,13 +1554,14 @@
1525
1554
  font-size: 16px;
1526
1555
  }
1527
1556
 
1528
- .e-bigger .e-gantt .e-gantt-chart .e-timeline-single-header-outer-div {
1529
- height: 64px !important; /* stylelint-disable-line declaration-no-important */
1557
+ .e-bigger .e-filter-popup .e-control .e-dialog .e-lib .e-popup .e-popup-open .e-excelfilter .e-gantt,
1558
+ .e-bigger .e-gantt .e-excelfilter .e-dialog .e-dlg-content {
1559
+ padding: 0 18px 0 0 !important; /* stylelint-disable-line declaration-no-important */
1530
1560
  }
1531
1561
 
1532
- .e-bigger .e-timeline-single-header-cell {
1533
- height: 64px !important; /* stylelint-disable-line declaration-no-important */
1534
- line-height: 64px !important; /* stylelint-disable-line declaration-no-important */
1562
+ .e-bigger .e-filter-popup .e-control .e-dialog .e-lib .e-popup .e-popup-open .e-excelfilter .e-gantt,
1563
+ .e-bigger .e-gantt .e-contextmenu-wrapper ul {
1564
+ padding: 0 !important; /* stylelint-disable-line declaration-no-important */
1535
1565
  }
1536
1566
 
1537
1567
  .e-gantt-tooltip-label {
@@ -1646,6 +1676,29 @@
1646
1676
  z-index: 1;
1647
1677
  }
1648
1678
 
1679
+ .e-gantt .e-gantt-chart .e-chart-root-container .e-content td.e-chart-row-cell.e-droptop {
1680
+ border-top: 2px solid rgba(var(--color-sf-primary));
1681
+ border-width: 2px 0 0;
1682
+ }
1683
+
1684
+ .e-gantt .e-gantt-chart .e-chart-root-container .e-content td.e-chart-row-cell.e-dropbottom {
1685
+ border-bottom: 2px solid rgba(var(--color-sf-primary));
1686
+ box-shadow: rgba(var(--color-sf-primary));
1687
+ }
1688
+
1689
+ .e-gantt .e-gantt-chart .e-chart-root-container .e-content td.e-chart-row-cell.e-childborder {
1690
+ border-bottom: 2px solid rgba(var(--color-sf-primary));
1691
+ border-top: 2px solid rgba(var(--color-sf-primary));
1692
+ box-shadow: rgba(var(--color-sf-primary));
1693
+ }
1694
+
1695
+ @media (max-width: 767px) {
1696
+ .e-bigger .e-gantt .e-dialog .e-edit-form-column:nth-child(odd), .e-bigger .e-gantt .e-dialog .e-edit-form-column:nth-child(even) {
1697
+ float: none;
1698
+ padding: 16px 12px 0 16px;
1699
+ width: 100%;
1700
+ }
1701
+ }
1649
1702
  /*! Gantt theme */
1650
1703
  .e-gantt .e-gantt-splitter {
1651
1704
  border-color: rgba(var(--color-sf-outline-variant));
@@ -1704,6 +1757,13 @@
1704
1757
  background: rgba(var(--color-sf-primary-container), 0.65);
1705
1758
  opacity: 0.9;
1706
1759
  }
1760
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-leftfreeze,
1761
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-unfreeze,
1762
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-rightfreeze,
1763
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-fixedfreeze {
1764
+ background: rgba(var(--color-sf-primary-container), 1);
1765
+ opacity: 1;
1766
+ }
1707
1767
  .e-gantt .e-taskbar-resize-div {
1708
1768
  border-color: rgba(var(--color-sf-primary));
1709
1769
  }
@@ -2024,6 +2084,7 @@
2024
2084
  }
2025
2085
  .e-gantt-dialog .e-dlg-header {
2026
2086
  color: rgba(var(--color-sf-on-surface));
2087
+ position: relative;
2027
2088
  }
2028
2089
  .e-gantt-dialog .e-dlg-header-content {
2029
2090
  background: transparent;
@@ -391,6 +391,22 @@
391
391
  .e-bigger .e-gantt .e-toolbar .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
392
392
  font-size: 18px;
393
393
  }
394
+ .e-bigger .e-gantt .e-gantt-chart .e-taskbar-left-resizer,
395
+ .e-bigger .e-gantt .e-gantt-chart .e-taskbar-right-resizer {
396
+ display: inline-block;
397
+ position: absolute;
398
+ top: 0;
399
+ width: 25px;
400
+ z-index: 4;
401
+ }
402
+ .e-bigger .e-gantt .e-gantt-chart .e-left-resize-gripper,
403
+ .e-bigger .e-gantt .e-gantt-chart .e-right-resize-gripper {
404
+ -ms-flex-align: center;
405
+ align-items: center;
406
+ cursor: ew-resize;
407
+ display: -ms-inline-flexbox;
408
+ display: inline-flex;
409
+ }
394
410
  .e-bigger .e-gantt .e-gantt-chart .e-timeline-header-container {
395
411
  height: 64px;
396
412
  }
@@ -472,7 +488,8 @@
472
488
  padding: 20px !important; /* stylelint-disable-line declaration-no-important */
473
489
  }
474
490
  .e-bigger .e-gantt .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
475
- left: 2px !important;
491
+ left: -11px;
492
+ top: 3px;
476
493
  }
477
494
  .e-bigger .e-gantt .e-dialog .e-btn .e-btn-icon.e-icon-dlg-close {
478
495
  font-size: 20px !important;
@@ -485,7 +502,7 @@
485
502
  .e-bigger .e-gantt .e-dialog .e-footer-content .e-btn {
486
503
  margin-left: 12px;
487
504
  }
488
- .e-bigger .e-gantt .e-dialog .e-dlg-header {
505
+ .e-bigger .e-gantt .e-dialog .e-dlg-header:not(.e-gantt-adaptive-dialog .e-dialog .e-dlg-header) {
489
506
  line-height: 28px;
490
507
  }
491
508
  .e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
@@ -500,6 +517,7 @@
500
517
  }
501
518
  .e-bigger .e-gantt-dialog .e-dialog {
502
519
  border-radius: 6px;
520
+ width: 556px !important;
503
521
  }
504
522
  .e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
505
523
  padding: 0 16px !important; /* stylelint-disable-line declaration-no-important */
@@ -529,7 +547,7 @@
529
547
  border-radius: 16px 16px 0px 0px;
530
548
  padding-bottom: 12px;
531
549
  }
532
- .e-bigger .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
550
+ .e-bigger .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn:not(.e-gantt-adaptive-dialog .e-dialog .e-dlg-closeicon-btn) {
533
551
  border-radius: 50%;
534
552
  height: auto !important; /* stylelint-disable-line declaration-no-important */
535
553
  width: auto;
@@ -581,6 +599,16 @@
581
599
  .e-bigger .e-gantt-dialog .e-input-group-icon.e-date-icon {
582
600
  min-width: 36px !important; /* stylelint-disable-line declaration-no-important */
583
601
  }
602
+ .e-bigger .e-gantt-dialog .e-gantt-adaptive-dialog .e-dialog {
603
+ position: absolute !important; /* stylelint-disable-line declaration-no-important */
604
+ left: 0 !important; /* stylelint-disable-line declaration-no-important */
605
+ }
606
+ .e-bigger .e-gantt-dialog .e-gantt-adaptive-dialog .e-dialog .e-dlg-header-content {
607
+ padding: 16px !important; /* stylelint-disable-line declaration-no-important */
608
+ }
609
+ .e-bigger .e-gantt-dialog .e-gantt-adaptive-dialog .e-dialog td {
610
+ width: 100% !important; /* stylelint-disable-line declaration-no-important */
611
+ }
584
612
  .e-bigger .e-predecessor-tooltip .e-arrow-tip-outer.e-tip-bottom {
585
613
  border-top: 8px solid rgba(var(--color-sf-inverse-surface));
586
614
  }
@@ -810,9 +838,6 @@
810
838
  .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content {
811
839
  overflow-x: scroll !important; /* stylelint-disable-line declaration-no-important */
812
840
  }
813
- .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-gantt-frozen {
814
- overflow-x: hidden !important; /* stylelint-disable-line declaration-no-important */
815
- }
816
841
  .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content.e-gantt-scroll-padding {
817
842
  width: calc(100% + 17px);
818
843
  }
@@ -935,7 +960,7 @@
935
960
  box-sizing: border-box;
936
961
  }
937
962
  .e-gantt .e-gantt-chart .e-zero-spacing {
938
- border-spacing: 0;
963
+ border-spacing: 0.25px;
939
964
  }
940
965
  .e-gantt .e-gantt-chart .e-chart-row:first-child .e-chart-row-border {
941
966
  border-top: 0;
@@ -965,9 +990,6 @@
965
990
  vertical-align: middle;
966
991
  z-index: 3;
967
992
  }
968
- .e-gantt .e-gantt-chart .e-taskbar-main-container:hover {
969
- z-index: 4;
970
- }
971
993
  .e-gantt .e-gantt-chart .e-taskbar-main-container.e-gantt-multi-taskbar:hover {
972
994
  z-index: 4;
973
995
  }
@@ -1451,7 +1473,7 @@
1451
1473
  border-spacing: 0;
1452
1474
  }
1453
1475
  .e-gantt-dialog .e-item {
1454
- height: 241px;
1476
+ height: 100%;
1455
1477
  }
1456
1478
  .e-gantt-dialog .e-dependent-div {
1457
1479
  border-bottom-width: 0px;
@@ -1510,6 +1532,9 @@
1510
1532
  .e-gantt-dialog > .e-dlg-content {
1511
1533
  padding: 0 !important; /* stylelint-disable-line declaration-no-important */
1512
1534
  }
1535
+ .e-gantt-dialog .e-dlg-header {
1536
+ line-height: 30px;
1537
+ }
1513
1538
  .e-gantt-dialog .e-dlg-header-content {
1514
1539
  border-bottom: 0 !important; /* stylelint-disable-line declaration-no-important */
1515
1540
  }
@@ -1517,6 +1542,10 @@
1517
1542
  border-radius: 16px 16px 0px 0px;
1518
1543
  padding-bottom: 12px;
1519
1544
  }
1545
+ .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
1546
+ left: -11px;
1547
+ top: 6px !important;
1548
+ }
1520
1549
  .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
1521
1550
  border-radius: 50%;
1522
1551
  height: auto !important; /* stylelint-disable-line declaration-no-important */
@@ -1581,13 +1610,14 @@
1581
1610
  font-size: 16px;
1582
1611
  }
1583
1612
 
1584
- .e-bigger .e-gantt .e-gantt-chart .e-timeline-single-header-outer-div {
1585
- height: 64px !important; /* stylelint-disable-line declaration-no-important */
1613
+ .e-bigger .e-filter-popup .e-control .e-dialog .e-lib .e-popup .e-popup-open .e-excelfilter .e-gantt,
1614
+ .e-bigger .e-gantt .e-excelfilter .e-dialog .e-dlg-content {
1615
+ padding: 0 18px 0 0 !important; /* stylelint-disable-line declaration-no-important */
1586
1616
  }
1587
1617
 
1588
- .e-bigger .e-timeline-single-header-cell {
1589
- height: 64px !important; /* stylelint-disable-line declaration-no-important */
1590
- line-height: 64px !important; /* stylelint-disable-line declaration-no-important */
1618
+ .e-bigger .e-filter-popup .e-control .e-dialog .e-lib .e-popup .e-popup-open .e-excelfilter .e-gantt,
1619
+ .e-bigger .e-gantt .e-contextmenu-wrapper ul {
1620
+ padding: 0 !important; /* stylelint-disable-line declaration-no-important */
1591
1621
  }
1592
1622
 
1593
1623
  .e-gantt-tooltip-label {
@@ -1702,6 +1732,29 @@
1702
1732
  z-index: 1;
1703
1733
  }
1704
1734
 
1735
+ .e-gantt .e-gantt-chart .e-chart-root-container .e-content td.e-chart-row-cell.e-droptop {
1736
+ border-top: 2px solid rgba(var(--color-sf-primary));
1737
+ border-width: 2px 0 0;
1738
+ }
1739
+
1740
+ .e-gantt .e-gantt-chart .e-chart-root-container .e-content td.e-chart-row-cell.e-dropbottom {
1741
+ border-bottom: 2px solid rgba(var(--color-sf-primary));
1742
+ box-shadow: rgba(var(--color-sf-primary));
1743
+ }
1744
+
1745
+ .e-gantt .e-gantt-chart .e-chart-root-container .e-content td.e-chart-row-cell.e-childborder {
1746
+ border-bottom: 2px solid rgba(var(--color-sf-primary));
1747
+ border-top: 2px solid rgba(var(--color-sf-primary));
1748
+ box-shadow: rgba(var(--color-sf-primary));
1749
+ }
1750
+
1751
+ @media (max-width: 767px) {
1752
+ .e-bigger .e-gantt .e-dialog .e-edit-form-column:nth-child(odd), .e-bigger .e-gantt .e-dialog .e-edit-form-column:nth-child(even) {
1753
+ float: none;
1754
+ padding: 16px 12px 0 16px;
1755
+ width: 100%;
1756
+ }
1757
+ }
1705
1758
  /*! Gantt theme */
1706
1759
  .e-gantt .e-gantt-splitter {
1707
1760
  border-color: rgba(var(--color-sf-outline-variant));
@@ -1760,6 +1813,13 @@
1760
1813
  background: rgba(var(--color-sf-primary-container), 0.65);
1761
1814
  opacity: 0.9;
1762
1815
  }
1816
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-leftfreeze,
1817
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-unfreeze,
1818
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-rightfreeze,
1819
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-fixedfreeze {
1820
+ background: rgba(var(--color-sf-primary-container), 1);
1821
+ opacity: 1;
1822
+ }
1763
1823
  .e-gantt .e-taskbar-resize-div {
1764
1824
  border-color: rgba(var(--color-sf-primary));
1765
1825
  }
@@ -2080,6 +2140,7 @@
2080
2140
  }
2081
2141
  .e-gantt-dialog .e-dlg-header {
2082
2142
  color: rgba(var(--color-sf-on-surface));
2143
+ position: relative;
2083
2144
  }
2084
2145
  .e-gantt-dialog .e-dlg-header-content {
2085
2146
  background: transparent;
@@ -264,6 +264,22 @@
264
264
  content: "\e7f9";
265
265
  }
266
266
 
267
+ .e-bigger .e-gantt .e-gantt-chart .e-taskbar-left-resizer,
268
+ .e-bigger .e-gantt .e-gantt-chart .e-taskbar-right-resizer {
269
+ display: inline-block;
270
+ position: absolute;
271
+ top: 0;
272
+ width: 25px;
273
+ z-index: 4;
274
+ }
275
+ .e-bigger .e-gantt .e-gantt-chart .e-left-resize-gripper,
276
+ .e-bigger .e-gantt .e-gantt-chart .e-right-resize-gripper {
277
+ -ms-flex-align: center;
278
+ align-items: center;
279
+ cursor: ew-resize;
280
+ display: -ms-inline-flexbox;
281
+ display: inline-flex;
282
+ }
267
283
  .e-bigger .e-gantt .e-gantt-chart .e-timeline-header-container {
268
284
  height: 64px;
269
285
  }
@@ -343,7 +359,8 @@
343
359
  padding: 16px 4px 16px 24px !important; /* stylelint-disable-line declaration-no-important */
344
360
  }
345
361
  .e-bigger .e-gantt .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
346
- left: -2px !important;
362
+ left: -11px;
363
+ top: 3px;
347
364
  }
348
365
  .e-bigger .e-gantt .e-dialog .e-dlg-header-content {
349
366
  height: 68px !important; /* stylelint-disable-line declaration-no-important */
@@ -358,8 +375,8 @@
358
375
  .e-bigger .e-gantt .e-dialog .e-footer-content .e-btn {
359
376
  margin-left: 12px;
360
377
  }
361
- .e-bigger .e-gantt .e-dialog .e-dlg-header {
362
- line-height: 28px;
378
+ .e-bigger .e-gantt .e-dialog .e-dlg-header:not(.e-gantt-adaptive-dialog .e-dialog .e-dlg-header) {
379
+ line-height: 37px;
363
380
  }
364
381
  .e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
365
382
  padding: 24px 0 0 !important;
@@ -373,6 +390,7 @@
373
390
  }
374
391
  .e-bigger .e-gantt-dialog .e-dialog {
375
392
  border-radius: 6px;
393
+ width: 564px !important;
376
394
  }
377
395
  .e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
378
396
  padding: 0 16px !important; /* stylelint-disable-line declaration-no-important */
@@ -402,7 +420,7 @@
402
420
  border-radius: 6px 6px 0px 0px;
403
421
  padding-bottom: 12px;
404
422
  }
405
- .e-bigger .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
423
+ .e-bigger .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn:not(.e-gantt-adaptive-dialog .e-dialog .e-dlg-closeicon-btn) {
406
424
  border-radius: 50%;
407
425
  height: auto !important; /* stylelint-disable-line declaration-no-important */
408
426
  width: auto;
@@ -455,6 +473,16 @@
455
473
  .e-bigger .e-gantt-dialog .e-input-group.e-control-wrapper .e-input-group-icon {
456
474
  padding: 7px 0 !important; /* stylelint-disable-line declaration-no-important */
457
475
  }
476
+ .e-bigger .e-gantt-dialog .e-gantt-adaptive-dialog .e-dialog {
477
+ position: absolute !important; /* stylelint-disable-line declaration-no-important */
478
+ left: 0 !important; /* stylelint-disable-line declaration-no-important */
479
+ }
480
+ .e-bigger .e-gantt-dialog .e-gantt-adaptive-dialog .e-dialog .e-dlg-header-content {
481
+ padding: 16px !important; /* stylelint-disable-line declaration-no-important */
482
+ }
483
+ .e-bigger .e-gantt-dialog .e-gantt-adaptive-dialog .e-dialog td {
484
+ width: 100% !important; /* stylelint-disable-line declaration-no-important */
485
+ }
458
486
  .e-bigger .e-predecessor-tooltip .e-arrow-tip-outer.e-tip-bottom {
459
487
  border-top: 8px solid #000;
460
488
  }
@@ -680,9 +708,6 @@
680
708
  .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content {
681
709
  overflow-x: scroll !important; /* stylelint-disable-line declaration-no-important */
682
710
  }
683
- .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-gantt-frozen {
684
- overflow-x: hidden !important; /* stylelint-disable-line declaration-no-important */
685
- }
686
711
  .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content.e-gantt-scroll-padding {
687
712
  width: calc(100% + 17px);
688
713
  }
@@ -805,7 +830,7 @@
805
830
  box-sizing: border-box;
806
831
  }
807
832
  .e-gantt .e-gantt-chart .e-zero-spacing {
808
- border-spacing: 0;
833
+ border-spacing: 0.25px;
809
834
  }
810
835
  .e-gantt .e-gantt-chart .e-chart-row:first-child .e-chart-row-border {
811
836
  border-top: 0;
@@ -838,9 +863,6 @@
838
863
  vertical-align: middle;
839
864
  z-index: 3;
840
865
  }
841
- .e-gantt .e-gantt-chart .e-taskbar-main-container:hover {
842
- z-index: 4;
843
- }
844
866
  .e-gantt .e-gantt-chart .e-taskbar-main-container.e-gantt-multi-taskbar:hover {
845
867
  z-index: 4;
846
868
  }
@@ -1317,7 +1339,7 @@
1317
1339
  border-spacing: 0;
1318
1340
  }
1319
1341
  .e-gantt-dialog .e-item {
1320
- height: 240px;
1342
+ height: 100%;
1321
1343
  }
1322
1344
  .e-gantt-dialog .e-dependent-div {
1323
1345
  border-bottom-width: 1px;
@@ -1377,6 +1399,9 @@
1377
1399
  padding: 0 !important; /* stylelint-disable-line declaration-no-important */
1378
1400
  height: 291px;
1379
1401
  }
1402
+ .e-gantt-dialog .e-dlg-header {
1403
+ line-height: 30px;
1404
+ }
1380
1405
  .e-gantt-dialog .e-dlg-header-content {
1381
1406
  border-bottom: 0 !important; /* stylelint-disable-line declaration-no-important */
1382
1407
  }
@@ -1384,6 +1409,10 @@
1384
1409
  border-radius: 6px;
1385
1410
  padding-bottom: 12px;
1386
1411
  }
1412
+ .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
1413
+ left: -11px;
1414
+ top: 3px !important;
1415
+ }
1387
1416
  .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
1388
1417
  border-radius: 50%;
1389
1418
  height: auto !important; /* stylelint-disable-line declaration-no-important */
@@ -1448,13 +1477,14 @@
1448
1477
  font-size: 16px;
1449
1478
  }
1450
1479
 
1451
- .e-bigger .e-gantt .e-gantt-chart .e-timeline-single-header-outer-div {
1452
- height: 64px !important; /* stylelint-disable-line declaration-no-important */
1480
+ .e-bigger .e-filter-popup .e-control .e-dialog .e-lib .e-popup .e-popup-open .e-excelfilter .e-gantt,
1481
+ .e-bigger .e-gantt .e-excelfilter .e-dialog .e-dlg-content {
1482
+ padding: 0 18px 0 0 !important; /* stylelint-disable-line declaration-no-important */
1453
1483
  }
1454
1484
 
1455
- .e-bigger .e-timeline-single-header-cell {
1456
- height: 64px !important; /* stylelint-disable-line declaration-no-important */
1457
- line-height: 64px !important; /* stylelint-disable-line declaration-no-important */
1485
+ .e-bigger .e-filter-popup .e-control .e-dialog .e-lib .e-popup .e-popup-open .e-excelfilter .e-gantt,
1486
+ .e-bigger .e-gantt .e-contextmenu-wrapper ul {
1487
+ padding: 0 !important; /* stylelint-disable-line declaration-no-important */
1458
1488
  }
1459
1489
 
1460
1490
  .e-gantt-tooltip-label {
@@ -1569,6 +1599,29 @@
1569
1599
  z-index: 1;
1570
1600
  }
1571
1601
 
1602
+ .e-gantt .e-gantt-chart .e-chart-root-container .e-content td.e-chart-row-cell.e-droptop {
1603
+ border-top: 2px solid #4f46e5;
1604
+ border-width: 2px 0 0;
1605
+ }
1606
+
1607
+ .e-gantt .e-gantt-chart .e-chart-root-container .e-content td.e-chart-row-cell.e-dropbottom {
1608
+ border-bottom: 2px solid #4f46e5;
1609
+ box-shadow: #22d3ee;
1610
+ }
1611
+
1612
+ .e-gantt .e-gantt-chart .e-chart-root-container .e-content td.e-chart-row-cell.e-childborder {
1613
+ border-bottom: 2px solid #4f46e5;
1614
+ border-top: 2px solid #4f46e5;
1615
+ box-shadow: #22d3ee;
1616
+ }
1617
+
1618
+ @media (max-width: 767px) {
1619
+ .e-bigger .e-gantt .e-dialog .e-edit-form-column:nth-child(odd), .e-bigger .e-gantt .e-dialog .e-edit-form-column:nth-child(even) {
1620
+ float: none;
1621
+ padding: 16px 12px 0 16px;
1622
+ width: 100%;
1623
+ }
1624
+ }
1572
1625
  /*! Gantt theme */
1573
1626
  .e-gantt .e-gantt-splitter {
1574
1627
  border-color: #4b5563;
@@ -1621,6 +1674,13 @@
1621
1674
  background: #6b7280;
1622
1675
  opacity: 0.9;
1623
1676
  }
1677
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-leftfreeze,
1678
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-unfreeze,
1679
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-rightfreeze,
1680
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-fixedfreeze {
1681
+ background: #6b7280;
1682
+ opacity: 1;
1683
+ }
1624
1684
  .e-gantt .e-taskbar-resize-div {
1625
1685
  border-color: #22d3ee;
1626
1686
  }
@@ -1937,6 +1997,7 @@
1937
1997
  }
1938
1998
  .e-gantt-dialog .e-dlg-header {
1939
1999
  color: #fff;
2000
+ position: relative;
1940
2001
  }
1941
2002
  .e-gantt-dialog .e-dlg-header-content {
1942
2003
  background: #232e3e;