@syncfusion/ej2-gantt 23.2.7 → 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 (112) hide show
  1. package/CHANGELOG.md +0 -10
  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 +2939 -324
  6. package/dist/es6/ej2-gantt.es2015.js.map +1 -1
  7. package/dist/es6/ej2-gantt.es5.js +2993 -358
  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 +68 -21
  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 +20 -9
  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 +517 -82
  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/export/export-helper.d.ts +12 -0
  42. package/src/gantt/export/export-helper.js +316 -9
  43. package/src/gantt/export/pdf-base/pdf-grid-table.js +14 -1
  44. package/src/gantt/export/pdf-base/pdf-style/gantt-theme.js +36 -0
  45. package/src/gantt/export/pdf-connector-line.js +137 -32
  46. package/src/gantt/export/pdf-event-marker.d.ts +10 -0
  47. package/src/gantt/export/pdf-event-marker.js +57 -0
  48. package/src/gantt/export/pdf-gantt.d.ts +2 -0
  49. package/src/gantt/export/pdf-gantt.js +30 -10
  50. package/src/gantt/export/pdf-taskbar.d.ts +23 -2
  51. package/src/gantt/export/pdf-taskbar.js +771 -43
  52. package/src/gantt/export/pdf-timeline.d.ts +9 -0
  53. package/src/gantt/export/pdf-timeline.js +98 -20
  54. package/src/gantt/models/column.d.ts +12 -0
  55. package/src/gantt/renderer/chart-rows.d.ts +1 -1
  56. package/src/gantt/renderer/chart-rows.js +29 -16
  57. package/src/gantt/renderer/connector-line.js +8 -5
  58. package/src/gantt/renderer/edit-tooltip.js +3 -0
  59. package/src/gantt/renderer/event-marker.js +4 -1
  60. package/src/gantt/renderer/nonworking-day.js +18 -5
  61. package/src/gantt/renderer/timeline.d.ts +9 -0
  62. package/src/gantt/renderer/timeline.js +164 -21
  63. package/styles/bootstrap-dark.css +77 -16
  64. package/styles/bootstrap.css +78 -17
  65. package/styles/bootstrap4.css +78 -17
  66. package/styles/bootstrap5-dark.css +78 -17
  67. package/styles/bootstrap5.css +78 -17
  68. package/styles/fabric-dark.css +78 -17
  69. package/styles/fabric.css +78 -17
  70. package/styles/fluent-dark.css +78 -17
  71. package/styles/fluent.css +78 -17
  72. package/styles/gantt/_bootstrap-dark-definition.scss +7 -2
  73. package/styles/gantt/_bootstrap-definition.scss +7 -2
  74. package/styles/gantt/_bootstrap4-definition.scss +7 -2
  75. package/styles/gantt/_bootstrap5-definition.scss +7 -2
  76. package/styles/gantt/_fabric-dark-definition.scss +7 -2
  77. package/styles/gantt/_fabric-definition.scss +7 -2
  78. package/styles/gantt/_fluent-definition.scss +7 -2
  79. package/styles/gantt/_fusionnew-definition.scss +6 -2
  80. package/styles/gantt/_highcontrast-definition.scss +7 -2
  81. package/styles/gantt/_highcontrast-light-definition.scss +7 -2
  82. package/styles/gantt/_layout.scss +92 -20
  83. package/styles/gantt/_material-dark-definition.scss +7 -2
  84. package/styles/gantt/_material-definition.scss +7 -2
  85. package/styles/gantt/_material3-definition.scss +7 -2
  86. package/styles/gantt/_tailwind-definition.scss +6 -1
  87. package/styles/gantt/_theme.scss +11 -0
  88. package/styles/gantt/bootstrap-dark.css +77 -16
  89. package/styles/gantt/bootstrap.css +78 -17
  90. package/styles/gantt/bootstrap4.css +78 -17
  91. package/styles/gantt/bootstrap5-dark.css +78 -17
  92. package/styles/gantt/bootstrap5.css +78 -17
  93. package/styles/gantt/fabric-dark.css +78 -17
  94. package/styles/gantt/fabric.css +78 -17
  95. package/styles/gantt/fluent-dark.css +78 -17
  96. package/styles/gantt/fluent.css +78 -17
  97. package/styles/gantt/highcontrast-light.css +78 -17
  98. package/styles/gantt/highcontrast.css +78 -17
  99. package/styles/gantt/material-dark.css +78 -17
  100. package/styles/gantt/material.css +78 -17
  101. package/styles/gantt/material3-dark.css +77 -16
  102. package/styles/gantt/material3.css +77 -16
  103. package/styles/gantt/tailwind-dark.css +78 -17
  104. package/styles/gantt/tailwind.css +78 -17
  105. package/styles/highcontrast-light.css +78 -17
  106. package/styles/highcontrast.css +78 -17
  107. package/styles/material-dark.css +78 -17
  108. package/styles/material.css +78 -17
  109. package/styles/material3-dark.css +77 -16
  110. package/styles/material3.css +77 -16
  111. package/styles/tailwind-dark.css +78 -17
  112. package/styles/tailwind.css +78 -17
