@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
@@ -294,6 +294,22 @@
294
294
  content: "\e85f";
295
295
  }
296
296
 
297
+ .e-bigger .e-gantt .e-gantt-chart .e-taskbar-left-resizer,
298
+ .e-bigger .e-gantt .e-gantt-chart .e-taskbar-right-resizer {
299
+ display: inline-block;
300
+ position: absolute;
301
+ top: 0;
302
+ width: 25px;
303
+ z-index: 4;
304
+ }
305
+ .e-bigger .e-gantt .e-gantt-chart .e-left-resize-gripper,
306
+ .e-bigger .e-gantt .e-gantt-chart .e-right-resize-gripper {
307
+ -ms-flex-align: center;
308
+ align-items: center;
309
+ cursor: ew-resize;
310
+ display: -ms-inline-flexbox;
311
+ display: inline-flex;
312
+ }
297
313
  .e-bigger .e-gantt .e-gantt-chart .e-timeline-header-container {
298
314
  height: 64px;
299
315
  }
@@ -373,7 +389,8 @@
373
389
  padding: 16px 14px 17px 16px !important; /* stylelint-disable-line declaration-no-important */
374
390
  }
375
391
  .e-bigger .e-gantt .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
376
- left: 1px !important;
392
+ left: -11px;
393
+ top: 3px;
377
394
  }
378
395
  .e-bigger .e-gantt .e-dialog .e-btn .e-btn-icon.e-icon-dlg-close {
379
396
  font-size: 12px !important;
@@ -385,8 +402,8 @@
385
402
  .e-bigger .e-gantt .e-dialog .e-footer-content .e-btn {
386
403
  margin-left: 12px;
387
404
  }
388
- .e-bigger .e-gantt .e-dialog .e-dlg-header {
389
- line-height: 28px;
405
+ .e-bigger .e-gantt .e-dialog .e-dlg-header:not(.e-gantt-adaptive-dialog .e-dialog .e-dlg-header) {
406
+ line-height: 37px;
390
407
  }
391
408
  .e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
392
409
  padding: 14px 0 0 !important;
@@ -400,6 +417,7 @@
400
417
  }
401
418
  .e-bigger .e-gantt-dialog .e-dialog {
402
419
  border-radius: 6px;
420
+ width: 550px !important;
403
421
  }
404
422
  .e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
405
423
  padding: 0 16px !important; /* stylelint-disable-line declaration-no-important */
@@ -429,7 +447,7 @@
429
447
  border-radius: 6px 6px 0px 0px;
430
448
  padding-bottom: 4px;
431
449
  }
432
- .e-bigger .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
450
+ .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) {
433
451
  border-radius: 50%;
434
452
  height: auto !important; /* stylelint-disable-line declaration-no-important */
435
453
  width: auto;
@@ -486,6 +504,16 @@
486
504
  .e-bigger .e-gantt-dialog .e-input-group.e-control-wrapper .e-input-group-icon {
487
505
  margin-right: 0 !important; /* stylelint-disable-line declaration-no-important */
488
506
  }
507
+ .e-bigger .e-gantt-dialog .e-gantt-adaptive-dialog .e-dialog {
508
+ position: absolute !important; /* stylelint-disable-line declaration-no-important */
509
+ left: 0 !important; /* stylelint-disable-line declaration-no-important */
510
+ }
511
+ .e-bigger .e-gantt-dialog .e-gantt-adaptive-dialog .e-dialog .e-dlg-header-content {
512
+ padding: 16px !important; /* stylelint-disable-line declaration-no-important */
513
+ }
514
+ .e-bigger .e-gantt-dialog .e-gantt-adaptive-dialog .e-dialog td {
515
+ width: 100% !important; /* stylelint-disable-line declaration-no-important */
516
+ }
489
517
  .e-bigger .e-predecessor-tooltip .e-arrow-tip-outer.e-tip-bottom {
490
518
  border-top: 8px solid #000;
491
519
  }
@@ -711,9 +739,6 @@
711
739
  .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content {
712
740
  overflow-x: scroll !important; /* stylelint-disable-line declaration-no-important */
713
741
  }
714
- .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-gantt-frozen {
715
- overflow-x: hidden !important; /* stylelint-disable-line declaration-no-important */
716
- }
717
742
  .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content.e-gantt-scroll-padding {
718
743
  width: calc(100% + 17px);
719
744
  }
@@ -836,7 +861,7 @@
836
861
  box-sizing: border-box;
837
862
  }
838
863
  .e-gantt .e-gantt-chart .e-zero-spacing {
839
- border-spacing: 0;
864
+ border-spacing: 0.25px;
840
865
  }
841
866
  .e-gantt .e-gantt-chart .e-chart-row:first-child .e-chart-row-border {
842
867
  border-top: 0;
@@ -866,9 +891,6 @@
866
891
  vertical-align: middle;
867
892
  z-index: 3;
868
893
  }
869
- .e-gantt .e-gantt-chart .e-taskbar-main-container:hover {
870
- z-index: 4;
871
- }
872
894
  .e-gantt .e-gantt-chart .e-taskbar-main-container.e-gantt-multi-taskbar:hover {
873
895
  z-index: 4;
874
896
  }
