@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
@@ -304,6 +304,22 @@
304
304
  content: "\e85f";
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 12px 18px !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: 3px;
387
404
  }
388
405
  .e-bigger .e-gantt .e-dialog .e-btn .e-btn-icon.e-icon-dlg-close {
389
406
  font-size: 12px !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: 20px 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: 554px !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: 4px;
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
  border-top: 7px solid #000;
@@ -715,9 +743,6 @@
715
743
  .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content {
716
744
  overflow-x: scroll !important; /* stylelint-disable-line declaration-no-important */
717
745
  }
718
- .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-gantt-frozen {
719
- overflow-x: hidden !important; /* stylelint-disable-line declaration-no-important */
720
- }
721
746
  .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content.e-gantt-scroll-padding {
722
747
  width: calc(100% + 17px);
723
748
  }
@@ -840,7 +865,7 @@
840
865
  box-sizing: border-box;
841
866
  }
842
867
  .e-gantt .e-gantt-chart .e-zero-spacing {
843
- border-spacing: 0;
868
+ border-spacing: 0.25px;
844
869
  }
845
870
  .e-gantt .e-gantt-chart .e-chart-row:first-child .e-chart-row-border {
846
871
  border-top: 0;
@@ -870,9 +895,6 @@
870
895
  vertical-align: middle;
871
896
  z-index: 3;
872
897
  }
873
- .e-gantt .e-gantt-chart .e-taskbar-main-container:hover {
874
- z-index: 4;
875
- }
876
898
  .e-gantt .e-gantt-chart .e-taskbar-main-container.e-gantt-multi-taskbar:hover {
877
899
  z-index: 4;
878
900
  }
@@ -1349,7 +1371,7 @@
1349
1371
  border-spacing: 0;
1350
1372
  }
1351
1373
  .e-gantt-dialog .e-item {
1352
- height: 241px;
1374
+ height: 100%;
1353
1375
  }
1354
1376
  .e-gantt-dialog .e-dependent-div {
1355
1377
  border-bottom-width: 1px;
@@ -1408,6 +1430,9 @@
1408
1430
  .e-gantt-dialog > .e-dlg-content {
1409
1431
  padding: 0 !important; /* stylelint-disable-line declaration-no-important */
1410
1432
  }
1433
+ .e-gantt-dialog .e-dlg-header {
1434
+ line-height: 30px;
1435
+ }
1411
1436
  .e-gantt-dialog .e-dlg-header-content {
1412
1437
  border-bottom: 0 !important; /* stylelint-disable-line declaration-no-important */
1413
1438
  }
@@ -1415,6 +1440,10 @@
1415
1440
  border-radius: 0px;
1416
1441
  padding-bottom: 4px;
1417
1442
  }
1443
+ .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
1444
+ left: -11px;
1445
+ top: 0px !important;
1446
+ }
1418
1447
  .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
1419
1448
  border-radius: 50%;
1420
1449
  height: auto !important; /* stylelint-disable-line declaration-no-important */
@@ -1479,13 +1508,14 @@
1479
1508
  font-size: 13px;
1480
1509
  }
1481
1510
 
