@syncfusion/ej2-gantt 20.1.58 → 20.2.36

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 (105) hide show
  1. package/CHANGELOG.md +37 -0
  2. package/dist/ej2-gantt.umd.min.js +2 -2
  3. package/dist/ej2-gantt.umd.min.js.map +1 -1
  4. package/dist/es6/ej2-gantt.es2015.js +1100 -74
  5. package/dist/es6/ej2-gantt.es2015.js.map +1 -1
  6. package/dist/es6/ej2-gantt.es5.js +1099 -71
  7. package/dist/es6/ej2-gantt.es5.js.map +1 -1
  8. package/dist/global/ej2-gantt.min.js +2 -2
  9. package/dist/global/ej2-gantt.min.js.map +1 -1
  10. package/dist/global/index.d.ts +1 -1
  11. package/package.json +18 -18
  12. package/src/gantt/actions/actions.d.ts +1 -0
  13. package/src/gantt/actions/actions.js +1 -0
  14. package/src/gantt/actions/cell-edit.js +5 -3
  15. package/src/gantt/actions/connector-line-edit.js +20 -6
  16. package/src/gantt/actions/context-menu.js +3 -4
  17. package/src/gantt/actions/critical-path.d.ts +26 -0
  18. package/src/gantt/actions/critical-path.js +735 -0
  19. package/src/gantt/actions/dependency.js +3 -0
  20. package/src/gantt/actions/dialog-edit.js +1 -1
  21. package/src/gantt/actions/edit.js +29 -3
  22. package/src/gantt/actions/filter.js +1 -1
  23. package/src/gantt/actions/keyboard.js +2 -2
  24. package/src/gantt/actions/selection.js +3 -0
  25. package/src/gantt/actions/taskbar-edit.js +6 -4
  26. package/src/gantt/actions/toolbar.js +22 -4
  27. package/src/gantt/base/css-constants.d.ts +12 -0
  28. package/src/gantt/base/css-constants.js +12 -0
  29. package/src/gantt/base/date-processor.d.ts +1 -1
  30. package/src/gantt/base/date-processor.js +8 -2
  31. package/src/gantt/base/enum.d.ts +3 -1
  32. package/src/gantt/base/gantt-chart.js +6 -2
  33. package/src/gantt/base/gantt-model.d.ts +8 -1
  34. package/src/gantt/base/gantt.d.ts +32 -1
  35. package/src/gantt/base/gantt.js +133 -5
  36. package/src/gantt/base/interface.d.ts +16 -0
  37. package/src/gantt/base/splitter.js +4 -0
  38. package/src/gantt/base/task-processor.js +19 -6
  39. package/src/gantt/base/tree-grid.js +1 -1
  40. package/src/gantt/export/export-helper.js +19 -6
  41. package/src/gantt/export/pdf-base/pdf-style/gantt-theme.js +16 -0
  42. package/src/gantt/renderer/chart-rows.js +16 -5
  43. package/src/gantt/renderer/nonworking-day.js +5 -2
  44. package/src/gantt/renderer/timeline.js +35 -14
  45. package/src/global.js +1 -1
  46. package/styles/bootstrap-dark.css +272 -14
  47. package/styles/bootstrap.css +271 -14
  48. package/styles/bootstrap4.css +273 -12
  49. package/styles/bootstrap5-dark.css +272 -15
  50. package/styles/bootstrap5.css +272 -15
  51. package/styles/fabric-dark.css +270 -12
  52. package/styles/fabric.css +276 -18
  53. package/styles/fluent-dark.css +272 -14
  54. package/styles/fluent.css +272 -14
  55. package/styles/gantt/_bootstrap-dark-definition.scss +59 -16
  56. package/styles/gantt/_bootstrap-definition.scss +57 -14
  57. package/styles/gantt/_bootstrap4-definition.scss +65 -21
  58. package/styles/gantt/_bootstrap5-definition.scss +55 -12
  59. package/styles/gantt/_fabric-dark-definition.scss +58 -15
  60. package/styles/gantt/_fabric-definition.scss +58 -15
  61. package/styles/gantt/_fluent-definition.scss +53 -10
  62. package/styles/gantt/_fusionnew-definition.scss +212 -0
  63. package/styles/gantt/_highcontrast-definition.scss +57 -14
  64. package/styles/gantt/_highcontrast-light-definition.scss +55 -12
  65. package/styles/gantt/_layout.scss +293 -7
  66. package/styles/gantt/_material-dark-definition.scss +60 -16
  67. package/styles/gantt/_material-definition.scss +65 -21
  68. package/styles/gantt/_material3-definition.scss +213 -0
  69. package/styles/gantt/_tailwind-definition.scss +52 -8
  70. package/styles/gantt/_theme.scss +56 -1
  71. package/styles/gantt/bootstrap-dark.css +272 -14
  72. package/styles/gantt/bootstrap.css +271 -14
  73. package/styles/gantt/bootstrap4.css +273 -12
  74. package/styles/gantt/bootstrap5-dark.css +272 -15
  75. package/styles/gantt/bootstrap5.css +272 -15
  76. package/styles/gantt/fabric-dark.css +270 -12
  77. package/styles/gantt/fabric.css +276 -18
  78. package/styles/gantt/fluent-dark.css +272 -14
  79. package/styles/gantt/fluent.css +272 -14
  80. package/styles/gantt/highcontrast-light.css +260 -13
  81. package/styles/gantt/highcontrast.css +271 -13
  82. package/styles/gantt/icons/_bootstrap-dark.scss +12 -1
  83. package/styles/gantt/icons/_bootstrap.scss +12 -1
  84. package/styles/gantt/icons/_bootstrap4.scss +12 -1
  85. package/styles/gantt/icons/_bootstrap5.scss +12 -0
  86. package/styles/gantt/icons/_fabric-dark.scss +12 -0
  87. package/styles/gantt/icons/_fabric.scss +12 -0
  88. package/styles/gantt/icons/_fluent.scss +12 -0
  89. package/styles/gantt/icons/_fusionnew.scss +120 -0
  90. package/styles/gantt/icons/_highcontrast.scss +12 -0
  91. package/styles/gantt/icons/_material-dark.scss +12 -0
  92. package/styles/gantt/icons/_material.scss +12 -0
  93. package/styles/gantt/icons/_material3.scss +124 -0
  94. package/styles/gantt/icons/_tailwind-dark.scss +12 -0
  95. package/styles/gantt/icons/_tailwind.scss +12 -0
  96. package/styles/gantt/material-dark.css +277 -12
  97. package/styles/gantt/material.css +279 -14
  98. package/styles/gantt/tailwind-dark.css +279 -15
  99. package/styles/gantt/tailwind.css +276 -12
  100. package/styles/highcontrast-light.css +260 -13
  101. package/styles/highcontrast.css +271 -13
  102. package/styles/material-dark.css +277 -12
  103. package/styles/material.css +279 -14
  104. package/styles/tailwind-dark.css +279 -15
  105. package/styles/tailwind.css +276 -12
