@syncfusion/ej2-gantt 23.2.7 → 24.1.43

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 +2 -5
  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 +2993 -332
  6. package/dist/es6/ej2-gantt.es2015.js.map +1 -1
  7. package/dist/es6/ej2-gantt.es5.js +3047 -366
  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 +393 -2
  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 +38 -10
  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 +207 -27
  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
@@ -213,6 +213,22 @@
213
213
  content: "\e85f";
214
214
  }
215
215
 
216
+ .e-bigger .e-gantt .e-gantt-chart .e-taskbar-left-resizer,
217
+ .e-bigger .e-gantt .e-gantt-chart .e-taskbar-right-resizer {
218
+ display: inline-block;
219
+ position: absolute;
220
+ top: 0;
221
+ width: 25px;
222
+ z-index: 4;
223
+ }
224
+ .e-bigger .e-gantt .e-gantt-chart .e-left-resize-gripper,
225
+ .e-bigger .e-gantt .e-gantt-chart .e-right-resize-gripper {
226
+ -ms-flex-align: center;
227
+ align-items: center;
228
+ cursor: ew-resize;
229
+ display: -ms-inline-flexbox;
230
+ display: inline-flex;
231
+ }
216
232
  .e-bigger .e-gantt .e-gantt-chart .e-timeline-header-container {
217
233
  height: 64px;
218
234
  }
@@ -292,7 +308,8 @@
292
308
  padding: 16px 4px 16px 16px !important; /* stylelint-disable-line declaration-no-important */
293
309
  }
294
310
  .e-bigger .e-gantt .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
295
- left: 0 !important;
311
+ left: -11px;
312
+ top: 3px;
296
313
  }
297
314
  .e-bigger .e-gantt .e-dialog .e-btn .e-btn-icon.e-icon-dlg-close {
298
315
  font-size: 12px !important;
@@ -304,8 +321,8 @@
304
321
  .e-bigger .e-gantt .e-dialog .e-footer-content .e-btn {
305
322
  margin-left: 12px;
306
323
  }
307
- .e-bigger .e-gantt .e-dialog .e-dlg-header {
308
- line-height: 28px;
324
+ .e-bigger .e-gantt .e-dialog .e-dlg-header:not(.e-gantt-adaptive-dialog .e-dialog .e-dlg-header) {
325
+ line-height: 37px;
309
326
  }
310
327
  .e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
311
328
  padding: 16px 0 0 !important;
@@ -319,6 +336,7 @@
319
336
  }
320
337
  .e-bigger .e-gantt-dialog .e-dialog {
321
338
  border-radius: 6px;
339
+ width: 556px !important;
322
340
  }
323
341
  .e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
324
342
  padding: 0 16px !important; /* stylelint-disable-line declaration-no-important */
@@ -348,7 +366,7 @@
348
366
  border-radius: 6px 6px 0px 0px;
349
367
  padding-bottom: 4px;
350
368
  }
351
- .e-bigger .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
369
+ .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) {
352
370
  border-radius: 50%;
353
371
  height: auto !important; /* stylelint-disable-line declaration-no-important */
354
372
  width: auto;
@@ -398,6 +416,16 @@
398
416
  .e-bigger .e-gantt-dialog .e-input-group-icon.e-date-icon {
399
417
  min-width: 36px !important; /* stylelint-disable-line declaration-no-important */
400
418
  }
419
+ .e-bigger .e-gantt-dialog .e-gantt-adaptive-dialog .e-dialog {
420
+ position: absolute !important; /* stylelint-disable-line declaration-no-important */
421
+ left: 0 !important; /* stylelint-disable-line declaration-no-important */
422
+ }
423
+ .e-bigger .e-gantt-dialog .e-gantt-adaptive-dialog .e-dialog .e-dlg-header-content {
424
+ padding: 16px !important; /* stylelint-disable-line declaration-no-important */
425
+ }
426
+ .e-bigger .e-gantt-dialog .e-gantt-adaptive-dialog .e-dialog td {
427
+ width: 100% !important; /* stylelint-disable-line declaration-no-important */
428
+ }
401
429
  .e-bigger .e-predecessor-tooltip .e-arrow-tip-outer.e-tip-bottom {
402
430
  border-top: 8px solid #000;
403
431
  }
@@ -623,9 +651,6 @@
623
651
  .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content {
624
652
  overflow-x: scroll !important; /* stylelint-disable-line declaration-no-important */
625
653
  }
626
- .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-gantt-frozen {
627
- overflow-x: hidden !important; /* stylelint-disable-line declaration-no-important */
628
- }
629
654
  .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content.e-gantt-scroll-padding {
630
655
  width: calc(100% + 17px);
631
656
  }
@@ -748,7 +773,7 @@
748
773
  box-sizing: border-box;
749
774
  }
