@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
@@ -264,6 +264,22 @@
264
264
  content: "\e85f";
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 16px !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: 0 !important;
362
+ left: -11px;
363
+ top: 3px;
347
364
  }
348
365
  .e-bigger .e-gantt .e-dialog .e-btn .e-btn-icon.e-icon-dlg-close {
349
366
  font-size: 12px !important;
@@ -355,8 +372,8 @@
355
372
  .e-bigger .e-gantt .e-dialog .e-footer-content .e-btn {
356
373
  margin-left: 12px;
357
374
  }
358
- .e-bigger .e-gantt .e-dialog .e-dlg-header {
359
- line-height: 28px;
375
+ .e-bigger .e-gantt .e-dialog .e-dlg-header:not(.e-gantt-adaptive-dialog .e-dialog .e-dlg-header) {
376
+ line-height: 37px;
360
377
  }
361
378
  .e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
362
379
  padding: 16px 0 0 !important;
@@ -370,6 +387,7 @@
370
387
  }
371
388
  .e-bigger .e-gantt-dialog .e-dialog {
372
389
  border-radius: 6px;
390
+ width: 556px !important;
373
391
  }
374
392
  .e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
375
393
  padding: 0 16px !important; /* stylelint-disable-line declaration-no-important */
@@ -450,6 +468,16 @@
450
468
  .e-bigger .e-gantt-dialog .e-input-group-icon.e-date-icon {
451
469
  min-width: 36px !important; /* stylelint-disable-line declaration-no-important */
452
470
  }
471
+ .e-bigger .e-gantt-dialog .e-gantt-adaptive-dialog .e-dialog {
472
+ position: absolute !important; /* stylelint-disable-line declaration-no-important */
473
+ left: 0 !important; /* stylelint-disable-line declaration-no-important */
474
+ }
475
+ .e-bigger .e-gantt-dialog .e-gantt-adaptive-dialog .e-dialog .e-dlg-header-content {
476
+ padding: 16px !important; /* stylelint-disable-line declaration-no-important */
477
+ }
478
+ .e-bigger .e-gantt-dialog .e-gantt-adaptive-dialog .e-dialog td {
479
+ width: 100% !important; /* stylelint-disable-line declaration-no-important */
480
+ }
453
481
  .e-bigger .e-predecessor-tooltip .e-arrow-tip-outer.e-tip-bottom {
454
482
  border-top: 8px solid #000;
455
483
  }
@@ -675,9 +703,6 @@
675
703
  .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content {
676
704
  overflow-x: scroll !important; /* stylelint-disable-line declaration-no-important */
677
705
  }
678
- .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-gantt-frozen {
679
- overflow-x: hidden !important; /* stylelint-disable-line declaration-no-important */
680
- }
681
706
  .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content.e-gantt-scroll-padding {
682
707
  width: calc(100% + 17px);
683
708
  }
@@ -800,7 +825,7 @@
800
825
  box-sizing: border-box;
801
826
  }
802
827
  .e-gantt .e-gantt-chart .e-zero-spacing {
803
- border-spacing: 0;
828
+ border-spacing: 0.25px;
804
829
  }
805
830
  .e-gantt .e-gantt-chart .e-chart-row:first-child .e-chart-row-border {
806
831
  border-top: 0;
@@ -830,9 +855,6 @@
830
855
  vertical-align: middle;
831
856
  z-index: 3;
832
857
  }
833
- .e-gantt .e-gantt-chart .e-taskbar-main-container:hover {
834
- z-index: 4;
835
- }
836
858
  .e-gantt .e-gantt-chart .e-taskbar-main-container.e-gantt-multi-taskbar:hover {
837
859
  z-index: 4;
838
860
  }
@@ -1309,7 +1331,7 @@
1309
1331
  border-spacing: 0;
1310
1332
  }
1311
1333
  .e-gantt-dialog .e-item {
1312
- height: 241px;
1334
+ height: 100%;
1313
1335
  }