@@ -403,6 +403,22 @@
403
403
  content: "\e85f";
404
404
  }
405
405
 
406
+ .e-bigger .e-gantt .e-gantt-chart .e-taskbar-left-resizer,
407
+ .e-bigger .e-gantt .e-gantt-chart .e-taskbar-right-resizer {
408
+ display: inline-block;
409
+ position: absolute;
410
+ top: 0;
411
+ width: 25px;
412
+ z-index: 4;
413
+ }
414
+ .e-bigger .e-gantt .e-gantt-chart .e-left-resize-gripper,
415
+ .e-bigger .e-gantt .e-gantt-chart .e-right-resize-gripper {
416
+ -ms-flex-align: center;
417
+ align-items: center;
418
+ cursor: ew-resize;
419
+ display: -ms-inline-flexbox;
420
+ display: inline-flex;
421
+ }
406
422
  .e-bigger .e-gantt .e-gantt-chart .e-timeline-header-container {
407
423
  height: 64px;
408
424
  }
@@ -482,7 +498,8 @@
482
498
  padding: 16px 4px 16px 16px !important; /* stylelint-disable-line declaration-no-important */
483
499
  }
484
500
  .e-bigger .e-gantt .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
485
- left: 0 !important;
501
+ left: -11px;
502
+ top: 3px;
486
503
  }
487
504
  .e-bigger .e-gantt .e-dialog .e-btn .e-btn-icon.e-icon-dlg-close {
488
505
  font-size: 12px !important;
@@ -494,8 +511,8 @@
494
511
  .e-bigger .e-gantt .e-dialog .e-footer-content .e-btn {
495
512
  margin-left: 12px;
496
513
  }
497
- .e-bigger .e-gantt .e-dialog .e-dlg-header {
498
- line-height: 28px;
514
+ .e-bigger .e-gantt .e-dialog .e-dlg-header:not(.e-gantt-adaptive-dialog .e-dialog .e-dlg-header) {
515
+ line-height: 37px;
499
516
  }
500
517
  .e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
501
518
  padding: 16px 0 0 !important;
@@ -509,6 +526,7 @@
509
526
  }
510
527
  .e-bigger .e-gantt-dialog .e-dialog {
511
528
  border-radius: 6px;
529
+ width: 556px !important;
512
530
  }
513
531
  .e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
514
532
  padding: 0 16px !important; /* stylelint-disable-line declaration-no-important */
@@ -538,7 +556,7 @@
538
556
  border-radius: 6px 6px 0px 0px;
539
557
  padding-bottom: 20px;
540
558
  }
541
- .e-bigger .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
559
+ .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) {
542
560
  border-radius: 50%;
543
561
  height: auto !important; /* stylelint-disable-line declaration-no-important */
544
562
  width: auto;
@@ -588,6 +606,16 @@
588
606
  .e-bigger .e-gantt-dialog .e-input-group-icon.e-date-icon {
589
607
  min-width: 36px !important; /* stylelint-disable-line declaration-no-important */
590
608
  }
609
+ .e-bigger .e-gantt-dialog .e-gantt-adaptive-dialog .e-dialog {
610
+ position: absolute !important; /* stylelint-disable-line declaration-no-important */
611
+ left: 0 !important; /* stylelint-disable-line declaration-no-important */
612
+ }
613
+ .e-bigger .e-gantt-dialog .e-gantt-adaptive-dialog .e-dialog .e-dlg-header-content {
614
+ padding: 16px !important; /* stylelint-disable-line declaration-no-important */
615
+ }
616
+ .e-bigger .e-gantt-dialog .e-gantt-adaptive-dialog .e-dialog td {
617
+ width: 100% !important; /* stylelint-disable-line declaration-no-important */
618
+ }
591
619
  .e-bigger .e-predecessor-tooltip .e-arrow-tip-outer.e-tip-bottom {
592
620
  border-top: 8px solid #000;
593
621
  }
@@ -813,9 +841,6 @@
813
841
  .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content {
814
842
  overflow-x: scroll !important; /* stylelint-disable-line declaration-no-important */
815
843
  }
816
- .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-gantt-frozen {
817
- overflow-x: hidden !important; /* stylelint-disable-line declaration-no-important */
818
- }
819
844
  .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content.e-gantt-scroll-padding {
820
845
  width: calc(100% + 17px);
821
846
  }
@@ -938,7 +963,7 @@
938
963
  box-sizing: border-box;
939
964
  }