750
775
  .e-gantt .e-gantt-chart .e-zero-spacing {
751
- border-spacing: 0;
776
+ border-spacing: 0.25px;
752
777
  }
753
778
  .e-gantt .e-gantt-chart .e-chart-row:first-child .e-chart-row-border {
754
779
  border-top: 0;
@@ -778,9 +803,6 @@
778
803
  vertical-align: middle;
779
804
  z-index: 3;
780
805
  }
781
- .e-gantt .e-gantt-chart .e-taskbar-main-container:hover {
782
- z-index: 4;
783
- }
784
806
  .e-gantt .e-gantt-chart .e-taskbar-main-container.e-gantt-multi-taskbar:hover {
785
807
  z-index: 4;
786
808
  }
@@ -1257,7 +1279,7 @@
1257
1279
  border-spacing: 0;
1258
1280
  }
1259
1281
  .e-gantt-dialog .e-item {
1260
- height: 241px;
1282
+ height: 100%;
1261
1283
  }
1262
1284
  .e-gantt-dialog .e-dependent-div {
1263
1285
  border-bottom-width: 1px;
@@ -1316,6 +1338,9 @@
1316
1338
  .e-gantt-dialog > .e-dlg-content {
1317
1339
  padding: 0 !important; /* stylelint-disable-line declaration-no-important */
1318
1340
  }
1341
+ .e-gantt-dialog .e-dlg-header {
1342
+ line-height: 30px;
1343
+ }
1319
1344
  .e-gantt-dialog .e-dlg-header-content {
1320
1345
  border-bottom: 0 !important; /* stylelint-disable-line declaration-no-important */
1321
1346
  }
@@ -1323,6 +1348,10 @@
1323
1348
  border-radius: 0px;
1324
1349
  padding-bottom: 4px;
1325
1350
  }
1351
+ .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
1352
+ left: -11px;
1353
+ top: 0 !important;
1354
+ }
1326
1355
  .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
1327
1356
  border-radius: 50%;
1328
1357
  height: auto !important; /* stylelint-disable-line declaration-no-important */
@@ -1387,13 +1416,14 @@
1387
1416
  font-size: 14px;
1388
1417
  }
1389
1418
 
1390
- .e-bigger .e-gantt .e-gantt-chart .e-timeline-single-header-outer-div {
1391
- height: 64px !important; /* stylelint-disable-line declaration-no-important */
1419
+ .e-bigger .e-filter-popup .e-control .e-dialog .e-lib .e-popup .e-popup-open .e-excelfilter .e-gantt,
1420
+ .e-bigger .e-gantt .e-excelfilter .e-dialog .e-dlg-content {
1421
+ padding: 0 18px 0 0 !important; /* stylelint-disable-line declaration-no-important */
1392
1422
  }
1393
1423
 
1394
- .e-bigger .e-timeline-single-header-cell {
1395
- height: 64px !important; /* stylelint-disable-line declaration-no-important */
1396
- line-height: 64px !important; /* stylelint-disable-line declaration-no-important */
1424
+ .e-bigger .e-filter-popup .e-control .e-dialog .e-lib .e-popup .e-popup-open .e-excelfilter .e-gantt,
1425
+ .e-bigger .e-gantt .e-contextmenu-wrapper ul {
1426
+ padding: 0 !important; /* stylelint-disable-line declaration-no-important */
1397
1427
  }
1398
1428
 
1399
1429
  .e-gantt-tooltip-label {
@@ -1508,6 +1538,29 @@
1508
1538
  z-index: 1;
1509
1539
  }
1510
1540
 
1541
+ .e-gantt .e-gantt-chart .e-chart-root-container .e-content td.e-chart-row-cell.e-droptop {
1542
+ border-top: 1px solid #0078d6;
1543
+ border-width: 1px 0 0;
1544
+ }
1545
+
1546
+ .e-gantt .e-gantt-chart .e-chart-root-container .e-content td.e-chart-row-cell.e-dropbottom {
1547
+ border-bottom: 1px solid #0078d6;
1548
+ box-shadow: #0078d6;
1549
+ }
1550
+
1551
+ .e-gantt .e-gantt-chart .e-chart-root-container .e-content td.e-chart-row-cell.e-childborder {
1552
+ border-bottom: 1px solid #0078d6;
1553
+ border-top: 1px solid #0078d6;
1554
+ box-shadow: #0078d6;
1555
+ }
1556
+
1557
+ @media (max-width: 767px) {
1558
+ .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) {
1559
+ float: none;
1560
+ padding: 16px 12px 0 16px;
1561
+ width: 100%;
1562
+ }
1563
+ }
1511
1564
  /*! Gantt theme */
1512
1565
  .e-gantt .e-gantt-splitter {
1513
1566
  border-color: #eaeaea;
@@ -1560,6 +1613,13 @@
1560
1613
  background: rgb(209, 235, 255);
1561
1614
  opacity: 1;
1562
1615
  }
1616
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-leftfreeze,
1617
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-unfreeze,
1618
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-rightfreeze,
1619
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-fixedfreeze {
1620
+ background: rgb(209, 235, 255);
1621
+ opacity: 1;
1622
+ }
1563
1623
  .e-gantt .e-taskbar-resize-div {
1564
1624
  border-color: #0078d6;
1565
1625
  }
@@ -1876,6 +1936,7 @@
1876
1936
  }
