@syncfusion/ej2-vue-gantt 20.4.54 → 21.1.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 (61) hide show
  1. package/CHANGELOG.md +186 -0
  2. package/dist/ej2-vue-gantt.umd.min.js +2 -2
  3. package/dist/ej2-vue-gantt.umd.min.js.map +1 -1
  4. package/dist/es6/ej2-vue-gantt.es2015.js +462 -685
  5. package/dist/es6/ej2-vue-gantt.es2015.js.map +1 -1
  6. package/dist/es6/ej2-vue-gantt.es5.js +507 -807
  7. package/dist/es6/ej2-vue-gantt.es5.js.map +1 -1
  8. package/dist/global/ej2-vue-gantt.min.js +2 -2
  9. package/package.json +11 -10
  10. package/src/gantt/adddialogfields.directive.d.ts +2 -12
  11. package/src/gantt/adddialogfields.directive.js +22 -71
  12. package/src/gantt/columns.directive.d.ts +2 -12
  13. package/src/gantt/columns.directive.js +22 -71
  14. package/src/gantt/dayworkingtime.directive.d.ts +2 -12
  15. package/src/gantt/dayworkingtime.directive.js +22 -71
  16. package/src/gantt/editdialogfields.directive.d.ts +2 -12
  17. package/src/gantt/editdialogfields.directive.js +22 -71
  18. package/src/gantt/eventmarkers.directive.d.ts +2 -12
  19. package/src/gantt/eventmarkers.directive.js +22 -71
  20. package/src/gantt/gantt.component.d.ts +3 -100
  21. package/src/gantt/gantt.component.js +345 -376
  22. package/src/gantt/holidays.directive.d.ts +2 -12
  23. package/src/gantt/holidays.directive.js +22 -71
  24. package/styles/bootstrap-dark.css +63 -56
  25. package/styles/bootstrap.css +63 -58
  26. package/styles/bootstrap4.css +60 -55
  27. package/styles/bootstrap5-dark.css +60 -55
  28. package/styles/bootstrap5.css +60 -55
  29. package/styles/fabric-dark.css +58 -53
  30. package/styles/fabric.css +58 -53
  31. package/styles/fluent-dark.css +84 -76
  32. package/styles/fluent.css +84 -76
  33. package/styles/gantt/bootstrap-dark.css +63 -56
  34. package/styles/gantt/bootstrap.css +63 -58
  35. package/styles/gantt/bootstrap4.css +60 -55
  36. package/styles/gantt/bootstrap5-dark.css +60 -55
  37. package/styles/gantt/bootstrap5.css +60 -55
  38. package/styles/gantt/fabric-dark.css +58 -53
  39. package/styles/gantt/fabric.css +58 -53
  40. package/styles/gantt/fluent-dark.css +84 -76
  41. package/styles/gantt/fluent.css +84 -76
  42. package/styles/gantt/highcontrast-light.css +58 -55
  43. package/styles/gantt/highcontrast.css +58 -53
  44. package/styles/gantt/material-dark.css +61 -60
  45. package/styles/gantt/material.css +58 -53
  46. package/styles/gantt/material3-dark.css +2193 -0
  47. package/styles/gantt/material3-dark.scss +2 -0
  48. package/styles/gantt/material3.css +2249 -0
  49. package/styles/gantt/material3.scss +2 -0
  50. package/styles/gantt/tailwind-dark.css +58 -53
  51. package/styles/gantt/tailwind.css +58 -53
  52. package/styles/highcontrast-light.css +58 -55
  53. package/styles/highcontrast.css +58 -53
  54. package/styles/material-dark.css +61 -60
  55. package/styles/material.css +58 -53
  56. package/styles/material3-dark.css +2193 -0
  57. package/styles/material3-dark.scss +2 -0
  58. package/styles/material3.css +2249 -0
  59. package/styles/material3.scss +2 -0
  60. package/styles/tailwind-dark.css +58 -53
  61. package/styles/tailwind.css +58 -53
@@ -251,6 +251,9 @@
251
251
  content: "\e85f";
252
252
  }
253
253
 
254
+ .e-bigger .e-gantt .e-grid .e-row .e-input-group {
255
+ margin: 0 !important; /* stylelint-disable-line declaration-no-important */
256
+ }
254
257
  .e-bigger .e-gantt .e-gantt-chart .e-timeline-header-container {
255
258
  height: 64px;
256
259
  }