1482
- .e-bigger .e-gantt .e-gantt-chart .e-timeline-single-header-outer-div {
1483
- height: 64px !important; /* stylelint-disable-line declaration-no-important */
1511
+ .e-bigger .e-filter-popup .e-control .e-dialog .e-lib .e-popup .e-popup-open .e-excelfilter .e-gantt,
1512
+ .e-bigger .e-gantt .e-excelfilter .e-dialog .e-dlg-content {
1513
+ padding: 0 18px 0 0 !important; /* stylelint-disable-line declaration-no-important */
1484
1514
  }
1485
1515
 
1486
- .e-bigger .e-timeline-single-header-cell {
1487
- height: 64px !important; /* stylelint-disable-line declaration-no-important */
1488
- line-height: 64px !important; /* stylelint-disable-line declaration-no-important */
1516
+ .e-bigger .e-filter-popup .e-control .e-dialog .e-lib .e-popup .e-popup-open .e-excelfilter .e-gantt,
1517
+ .e-bigger .e-gantt .e-contextmenu-wrapper ul {
1518
+ padding: 0 !important; /* stylelint-disable-line declaration-no-important */
1489
1519
  }
1490
1520
 
1491
1521
  .e-gantt-tooltip-label {
@@ -1601,6 +1631,29 @@
1601
1631
  z-index: 1;
1602
1632
  }
1603
1633
 
1634
+ .e-gantt .e-gantt-chart .e-chart-root-container .e-content td.e-chart-row-cell.e-droptop {
1635
+ border-top: 1px solid #ffd939;
1636
+ border-width: 1px 0 0;
1637
+ }
1638
+
1639
+ .e-gantt .e-gantt-chart .e-chart-root-container .e-content td.e-chart-row-cell.e-dropbottom {
1640
+ border-bottom: 1px solid #ffd939;
1641
+ box-shadow: #ffd939;
1642
+ }
1643
+
1644
+ .e-gantt .e-gantt-chart .e-chart-root-container .e-content td.e-chart-row-cell.e-childborder {
1645
+ border-bottom: 1px solid #ffd939;
1646
+ border-top: 1px solid #ffd939;
1647
+ box-shadow: #ffd939;
1648
+ }
1649
+
1650
+ @media (max-width: 767px) {
1651
+ .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) {
1652
+ float: none;
1653
+ padding: 16px 12px 0 16px;
1654
+ width: 100%;
1655
+ }
1656
+ }
1604
1657
  /*! Gantt theme */
1605
1658
  .e-gantt .e-gantt-splitter {
1606
1659
  border-color: #969696;
@@ -1653,6 +1706,13 @@
1653
1706
  background: rgba(255, 217, 57, 0.7);
1654
1707
  opacity: 1;
1655
1708
  }
1709
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-leftfreeze,
1710
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-unfreeze,
1711
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-rightfreeze,
1712
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-fixedfreeze {
1713
+ background: #b39828;
1714
+ opacity: 1;
1715
+ }
1656
1716
  .e-gantt .e-taskbar-resize-div {
1657
1717
  border-color: #29c400;
1658
1718
  }
@@ -1969,6 +2029,7 @@
1969
2029
  }
1970
2030
  .e-gantt-dialog .e-dlg-header {
1971
2031
  color: #000;
2032
+ position: relative;
1972
2033
  }
1973
2034
  .e-gantt-dialog .e-dlg-header-content {
1974
2035
  background: #ffd939;
@@ -257,6 +257,22 @@
257
257
  .e-bigger .e-gantt .e-grid .e-row .e-input-group {
258
258
  margin: 0 !important; /* stylelint-disable-line declaration-no-important */
259
259
  }
260
+ .e-bigger .e-gantt .e-gantt-chart .e-taskbar-left-resizer,
261
+ .e-bigger .e-gantt .e-gantt-chart .e-taskbar-right-resizer {
262
+ display: inline-block;
263
+ position: absolute;
264
+ top: 0;
265
+ width: 25px;
266
+ z-index: 4;
267
+ }
268
+ .e-bigger .e-gantt .e-gantt-chart .e-left-resize-gripper,
269
+ .e-bigger .e-gantt .e-gantt-chart .e-right-resize-gripper {
270
+ -ms-flex-align: center;
271
+ align-items: center;
272
+ cursor: ew-resize;
273
+ display: -ms-inline-flexbox;
274
+ display: inline-flex;
275
+ }
260
276
  .e-bigger .e-gantt .e-gantt-chart .e-timeline-header-container {
261
277
  height: 64px;
262
278
  }
@@ -336,7 +352,8 @@
336
352
  padding: 16px 4px 17px 16px !important; /* stylelint-disable-line declaration-no-important */
337
353
  }
338
354
  .e-bigger .e-gantt .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
339
- left: 1px !important;
355
+ left: -11px;
356
+ top: 3px;
340
357
  }