940
965
  .e-gantt .e-gantt-chart .e-zero-spacing {
941
- border-spacing: 0;
966
+ border-spacing: 0.25px;
942
967
  }
943
968
  .e-gantt .e-gantt-chart .e-chart-row:first-child .e-chart-row-border {
944
969
  border-top: 0;
@@ -968,9 +993,6 @@
968
993
  vertical-align: middle;
969
994
  z-index: 3;
970
995
  }
971
- .e-gantt .e-gantt-chart .e-taskbar-main-container:hover {
972
- z-index: 4;
973
- }
974
996
  .e-gantt .e-gantt-chart .e-taskbar-main-container.e-gantt-multi-taskbar:hover {
975
997
  z-index: 4;
976
998
  }
@@ -1447,7 +1469,7 @@
1447
1469
  border-spacing: 0;
1448
1470
  }
1449
1471
  .e-gantt-dialog .e-item {
1450
- height: 241px;
1472
+ height: 100%;
1451
1473
  }
1452
1474
  .e-gantt-dialog .e-dependent-div {
1453
1475
  border-bottom-width: 0px;
@@ -1506,6 +1528,9 @@
1506
1528
  .e-gantt-dialog > .e-dlg-content {
1507
1529
  padding: 0 !important; /* stylelint-disable-line declaration-no-important */
1508
1530
  }
1531
+ .e-gantt-dialog .e-dlg-header {
1532
+ line-height: 30px;
1533
+ }
1509
1534
  .e-gantt-dialog .e-dlg-header-content {
1510
1535
  border-bottom: 0 !important; /* stylelint-disable-line declaration-no-important */
1511
1536
  }
@@ -1513,6 +1538,10 @@
1513
1538
  border-radius: 6px 6px 0px 0px;
1514
1539
  padding-bottom: 20px;
1515
1540
  }
1541
+ .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
1542
+ left: -11px;
1543
+ top: 2px !important;
1544
+ }
1516
1545
  .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
1517
1546
  border-radius: 50%;
1518
1547
  height: auto !important; /* stylelint-disable-line declaration-no-important */
@@ -1577,13 +1606,14 @@
1577
1606
  font-size: 14px;
1578
1607
  }
1579
1608
 