@@ -308,6 +311,12 @@
308
311
  .e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
309
312
  height: 63px !important; /* stylelint-disable-line declaration-no-important */
310
313
  }
314
+ .e-bigger .e-gantt .e-gantt-dialog .e-tab .e-tab-header {
315
+ padding-left: 0px;
316
+ }
317
+ .e-bigger .e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-indicator {
318
+ display: block;
319
+ }
311
320
  .e-bigger .e-gantt .e-dialog .e-dlg-header-content {
312
321
  padding: 16px 4px 17px 16px !important; /* stylelint-disable-line declaration-no-important */
313
322
  }
@@ -327,9 +336,6 @@
327
336
  .e-bigger .e-gantt .e-dialog .e-dlg-header {
328
337
  line-height: 28px;
329
338
  }
330
- .e-bigger .e-gantt .e-filter-popup.e-popup {
331
- width: 350px !important;
332
- }
333
339
  .e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
334
340
  padding: 14px 0 0 !important;
335
341
  }
@@ -337,7 +343,7 @@
337
343
  border-radius: 6px !important;
338
344
  padding: 20px 16px 6px 16px !important;
339
345
  }
340
- .e-bigger .e-grid .e-columnmenu {
346
+ .e-bigger .e-gantt .e-grid .e-columnmenu {
341
347
  top: 38px;
342
348
  }
343
349
  .e-bigger .e-gantt-dialog .e-dialog {
@@ -407,7 +413,6 @@
407
413
  }
408
414
  .e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input {
409
415
  height: 27px !important;
410
- padding: 5px 0 11px !important; /* stylelint-disable-line declaration-no-important */
411
416
  }
412
417
  .e-bigger .e-gantt-dialog .e-numeric.e-control-wrapper.e-input-group .e-input-group-icon {
413
418
  min-height: 26px !important;
@@ -423,12 +428,6 @@
423
428
  .e-bigger .e-gantt-dialog .e-input-group-icon.e-date-icon {
424
429
  min-width: 36px !important; /* stylelint-disable-line declaration-no-important */
425
430
  }
426
- .e-bigger .e-gantt-dialog .e-datetime-wrapper .e-input-group-icon.e-time-icon {
427
- margin: 5px 0 6px !important; /* stylelint-disable-line declaration-no-important */
428
- }
429
- .e-bigger .e-gantt-dialog .e-input-group.e-control-wrapper .e-input-group-icon {
430
- margin-right: 0 !important; /* stylelint-disable-line declaration-no-important */
431
- }
432
431
  .e-bigger .e-predecessor-tooltip .e-arrow-tip-outer.e-tip-bottom {
433
432
  border-top: 8px solid #000;
434
433
  }
@@ -674,6 +673,9 @@
674
673
  line-height: 10px;
675
674
  vertical-align: middle;
676
675
  }
676
+ .e-gantt .e-gantt-tree-grid-pane .e-grid .e-gantt-resource-parent .e-rowdragdrop {
677
+ pointer-events: none;
678
+ }
677
679
  .e-gantt .e-gantt-chart {
678
680
  height: 100%;
679
681
  overflow: hidden;
@@ -1549,6 +1551,9 @@
1549
1551
  border-color: #616161;
1550
1552
  border-radius: 0px;
1551
1553
  }
1554
+ .e-gantt .e-grid .e-spinner-pane {
1555
+ display: none;
1556
+ }
1552
1557
  .e-gantt .e-cloneproperties.e-draganddrop {
1553
1558
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.26);
1554
1559
  opacity: 0.95;
@@ -1593,6 +1598,9 @@
1593
1598
  background: rgba(255, 255, 255, 0.28);
1594
1599
  opacity: 0.87;
1595
1600
  }
1601
+ .e-gantt .e-taskbar-resize-div {
1602
+ border-color: #00b0ff;
1603
+ }
1596
1604
  .e-gantt .e-gantt-chart .e-timeline-header-container {
1597
1605
  background: #303030;
1598
1606
  border-bottom-color: #616161;
@@ -1640,7 +1648,7 @@
1640
1648
  outline-color: rgba(255, 255, 255, 0.5);
1641
1649
  }