1877
1937
  .e-gantt-dialog .e-dlg-header {
1878
1938
  color: #fff;
1939
+ position: relative;
1879
1940
  }
1880
1941
  .e-gantt-dialog .e-dlg-header-content {
1881
1942
  background: #0078d6;
@@ -280,6 +280,22 @@
280
280
  content: "\e7f9";
281
281
  }
282
282
 
283
+ .e-bigger .e-gantt .e-gantt-chart .e-taskbar-left-resizer,
284
+ .e-bigger .e-gantt .e-gantt-chart .e-taskbar-right-resizer {
285
+ display: inline-block;
286
+ position: absolute;
287
+ top: 0;
288
+ width: 25px;
289
+ z-index: 4;
290
+ }
291
+ .e-bigger .e-gantt .e-gantt-chart .e-left-resize-gripper,
292
+ .e-bigger .e-gantt .e-gantt-chart .e-right-resize-gripper {
293
+ -ms-flex-align: center;
294
+ align-items: center;
295
+ cursor: ew-resize;
296
+ display: -ms-inline-flexbox;
297
+ display: inline-flex;
298
+ }
283
299
  .e-bigger .e-gantt .e-gantt-chart .e-timeline-header-container {
284
300
  height: 64px;
285
301
  }
@@ -361,7 +377,8 @@
361
377
  padding: 16px 4px 16px 28px !important; /* stylelint-disable-line declaration-no-important */
362
378
  }
363
379
  .e-bigger .e-gantt .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
364
- left: 8px !important;
380
+ left: -11px;
381
+ top: 3px;
365
382
  }
366
383
  .e-bigger .e-gantt .e-dialog .e-dlg-content {
367
384
  margin-bottom: 0;
@@ -376,8 +393,8 @@
376
393
  .e-bigger .e-gantt .e-dialog .e-footer-content .e-btn {
377
394
  margin-left: 12px;
378
395
  }
379
- .e-bigger .e-gantt .e-dialog .e-dlg-header {
380
- line-height: 28px;
396
+ .e-bigger .e-gantt .e-dialog .e-dlg-header:not(.e-gantt-adaptive-dialog .e-dialog .e-dlg-header) {
397
+ line-height: 37px;
381
398
  }
382
399
  .e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
383
400
  padding: 28px 0 0 !important;
@@ -391,6 +408,7 @@
391
408
  }
392
409
  .e-bigger .e-gantt-dialog .e-dialog {
393
410
  border-radius: 6px;
411
+ width: 580px !important;
394
412
  }
395
413
  .e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
396
414
  padding: 0 16px !important; /* stylelint-disable-line declaration-no-important */
@@ -420,7 +438,7 @@
420
438
  border-radius: 6px 6px 0px 0px;
421
439
  padding-bottom: 20px;
422
440
  }