@@ -198,6 +198,9 @@
198
198
  .e-gantt .e-add::before {
199
199
  content: "\e7f9";
200
200
  }
201
+ .e-gantt .e-critical-path::before {
202
+ content: "\e93a";
203
+ }
201
204
  .e-gantt .e-edit::before {
202
205
  content: "\e81e";
203
206
  }
@@ -278,26 +281,226 @@
278
281
  content: "\e903";
279
282
  }
280
283
 
284
+ .e-gantt-tooltip-arrow-left::before {
285
+ content: "\e977";
286
+ }
287
+
288
+ .e-gantt-tooltip-arrow-right::before {
289
+ content: "\e85f";
290
+ }
291
+
281
292
  .e-bigger .e-gantt .e-gantt-chart .e-timeline-header-container {
282
293
  height: 64px;
283
294
  }
284
295
  .e-bigger .e-gantt .e-gantt-chart .e-timeline-top-header-cell {
285
296
  height: 32px;
286
297
  }
298
+ .e-bigger .e-gantt .e-gantt-chart .e-event-markers .e-span-label {
299
+ border-radius: 4px !important;
300
+ font-size: 12px !important;
301
+ height: 26px !important;
302
+ padding: 4px 12px 4px 9px !important;
303
+ top: 65px !important;
304
+ }
305
+ .e-bigger .e-gantt .e-gantt-chart .e-event-markers .e-gantt-right-arrow {
306
+ border-bottom: 6px solid transparent;
307
+ border-right: 6px solid transparent;
308
+ border-right-color: #cae8ff;
309
+ border-top: 6px solid transparent;
310
+ top: 73px !important;
311
+ }
312
+ .e-bigger .e-gantt .e-gantt-chart .e-left-resize-gripper::before,
313
+ .e-bigger .e-gantt .e-gantt-chart .e-right-resize-gripper::before {
314
+ content: "\e92c";
315
+ }
316
+ .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right,
317
+ .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left,
318
+ .e-bigger .e-gantt .e-gantt-chart .e-right-connectorpoint-outer-div,
319
+ .e-bigger .e-gantt .e-gantt-chart .e-left-connectorpoint-outer-div {
320
+ border-radius: 50%;
321
+ display: inline-block;
322
+ position: absolute;
323
+ }
324
+ .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover,
325
+ .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
326
+ border-style: solid;
327
+ border-width: 1px;
328
+ box-sizing: content-box;
329
+ cursor: pointer;
330
+ display: inline-block;
331
+ }
332
+ .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover,
333
+ .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
334
+ background-color: #005a9e;
335
+ border-color: #fff;
336
+ }
337
+ .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover:hover,
338
+ .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover:hover {
339
+ background-color: #005a9e;
340
+ border-color: #fff;
341
+ outline: 2px solid #9fa8da;
342
+ }
343
+ .e-bigger .e-gantt .e-tab .e-content {
344
+ height: 241px !important;
345
+ }
287
346
  .e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
