@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
@@ -194,6 +194,22 @@
194
194
  }
195
195
  }
196
196
  /* stylelint-disable */
197
+ .e-bigger .e-gantt .e-gantt-chart .e-taskbar-left-resizer,
198
+ .e-bigger .e-gantt .e-gantt-chart .e-taskbar-right-resizer {
199
+ display: inline-block;
200
+ position: absolute;
201
+ top: 0;
202
+ width: 25px;
203
+ z-index: 4;
204
+ }
205
+ .e-bigger .e-gantt .e-gantt-chart .e-left-resize-gripper,
206
+ .e-bigger .e-gantt .e-gantt-chart .e-right-resize-gripper {
207
+ -ms-flex-align: center;
208
+ align-items: center;
209
+ cursor: ew-resize;
210
+ display: -ms-inline-flexbox;
211
+ display: inline-flex;
212
+ }
197
213
  .e-bigger .e-gantt .e-gantt-chart .e-timeline-header-container {
198
214
  height: 64px;
199
215
  }
@@ -273,7 +289,8 @@
273
289
  padding: 16px 4px 12px 18px !important; /* stylelint-disable-line declaration-no-important */
274
290
  }
275
291
  .e-bigger .e-gantt .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
276
- left: 2px !important;
292
+ left: -11px;
293
+ top: 3px;
277
294
  }
278
295
  .e-bigger .e-gantt .e-dialog .e-btn .e-btn-icon.e-icon-dlg-close {
279
296
  font-size: 12px !important;
@@ -285,8 +302,8 @@
285
302
  .e-bigger .e-gantt .e-dialog .e-footer-content .e-btn {
286
303
  margin-left: 12px;
287
304
  }
288
- .e-bigger .e-gantt .e-dialog .e-dlg-header {
289
- line-height: 28px;
305
+ .e-bigger .e-gantt .e-dialog .e-dlg-header:not(.e-gantt-adaptive-dialog .e-dialog .e-dlg-header) {
306
+ line-height: 37px;
290
307
  }
291
308
  .e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
292
309
  padding: 20px 0 0 !important;
@@ -300,6 +317,7 @@
300
317
  }
301
318
  .e-bigger .e-gantt-dialog .e-dialog {
302
319
  border-radius: 6px;
320
+ width: 554px !important;
303
321
  }
304
322
  .e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
305
323
  padding: 0 16px !important; /* stylelint-disable-line declaration-no-important */
@@ -329,7 +347,7 @@
329
347
  border-radius: 6px 6px 0px 0px;
330
348
  padding-bottom: 4px;
331
349
  }
332
- .e-bigger .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
350
+ .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) {
333
351
  border-radius: 50%;
334
352
  height: auto !important; /* stylelint-disable-line declaration-no-important */
335
353
  width: auto;
@@ -379,6 +397,16 @@
379
397
  .e-bigger .e-gantt-dialog .e-input-group-icon.e-date-icon {
380
398
  min-width: 36px !important; /* stylelint-disable-line declaration-no-important */
381
399
  }
400
+ .e-bigger .e-gantt-dialog .e-gantt-adaptive-dialog .e-dialog {
401
+ position: absolute !important; /* stylelint-disable-line declaration-no-important */
402
+ left: 0 !important; /* stylelint-disable-line declaration-no-important */
403
+ }
404
+ .e-bigger .e-gantt-dialog .e-gantt-adaptive-dialog .e-dialog .e-dlg-header-content {
405
+ padding: 16px !important; /* stylelint-disable-line declaration-no-important */
406
+ }
407
+ .e-bigger .e-gantt-dialog .e-gantt-adaptive-dialog .e-dialog td {
408
+ width: 100% !important; /* stylelint-disable-line declaration-no-important */
409
+ }
382
410
  .e-bigger .e-predecessor-tooltip .e-arrow-tip-outer.e-tip-bottom {
383
411
  border-top: 8px solid #000;
384
412
  }
@@ -604,9 +632,6 @@
604
632
  .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content {
605
633
  overflow-x: scroll !important; /* stylelint-disable-line declaration-no-important */
606
634
  }
607
- .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-gantt-frozen {
608
- overflow-x: hidden !important; /* stylelint-disable-line declaration-no-important */
609
- }
610
635
  .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content.e-gantt-scroll-padding {
611
636
  width: calc(100% + 17px);
612
637
  }
@@ -729,7 +754,7 @@
729
754
  box-sizing: border-box;
730
755
  }
731
756
  .e-gantt .e-gantt-chart .e-zero-spacing {
732
- border-spacing: 0;
757
+ border-spacing: 0.25px;
733
758
  }
734
759
  .e-gantt .e-gantt-chart .e-chart-row:first-child .e-chart-row-border {
735
760
  border-top: 0;
@@ -759,9 +784,6 @@
759
784
  vertical-align: middle;
760
785
  z-index: 3;
761
786
  }