1580
- .e-bigger .e-gantt .e-gantt-chart .e-timeline-single-header-outer-div {
1581
- height: 64px !important; /* stylelint-disable-line declaration-no-important */
1609
+ .e-bigger .e-filter-popup .e-control .e-dialog .e-lib .e-popup .e-popup-open .e-excelfilter .e-gantt,
1610
+ .e-bigger .e-gantt .e-excelfilter .e-dialog .e-dlg-content {
1611
+ padding: 0 18px 0 0 !important; /* stylelint-disable-line declaration-no-important */
1582
1612
  }
1583
1613
 
1584
- .e-bigger .e-timeline-single-header-cell {
1585
- height: 64px !important; /* stylelint-disable-line declaration-no-important */
1586
- line-height: 64px !important; /* stylelint-disable-line declaration-no-important */
1614
+ .e-bigger .e-filter-popup .e-control .e-dialog .e-lib .e-popup .e-popup-open .e-excelfilter .e-gantt,
1615
+ .e-bigger .e-gantt .e-contextmenu-wrapper ul {
1616
+ padding: 0 !important; /* stylelint-disable-line declaration-no-important */
1587
1617
  }
1588
1618
 
1589
1619
  .e-gantt-tooltip-label {
@@ -1698,6 +1728,29 @@
1698
1728
  z-index: 1;
1699
1729
  }
1700
1730
 
1731
+ .e-gantt .e-gantt-chart .e-chart-root-container .e-content td.e-chart-row-cell.e-droptop {
1732
+ border-top: 1px solid #317ab9;
1733
+ border-width: 1px 0 0;
1734
+ }
1735
+
1736
+ .e-gantt .e-gantt-chart .e-chart-root-container .e-content td.e-chart-row-cell.e-dropbottom {
1737
+ border-bottom: 1px solid #317ab9;
1738
+ box-shadow: #317ab9;
1739
+ }
1740
+
1741
+ .e-gantt .e-gantt-chart .e-chart-root-container .e-content td.e-chart-row-cell.e-childborder {
1742
+ border-bottom: 1px solid #317ab9;
1743
+ border-top: 1px solid #317ab9;
1744
+ box-shadow: #317ab9;
1745
+ }
1746
+
1747
+ @media (max-width: 767px) {
1748
+ .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) {
1749
+ float: none;
1750
+ padding: 16px 12px 0 16px;
1751
+ width: 100%;
1752
+ }
1753
+ }
1701
1754
  /*! Gantt theme */
1702
1755
  .e-gantt .e-gantt-splitter {
1703
1756
  border-color: #ddd;
@@ -1750,6 +1803,13 @@
1750
1803
  background: #c6ddf0;
1751
1804
  opacity: 1;
1752
1805
  }
1806
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-leftfreeze,
1807
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-unfreeze,
1808
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-rightfreeze,
1809
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-fixedfreeze {
1810
+ background: #c6ddf0;
1811
+ opacity: 1;
1812
+ }
1753
1813
  .e-gantt .e-taskbar-resize-div {
1754
1814
  border-color: #317ab9;
1755
1815
  }
@@ -2066,6 +2126,7 @@
2066
2126
  }
2067
2127
  .e-gantt-dialog .e-dlg-header {
2068
2128
  color: #fff;
2129
+ position: relative;
2069
2130
  }
2070
2131
  .e-gantt-dialog .e-dlg-header-content {
2071
2132
  background: #317ab9;
@@ -614,6 +614,22 @@
614
614
  content: "\e7ce";
615
615
  }
616
616
 
617
+ .e-bigger .e-gantt .e-gantt-chart .e-taskbar-left-resizer,
618
+ .e-bigger .e-gantt .e-gantt-chart .e-taskbar-right-resizer {
619
+ display: inline-block;
620
+ position: absolute;
621
+ top: 0;
622
+ width: 25px;
623
+ z-index: 4;
624
+ }
625
+ .e-bigger .e-gantt .e-gantt-chart .e-left-resize-gripper,
626
+ .e-bigger .e-gantt .e-gantt-chart .e-right-resize-gripper {
627
+ -ms-flex-align: center;
628
+ align-items: center;
629
+ cursor: ew-resize;
630
+ display: -ms-inline-flexbox;
631
+ display: inline-flex;
632
+ }
617
633
  .e-bigger .e-gantt .e-gantt-chart .e-timeline-header-container {
618
634
  height: 64px;
619
635
  }
@@ -693,7 +709,8 @@
693
709
  padding: 16px 4px 16px 16px !important; /* stylelint-disable-line declaration-no-important */
694
710
  }
695
711
  .e-bigger .e-gantt .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
696
- left: 1px !important;
712
+ left: -11px;
713
+ top: 3px;
697
714
  }
698
715
  .e-bigger .e-gantt .e-dialog .e-btn .e-btn-icon.e-icon-dlg-close {
699
716
  font-size: 14px !important;
@@ -705,8 +722,8 @@
705
722
  .e-bigger .e-gantt .e-dialog .e-footer-content .e-btn {
706
723
  margin-left: 12px;
707
724
  }
708
- .e-bigger .e-gantt .e-dialog .e-dlg-header {
709
- line-height: 28px;
725
+ .e-bigger .e-gantt .e-dialog .e-dlg-header:not(.e-gantt-adaptive-dialog .e-dialog .e-dlg-header) {
726
+ line-height: 37px;
710
727
  }
711
728
  .e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
712
729
  padding: 16px 0 0 !important;
@@ -720,6 +737,7 @@
720
737
  }
721
738
  .e-bigger .e-gantt-dialog .e-dialog {
722
739
  border-radius: 6px;
740
+ width: 556px !important;
723
741
  }
724
742
  .e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
725
743
  padding: 0 16px !important; /* stylelint-disable-line declaration-no-important */
@@ -749,7 +767,7 @@
749
767
  border-radius: 6px 6px 0px 0px;
750
768
  padding-bottom: 20px;
751
769
  }