341
358
  .e-bigger .e-gantt .e-dialog .e-btn .e-btn-icon.e-icon-dlg-close {
342
359
  font-size: 12px !important;
@@ -348,8 +365,8 @@
348
365
  .e-bigger .e-gantt .e-dialog .e-footer-content .e-btn {
349
366
  margin-left: 12px;
350
367
  }
351
- .e-bigger .e-gantt .e-dialog .e-dlg-header {
352
- line-height: 28px;
368
+ .e-bigger .e-gantt .e-dialog .e-dlg-header:not(.e-gantt-adaptive-dialog .e-dialog .e-dlg-header) {
369
+ line-height: 37px;
353
370
  }
354
371
  .e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
355
372
  padding: 14px 0 0 !important;
@@ -363,6 +380,7 @@
363
380
  }
364
381
  .e-bigger .e-gantt-dialog .e-dialog {
365
382
  border-radius: 6px;
383
+ width: 550px !important;
366
384
  }
367
385
  .e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
368
386
  padding: 0 16px !important; /* stylelint-disable-line declaration-no-important */
@@ -392,7 +410,7 @@
392
410
  border-radius: 6px 6px 0px 0px;
393
411
  padding-bottom: 4px;
394
412
  }
395
- .e-bigger .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
413
+ .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) {
396
414
  border-radius: 50%;
397
415
  height: auto !important; /* stylelint-disable-line declaration-no-important */
398
416
  width: auto;
@@ -442,6 +460,16 @@
442
460
  .e-bigger .e-gantt-dialog .e-input-group-icon.e-date-icon {
443
461
  min-width: 36px !important; /* stylelint-disable-line declaration-no-important */
444
462
  }
463
+ .e-bigger .e-gantt-dialog .e-gantt-adaptive-dialog .e-dialog {
464
+ position: absolute !important; /* stylelint-disable-line declaration-no-important */
465
+ left: 0 !important; /* stylelint-disable-line declaration-no-important */
466
+ }
467
+ .e-bigger .e-gantt-dialog .e-gantt-adaptive-dialog .e-dialog .e-dlg-header-content {
468
+ padding: 16px !important; /* stylelint-disable-line declaration-no-important */
469
+ }
470
+ .e-bigger .e-gantt-dialog .e-gantt-adaptive-dialog .e-dialog td {
471
+ width: 100% !important; /* stylelint-disable-line declaration-no-important */
472
+ }
445
473
  .e-bigger .e-predecessor-tooltip .e-arrow-tip-outer.e-tip-bottom {
446
474
  border-top: 8px solid #000;
447
475
  }
@@ -667,9 +695,6 @@
667
695
  .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content {
668
696
  overflow-x: scroll !important; /* stylelint-disable-line declaration-no-important */
669
697
  }
670
- .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-gantt-frozen {
671
- overflow-x: hidden !important; /* stylelint-disable-line declaration-no-important */
672
- }
673
698
  .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content.e-gantt-scroll-padding {
674
699
  width: calc(100% + 17px);
675
700
  }
@@ -792,7 +817,7 @@
792
817
  box-sizing: border-box;
793
818
  }
794
819
  .e-gantt .e-gantt-chart .e-zero-spacing {
795
- border-spacing: 0;
820
+ border-spacing: 0.25px;
796
821
  }
797
822
  .e-gantt .e-gantt-chart .e-chart-row:first-child .e-chart-row-border {
798
823
  border-top: 0;
@@ -822,9 +847,6 @@
822
847
  vertical-align: middle;
823
848
  z-index: 3;
824
849
  }
825
- .e-gantt .e-gantt-chart .e-taskbar-main-container:hover {
826
- z-index: 4;
827
- }
828
850
  .e-gantt .e-gantt-chart .e-taskbar-main-container.e-gantt-multi-taskbar:hover {
829
851
  z-index: 4;
830
852
  }
@@ -1301,7 +1323,7 @@
1301
1323
  border-spacing: 0;
1302
1324
  }
1303
1325
  .e-gantt-dialog .e-item {
1304
- height: 241px;
1326
+ height: 100%;
1305
1327
  }
1306
1328
  .e-gantt-dialog .e-dependent-div {
1307
1329
  border-bottom-width: 1px;
@@ -1360,6 +1382,9 @@
1360
1382
  .e-gantt-dialog > .e-dlg-content {
1361
1383
  padding: 0 !important; /* stylelint-disable-line declaration-no-important */
1362
1384
  }
1385
+ .e-gantt-dialog .e-dlg-header {
1386
+ line-height: 30px;
1387
+ }
1363
1388
  .e-gantt-dialog .e-dlg-header-content {
1364
1389
  border-bottom: 0 !important; /* stylelint-disable-line declaration-no-important */
1365
1390
  }
@@ -1367,6 +1392,10 @@
1367
1392
  border-radius: 0px;
1368
1393
  padding-bottom: 4px;
1369
1394
  }