423
- .e-bigger .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
441
+ .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) {
424
442
  border-radius: 50%;
425
443
  height: auto !important; /* stylelint-disable-line declaration-no-important */
426
444
  width: auto;
@@ -471,6 +489,16 @@
471
489
  .e-bigger .e-gantt-dialog .e-input-group-icon.e-date-icon {
472
490
  min-width: 36px !important; /* stylelint-disable-line declaration-no-important */
473
491
  }
492
+ .e-bigger .e-gantt-dialog .e-gantt-adaptive-dialog .e-dialog {
493
+ position: absolute !important; /* stylelint-disable-line declaration-no-important */
494
+ left: 0 !important; /* stylelint-disable-line declaration-no-important */
495
+ }
496
+ .e-bigger .e-gantt-dialog .e-gantt-adaptive-dialog .e-dialog .e-dlg-header-content {
497
+ padding: 16px !important; /* stylelint-disable-line declaration-no-important */
498
+ }
499
+ .e-bigger .e-gantt-dialog .e-gantt-adaptive-dialog .e-dialog td {
500
+ width: 100% !important; /* stylelint-disable-line declaration-no-important */
501
+ }
474
502
  .e-bigger .e-predecessor-tooltip .e-arrow-tip-outer.e-tip-bottom {
475
503
  border-top: 8px solid #f3f2f1;
476
504
  border-top: 12.5px solid #f3f2f1;
@@ -698,9 +726,6 @@
698
726
  .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content {
699
727
  overflow-x: scroll !important; /* stylelint-disable-line declaration-no-important */
700
728
  }
701
- .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-gantt-frozen {
702
- overflow-x: hidden !important; /* stylelint-disable-line declaration-no-important */
703
- }
704
729
  .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content.e-gantt-scroll-padding {
705
730
  width: calc(100% + 17px);
706
731
  }
@@ -823,7 +848,7 @@
823
848
  box-sizing: border-box;
824
849
  }
825
850
  .e-gantt .e-gantt-chart .e-zero-spacing {
826
- border-spacing: 0;
851
+ border-spacing: 0.25px;
827
852
  }
828
853
  .e-gantt .e-gantt-chart .e-chart-row:first-child .e-chart-row-border {
829
854
  border-top: 0;
@@ -853,9 +878,6 @@
853
878
  vertical-align: middle;
854
879
  z-index: 3;
855
880
  }
856
- .e-gantt .e-gantt-chart .e-taskbar-main-container:hover {
857
- z-index: 4;
858
- }
859
881
  .e-gantt .e-gantt-chart .e-taskbar-main-container.e-gantt-multi-taskbar:hover {
860
882
  z-index: 4;
861
883
  }
@@ -1334,7 +1356,7 @@
1334
1356
  border-spacing: 0;
1335
1357
  }
1336
1358
  .e-gantt-dialog .e-item {
1337
- height: 241px;
1359
+ height: 100%;
1338
1360
  }
1339
1361
  .e-gantt-dialog .e-dependent-div {
1340
1362
  border-bottom-width: 0px;
@@ -1393,6 +1415,9 @@
1393
1415
  .e-gantt-dialog > .e-dlg-content {
1394
1416
  padding: 0 !important; /* stylelint-disable-line declaration-no-important */
1395
1417
  }
1418
+ .e-gantt-dialog .e-dlg-header {
1419
+ line-height: 30px;
1420
+ }
1396
1421
  .e-gantt-dialog .e-dlg-header-content {
1397
1422
  border-bottom: 0 !important; /* stylelint-disable-line declaration-no-important */
1398
1423
  }
@@ -1400,6 +1425,10 @@
1400
1425
  border-radius: 3px 3px 0px 0px;
1401
1426
  padding-bottom: 20px;
1402
1427
  }
1428
+ .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
1429
+ left: -11px;
1430
+ top: 0 !important;
1431
+ }
1403
1432
  .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
1404
1433
  border-radius: 50%;
1405
1434
  height: auto !important; /* stylelint-disable-line declaration-no-important */
@@ -1464,13 +1493,14 @@
1464
1493
  font-size: 16px;
1465
1494
  }
1466
1495
 