752
- .e-bigger .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
770
+ .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) {
753
771
  border-radius: 50%;
754
772
  height: auto !important; /* stylelint-disable-line declaration-no-important */
755
773
  width: auto;
@@ -802,6 +820,16 @@
802
820
  .e-bigger .e-gantt-dialog .e-input-group-icon.e-date-icon {
803
821
  min-width: 36px !important; /* stylelint-disable-line declaration-no-important */
804
822
  }
823
+ .e-bigger .e-gantt-dialog .e-gantt-adaptive-dialog .e-dialog {
824
+ position: absolute !important; /* stylelint-disable-line declaration-no-important */
825
+ left: 0 !important; /* stylelint-disable-line declaration-no-important */
826
+ }
827
+ .e-bigger .e-gantt-dialog .e-gantt-adaptive-dialog .e-dialog .e-dlg-header-content {
828
+ padding: 16px !important; /* stylelint-disable-line declaration-no-important */
829
+ }
830
+ .e-bigger .e-gantt-dialog .e-gantt-adaptive-dialog .e-dialog td {
831
+ width: 100% !important; /* stylelint-disable-line declaration-no-important */
832
+ }
805
833
  .e-bigger .e-predecessor-tooltip .e-arrow-tip-outer.e-tip-bottom {
806
834
  border-top: 8px solid #000;
807
835
  }
@@ -1027,9 +1055,6 @@
1027
1055
  .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content {
1028
1056
  overflow-x: scroll !important; /* stylelint-disable-line declaration-no-important */
1029
1057
  }
1030
- .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-gantt-frozen {
1031
- overflow-x: hidden !important; /* stylelint-disable-line declaration-no-important */
1032
- }
1033
1058
  .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content.e-gantt-scroll-padding {
1034
1059
  width: calc(100% + 17px);
1035
1060
  }
@@ -1152,7 +1177,7 @@
1152
1177
  box-sizing: border-box;
1153
1178
  }
1154
1179
  .e-gantt .e-gantt-chart .e-zero-spacing {
1155
- border-spacing: 0;
1180
+ border-spacing: 0.25px;
1156
1181
  }
1157
1182
  .e-gantt .e-gantt-chart .e-chart-row:first-child .e-chart-row-border {
1158
1183
  border-top: 0;
@@ -1182,9 +1207,6 @@
1182
1207
  vertical-align: middle;
1183
1208
  z-index: 3;
1184
1209
  }
1185
- .e-gantt .e-gantt-chart .e-taskbar-main-container:hover {
1186
- z-index: 4;
1187
- }
1188
1210
  .e-gantt .e-gantt-chart .e-taskbar-main-container.e-gantt-multi-taskbar:hover {
1189
1211
  z-index: 4;
1190
1212
  }
@@ -1661,7 +1683,7 @@
1661
1683
  border-spacing: 0;
1662
1684
  }
1663
1685
  .e-gantt-dialog .e-item {
1664
- height: 241px;
1686
+ height: 100%;
1665
1687
  }
1666
1688
  .e-gantt-dialog .e-dependent-div {
1667
1689
  border-bottom-width: 0px;
@@ -1720,6 +1742,9 @@
1720
1742
  .e-gantt-dialog > .e-dlg-content {
1721
1743
  padding: 0 !important; /* stylelint-disable-line declaration-no-important */
1722
1744
  }
1745
+ .e-gantt-dialog .e-dlg-header {
1746
+ line-height: 30px;
1747
+ }
1723
1748
  .e-gantt-dialog .e-dlg-header-content {
1724
1749
  border-bottom: 0 !important; /* stylelint-disable-line declaration-no-important */
1725
1750
  }
@@ -1727,6 +1752,10 @@
1727
1752
  border-radius: 3px 3px 0px 0px;
1728
1753
  padding-bottom: 20px;
1729
1754
  }
1755
+ .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
1756
+ left: -11px;
1757
+ top: 2px !important;
1758
+ }
1730
1759
  .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
1731
1760
  border-radius: 50%;
1732
1761
  height: auto !important; /* stylelint-disable-line declaration-no-important */
@@ -1791,13 +1820,14 @@
1791
1820
  font-size: 16px;
1792
1821
  }
1793
1822
 