288
347
  height: 63px !important;
289
348
  }
349
+ .e-bigger .e-gantt .e-dialog .e-dlg-header-content {
350
+ padding: 16px 14px 17px 16px !important;
351
+ }
352
+ .e-bigger .e-gantt .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
353
+ left: 1px !important;
354
+ }
355
+ .e-bigger .e-gantt .e-dialog .e-btn .e-btn-icon.e-icon-dlg-close {
356
+ font-size: 12px !important;
357
+ }
358
+ .e-bigger .e-gantt .e-dialog .e-footer-content {
359
+ height: 70px !important;
360
+ padding: 16px !important;
361
+ }
362
+ .e-bigger .e-gantt .e-dialog .e-footer-content .e-btn {
363
+ margin-left: 12px;
364
+ }
365
+ .e-bigger .e-gantt .e-dialog .e-dlg-header {
366
+ line-height: 28px;
367
+ }
368
+ .e-bigger .e-gantt .e-filter-popup {
369
+ width: 350px !important;
370
+ }
371
+ .e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
372
+ padding: 14px 0 0 !important;
373
+ }
374
+ .e-bigger .e-gantt .e-filter-popup .e-dlg-content {
375
+ border-radius: 6px !important;
376
+ padding: 20px 16px 6px 16px !important;
377
+ }
290
378
  .e-bigger .e-columnmenu {
291
379
  top: 38px;
292
380
  }
381
+ .e-bigger .e-gantt-dialog {
382
+ border-radius: 6px;
383
+ width: 550px !important;
384
+ }
385
+ .e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
386
+ padding: 0 16px !important;
387
+ }
293
388
  .e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(odd) {
294
- padding: 16px 18px 0 18px;
389
+ padding: 16px 9px 0 16px;
295
390
  }
296
391
  .e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(even) {
297
- padding: 16px 18px 0 0;
392
+ padding: 16px 16px 0 9px;
298
393
  }