1467
- .e-bigger .e-gantt .e-gantt-chart .e-timeline-single-header-outer-div {
1468
- height: 64px !important; /* stylelint-disable-line declaration-no-important */
1496
+ .e-bigger .e-filter-popup .e-control .e-dialog .e-lib .e-popup .e-popup-open .e-excelfilter .e-gantt,
1497
+ .e-bigger .e-gantt .e-excelfilter .e-dialog .e-dlg-content {
1498
+ padding: 0 18px 0 0 !important; /* stylelint-disable-line declaration-no-important */
1469
1499
  }
1470
1500
 
1471
- .e-bigger .e-timeline-single-header-cell {
1472
- height: 64px !important; /* stylelint-disable-line declaration-no-important */
1473
- line-height: 64px !important; /* stylelint-disable-line declaration-no-important */
1501
+ .e-bigger .e-filter-popup .e-control .e-dialog .e-lib .e-popup .e-popup-open .e-excelfilter .e-gantt,
1502
+ .e-bigger .e-gantt .e-contextmenu-wrapper ul {
1503
+ padding: 0 !important; /* stylelint-disable-line declaration-no-important */
1474
1504
  }
1475
1505
 
1476
1506
  .e-gantt-tooltip-label {
@@ -1587,6 +1617,29 @@
1587
1617
  z-index: 1;
1588
1618
  }
1589
1619
 
1620
+ .e-gantt .e-gantt-chart .e-chart-root-container .e-content td.e-chart-row-cell.e-droptop {
1621
+ border-top: 2px solid #0078d4;
1622
+ border-width: 2px 0 0;
1623
+ }
1624
+
1625
+ .e-gantt .e-gantt-chart .e-chart-root-container .e-content td.e-chart-row-cell.e-dropbottom {
1626
+ border-bottom: 2px solid #0078d4;
1627
+ box-shadow: #0078d4;
1628
+ }
1629
+
1630
+ .e-gantt .e-gantt-chart .e-chart-root-container .e-content td.e-chart-row-cell.e-childborder {
1631
+ border-bottom: 2px solid #0078d4;
1632
+ border-top: 2px solid #0078d4;
1633
+ box-shadow: #0078d4;
1634
+ }
1635
+
1636
+ @media (max-width: 767px) {
1637
+ .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) {
1638
+ float: none;
1639
+ padding: 16px 12px 0 16px;
1640
+ width: 100%;
1641
+ }
1642
+ }
1590
1643
  /*! Gantt theme */
1591
1644
  .e-gantt .e-gantt-splitter {
1592
1645
  border-color: #292827;
@@ -1639,6 +1692,13 @@
1639
1692
  background: #292827;
1640
1693
  opacity: 0.9;
1641
1694
  }
1695
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-leftfreeze,
1696
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-unfreeze,
1697
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-rightfreeze,
1698
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-fixedfreeze {
1699
+ background: #292827;
1700
+ opacity: 1;
1701
+ }
1642
1702
  .e-gantt .e-taskbar-resize-div {
1643
1703
  border-color: #0078d4;
1644
1704
  }
@@ -1955,6 +2015,7 @@
1955
2015
  }
1956
2016
  .e-gantt-dialog .e-dlg-header {
1957
2017
  color: #f3f2f1;
2018
+ position: relative;
1958
2019
  }
1959
2020
  .e-gantt-dialog .e-dlg-header-content {
1960
2021
  background: #201f1e;
@@ -280,6 +280,22 @@
280
280
  content: "\e7f9";
281
281
  }
282
282
 
283
+ .e-bigger .e-gantt .e-gantt-chart .e-taskbar-left-resizer,
284
+ .e-bigger .e-gantt .e-gantt-chart .e-taskbar-right-resizer {
285
+ display: inline-block;
286
+ position: absolute;
287
+ top: 0;
288
+ width: 25px;
289
+ z-index: 4;
290
+ }
291
+ .e-bigger .e-gantt .e-gantt-chart .e-left-resize-gripper,
292
+ .e-bigger .e-gantt .e-gantt-chart .e-right-resize-gripper {
293
+ -ms-flex-align: center;
294
+ align-items: center;
295
+ cursor: ew-resize;
296
+ display: -ms-inline-flexbox;
297
+ display: inline-flex;
298
+ }
283
299
  .e-bigger .e-gantt .e-gantt-chart .e-timeline-header-container {
284
300
  height: 64px;
285
301
  }
@@ -361,7 +377,8 @@
361
377
  padding: 16px 4px 16px 28px !important; /* stylelint-disable-line declaration-no-important */
362
378
  }
363
379
  .e-bigger .e-gantt .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
364
- left: 8px !important;
380
+ left: -11px;
381
+ top: 3px;
365
382
  }