1794
- .e-bigger .e-gantt .e-gantt-chart .e-timeline-single-header-outer-div {
1795
- height: 64px !important; /* stylelint-disable-line declaration-no-important */
1823
+ .e-bigger .e-filter-popup .e-control .e-dialog .e-lib .e-popup .e-popup-open .e-excelfilter .e-gantt,
1824
+ .e-bigger .e-gantt .e-excelfilter .e-dialog .e-dlg-content {
1825
+ padding: 0 18px 0 0 !important; /* stylelint-disable-line declaration-no-important */
1796
1826
  }
1797
1827
 
1798
- .e-bigger .e-timeline-single-header-cell {
1799
- height: 64px !important; /* stylelint-disable-line declaration-no-important */
1800
- line-height: 64px !important; /* stylelint-disable-line declaration-no-important */
1828
+ .e-bigger .e-filter-popup .e-control .e-dialog .e-lib .e-popup .e-popup-open .e-excelfilter .e-gantt,
1829
+ .e-bigger .e-gantt .e-contextmenu-wrapper ul {
1830
+ padding: 0 !important; /* stylelint-disable-line declaration-no-important */
1801
1831
  }
1802
1832
 
1803
1833
  .e-gantt-tooltip-label {
@@ -1912,6 +1942,29 @@
1912
1942
  z-index: 1;
1913
1943
  }
1914
1944
 
1945
+ .e-gantt .e-gantt-chart .e-chart-root-container .e-content td.e-chart-row-cell.e-droptop {
1946
+ border-top: 1px solid #e3165b;
1947
+ border-width: 1px 0 0;
1948
+ }
1949
+
1950
+ .e-gantt .e-gantt-chart .e-chart-root-container .e-content td.e-chart-row-cell.e-dropbottom {
1951
+ border-bottom: 1px solid #e3165b;
1952
+ box-shadow: #e3165b;
1953
+ }
1954
+
1955
+ .e-gantt .e-gantt-chart .e-chart-root-container .e-content td.e-chart-row-cell.e-childborder {
1956
+ border-bottom: 1px solid #e3165b;
1957
+ border-top: 1px solid #e3165b;
1958
+ box-shadow: #e3165b;
1959
+ }
1960
+
1961
+ @media (max-width: 767px) {
1962
+ .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) {
1963
+ float: none;
1964
+ padding: 16px 12px 0 16px;
1965
+ width: 100%;
1966
+ }
1967
+ }
1915
1968
  /*! Gantt theme */
1916
1969
  .e-gantt .e-gantt-splitter {
1917
1970
  border-color: #dee2e6;
@@ -1964,6 +2017,13 @@
1964
2017
  background: rgba(0, 123, 255, 0.16);
1965
2018
  opacity: 1;
1966
2019
  }
2020
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-leftfreeze,
2021
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-unfreeze,
2022
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-rightfreeze,
2023
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-fixedfreeze {
2024
+ background: #d6eaff;
2025
+ opacity: 1;
2026
+ }
1967
2027
  .e-gantt .e-taskbar-resize-div {
1968
2028
  border-color: #007bff;
1969
2029
  }
@@ -2280,6 +2340,7 @@
2280
2340
  }
2281
2341
  .e-gantt-dialog .e-dlg-header {
2282
2342
  color: #fff;
2343
+ position: relative;
2283
2344
  }
2284
2345
  .e-gantt-dialog .e-dlg-header-content {
2285
2346
  background: #007bff;
@@ -304,6 +304,22 @@
304
304
  content: "\e7f9";
305
305
  }
306
306
 
307
+ .e-bigger .e-gantt .e-gantt-chart .e-taskbar-left-resizer,
308
+ .e-bigger .e-gantt .e-gantt-chart .e-taskbar-right-resizer {
309
+ display: inline-block;
310
+ position: absolute;
311
+ top: 0;
312
+ width: 25px;
313
+ z-index: 4;
314
+ }
315
+ .e-bigger .e-gantt .e-gantt-chart .e-left-resize-gripper,
316
+ .e-bigger .e-gantt .e-gantt-chart .e-right-resize-gripper {
317
+ -ms-flex-align: center;
318
+ align-items: center;
319
+ cursor: ew-resize;
320
+ display: -ms-inline-flexbox;
321
+ display: inline-flex;
322
+ }
307
323
  .e-bigger .e-gantt .e-gantt-chart .e-timeline-header-container {
308
324
  height: 64px;
309
325
  }
@@ -383,7 +399,8 @@
383
399
  padding: 16px 4px 16px 16px !important; /* stylelint-disable-line declaration-no-important */
384
400
  }
385
401
  .e-bigger .e-gantt .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