299
394
  .e-bigger .e-gantt-dialog .e-edit-form-row.e-scroll .e-edit-form-column:nth-child(even) {
300
- padding: 16px 18px 0 0;
395
+ padding: 16px 18px 0 9px;
396
+ }
397
+ .e-bigger .e-gantt-dialog .e-edit-form-row {
398
+ height: 241px !important;
399
+ }
400
+ .e-bigger .e-gantt-dialog .e-edit-form-column {
401
+ height: 78px !important;
402
+ }
403
+ .e-bigger .e-gantt-dialog .e-dlg-header-content {
404
+ border-bottom: 0 !important;
405
+ }
406
+ .e-bigger .e-gantt-dialog > .e-dlg-content {
407
+ border-radius: 0 !important;
408
+ }
409
+ .e-bigger .e-gantt-dialog .e-dlg-header-content {
410
+ border-radius: 6px 6px 0px 0px;
411
+ padding-bottom: 4px;
412
+ }
413
+ .e-bigger .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
414
+ border-radius: 50%;
415
+ height: auto !important;
416
+ width: auto;
417
+ }
418
+ .e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
419
+ margin-left: 4px !important;
420
+ }
421
+ .e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
422
+ font-size: 16px !important;
423
+ }
424
+ .e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
425
+ min-height: 26px !important;
426
+ min-width: 35.82px !important;
427
+ }
428
+ .e-bigger .e-gantt-dialog .e-btn.e-flat {
429
+ line-height: 24px;
430
+ padding: 6px 16px 6px 15px !important;
431
+ }
432
+ .e-bigger .e-gantt-dialog .e-btn.e-primary {
433
+ padding: 6px 21px 6px 23px !important;
434
+ }
435
+ .e-bigger .e-gantt-dialog .e-datetime-wrapper .e-time-icon.e-icons::before {
436
+ font-size: 16px !important;
437
+ }
438
+ .e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text {
439
+ font-size: 14px;
440
+ line-height: 22px;
441
+ }
442
+ .e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input[disabled] ~ label.e-label-top.e-float-text {
443
+ font-size: 14px;
444
+ line-height: 22px;
445
+ }
446
+ .e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input {
447
+ height: 27px !important;
448
+ padding: 5px 0 11px !important;
449
+ }
450
+ .e-bigger .e-gantt-dialog .e-numeric.e-control-wrapper.e-input-group .e-input-group-icon {
451
+ min-height: 26px !important;
452
+ min-width: 35.82px !important;
453
+ }
454
+ .e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-time-icon {
455
+ min-height: 26px !important;
456
+ min-width: 35.82px !important;
457
+ }
458
+ .e-bigger .e-gantt-dialog .e-input-group.e-control-wrapper {
459
+ height: 44px;
460
+ }
461
+ .e-bigger .e-gantt-dialog .e-input-group-icon.e-date-icon {
462
+ min-width: 36px !important;
463
+ }
464
+ .e-bigger .e-gantt-dialog .e-datetime-wrapper .e-input-group-icon.e-time-icon {
465
+ margin: 5px 0 6px !important;
466
+ }
467
+ .e-bigger .e-gantt-dialog .e-input-group.e-control-wrapper .e-input-group-icon {
468
+ margin-right: 0 !important;
469
+ }
470
+ .e-bigger .e-predecessor-tooltip {
471
+ background-color: #000;
472
+ }
473
+ .e-bigger .e-predecessor-tooltip .e-left-btn:disabled {
474
+ color: #757575 !important;
475
+ }
476
+ .e-bigger .e-predecessor-tooltip .e-right-btn:disabled {
477
+ color: #757575 !important;
478
+ }
479
+ .e-bigger .e-predecessor-tooltip .e-tip-content {
480
+ padding: 3px !important;
481
+ }
482
+ .e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type {
483
+ background-color: #000;
484
+ border-color: #000;
485
+ color: #fff;
486
+ font-size: 12px;
487
+ line-height: 18px;
488
+ padding: 0 8px 0 0;
489
+ }
490
+ .e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:last-of-type {
491
+ background-color: #000;
492
+ border-color: #000;
493
+ color: #fff;
494
+ font-size: 12px;
495
+ line-height: 18px;
496
+ padding: 0 0 0 8px;
497
+ }
498
+ .e-bigger .e-predecessor-dialog {
499
+ background-color: #f3f3f3;
500
+ }
501
+ .e-bigger .e-predecessor-dialog .e-dlg-content {
502
+ background-color: #f3f3f3;
503
+ padding: 10px 9px 9px 14px !important;
301
504
  }