366
383
  .e-bigger .e-gantt .e-dialog .e-dlg-content {
367
384
  margin-bottom: 0;
@@ -376,8 +393,8 @@
376
393
  .e-bigger .e-gantt .e-dialog .e-footer-content .e-btn {
377
394
  margin-left: 12px;
378
395
  }
379
- .e-bigger .e-gantt .e-dialog .e-dlg-header {
380
- line-height: 28px;
396
+ .e-bigger .e-gantt .e-dialog .e-dlg-header:not(.e-gantt-adaptive-dialog .e-dialog .e-dlg-header) {
397
+ line-height: 37px;
381
398
  }
382
399
  .e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
383
400
  padding: 28px 0 0 !important;
@@ -391,6 +408,7 @@
391
408
  }
392
409
  .e-bigger .e-gantt-dialog .e-dialog {
393
410
  border-radius: 6px;
411
+ width: 580px !important;
394
412
  }
395
413
  .e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
396
414
  padding: 0 16px !important; /* stylelint-disable-line declaration-no-important */
@@ -420,7 +438,7 @@
420
438
  border-radius: 6px 6px 0px 0px;
421
439
  padding-bottom: 20px;
422
440
  }
423
- .e-bigger .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
441
+ .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) {
424
442
  border-radius: 50%;
425
443
  height: auto !important; /* stylelint-disable-line declaration-no-important */
426
444
  width: auto;
@@ -471,6 +489,16 @@
471
489
  .e-bigger .e-gantt-dialog .e-input-group-icon.e-date-icon {
472
490
  min-width: 36px !important; /* stylelint-disable-line declaration-no-important */
473
491
  }
492
+ .e-bigger .e-gantt-dialog .e-gantt-adaptive-dialog .e-dialog {
493
+ position: absolute !important; /* stylelint-disable-line declaration-no-important */
494
+ left: 0 !important; /* stylelint-disable-line declaration-no-important */
495
+ }
496
+ .e-bigger .e-gantt-dialog .e-gantt-adaptive-dialog .e-dialog .e-dlg-header-content {
497
+ padding: 16px !important; /* stylelint-disable-line declaration-no-important */
498
+ }
499
+ .e-bigger .e-gantt-dialog .e-gantt-adaptive-dialog .e-dialog td {
500
+ width: 100% !important; /* stylelint-disable-line declaration-no-important */
501
+ }
474
502
  .e-bigger .e-predecessor-tooltip .e-arrow-tip-outer.e-tip-bottom {
475
503
  border-top: 8px solid #323130;
476
504
  border-top: 12.5px solid #323130;
@@ -698,9 +726,6 @@
698
726
  .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content {
699
727
  overflow-x: scroll !important; /* stylelint-disable-line declaration-no-important */
700
728
  }
701
- .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-gantt-frozen {
702
- overflow-x: hidden !important; /* stylelint-disable-line declaration-no-important */
703
- }
704
729
  .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content.e-gantt-scroll-padding {
705
730
  width: calc(100% + 17px);
706
731
  }
@@ -823,7 +848,7 @@
823
848
  box-sizing: border-box;
824
849
  }
825
850
  .e-gantt .e-gantt-chart .e-zero-spacing {
826
- border-spacing: 0;
851
+ border-spacing: 0.25px;
827
852
  }
828
853
  .e-gantt .e-gantt-chart .e-chart-row:first-child .e-chart-row-border {
829
854
  border-top: 0;
@@ -853,9 +878,6 @@
853
878
  vertical-align: middle;
854
879
  z-index: 3;
855
880
  }
856
- .e-gantt .e-gantt-chart .e-taskbar-main-container:hover {
857
- z-index: 4;
858
- }
859
881
  .e-gantt .e-gantt-chart .e-taskbar-main-container.e-gantt-multi-taskbar:hover {
860
882
  z-index: 4;
861
883
  }
@@ -1334,7 +1356,7 @@
1334
1356
  border-spacing: 0;
1335
1357
  }
1336
1358
  .e-gantt-dialog .e-item {
1337
- height: 241px;
1359
+ height: 100%;
1338
1360
  }