762
- .e-gantt .e-gantt-chart .e-taskbar-main-container:hover {
763
- z-index: 4;
764
- }
765
787
  .e-gantt .e-gantt-chart .e-taskbar-main-container.e-gantt-multi-taskbar:hover {
766
788
  z-index: 4;
767
789
  }
@@ -1238,7 +1260,7 @@
1238
1260
  border-spacing: 0;
1239
1261
  }
1240
1262
  .e-gantt-dialog .e-item {
1241
- height: 241px;
1263
+ height: 100%;
1242
1264
  }
1243
1265
  .e-gantt-dialog .e-dependent-div {
1244
1266
  border-bottom-width: 1px;
@@ -1297,6 +1319,9 @@
1297
1319
  .e-gantt-dialog > .e-dlg-content {
1298
1320
  padding: 0 !important; /* stylelint-disable-line declaration-no-important */
1299
1321
  }
1322
+ .e-gantt-dialog .e-dlg-header {
1323
+ line-height: 30px;
1324
+ }
1300
1325
  .e-gantt-dialog .e-dlg-header-content {
1301
1326
  border-bottom: 0 !important; /* stylelint-disable-line declaration-no-important */
1302
1327
  }
@@ -1304,6 +1329,10 @@
1304
1329
  border-radius: 3px 3px 0px 0px;
1305
1330
  padding-bottom: 4px;
1306
1331
  }
1332
+ .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
1333
+ left: -11px;
1334
+ top: 0px !important;
1335
+ }
1307
1336
  .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
1308
1337
  border-radius: 50%;
1309
1338
  height: auto !important; /* stylelint-disable-line declaration-no-important */
@@ -1368,13 +1397,14 @@
1368
1397
  font-size: 13px;
1369
1398
  }
1370
1399
 
1371
- .e-bigger .e-gantt .e-gantt-chart .e-timeline-single-header-outer-div {
1372
- height: 64px !important; /* stylelint-disable-line declaration-no-important */
1400
+ .e-bigger .e-filter-popup .e-control .e-dialog .e-lib .e-popup .e-popup-open .e-excelfilter .e-gantt,
1401
+ .e-bigger .e-gantt .e-excelfilter .e-dialog .e-dlg-content {
1402
+ padding: 0 18px 0 0 !important; /* stylelint-disable-line declaration-no-important */
1373
1403
  }
1374
1404
 
1375
- .e-bigger .e-timeline-single-header-cell {
1376
- height: 64px !important; /* stylelint-disable-line declaration-no-important */
1377
- line-height: 64px !important; /* stylelint-disable-line declaration-no-important */
1405
+ .e-bigger .e-filter-popup .e-control .e-dialog .e-lib .e-popup .e-popup-open .e-excelfilter .e-gantt,
1406
+ .e-bigger .e-gantt .e-contextmenu-wrapper ul {
1407
+ padding: 0 !important; /* stylelint-disable-line declaration-no-important */
1378
1408
  }
1379
1409
 
1380
1410
  .e-gantt-tooltip-label {
@@ -1489,6 +1519,29 @@
1489
1519
  z-index: 1;
1490
1520
  }
1491
1521
 
1522
+ .e-gantt .e-gantt-chart .e-chart-root-container .e-content td.e-chart-row-cell.e-droptop {
1523
+ border-top: 1px solid #400074;
1524
+ border-width: 1px 0 0;
1525
+ }
1526
+
1527
+ .e-gantt .e-gantt-chart .e-chart-root-container .e-content td.e-chart-row-cell.e-dropbottom {
1528
+ border-bottom: 1px solid #400074;
1529
+ box-shadow: #400074;
1530
+ }
1531
+
1532
+ .e-gantt .e-gantt-chart .e-chart-root-container .e-content td.e-chart-row-cell.e-childborder {
1533
+ border-bottom: 1px solid #400074;
1534
+ border-top: 1px solid #400074;
1535
+ box-shadow: #400074;
1536
+ }
1537
+
1538
+ @media (max-width: 767px) {
1539
+ .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) {
1540
+ float: none;
1541
+ padding: 16px 12px 0 16px;
1542
+ width: 100%;
1543
+ }
1544
+ }
1492
1545
  /*! Gantt theme */
1493
1546
  .e-gantt .e-gantt-splitter {
1494
1547
  border-color: #757575;
@@ -1541,6 +1594,13 @@
1541
1594
  background: #400074;
1542
1595
  opacity: 1;
1543
1596
  }
1597
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-leftfreeze,
1598
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-unfreeze,
1599
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-rightfreeze,
1600
+ .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active.e-fixedfreeze {
1601
+ background: #400074;
1602
+ opacity: 1;
1603
+ }
1544
1604
  .e-gantt .e-taskbar-resize-div {
1545
1605
  border-color: #29c400;
1546
1606
  }
@@ -1857,6 +1917,7 @@
1857
1917
  }
1858
1918
  .e-gantt-dialog .e-dlg-header {
1859
1919
  color: #000;
1920
+ position: relative;
1860
1921
  }
1861
1922
  .e-gantt-dialog .e-dlg-header-content {
1862
1923
  background: #6e06f1;
@@ -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;