386
- left: 2px !important;
402
+ left: -11px;
403
+ top: 2px;
387
404
  }
388
405
  .e-bigger .e-gantt .e-dialog .e-btn .e-btn-icon.e-icon-dlg-close {
389
406
  font-size: 14px !important;
@@ -395,8 +412,8 @@
395
412
  .e-bigger .e-gantt .e-dialog .e-footer-content .e-btn {
396
413
  margin-left: 12px;
397
414
  }
398
- .e-bigger .e-gantt .e-dialog .e-dlg-header {
399
- line-height: 28px;
415
+ .e-bigger .e-gantt .e-dialog .e-dlg-header:not(.e-gantt-adaptive-dialog .e-dialog .e-dlg-header) {
416
+ line-height: 37px;
400
417
  }
401
418
  .e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
402
419
  padding: 16px 0 0 !important;
@@ -410,6 +427,7 @@
410
427
  }
411
428
  .e-bigger .e-gantt-dialog .e-dialog {
412
429
  border-radius: 6px;
430
+ width: 556px !important;
413
431
  }
414
432
  .e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
415
433
  padding: 0 16px !important; /* stylelint-disable-line declaration-no-important */
@@ -439,7 +457,7 @@
439
457
  border-radius: 6px 6px 0px 0px;
440
458
  padding-bottom: 12px;
441
459
  }
442
- .e-bigger .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
460
+ .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) {
443
461
  border-radius: 50%;
444
462
  height: auto !important; /* stylelint-disable-line declaration-no-important */
445
463
  width: auto;
@@ -489,6 +507,16 @@
489
507
  .e-bigger .e-gantt-dialog .e-input-group-icon.e-date-icon {
490
508
  min-width: 36px !important; /* stylelint-disable-line declaration-no-important */
491
509
  }
510
+ .e-bigger .e-gantt-dialog .e-gantt-adaptive-dialog .e-dialog {
511
+ position: absolute !important; /* stylelint-disable-line declaration-no-important */
512
+ left: 0 !important; /* stylelint-disable-line declaration-no-important */
513
+ }
514
+ .e-bigger .e-gantt-dialog .e-gantt-adaptive-dialog .e-dialog .e-dlg-header-content {
515
+ padding: 16px !important; /* stylelint-disable-line declaration-no-important */
516
+ }
517
+ .e-bigger .e-gantt-dialog .e-gantt-adaptive-dialog .e-dialog td {
518
+ width: 100% !important; /* stylelint-disable-line declaration-no-important */
519
+ }
492
520
  .e-bigger .e-predecessor-tooltip .e-arrow-tip-outer.e-tip-bottom {
493
521
  border-top: 8px solid #000;
494
522
  }
@@ -714,9 +742,6 @@
714
742
  .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content {
715
743
  overflow-x: scroll !important; /* stylelint-disable-line declaration-no-important */
716
744
  }
717
- .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-gantt-frozen {
718
- overflow-x: hidden !important; /* stylelint-disable-line declaration-no-important */
719
- }
720
745
  .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content.e-gantt-scroll-padding {
721
746
  width: calc(100% + 17px);
722
747
  }
@@ -839,7 +864,7 @@
839
864
  box-sizing: border-box;
840
865
  }
841
866
  .e-gantt .e-gantt-chart .e-zero-spacing {
842
- border-spacing: 0;
867
+ border-spacing: 0.25px;
843
868
  }
844
869
  .e-gantt .e-gantt-chart .e-chart-row:first-child .e-chart-row-border {
845
870
  border-top: 0;
@@ -869,9 +894,6 @@
869
894
  vertical-align: middle;
870
895
  z-index: 3;
871
896
  }
872
- .e-gantt .e-gantt-chart .e-taskbar-main-container:hover {
873
- z-index: 4;
874
- }
875
897
  .e-gantt .e-gantt-chart .e-taskbar-main-container.e-gantt-multi-taskbar:hover {
876
898
  z-index: 4;
877
899
  }
@@ -1348,7 +1370,7 @@
1348
1370
  border-spacing: 0;
1349
1371
  }
1350
1372
  .e-gantt-dialog .e-item {
1351
- height: 241px;
1373
+ height: 100%;
1352
1374
  }