1314
1336
  .e-gantt-dialog .e-dependent-div {
1315
1337
  border-bottom-width: 0px;
@@ -1368,6 +1390,9 @@
1368
1390
  .e-gantt-dialog > .e-dlg-content {
1369
1391
  padding: 0 !important; /* stylelint-disable-line declaration-no-important */
1370
1392
  }
1393
+ .e-gantt-dialog .e-dlg-header {
1394
+ line-height: 30px;
1395
+ }
1371
1396
  .e-gantt-dialog .e-dlg-header-content {
1372
1397
  border-bottom: 0 !important; /* stylelint-disable-line declaration-no-important */
1373
1398
  }
@@ -1375,6 +1400,10 @@
1375
1400
  border-radius: 6px 6px 0px 0px;
1376
1401
  padding-bottom: 20px;
1377
1402
  }
1403
+ .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
1404
+ left: -11px;
1405
+ top: 2px !important;
1406
+ }
1378
1407
  .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
1379
1408
  border-radius: 50%;
1380
1409
  height: auto !important; /* stylelint-disable-line declaration-no-important */
@@ -1440,13 +1469,14 @@
1440
1469
  font-size: 14px;
1441
1470
  }
1442
1471
 
1443
- .e-bigger .e-gantt .e-gantt-chart .e-timeline-single-header-outer-div {
1444
- height: 64px !important; /* stylelint-disable-line declaration-no-important */
1472
+ .e-bigger .e-filter-popup .e-control .e-dialog .e-lib .e-popup .e-popup-open .e-excelfilter .e-gantt,
1473
+ .e-bigger .e-gantt .e-excelfilter .e-dialog .e-dlg-content {
1474
+ padding: 0 18px 0 0 !important; /* stylelint-disable-line declaration-no-important */
1445
1475
  }
1446
1476
 
1447
- .e-bigger .e-timeline-single-header-cell {
1448
- height: 64px !important; /* stylelint-disable-line declaration-no-important */
1449
- line-height: 64px !important; /* stylelint-disable-line declaration-no-important */
1477
+ .e-bigger .e-filter-popup .e-control .e-dialog .e-lib .e-popup .e-popup-open .e-excelfilter .e-gantt,
1478
+ .e-bigger .e-gantt .e-contextmenu-wrapper ul {
1479
+ padding: 0 !important; /* stylelint-disable-line declaration-no-important */
1450
1480
  }
1451
1481
 
1452
1482
  .e-gantt-tooltip-label {
@@ -1561,6 +1591,29 @@
1561
1591
  z-index: 1;
1562
1592
  }
1563
1593
 
1594
+ .e-gantt .e-gantt-chart .e-chart-root-container .e-content td.e-chart-row-cell.e-droptop {
1595
+ border-top: 1px solid #0070f0;
1596
+ border-width: 1px 0 0;
1597
+ }
1598
+
1599
+ .e-gantt .e-gantt-chart .e-chart-root-container .e-content td.e-chart-row-cell.e-dropbottom {
1600
+ border-bottom: 1px solid #0070f0;
1601
+ box-shadow: #0070f0;
1602
+ }
1603
+
1604
+ .e-gantt .e-gantt-chart .e-chart-root-container .e-content td.e-chart-row-cell.e-childborder {
1605
+ border-bottom: 1px solid #0070f0;
1606
+ border-top: 1px solid #0070f0;
1607
+ box-shadow: #0070f0;
1608
+ }
1609
+
1610
+ @media (max-width: 767px) {
1611
+ .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) {
1612
+ float: none;
1613
+ padding: 16px 12px 0 16px;
1614
+ width: 100%;
1615
+ }
1616
+ }
1564
1617
  /*! Gantt theme */
1565
1618
  .e-gantt .e-gantt-splitter {
1566
1619
  border-color: #484848;
@@ -1613,6 +1666,13 @@
1613
1666
  background: #484848;
1614
1667
  opacity: 1;
1615
1668
  }
1669
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-leftfreeze,
1670
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-unfreeze,
1671
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-rightfreeze,
1672
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-fixedfreeze {
1673
+ background: #484848;
1674
+ opacity: 1;
1675
+ }
1616
1676
  .e-gantt .e-taskbar-resize-div {
1617
1677
  border-color: #0070f0;
1618
1678
  }
@@ -1929,6 +1989,7 @@
1929
1989
  }
1930
1990
  .e-gantt-dialog .e-dlg-header {
1931
1991
  color: #fff;
1992
+ position: relative;
1932
1993
  }
1933
1994
  .e-gantt-dialog .e-dlg-header-content {
1934
1995
  background: #0070f0;
@@ -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;