302
505
 
303
506
  .e-gantt {
@@ -452,9 +655,11 @@
452
655
  position: absolute;
453
656
  }
454
657
  .e-gantt .e-gantt-chart .e-chart-root-container .e-holiday-container {
658
+ height: 100%;
455
659
  position: absolute;
456
660
  }
457
661
  .e-gantt .e-gantt-chart .e-chart-root-container .e-weekend-container {
662
+ height: 100%;
458
663
  position: absolute;
459
664
  }
460
665
  .e-gantt .e-gantt-chart .e-timeline-header-container {
@@ -703,37 +908,35 @@
703
908
  cursor: col-resize;
704
909
  }
705
910
  .e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler {
706
- border-style: solid;
707
911
  border-width: 1px;
708
912
  box-sizing: content-box;
709
913
  cursor: col-resize;
710
914
  height: 2px;
711
915
  position: absolute;
712
916
  top: 7px;
713
- width: 12px;
714
917
  }
715
918
  .e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-element {
716
919
  border-bottom-style: solid;
717
- border-bottom-width: 6px;
920
+ border-bottom-width: 8px;
718
921
  border-left: 7px solid transparent;
719
922
  border-right: 7px solid transparent;
720
923
  cursor: col-resize;
721
924
  height: 0;
722
- left: -1px;
925
+ left: 0;
723
926
  position: absolute;
724
927
  top: -7px;
725
928
  width: 0;
726
929
  }
727
930
  .e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-after {
728
931
  border-bottom-style: solid;
729
- border-bottom-width: 6px;
932
+ border-bottom-width: 8px;
730
933
  border-left: 6px solid transparent;
731
934
  border-right: 6px solid transparent;
732
935
  cursor: col-resize;
733
936
  height: 0;
734
- left: -1px;
937
+ left: 1px;
735
938
  position: absolute;
736
- top: -6px;
939
+ top: -7px;
737
940
  width: 0;
738
941
  }
739
942
  .e-gantt .e-gantt-chart .e-baseline-bar {
@@ -868,6 +1071,9 @@
868
1071
  .e-gantt .e-gantt-chart .e-connector-line-hover {
869
1072
  outline: 1px solid;
870
1073
  }
1074
+ .e-gantt .e-gantt-chart .e-critical-connector-line-hover {
1075
+ outline: 1px solid;
1076
+ }
871
1077
  .e-gantt .e-gantt-chart .e-connector-line-hover-z-index {
872
1078
  z-index: 100;
873
1079
  }
@@ -1160,6 +1366,10 @@
1160
1366
  height: 100%;
1161
1367
  }
1162
1368
 
1369
+ .e-predecessor-tooltip {
1370
+ visibility: hidden;
1371
+ }
1372
+
1163
1373
  /*! Gantt theme */
1164
1374
  .e-gantt .e-gantt-splitter {
1165
1375
  border-color: #e0e0e0;
@@ -1243,7 +1453,7 @@
1243
1453
  border-top-color: #e0e0e0;
1244
1454
  }
1245
1455
  .e-gantt .e-gantt-chart .e-chart-row-cell {
1246
- color: rgb(0, 0, 0);
1456
+ color: #000;
1247
1457
  }
1248
1458
  .e-gantt .e-gantt-chart .e-chart-row-border.e-lastrow {
1249
1459
  border-bottom-color: #e0e0e0;
@@ -1302,6 +1512,10 @@
1302
1512
  background-color: #008786;
1303
1513
  border: 0px;
1304
1514
  }
1515
+ .e-gantt .e-gantt-chart .e-gantt-critical-child-manualprogressbar {
1516
+ background-color: #008786;
1517
+ border: 0px;
1518
+ }
1305
1519
  .e-gantt .e-gantt-chart .e-holiday {
1306
1520
  background: #eee;
1307
1521
  }