1395
+ .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
1396
+ left: -11px;
1397
+ top: 2px !important;
1398
+ }
1370
1399
  .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
1371
1400
  border-radius: 50%;
1372
1401
  height: auto !important; /* stylelint-disable-line declaration-no-important */
@@ -1431,13 +1460,14 @@
1431
1460
  font-size: 14px;
1432
1461
  }
1433
1462
 
1434
- .e-bigger .e-gantt .e-gantt-chart .e-timeline-single-header-outer-div {
1435
- height: 64px !important; /* stylelint-disable-line declaration-no-important */
1463
+ .e-bigger .e-filter-popup .e-control .e-dialog .e-lib .e-popup .e-popup-open .e-excelfilter .e-gantt,
1464
+ .e-bigger .e-gantt .e-excelfilter .e-dialog .e-dlg-content {
1465
+ padding: 0 18px 0 0 !important; /* stylelint-disable-line declaration-no-important */
1436
1466
  }
1437
1467
 
1438
- .e-bigger .e-timeline-single-header-cell {
1439
- height: 64px !important; /* stylelint-disable-line declaration-no-important */
1440
- line-height: 64px !important; /* stylelint-disable-line declaration-no-important */
1468
+ .e-bigger .e-filter-popup .e-control .e-dialog .e-lib .e-popup .e-popup-open .e-excelfilter .e-gantt,
1469
+ .e-bigger .e-gantt .e-contextmenu-wrapper ul {
1470
+ padding: 0 !important; /* stylelint-disable-line declaration-no-important */
1441
1471
  }
1442
1472
 
1443
1473
  .e-gantt-tooltip-label {
@@ -1552,6 +1582,29 @@
1552
1582
  z-index: 1;
1553
1583
  }
1554
1584
 
1585
+ .e-gantt .e-gantt-chart .e-chart-root-container .e-content td.e-chart-row-cell.e-droptop {
1586
+ border-top: 1px solid #00b0ff;
1587
+ border-width: 1px 0 0;
1588
+ }
1589
+
1590
+ .e-gantt .e-gantt-chart .e-chart-root-container .e-content td.e-chart-row-cell.e-dropbottom {
1591
+ border-bottom: 1px solid #00b0ff;
1592
+ box-shadow: #00b0ff;
1593
+ }
1594
+
1595
+ .e-gantt .e-gantt-chart .e-chart-root-container .e-content td.e-chart-row-cell.e-childborder {
1596
+ border-bottom: 1px solid #00b0ff;
1597
+ border-top: 1px solid #00b0ff;
1598
+ box-shadow: #00b0ff;
1599
+ }
1600
+
1601
+ @media (max-width: 767px) {
1602
+ .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) {
1603
+ float: none;
1604
+ padding: 16px 12px 0 16px;
1605
+ width: 100%;
1606
+ }
1607
+ }
1555
1608
  /*! Gantt theme */
1556
1609
  .e-gantt .e-gantt-splitter {
1557
1610
  border-color: #616161;
@@ -1604,6 +1657,13 @@
1604
1657
  background: rgba(255, 255, 255, 0.28);
1605
1658
  opacity: 0.87;
1606
1659
  }
1660
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-leftfreeze,
1661
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-unfreeze,
1662
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-rightfreeze,
1663
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-fixedfreeze {
1664
+ background: #626262;
1665
+ opacity: 1;
1666
+ }
1607
1667
  .e-gantt .e-taskbar-resize-div {
1608
1668
  border-color: #00b0ff;
1609
1669
  }
@@ -1920,6 +1980,7 @@
1920
1980
  }
1921
1981
  .e-gantt-dialog .e-dlg-header {
1922
1982
  color: #fff;
1983
+ position: relative;
1923
1984
  }
1924
1985
  .e-gantt-dialog .e-dlg-header-content {
1925
1986
  background: #3f51b5;
@@ -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;