1642
1650
  .e-gantt .e-gantt-chart .e-gantt-child-taskbar-inner-div {
1643
- background-color: #3f51b5;
1651
+ background: #3f51b5;
1644
1652
  outline: 1px solid #7280ce;
1645
1653
  border-radius: 4px;
1646
1654
  }
@@ -1674,10 +1682,10 @@
1674
1682
  .e-gantt .e-gantt-chart .e-gantt-child-progressbar-inner-div {
1675
1683
  background-color: #7280ce;
1676
1684
  border: 0px;
1677
- border-radius: 4px;
1685
+ border-radius: 3px;
1678
1686
  }
1679
1687
  .e-gantt .e-gantt-chart .e-gantt-child-manualtaskbar {
1680
- background-color: #8dd1c4;
1688
+ background: #8dd1c4;
1681
1689
  outline: #4fb29f;
1682
1690
  }
1683
1691
  .e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar.e-gantt-child-manualtaskbar {
@@ -1685,7 +1693,7 @@
1685
1693
  }
1686
1694
  .e-gantt .e-gantt-chart .e-gantt-child-manualprogressbar {
1687
1695
  background-color: #67c1b2;
1688
- border: #4fb29f;
1696
+ outline: #4fb29f;
1689
1697
  }
1690
1698
  .e-gantt .e-gantt-chart .e-gantt-critical-child-manualprogressbar {
1691
1699
  background-color: #67c1b2;
@@ -1745,6 +1753,18 @@
1745
1753
  .e-gantt .e-gantt-chart .e-line {
1746
1754
  border-color: #7280ce;
1747
1755
  }
1756
+ .e-gantt .e-gantt-chart .e-connector-line {
1757
+ stroke: #7280ce;
1758
+ }
1759
+ .e-gantt .e-gantt-chart .e-critical-line {
1760
+ stroke: #d13438;
1761
+ }
1762
+ .e-gantt .e-gantt-chart .e-connector-line-arrow {
1763
+ fill: #7280ce;
1764
+ }
1765
+ .e-gantt .e-gantt-chart .e-critical-line-arrow {
1766
+ fill: #d13438;
1767
+ }
1748
1768
  .e-gantt .e-gantt-chart .e-connector-line-right-arrow {
1749
1769
  border-left-color: #7280ce;
1750
1770
  }
@@ -1796,7 +1816,10 @@
1796
1816
  padding-right: 25px;
1797
1817
  }
1798
1818
  .e-gantt .e-gantt-chart .e-connectorpoint-right {
1799
- margin-left: 2px;
1819
+ margin-left: 3px;
1820
+ }
1821
+ .e-gantt .e-gantt-chart .e-connectorpoint-left {
1822
+ margin-right: 3px;
1800
1823
  }
1801
1824
  .e-gantt .e-gantt-chart .e-right-connectorpoint-outer-div,