@@ -1333,7 +1547,6 @@
1333
1547
  }
1334
1548
  .e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar {
1335
1549
  background: linear-gradient(to right, rgba(63, 81, 181, 0.2), #3f51b5 30%, #3f51b5 70%, #3f51b5 70%, rgba(63, 81, 181, 0.2) 100%);
1336
- background-color: rgba(63, 81, 181, 0.2);
1337
1550
  border: 0px;
1338
1551
  border-radius: 2px;
1339
1552
  }
@@ -1377,7 +1590,7 @@
1377
1590
  }
1378
1591
  .e-gantt .e-gantt-chart .e-connectorpoint-left-hover,
1379
1592
  .e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
1380
- background-color: #333;
1593
+ background-color: #005a9e;
1381
1594
  border-color: #fff;
1382
1595
  }
1383
1596
  .e-gantt .e-gantt-chart .e-connectorpoint-left-hover:hover,
@@ -1596,7 +1809,7 @@
1596
1809
  background-color: rgba(255, 255, 255, 0.15);
1597
1810
  }
1598
1811
  .e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover .e-icon-dlg-close {
1599
- color: rgb(0, 0, 0);
1812
+ color: #000;
1600
1813
  }
1601
1814
  .e-gantt-dialog .e-tab .e-tab-header {
1602
1815
  background: #3f51b5;
@@ -1634,4 +1847,56 @@
1634
1847
  }
1635
1848
  .e-gantt.e-device .e-backarrowspan {
1636
1849
  color: #000;
1850
+ }
1851
+
1852
+ .e-gantt .e-gantt-chart .e-criticalconnector-line {
1853
+ border-color: #d13438;
1854
+ }
1855
+
1856
+ .e-gantt .e-gantt-chart .e-criticalconnector-line-right-arrow {
1857
+ border-left-color: #d13438;
1858
+ }
1859
+
1860
+ .e-gantt .e-gantt-chart .e-criticalconnector-line-left-arrow {
1861
+ border-right-color: #d13438;
1862
+ }
1863
+
1864
+ .e-gantt .e-gantt-chart .e-critical-connector-line-hover {
1865
+ border-color: #f3d8da;
1866
+ outline-color: #f3d8da;
1867
+ }
1868
+
1869
+ .e-gantt .e-gantt-chart .e-critical-connector-line-right-arrow-hover {
1870
+ border-left-color: #f3d8da;
1871
+ }
1872
+
1873
+ .e-gantt .e-gantt-chart .e-critical-connector-line-left-arrow-hover {
1874
+ border-right-color: #f3d8da;
1875
+ }
1876
+
1877
+ .e-gantt .e-gantt-chart .e-gantt-child-critical-taskbar-inner-div {
1878
+ background-color: #F3D8DA;
1879
+ border: 1px solid #F3D8DA;
1880
+ border-radius: 4px;
1881
+ }
1882
+
1883
+ .e-gantt .e-gantt-chart .e-gantt-child-critical-progressbar-inner-div {
1884
+ background-color: #D13438;
1885
+ border: 0px;
1886
+ border-radius: 4px;
1887
+ }
1888
+
1889
+ .e-gantt .e-gantt-chart .e-gantt-critical-unscheduled-taskbar {
1890
+ background: linear-gradient(to right, rgba(255, 85, 85, 0.2), #D13438 30%, #D13438 70%, #D13438 70%, rgba(255, 85, 85, 0.2) 100%);
1891
+ background-color: rgba(255, 85, 85, 0.2);
1892
+ border: 0px;
1893
+ border-radius: 2px;
1894
+ }
1895
+
1896
+ .e-gantt .e-gantt-chart .e-critical-milestone-top {
1897
+ border-bottom-color: #D13438;
1898
+ }
1899
+
1900
+ .e-gantt .e-gantt-chart .e-critical-milestone-bottom {
1901
+ border-top-color: #D13438;
1637
1902
  }