1353
1375
  .e-gantt-dialog .e-dependent-div {
1354
1376
  border-bottom-width: 0px;
@@ -1407,6 +1429,9 @@
1407
1429
  .e-gantt-dialog > .e-dlg-content {
1408
1430
  padding: 0 !important; /* stylelint-disable-line declaration-no-important */
1409
1431
  }
1432
+ .e-gantt-dialog .e-dlg-header {
1433
+ line-height: 30px;
1434
+ }
1410
1435
  .e-gantt-dialog .e-dlg-header-content {
1411
1436
  border-bottom: 0 !important; /* stylelint-disable-line declaration-no-important */
1412
1437
  }
@@ -1414,6 +1439,10 @@
1414
1439
  border-radius: 3px 3px 0px 0px;
1415
1440
  padding-bottom: 12px;
1416
1441
  }
1442
+ .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
1443
+ left: -11px;
1444
+ top: 0 !important;
1445
+ }
1417
1446
  .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
1418
1447
  border-radius: 50%;
1419
1448
  height: auto !important; /* stylelint-disable-line declaration-no-important */
@@ -1478,13 +1507,14 @@
1478
1507
  font-size: 16px;
1479
1508
  }
1480
1509
 
1481
- .e-bigger .e-gantt .e-gantt-chart .e-timeline-single-header-outer-div {
1482
- height: 64px !important; /* stylelint-disable-line declaration-no-important */
1510
+ .e-bigger .e-filter-popup .e-control .e-dialog .e-lib .e-popup .e-popup-open .e-excelfilter .e-gantt,
1511
+ .e-bigger .e-gantt .e-excelfilter .e-dialog .e-dlg-content {
1512
+ padding: 0 18px 0 0 !important; /* stylelint-disable-line declaration-no-important */
1483
1513
  }
1484
1514
 
1485
- .e-bigger .e-timeline-single-header-cell {
1486
- height: 64px !important; /* stylelint-disable-line declaration-no-important */
1487
- line-height: 64px !important; /* stylelint-disable-line declaration-no-important */
1515
+ .e-bigger .e-filter-popup .e-control .e-dialog .e-lib .e-popup .e-popup-open .e-excelfilter .e-gantt,
1516
+ .e-bigger .e-gantt .e-contextmenu-wrapper ul {
1517
+ padding: 0 !important; /* stylelint-disable-line declaration-no-important */
1488
1518
  }
1489
1519
 
1490
1520
  .e-gantt-tooltip-label {
@@ -1599,6 +1629,29 @@
1599
1629
  z-index: 1;
1600
1630
  }
1601
1631
 
1632
+ .e-gantt .e-gantt-chart .e-chart-root-container .e-content td.e-chart-row-cell.e-droptop {
1633
+ border-top: 2px solid #4f46e5;
1634
+ border-width: 2px 0 0;
1635
+ }
1636
+
1637
+ .e-gantt .e-gantt-chart .e-chart-root-container .e-content td.e-chart-row-cell.e-dropbottom {
1638
+ border-bottom: 2px solid #4f46e5;
1639
+ box-shadow: #0d6efd;
1640
+ }
1641
+
1642
+ .e-gantt .e-gantt-chart .e-chart-root-container .e-content td.e-chart-row-cell.e-childborder {
1643
+ border-bottom: 2px solid #4f46e5;
1644
+ border-top: 2px solid #4f46e5;
1645
+ box-shadow: #0d6efd;
1646
+ }
1647
+
1648
+ @media (max-width: 767px) {
1649
+ .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) {
1650
+ float: none;
1651
+ padding: 16px 12px 0 16px;
1652
+ width: 100%;
1653
+ }
1654
+ }
1602
1655
  /*! Gantt theme */
1603
1656
  .e-gantt .e-gantt-splitter {
1604
1657
  border-color: #444c54;
@@ -1651,6 +1704,13 @@
1651
1704
  background: #3c444b;
1652
1705
  opacity: 0.9;
1653
1706
  }
1707
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-leftfreeze,
1708
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-unfreeze,
1709
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-rightfreeze,
1710
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-fixedfreeze {
1711
+ background: #3c444b;
1712
+ opacity: 1;
1713
+ }
1654
1714
  .e-gantt .e-taskbar-resize-div {
1655
1715
  border-color: #0d6efd;
1656
1716
  }
@@ -1967,6 +2027,7 @@
1967
2027
  }
1968
2028
  .e-gantt-dialog .e-dlg-header {
1969
2029
  color: #fff;
2030
+ position: relative;
1970
2031
  }
1971
2032
  .e-gantt-dialog .e-dlg-header-content {
1972
2033
  background: #282d31;