@@ -1345,7 +1367,7 @@
1345
1367
  border-spacing: 0;
1346
1368
  }
1347
1369
  .e-gantt-dialog .e-item {
1348
- height: 241px;
1370
+ height: 100%;
1349
1371
  }
1350
1372
  .e-gantt-dialog .e-dependent-div {
1351
1373
  border-bottom-width: 1px;
@@ -1404,6 +1426,9 @@
1404
1426
  .e-gantt-dialog > .e-dlg-content {
1405
1427
  padding: 0 !important; /* stylelint-disable-line declaration-no-important */
1406
1428
  }
1429
+ .e-gantt-dialog .e-dlg-header {
1430
+ line-height: 30px;
1431
+ }
1407
1432
  .e-gantt-dialog .e-dlg-header-content {
1408
1433
  border-bottom: 0 !important; /* stylelint-disable-line declaration-no-important */
1409
1434
  }
@@ -1411,6 +1436,10 @@
1411
1436
  border-radius: 0px;
1412
1437
  padding-bottom: 4px;
1413
1438
  }
1439
+ .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
1440
+ left: -11px;
1441
+ top: 2px !important;
1442
+ }
1414
1443
  .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
1415
1444
  border-radius: 50%;
1416
1445
  height: auto !important; /* stylelint-disable-line declaration-no-important */
@@ -1475,13 +1504,14 @@
1475
1504
  font-size: 14px;
1476
1505
  }
1477
1506
 
1478
- .e-bigger .e-gantt .e-gantt-chart .e-timeline-single-header-outer-div {
1479
- height: 64px !important; /* stylelint-disable-line declaration-no-important */
1507
+ .e-bigger .e-filter-popup .e-control .e-dialog .e-lib .e-popup .e-popup-open .e-excelfilter .e-gantt,
1508
+ .e-bigger .e-gantt .e-excelfilter .e-dialog .e-dlg-content {
1509
+ padding: 0 18px 0 0 !important; /* stylelint-disable-line declaration-no-important */
1480
1510
  }
1481
1511
 
1482
- .e-bigger .e-timeline-single-header-cell {
1483
- height: 64px !important; /* stylelint-disable-line declaration-no-important */
1484
- line-height: 64px !important; /* stylelint-disable-line declaration-no-important */
1512
+ .e-bigger .e-filter-popup .e-control .e-dialog .e-lib .e-popup .e-popup-open .e-excelfilter .e-gantt,
1513
+ .e-bigger .e-gantt .e-contextmenu-wrapper ul {
1514
+ padding: 0 !important; /* stylelint-disable-line declaration-no-important */
1485
1515
  }
1486
1516
 
1487
1517
  .e-gantt-tooltip-label {
@@ -1596,6 +1626,29 @@
1596
1626
  z-index: 1;
1597
1627
  }
1598
1628
 
1629
+ .e-gantt .e-gantt-chart .e-chart-root-container .e-content td.e-chart-row-cell.e-droptop {
1630
+ border-top: 1px solid #e3165b;
1631
+ border-width: 1px 0 0;
1632
+ }
1633
+
1634
+ .e-gantt .e-gantt-chart .e-chart-root-container .e-content td.e-chart-row-cell.e-dropbottom {
1635
+ border-bottom: 1px solid #e3165b;
1636
+ box-shadow: #e3165b;
1637
+ }
1638
+
1639
+ .e-gantt .e-gantt-chart .e-chart-root-container .e-content td.e-chart-row-cell.e-childborder {
1640
+ border-bottom: 1px solid #e3165b;
1641
+ border-top: 1px solid #e3165b;
1642
+ box-shadow: #e3165b;
1643
+ }
1644
+
1645
+ @media (max-width: 767px) {
1646
+ .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) {
1647
+ float: none;
1648
+ padding: 16px 12px 0 16px;
1649
+ width: 100%;
1650
+ }
1651
+ }
1599
1652
  /*! Gantt theme */
1600
1653
  .e-gantt .e-gantt-splitter {
1601
1654
  border-color: #e0e0e0;
@@ -1648,6 +1701,13 @@
1648
1701
  background: rgba(63, 81, 181, 0.15);
1649
1702
  opacity: 1;
1650
1703
  }
1704
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-leftfreeze,
1705
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-unfreeze,
1706
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-rightfreeze,
1707
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-fixedfreeze {
1708
+ background: #e2e5f4;
1709
+ opacity: 1;
1710
+ }
1651
1711
  .e-gantt .e-taskbar-resize-div {
1652
1712
  border-color: #e3165b;
1653
1713
  }
@@ -1964,6 +2024,7 @@
1964
2024
  }
1965
2025
  .e-gantt-dialog .e-dlg-header {
1966
2026
  color: #fff;
2027
+ position: relative;
1967
2028
  }
1968
2029
  .e-gantt-dialog .e-dlg-header-content {
1969
2030
  background: #3f51b5;
@@ -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;