1802
1825
  .e-gantt .e-gantt-chart .e-left-connectorpoint-outer-div {
@@ -1830,23 +1853,16 @@
1830
1853
  .e-gantt .e-gantt-chart .e-icon {
1831
1854
  color: #fff;
1832
1855
  }
1833
- .e-gantt .e-gantt-chart .e-milestone-top {
1834
- border-bottom-color: #dadada;
1835
- }
1836
- .e-gantt .e-gantt-chart .e-milestone-bottom {
1837
- border-top-color: #dadada;
1838
- }
1839
- .e-gantt .e-gantt-chart .e-parent-milestone-top {
1840
- border-bottom-color: #4cc7ba;
1841
- }
1842
- .e-gantt .e-gantt-chart .e-parent-milestone-bottom {
1843
- border-top-color: #4cc7ba;
1856
+ .e-gantt .e-gantt-chart .e-gantt-milestone {
1857
+ background-color: #dadada;
1858
+ border-color: #7280ce;
1844
1859
  }
1845
- .e-gantt .e-gantt-chart .e-manualparent-milestone-top {
1846
- border-bottom-color: #989A9C;
1860
+ .e-gantt .e-gantt-chart .e-gantt-parent-milestone {
1861
+ background-color: #4cc7ba;
1847
1862
  }
1848
- .e-gantt .e-gantt-chart .e-manualparent-milestone-bottom {
1849
- border-top-color: #989A9C;
1863
+ .e-gantt .e-gantt-chart .e-gantt-manualparent-milestone {
1864
+ background-color: #989A9C;
1865
+ border-color: #7280ce;
1850
1866
  }
1851
1867
  .e-gantt .e-gantt-chart .e-gantt-unscheduled-manualtask {
1852
1868
  background: linear-gradient(to right, rgba(63, 81, 181, 0.2), #989A9C 30%, #989A9C 70%, #989A9C 70%, rgba(63, 81, 181, 0.2) 100%);
@@ -1866,11 +1882,8 @@
1866
1882
  .e-gantt .e-gantt-chart .e-baseline-bar {
1867
1883
  background-color: #ff9800;
1868
1884
  }
1869
- .e-gantt .e-gantt-chart .e-baseline-milestone-top {
1870
- border-bottom-color: #ff9800;
1871
- }
1872
- .e-gantt .e-gantt-chart .e-baseline-milestone-bottom {
1873
- border-top-color: #ff9800;
1885
+ .e-gantt .e-gantt-chart .e-baseline-gantt-milestone-container {
1886
+ background-color: #ff9800;
1874
1887
  }
1875
1888
  .e-gantt .e-gantt-chart .e-uptail::before {
1876
1889
  border-bottom-color: #e0e0e0;
@@ -1924,11 +1937,8 @@
1924
1937
  background-color: transparent !important; /* stylelint-disable-line declaration-no-important */
1925
1938
  border: transparent !important; /* stylelint-disable-line declaration-no-important */
1926
1939
  }
1927
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-milestone-top {
1928
- border-bottom-color: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
1929
- }
1930
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-milestone-bottom {
1931
- border-top-color: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
1940
+ .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-milestone {
1941
+ background-color: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
1932
1942
  }
1933
1943
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-parent-taskbar-inner-div {
1934
1944
  background-color: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
@@ -1942,21 +1952,15 @@
1942
1952
  background: #7280ce !important; /* stylelint-disable-line declaration-no-important */
1943
1953
  border: #7280ce !important; /* stylelint-disable-line declaration-no-important */
1944
1954
  }
1945
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-milestone-top {
1946
- border-bottom-color: #7280ce !important; /* stylelint-disable-line declaration-no-important */
1947
- }
1948
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-milestone-bottom {
1949
- border-top-color: #7280ce !important; /* stylelint-disable-line declaration-no-important */
1955
+ .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-gantt-milestone {
1956
+ background-color: #7280ce !important; /* stylelint-disable-line declaration-no-important */
1950
1957
  }
1951
1958
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-gantt-child-taskbar-inner-div {
1952
1959
  background: #8591d5 !important; /* stylelint-disable-line declaration-no-important */
1953
1960
  border: #8591d5 !important; /* stylelint-disable-line declaration-no-important */
1954
1961
  }
1955
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-milestone-top {
1956
- border-bottom-color: #8591d5 !important; /* stylelint-disable-line declaration-no-important */
1957
- }
1958
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-milestone-bottom {
1959
- border-top-color: #8591d5 !important; /* stylelint-disable-line declaration-no-important */
1962
+ .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-gantt-milestone {
1963
+ background-color: #8591d5 !important; /* stylelint-disable-line declaration-no-important */
1960
1964
  }
1961
1965
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-line {
1962
1966
  border-color: #7280ce !important; /* stylelint-disable-line declaration-no-important */
@@ -2056,15 +2060,16 @@
2056
2060
  }
2057
2061
 
2058
2062
  .e-gantt .e-gantt-chart .e-gantt-child-critical-taskbar-inner-div {
2059
- background-color: #F3D8DA;
2060
- border: 1px solid #F3D8DA;
2063
+ background: #F3D8DA;
2064
+ outline: 1px solid #F3D8DA;
2061
2065
  border-radius: 4px;
2062
2066
  }
2063
2067
 
2064
2068
  .e-gantt .e-gantt-chart .e-gantt-child-critical-progressbar-inner-div {
2065
2069
  background-color: #D13438;
2066
2070
  border: 0px;
2067
- border-radius: 4px;
2071
+ position: absolute;
2072
+ border-radius: 3px;
2068
2073
  }
2069
2074
 
2070
2075
  .e-gantt .e-gantt-chart .e-gantt-critical-unscheduled-taskbar {
@@ -2074,10 +2079,6 @@
2074
2079
  border-radius: 0px;
2075
2080
  }
2076
2081
 
2077
- .e-gantt .e-gantt-chart .e-critical-milestone-top {
2078
- border-bottom-color: #d13438;
2079
- }
2080
-
2081
- .e-gantt .e-gantt-chart .e-critical-milestone-bottom {
2082
- border-top-color: #d13438;
2082
+ .e-gantt .e-gantt-chart .e-critical-milestone {
2083
+ background-color: #d13438;
2083
2084
  }
@@ -348,6 +348,12 @@
348
348
  .e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
349
349
  height: 63px !important; /* stylelint-disable-line declaration-no-important */
350
350
  }
351
+ .e-bigger .e-gantt .e-gantt-dialog .e-tab .e-tab-header {
352
+ padding-left: 0px;
353
+ }
354
+ .e-bigger .e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-indicator {
355
+ display: block;
356
+ }
351
357
  .e-bigger .e-gantt .e-dialog .e-dlg-header-content {
352
358
  padding: 16px 14px 17px 16px !important; /* stylelint-disable-line declaration-no-important */
353
359
  }
@@ -367,9 +373,6 @@
367
373
  .e-bigger .e-gantt .e-dialog .e-dlg-header {
368
374
  line-height: 28px;
369
375
  }
370
- .e-bigger .e-gantt .e-filter-popup.e-popup {
371
- width: 350px !important;
372
- }
373
376
  .e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
374
377
  padding: 14px 0 0 !important;
375
378
  }
@@ -377,7 +380,7 @@
377
380
  border-radius: 6px !important;
378
381
  padding: 20px 16px 6px 16px !important;
379
382
  }
380
- .e-bigger .e-grid .e-columnmenu {
383
+ .e-bigger .e-gantt .e-grid .e-columnmenu {
381
384
  top: 38px;
382
385
  }
383
386
  .e-bigger .e-gantt-dialog .e-dialog {
@@ -714,6 +717,9 @@
714
717
  line-height: 10px;
715
718
  vertical-align: middle;
716
719
  }
720
+ .e-gantt .e-gantt-tree-grid-pane .e-grid .e-gantt-resource-parent .e-rowdragdrop {
721
+ pointer-events: none;
722
+ }
717
723
  .e-gantt .e-gantt-chart {
718
724
  height: 100%;
719
725
  overflow: hidden;
@@ -1589,6 +1595,9 @@
1589
1595
  border-color: #e0e0e0;
1590
1596
  border-radius: 0px;
1591
1597
  }
1598
+ .e-gantt .e-grid .e-spinner-pane {
1599
+ display: none;
1600
+ }
1592
1601
  .e-gantt .e-cloneproperties.e-draganddrop {
1593
1602
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.26);
1594
1603
  opacity: 0.95;
@@ -1633,6 +1642,9 @@
1633
1642
  background: rgba(63, 81, 181, 0.15);
1634
1643
  opacity: 1;
1635
1644
  }
1645
+ .e-gantt .e-taskbar-resize-div {
1646
+ border-color: #e3165b;
1647
+ }
1636
1648
  .e-gantt .e-gantt-chart .e-timeline-header-container {
1637
1649
  background: #fff;
1638
1650
  border-bottom-color: #e0e0e0;
@@ -1680,7 +1692,7 @@
1680
1692
  outline-color: #9e9e9e;
1681
1693
  }
1682
1694
  .e-gantt .e-gantt-chart .e-gantt-child-taskbar-inner-div {
1683
- background-color: #5869c5;
1695
+ background: #5869c5;
1684
1696
  outline: 1px solid #3f51b5;
1685
1697
  border-radius: 4px;
1686
1698
  }
@@ -1714,10 +1726,10 @@
1714
1726
  .e-gantt .e-gantt-chart .e-gantt-child-progressbar-inner-div {
1715
1727
  background-color: #3f51b5;
1716
1728
  border: 0px;
1717
- border-radius: 4px;
1729
+ border-radius: 3px;
1718
1730
  }
1719
1731
  .e-gantt .e-gantt-chart .e-gantt-child-manualtaskbar {
1720
- background-color: rgba(0, 135, 134, 0.85);
1732
+ background: rgba(0, 135, 134, 0.85);
1721
1733
  outline: 1px solid #008786;
1722
1734
  }
1723
1735
  .e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar.e-gantt-child-manualtaskbar {
@@ -1725,7 +1737,7 @@
1725
1737
  }
1726
1738
  .e-gantt .e-gantt-chart .e-gantt-child-manualprogressbar {
1727
1739
  background-color: #008786;
1728
- border: 0px;
1740
+ outline: 0px;
1729
1741
  }
1730
1742
  .e-gantt .e-gantt-chart .e-gantt-critical-child-manualprogressbar {
1731
1743
  background-color: #008786;
@@ -1785,6 +1797,18 @@
1785
1797
  .e-gantt .e-gantt-chart .e-line {
1786
1798
  border-color: #3f51b5;
1787
1799
  }
1800
+ .e-gantt .e-gantt-chart .e-connector-line {
1801
+ stroke: #3f51b5;
1802
+ }
1803
+ .e-gantt .e-gantt-chart .e-critical-line {
1804
+ stroke: #d13438;
1805
+ }
1806
+ .e-gantt .e-gantt-chart .e-connector-line-arrow {
1807
+ fill: #3f51b5;
1808
+ }
1809
+ .e-gantt .e-gantt-chart .e-critical-line-arrow {
1810
+ fill: #d13438;
1811
+ }
1788
1812
  .e-gantt .e-gantt-chart .e-connector-line-right-arrow {
1789
1813
  border-left-color: #3f51b5;
1790
1814
  }
@@ -1836,7 +1860,10 @@
1836
1860
  padding-right: 25px;
1837
1861
  }
1838
1862
  .e-gantt .e-gantt-chart .e-connectorpoint-right {
1839
- margin-left: 2px;
1863
+ margin-left: 3px;
1864
+ }
1865
+ .e-gantt .e-gantt-chart .e-connectorpoint-left {
1866
+ margin-right: 3px;
1840
1867
  }
1841
1868
  .e-gantt .e-gantt-chart .e-right-connectorpoint-outer-div,
1842
1869
  .e-gantt .e-gantt-chart .e-left-connectorpoint-outer-div {
@@ -1870,23 +1897,16 @@
1870
1897
  .e-gantt .e-gantt-chart .e-icon {
1871
1898
  color: #fff;
1872
1899
  }
1873
- .e-gantt .e-gantt-chart .e-milestone-top {
1874
- border-bottom-color: #616161;
1875
- }
1876
- .e-gantt .e-gantt-chart .e-milestone-bottom {
1877
- border-top-color: #616161;
1878
- }
1879
- .e-gantt .e-gantt-chart .e-parent-milestone-top {
1880
- border-bottom-color: #616161;
1881
- }
1882
- .e-gantt .e-gantt-chart .e-parent-milestone-bottom {
1883
- border-top-color: #616161;
1900
+ .e-gantt .e-gantt-chart .e-gantt-milestone {
1901
+ background-color: #616161;
1902
+ border-color: #3f51b5;
1884
1903
  }
1885
- .e-gantt .e-gantt-chart .e-manualparent-milestone-top {
1886
- border-bottom-color: #989A9C;
1904
+ .e-gantt .e-gantt-chart .e-gantt-parent-milestone {
1905
+ background-color: #616161;
1887
1906
  }
1888
- .e-gantt .e-gantt-chart .e-manualparent-milestone-bottom {
1889
- border-top-color: #989A9C;
1907
+ .e-gantt .e-gantt-chart .e-gantt-manualparent-milestone {
1908
+ background-color: #989A9C;
1909
+ border-color: #3f51b5;
1890
1910
  }
1891
1911
  .e-gantt .e-gantt-chart .e-gantt-unscheduled-manualtask {
1892
1912
  background: linear-gradient(to right, rgba(63, 81, 181, 0.2), #989A9C 30%, #989A9C 70%, #989A9C 70%, rgba(63, 81, 181, 0.2) 100%);
@@ -1906,11 +1926,8 @@
1906
1926
  .e-gantt .e-gantt-chart .e-baseline-bar {
1907
1927
  background-color: #C15700;
1908
1928
  }
1909
- .e-gantt .e-gantt-chart .e-baseline-milestone-top {
1910
- border-bottom-color: #C15700;
1911
- }
1912
- .e-gantt .e-gantt-chart .e-baseline-milestone-bottom {
1913
- border-top-color: #C15700;
1929
+ .e-gantt .e-gantt-chart .e-baseline-gantt-milestone-container {
1930
+ background-color: #C15700;
1914
1931
  }
1915
1932
  .e-gantt .e-gantt-chart .e-uptail::before {
1916
1933
  border-bottom-color: #e0e0e0;
@@ -1964,11 +1981,8 @@
1964
1981
  background-color: transparent !important; /* stylelint-disable-line declaration-no-important */
1965
1982
  border: transparent !important; /* stylelint-disable-line declaration-no-important */
1966
1983
  }
1967
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-milestone-top {
1968
- border-bottom-color: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
1969
- }
1970
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-milestone-bottom {
1971
- border-top-color: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
1984
+ .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-milestone {
1985
+ background-color: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
1972
1986
  }
1973
1987
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-parent-taskbar-inner-div {
1974
1988
  background-color: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
@@ -1982,21 +1996,15 @@
1982
1996
  background: #3f51b5 !important; /* stylelint-disable-line declaration-no-important */
1983
1997
  border: #3f51b5 !important; /* stylelint-disable-line declaration-no-important */
1984
1998
  }
1985
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-milestone-top {
1986
- border-bottom-color: #3f51b5 !important; /* stylelint-disable-line declaration-no-important */
1987
- }
1988
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-milestone-bottom {
1989
- border-top-color: #3f51b5 !important; /* stylelint-disable-line declaration-no-important */
1999
+ .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-gantt-milestone {
2000
+ background-color: #3f51b5 !important; /* stylelint-disable-line declaration-no-important */
1990
2001
  }
1991
2002
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-gantt-child-taskbar-inner-div {
1992
2003
  background: #8591d5 !important; /* stylelint-disable-line declaration-no-important */
1993
2004
  border: #8591d5 !important; /* stylelint-disable-line declaration-no-important */
1994
2005
  }
1995
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-milestone-top {
1996
- border-bottom-color: #8591d5 !important; /* stylelint-disable-line declaration-no-important */
1997
- }
1998
- .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-milestone-bottom {
1999
- border-top-color: #8591d5 !important; /* stylelint-disable-line declaration-no-important */
2006
+ .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-gantt-milestone {
2007
+ background-color: #8591d5 !important; /* stylelint-disable-line declaration-no-important */
2000
2008
  }
2001
2009
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-line {
2002
2010
  border-color: #3f51b5 !important; /* stylelint-disable-line declaration-no-important */
@@ -2096,15 +2104,16 @@
2096
2104
  }
2097
2105
 
2098
2106
  .e-gantt .e-gantt-chart .e-gantt-child-critical-taskbar-inner-div {
2099
- background-color: #F3D8DA;
2100
- border: 1px solid #F3D8DA;
2107
+ background: #F3D8DA;
2108
+ outline: 1px solid #F3D8DA;
2101
2109
  border-radius: 4px;
2102
2110
  }
2103
2111
 
2104
2112
  .e-gantt .e-gantt-chart .e-gantt-child-critical-progressbar-inner-div {
2105
2113
  background-color: #D13438;
2106
2114
  border: 0px;
2107
- border-radius: 4px;
2115
+ position: absolute;
2116
+ border-radius: 3px;
2108
2117
  }
2109
2118
 
2110
2119
  .e-gantt .e-gantt-chart .e-gantt-critical-unscheduled-taskbar {
@@ -2114,10 +2123,6 @@
2114
2123
  border-radius: 2px;
2115
2124
  }
2116
2125
 
2117
- .e-gantt .e-gantt-chart .e-critical-milestone-top {
2118
- border-bottom-color: #D13438;
2119
- }
2120
-
2121
- .e-gantt .e-gantt-chart .e-critical-milestone-bottom {
2122
- border-top-color: #D13438;
2126
+ .e-gantt .e-gantt-chart .e-critical-milestone {
2127
+ background-color: #D13438;
2123
2128
  }