1339
1361
  .e-gantt-dialog .e-dependent-div {
1340
1362
  border-bottom-width: 0px;
@@ -1393,6 +1415,9 @@
1393
1415
  .e-gantt-dialog > .e-dlg-content {
1394
1416
  padding: 0 !important; /* stylelint-disable-line declaration-no-important */
1395
1417
  }
1418
+ .e-gantt-dialog .e-dlg-header {
1419
+ line-height: 30px;
1420
+ }
1396
1421
  .e-gantt-dialog .e-dlg-header-content {
1397
1422
  border-bottom: 0 !important; /* stylelint-disable-line declaration-no-important */
1398
1423
  }
@@ -1400,6 +1425,10 @@
1400
1425
  border-radius: 3px 3px 0px 0px;
1401
1426
  padding-bottom: 20px;
1402
1427
  }
1428
+ .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
1429
+ left: -11px;
1430
+ top: 0 !important;
1431
+ }
1403
1432
  .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
1404
1433
  border-radius: 50%;
1405
1434
  height: auto !important; /* stylelint-disable-line declaration-no-important */
@@ -1464,13 +1493,14 @@
1464
1493
  font-size: 16px;
1465
1494
  }
1466
1495
 
1467
- .e-bigger .e-gantt .e-gantt-chart .e-timeline-single-header-outer-div {
1468
- height: 64px !important; /* stylelint-disable-line declaration-no-important */
1496
+ .e-bigger .e-filter-popup .e-control .e-dialog .e-lib .e-popup .e-popup-open .e-excelfilter .e-gantt,
1497
+ .e-bigger .e-gantt .e-excelfilter .e-dialog .e-dlg-content {
1498
+ padding: 0 18px 0 0 !important; /* stylelint-disable-line declaration-no-important */
1469
1499
  }
1470
1500
 
1471
- .e-bigger .e-timeline-single-header-cell {
1472
- height: 64px !important; /* stylelint-disable-line declaration-no-important */
1473
- line-height: 64px !important; /* stylelint-disable-line declaration-no-important */
1501
+ .e-bigger .e-filter-popup .e-control .e-dialog .e-lib .e-popup .e-popup-open .e-excelfilter .e-gantt,
1502
+ .e-bigger .e-gantt .e-contextmenu-wrapper ul {
1503
+ padding: 0 !important; /* stylelint-disable-line declaration-no-important */
1474
1504
  }
1475
1505
 
1476
1506
  .e-gantt-tooltip-label {
@@ -1587,6 +1617,29 @@
1587
1617
  z-index: 1;
1588
1618
  }
1589
1619
 
1620
+ .e-gantt .e-gantt-chart .e-chart-root-container .e-content td.e-chart-row-cell.e-droptop {
1621
+ border-top: 2px solid #0078d4;
1622
+ border-width: 2px 0 0;
1623
+ }
1624
+
1625
+ .e-gantt .e-gantt-chart .e-chart-root-container .e-content td.e-chart-row-cell.e-dropbottom {
1626
+ border-bottom: 2px solid #0078d4;
1627
+ box-shadow: #0078d4;
1628
+ }
1629
+
1630
+ .e-gantt .e-gantt-chart .e-chart-root-container .e-content td.e-chart-row-cell.e-childborder {
1631
+ border-bottom: 2px solid #0078d4;
1632
+ border-top: 2px solid #0078d4;
1633
+ box-shadow: #0078d4;
1634
+ }
1635
+
1636
+ @media (max-width: 767px) {
1637
+ .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) {
1638
+ float: none;
1639
+ padding: 16px 12px 0 16px;
1640
+ width: 100%;
1641
+ }
1642
+ }
1590
1643
  /*! Gantt theme */
1591
1644
  .e-gantt .e-gantt-splitter {
1592
1645
  border-color: #edebe9;
@@ -1639,6 +1692,13 @@
1639
1692
  background: #edebe9;
1640
1693
  opacity: 0.9;
1641
1694
  }
1695
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-leftfreeze,
1696
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-unfreeze,
1697
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-rightfreeze,
1698
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-fixedfreeze {
1699
+ background: #edebe9;
1700
+ opacity: 1;
1701
+ }
1642
1702
  .e-gantt .e-taskbar-resize-div {
1643
1703
  border-color: #0078d4;
1644
1704
  }
@@ -1955,6 +2015,7 @@
1955
2015
  }
1956
2016
  .e-gantt-dialog .e-dlg-header {
1957
2017
  color: #201f1e;
2018
+ position: relative;
1958
2019
  }
1959
2020
  .e-gantt-dialog .e-dlg-header-content {
1960
2021
  background: #faf9f8;