@syncfusion/ej2-gantt 21.2.10 → 22.1.34
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.
- package/.eslintrc.json +1 -0
- package/CHANGELOG.md +12 -0
- package/dist/ej2-gantt.min.js +2 -2
- package/dist/ej2-gantt.umd.min.js +2 -2
- package/dist/ej2-gantt.umd.min.js.map +1 -1
- package/dist/es6/ej2-gantt.es2015.js +734 -711
- package/dist/es6/ej2-gantt.es2015.js.map +1 -1
- package/dist/es6/ej2-gantt.es5.js +773 -751
- package/dist/es6/ej2-gantt.es5.js.map +1 -1
- package/dist/global/ej2-gantt.min.js +2 -2
- package/dist/global/ej2-gantt.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +20 -19
- package/src/gantt/actions/connector-line-edit.js +21 -26
- package/src/gantt/actions/context-menu.js +2 -2
- package/src/gantt/actions/critical-path.js +4 -9
- package/src/gantt/actions/day-markers.js +4 -1
- package/src/gantt/actions/edit.js +8 -6
- package/src/gantt/actions/pdf-export.js +1 -1
- package/src/gantt/actions/taskbar-edit.d.ts +6 -0
- package/src/gantt/actions/taskbar-edit.js +120 -45
- package/src/gantt/base/css-constants.d.ts +5 -10
- package/src/gantt/base/css-constants.js +5 -10
- package/src/gantt/base/date-processor.js +1 -19
- package/src/gantt/base/enum.d.ts +215 -231
- package/src/gantt/base/gantt-chart.js +112 -5
- package/src/gantt/base/gantt-model.d.ts +6 -3
- package/src/gantt/base/gantt.d.ts +7 -3
- package/src/gantt/base/gantt.js +17 -13
- package/src/gantt/base/interface.d.ts +36 -1
- package/src/gantt/base/task-processor.js +14 -15
- package/src/gantt/base/tree-grid.js +1 -1
- package/src/gantt/export/export-helper.js +1 -0
- package/src/gantt/export/pdf-connector-line.d.ts +4 -4
- package/src/gantt/export/pdf-connector-line.js +11 -22
- package/src/gantt/export/pdf-gantt.d.ts +1 -2
- package/src/gantt/export/pdf-gantt.js +4 -4
- package/src/gantt/models/column.d.ts +8 -4
- package/src/gantt/models/edit-settings-model.d.ts +1 -0
- package/src/gantt/models/edit-settings.d.ts +1 -0
- package/src/gantt/models/filter-settings-model.d.ts +3 -0
- package/src/gantt/models/filter-settings.d.ts +3 -0
- package/src/gantt/models/search-settings-model.d.ts +1 -0
- package/src/gantt/models/search-settings.d.ts +1 -0
- package/src/gantt/models/sort-settings-model.d.ts +1 -0
- package/src/gantt/models/sort-settings.d.ts +1 -0
- package/src/gantt/models/tooltip-settings-model.d.ts +8 -4
- package/src/gantt/models/tooltip-settings.d.ts +8 -4
- package/src/gantt/renderer/chart-rows.d.ts +1 -1
- package/src/gantt/renderer/chart-rows.js +27 -65
- package/src/gantt/renderer/connector-line.d.ts +23 -0
- package/src/gantt/renderer/connector-line.js +287 -384
- package/src/gantt/renderer/edit-tooltip.js +4 -4
- package/src/gantt/renderer/nonworking-day.js +2 -2
- package/src/gantt/renderer/tooltip.d.ts +3 -3
- package/src/gantt/renderer/tooltip.js +103 -76
- package/styles/bootstrap-dark.css +27 -47
- package/styles/bootstrap.css +29 -49
- package/styles/bootstrap4.css +29 -49
- package/styles/bootstrap5-dark.css +27 -47
- package/styles/bootstrap5.css +27 -47
- package/styles/fabric-dark.css +27 -47
- package/styles/fabric.css +27 -47
- package/styles/fluent-dark.css +28 -47
- package/styles/fluent.css +28 -47
- package/styles/gantt/_layout.scss +53 -7
- package/styles/gantt/_material3-dark-definition.scss +1 -0
- package/styles/gantt/_material3-definition.scss +220 -0
- package/styles/gantt/_theme.scss +53 -53
- package/styles/gantt/bootstrap-dark.css +27 -47
- package/styles/gantt/bootstrap.css +29 -49
- package/styles/gantt/bootstrap4.css +29 -49
- package/styles/gantt/bootstrap5-dark.css +27 -47
- package/styles/gantt/bootstrap5.css +27 -47
- package/styles/gantt/fabric-dark.css +27 -47
- package/styles/gantt/fabric.css +27 -47
- package/styles/gantt/fluent-dark.css +28 -47
- package/styles/gantt/fluent.css +28 -47
- package/styles/gantt/highcontrast-light.css +27 -47
- package/styles/gantt/highcontrast.css +27 -47
- package/styles/gantt/icons/_material3-dark.scss +1 -0
- package/styles/gantt/material-dark.css +27 -47
- package/styles/gantt/material.css +27 -47
- package/styles/gantt/material3-dark.css +2184 -0
- package/styles/gantt/material3-dark.scss +23 -0
- package/styles/gantt/material3.css +2240 -0
- package/styles/gantt/material3.scss +23 -0
- package/styles/gantt/tailwind-dark.css +27 -47
- package/styles/gantt/tailwind.css +27 -47
- package/styles/highcontrast-light.css +27 -47
- package/styles/highcontrast.css +27 -47
- package/styles/material-dark.css +27 -47
- package/styles/material.css +27 -47
- package/styles/material3-dark.css +2184 -0
- package/styles/material3-dark.scss +3 -0
- package/styles/material3.css +2240 -0
- package/styles/material3.scss +3 -0
- package/styles/tailwind-dark.css +27 -47
- package/styles/tailwind.css +27 -47
package/styles/fabric-dark.css
CHANGED
|
@@ -293,9 +293,6 @@
|
|
|
293
293
|
.e-bigger .e-gantt .e-dialog .e-dlg-header {
|
|
294
294
|
line-height: 28px;
|
|
295
295
|
}
|
|
296
|
-
.e-bigger .e-gantt .e-filter-popup.e-popup {
|
|
297
|
-
width: 350px !important;
|
|
298
|
-
}
|
|
299
296
|
.e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
|
|
300
297
|
padding: 16px 0 0 !important;
|
|
301
298
|
}
|
|
@@ -633,6 +630,9 @@
|
|
|
633
630
|
line-height: 10px;
|
|
634
631
|
vertical-align: middle;
|
|
635
632
|
}
|
|
633
|
+
.e-gantt .e-gantt-tree-grid-pane .e-grid .e-gantt-resource-parent .e-rowdragdrop {
|
|
634
|
+
pointer-events: none;
|
|
635
|
+
}
|
|
636
636
|
.e-gantt .e-gantt-chart {
|
|
637
637
|
height: 100%;
|
|
638
638
|
overflow: hidden;
|
|
@@ -1555,6 +1555,9 @@
|
|
|
1555
1555
|
background: #514f4f;
|
|
1556
1556
|
opacity: 1;
|
|
1557
1557
|
}
|
|
1558
|
+
.e-gantt .e-taskbar-resize-div {
|
|
1559
|
+
border-color: #0074cc;
|
|
1560
|
+
}
|
|
1558
1561
|
.e-gantt .e-gantt-chart .e-timeline-header-container {
|
|
1559
1562
|
background: #201f1f;
|
|
1560
1563
|
border-bottom-color: #414040;
|
|
@@ -1602,7 +1605,7 @@
|
|
|
1602
1605
|
outline-color: #dadada;
|
|
1603
1606
|
}
|
|
1604
1607
|
.e-gantt .e-gantt-chart .e-gantt-child-taskbar-inner-div {
|
|
1605
|
-
background
|
|
1608
|
+
background: #0074cc;
|
|
1606
1609
|
outline: 1px solid #0063ad;
|
|
1607
1610
|
border-radius: 0px;
|
|
1608
1611
|
}
|
|
@@ -1639,7 +1642,7 @@
|
|
|
1639
1642
|
border-radius: 3px;
|
|
1640
1643
|
}
|
|
1641
1644
|
.e-gantt .e-gantt-chart .e-gantt-child-manualtaskbar {
|
|
1642
|
-
background
|
|
1645
|
+
background: #8dd1c4;
|
|
1643
1646
|
outline: #4fb29f;
|
|
1644
1647
|
}
|
|
1645
1648
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar.e-gantt-child-manualtaskbar {
|
|
@@ -1807,23 +1810,16 @@
|
|
|
1807
1810
|
.e-gantt .e-gantt-chart .e-icon {
|
|
1808
1811
|
color: #fff;
|
|
1809
1812
|
}
|
|
1810
|
-
.e-gantt .e-gantt-chart .e-milestone
|
|
1811
|
-
|
|
1812
|
-
|
|
1813
|
-
.e-gantt .e-gantt-chart .e-milestone-bottom {
|
|
1814
|
-
border-top-color: #dadada;
|
|
1815
|
-
}
|
|
1816
|
-
.e-gantt .e-gantt-chart .e-parent-milestone-top {
|
|
1817
|
-
border-bottom-color: #4cc7ba;
|
|
1818
|
-
}
|
|
1819
|
-
.e-gantt .e-gantt-chart .e-parent-milestone-bottom {
|
|
1820
|
-
border-top-color: #4cc7ba;
|
|
1813
|
+
.e-gantt .e-gantt-chart .e-gantt-milestone {
|
|
1814
|
+
background-color: #dadada;
|
|
1815
|
+
border-color: #0063ad;
|
|
1821
1816
|
}
|
|
1822
|
-
.e-gantt .e-gantt-chart .e-
|
|
1823
|
-
|
|
1817
|
+
.e-gantt .e-gantt-chart .e-gantt-parent-milestone {
|
|
1818
|
+
background-color: #4cc7ba;
|
|
1824
1819
|
}
|
|
1825
|
-
.e-gantt .e-gantt-chart .e-manualparent-milestone
|
|
1826
|
-
|
|
1820
|
+
.e-gantt .e-gantt-chart .e-gantt-manualparent-milestone {
|
|
1821
|
+
background-color: #989A9C;
|
|
1822
|
+
border-color: #0063ad;
|
|
1827
1823
|
}
|
|
1828
1824
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-manualtask {
|
|
1829
1825
|
background: linear-gradient(to right, rgba(63, 81, 181, 0.2), #989A9C 30%, #989A9C 70%, #989A9C 70%, rgba(63, 81, 181, 0.2) 100%);
|
|
@@ -1843,11 +1839,8 @@
|
|
|
1843
1839
|
.e-gantt .e-gantt-chart .e-baseline-bar {
|
|
1844
1840
|
background-color: #ff9800;
|
|
1845
1841
|
}
|
|
1846
|
-
.e-gantt .e-gantt-chart .e-baseline-milestone-
|
|
1847
|
-
|
|
1848
|
-
}
|
|
1849
|
-
.e-gantt .e-gantt-chart .e-baseline-milestone-bottom {
|
|
1850
|
-
border-top-color: #ff9800;
|
|
1842
|
+
.e-gantt .e-gantt-chart .e-baseline-gantt-milestone-container {
|
|
1843
|
+
background-color: #ff9800;
|
|
1851
1844
|
}
|
|
1852
1845
|
.e-gantt .e-gantt-chart .e-uptail::before {
|
|
1853
1846
|
border-bottom-color: #e0e0e0;
|
|
@@ -1901,11 +1894,8 @@
|
|
|
1901
1894
|
background-color: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1902
1895
|
border: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1903
1896
|
}
|
|
1904
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-milestone
|
|
1905
|
-
|
|
1906
|
-
}
|
|
1907
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-milestone-bottom {
|
|
1908
|
-
border-top-color: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
|
|
1897
|
+
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-milestone {
|
|
1898
|
+
background-color: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
|
|
1909
1899
|
}
|
|
1910
1900
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-parent-taskbar-inner-div {
|
|
1911
1901
|
background-color: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
|
|
@@ -1919,21 +1909,15 @@
|
|
|
1919
1909
|
background: #0063ad !important; /* stylelint-disable-line declaration-no-important */
|
|
1920
1910
|
border: #0063ad !important; /* stylelint-disable-line declaration-no-important */
|
|
1921
1911
|
}
|
|
1922
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-milestone
|
|
1923
|
-
|
|
1924
|
-
}
|
|
1925
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-milestone-bottom {
|
|
1926
|
-
border-top-color: #0063ad !important; /* stylelint-disable-line declaration-no-important */
|
|
1912
|
+
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-gantt-milestone {
|
|
1913
|
+
background-color: #0063ad !important; /* stylelint-disable-line declaration-no-important */
|
|
1927
1914
|
}
|
|
1928
1915
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-gantt-child-taskbar-inner-div {
|
|
1929
1916
|
background: #33a7ff !important; /* stylelint-disable-line declaration-no-important */
|
|
1930
1917
|
border: #33a7ff !important; /* stylelint-disable-line declaration-no-important */
|
|
1931
1918
|
}
|
|
1932
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-milestone
|
|
1933
|
-
|
|
1934
|
-
}
|
|
1935
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-milestone-bottom {
|
|
1936
|
-
border-top-color: #33a7ff !important; /* stylelint-disable-line declaration-no-important */
|
|
1919
|
+
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-gantt-milestone {
|
|
1920
|
+
background-color: #33a7ff !important; /* stylelint-disable-line declaration-no-important */
|
|
1937
1921
|
}
|
|
1938
1922
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-line {
|
|
1939
1923
|
border-color: #0063ad !important; /* stylelint-disable-line declaration-no-important */
|
|
@@ -2033,7 +2017,7 @@
|
|
|
2033
2017
|
}
|
|
2034
2018
|
|
|
2035
2019
|
.e-gantt .e-gantt-chart .e-gantt-child-critical-taskbar-inner-div {
|
|
2036
|
-
background
|
|
2020
|
+
background: #f3d8da;
|
|
2037
2021
|
outline: 1px solid #f3d8da;
|
|
2038
2022
|
border-radius: 0px;
|
|
2039
2023
|
}
|
|
@@ -2052,10 +2036,6 @@
|
|
|
2052
2036
|
border-radius: 0px;
|
|
2053
2037
|
}
|
|
2054
2038
|
|
|
2055
|
-
.e-gantt .e-gantt-chart .e-critical-milestone
|
|
2056
|
-
|
|
2057
|
-
}
|
|
2058
|
-
|
|
2059
|
-
.e-gantt .e-gantt-chart .e-critical-milestone-bottom {
|
|
2060
|
-
border-top-color: #d13438;
|
|
2039
|
+
.e-gantt .e-gantt-chart .e-critical-milestone {
|
|
2040
|
+
background-color: #d13438;
|
|
2061
2041
|
}
|
package/styles/fabric.css
CHANGED
|
@@ -291,9 +291,6 @@
|
|
|
291
291
|
.e-bigger .e-gantt .e-dialog .e-dlg-header {
|
|
292
292
|
line-height: 28px;
|
|
293
293
|
}
|
|
294
|
-
.e-bigger .e-gantt .e-filter-popup.e-popup {
|
|
295
|
-
width: 350px !important;
|
|
296
|
-
}
|
|
297
294
|
.e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
|
|
298
295
|
padding: 16px 0 0 !important;
|
|
299
296
|
}
|
|
@@ -631,6 +628,9 @@
|
|
|
631
628
|
line-height: 10px;
|
|
632
629
|
vertical-align: middle;
|
|
633
630
|
}
|
|
631
|
+
.e-gantt .e-gantt-tree-grid-pane .e-grid .e-gantt-resource-parent .e-rowdragdrop {
|
|
632
|
+
pointer-events: none;
|
|
633
|
+
}
|
|
634
634
|
.e-gantt .e-gantt-chart {
|
|
635
635
|
height: 100%;
|
|
636
636
|
overflow: hidden;
|
|
@@ -1553,6 +1553,9 @@
|
|
|
1553
1553
|
background: rgb(209, 235, 255);
|
|
1554
1554
|
opacity: 1;
|
|
1555
1555
|
}
|
|
1556
|
+
.e-gantt .e-taskbar-resize-div {
|
|
1557
|
+
border-color: #0078d6;
|
|
1558
|
+
}
|
|
1556
1559
|
.e-gantt .e-gantt-chart .e-timeline-header-container {
|
|
1557
1560
|
background: #fff;
|
|
1558
1561
|
border-bottom-color: #eaeaea;
|
|
@@ -1600,7 +1603,7 @@
|
|
|
1600
1603
|
outline-color: #666;
|
|
1601
1604
|
}
|
|
1602
1605
|
.e-gantt .e-gantt-chart .e-gantt-child-taskbar-inner-div {
|
|
1603
|
-
background
|
|
1606
|
+
background: #0078d6;
|
|
1604
1607
|
outline: 1px solid #005ba3;
|
|
1605
1608
|
border-radius: 0px;
|
|
1606
1609
|
}
|
|
@@ -1637,7 +1640,7 @@
|
|
|
1637
1640
|
border-radius: 3px;
|
|
1638
1641
|
}
|
|
1639
1642
|
.e-gantt .e-gantt-chart .e-gantt-child-manualtaskbar {
|
|
1640
|
-
background
|
|
1643
|
+
background: #9A38BA;
|
|
1641
1644
|
outline: 1px solid #6D1888;
|
|
1642
1645
|
}
|
|
1643
1646
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar.e-gantt-child-manualtaskbar {
|
|
@@ -1805,23 +1808,16 @@
|
|
|
1805
1808
|
.e-gantt .e-gantt-chart .e-icon {
|
|
1806
1809
|
color: #fff;
|
|
1807
1810
|
}
|
|
1808
|
-
.e-gantt .e-gantt-chart .e-milestone
|
|
1809
|
-
|
|
1810
|
-
|
|
1811
|
-
.e-gantt .e-gantt-chart .e-milestone-bottom {
|
|
1812
|
-
border-top-color: #505050;
|
|
1813
|
-
}
|
|
1814
|
-
.e-gantt .e-gantt-chart .e-parent-milestone-top {
|
|
1815
|
-
border-bottom-color: #505050;
|
|
1816
|
-
}
|
|
1817
|
-
.e-gantt .e-gantt-chart .e-parent-milestone-bottom {
|
|
1818
|
-
border-top-color: #505050;
|
|
1811
|
+
.e-gantt .e-gantt-chart .e-gantt-milestone {
|
|
1812
|
+
background-color: #505050;
|
|
1813
|
+
border-color: #005ba3;
|
|
1819
1814
|
}
|
|
1820
|
-
.e-gantt .e-gantt-chart .e-
|
|
1821
|
-
|
|
1815
|
+
.e-gantt .e-gantt-chart .e-gantt-parent-milestone {
|
|
1816
|
+
background-color: #505050;
|
|
1822
1817
|
}
|
|
1823
|
-
.e-gantt .e-gantt-chart .e-manualparent-milestone
|
|
1824
|
-
|
|
1818
|
+
.e-gantt .e-gantt-chart .e-gantt-manualparent-milestone {
|
|
1819
|
+
background-color: #989A9C;
|
|
1820
|
+
border-color: #005ba3;
|
|
1825
1821
|
}
|
|
1826
1822
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-manualtask {
|
|
1827
1823
|
background: linear-gradient(to right, rgba(63, 81, 181, 0.2), #989A9C 30%, #989A9C 70%, #989A9C 70%, rgba(63, 81, 181, 0.2) 100%);
|
|
@@ -1841,11 +1837,8 @@
|
|
|
1841
1837
|
.e-gantt .e-gantt-chart .e-baseline-bar {
|
|
1842
1838
|
background-color: #d83b01;
|
|
1843
1839
|
}
|
|
1844
|
-
.e-gantt .e-gantt-chart .e-baseline-milestone-
|
|
1845
|
-
|
|
1846
|
-
}
|
|
1847
|
-
.e-gantt .e-gantt-chart .e-baseline-milestone-bottom {
|
|
1848
|
-
border-top-color: #d83b01;
|
|
1840
|
+
.e-gantt .e-gantt-chart .e-baseline-gantt-milestone-container {
|
|
1841
|
+
background-color: #d83b01;
|
|
1849
1842
|
}
|
|
1850
1843
|
.e-gantt .e-gantt-chart .e-uptail::before {
|
|
1851
1844
|
border-bottom-color: #e0e0e0;
|
|
@@ -1899,11 +1892,8 @@
|
|
|
1899
1892
|
background-color: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1900
1893
|
border: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1901
1894
|
}
|
|
1902
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-milestone
|
|
1903
|
-
|
|
1904
|
-
}
|
|
1905
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-milestone-bottom {
|
|
1906
|
-
border-top-color: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
|
|
1895
|
+
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-milestone {
|
|
1896
|
+
background-color: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
|
|
1907
1897
|
}
|
|
1908
1898
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-parent-taskbar-inner-div {
|
|
1909
1899
|
background-color: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
|
|
@@ -1917,21 +1907,15 @@
|
|
|
1917
1907
|
background: #005ba3 !important; /* stylelint-disable-line declaration-no-important */
|
|
1918
1908
|
border: #005ba3 !important; /* stylelint-disable-line declaration-no-important */
|
|
1919
1909
|
}
|
|
1920
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-milestone
|
|
1921
|
-
|
|
1922
|
-
}
|
|
1923
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-milestone-bottom {
|
|
1924
|
-
border-top-color: #005ba3 !important; /* stylelint-disable-line declaration-no-important */
|
|
1910
|
+
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-gantt-milestone {
|
|
1911
|
+
background-color: #005ba3 !important; /* stylelint-disable-line declaration-no-important */
|
|
1925
1912
|
}
|
|
1926
1913
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-gantt-child-taskbar-inner-div {
|
|
1927
1914
|
background: #3daaff !important; /* stylelint-disable-line declaration-no-important */
|
|
1928
1915
|
border: #3daaff !important; /* stylelint-disable-line declaration-no-important */
|
|
1929
1916
|
}
|
|
1930
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-milestone
|
|
1931
|
-
|
|
1932
|
-
}
|
|
1933
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-milestone-bottom {
|
|
1934
|
-
border-top-color: #3daaff !important; /* stylelint-disable-line declaration-no-important */
|
|
1917
|
+
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-gantt-milestone {
|
|
1918
|
+
background-color: #3daaff !important; /* stylelint-disable-line declaration-no-important */
|
|
1935
1919
|
}
|
|
1936
1920
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-line {
|
|
1937
1921
|
border-color: #005ba3 !important; /* stylelint-disable-line declaration-no-important */
|
|
@@ -2031,7 +2015,7 @@
|
|
|
2031
2015
|
}
|
|
2032
2016
|
|
|
2033
2017
|
.e-gantt .e-gantt-chart .e-gantt-child-critical-taskbar-inner-div {
|
|
2034
|
-
background
|
|
2018
|
+
background: #f3d8da;
|
|
2035
2019
|
outline: 1px solid #f3d8da;
|
|
2036
2020
|
border-radius: 0px;
|
|
2037
2021
|
}
|
|
@@ -2050,10 +2034,6 @@
|
|
|
2050
2034
|
border-radius: 0px;
|
|
2051
2035
|
}
|
|
2052
2036
|
|
|
2053
|
-
.e-gantt .e-gantt-chart .e-critical-milestone
|
|
2054
|
-
|
|
2055
|
-
}
|
|
2056
|
-
|
|
2057
|
-
.e-gantt .e-gantt-chart .e-critical-milestone-bottom {
|
|
2058
|
-
border-top-color: #D13438;
|
|
2037
|
+
.e-gantt .e-gantt-chart .e-critical-milestone {
|
|
2038
|
+
background-color: #D13438;
|
|
2059
2039
|
}
|
package/styles/fluent-dark.css
CHANGED
|
@@ -362,9 +362,6 @@
|
|
|
362
362
|
.e-bigger .e-gantt .e-dialog .e-dlg-header {
|
|
363
363
|
line-height: 28px;
|
|
364
364
|
}
|
|
365
|
-
.e-bigger .e-gantt .e-filter-popup.e-popup {
|
|
366
|
-
width: 392px !important;
|
|
367
|
-
}
|
|
368
365
|
.e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
|
|
369
366
|
padding: 28px 0 0 !important;
|
|
370
367
|
}
|
|
@@ -411,6 +408,7 @@
|
|
|
411
408
|
border-radius: 50%;
|
|
412
409
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
413
410
|
width: auto;
|
|
411
|
+
margin-right: 6px;
|
|
414
412
|
}
|
|
415
413
|
.e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
416
414
|
margin-left: 16px !important;
|
|
@@ -704,6 +702,9 @@
|
|
|
704
702
|
line-height: 10px;
|
|
705
703
|
vertical-align: middle;
|
|
706
704
|
}
|
|
705
|
+
.e-gantt .e-gantt-tree-grid-pane .e-grid .e-gantt-resource-parent .e-rowdragdrop {
|
|
706
|
+
pointer-events: none;
|
|
707
|
+
}
|
|
707
708
|
.e-gantt .e-gantt-chart {
|
|
708
709
|
height: 100%;
|
|
709
710
|
overflow: hidden;
|
|
@@ -1630,6 +1631,9 @@
|
|
|
1630
1631
|
background: #292827;
|
|
1631
1632
|
opacity: 0.9;
|
|
1632
1633
|
}
|
|
1634
|
+
.e-gantt .e-taskbar-resize-div {
|
|
1635
|
+
border-color: #0078d4;
|
|
1636
|
+
}
|
|
1633
1637
|
.e-gantt .e-gantt-chart .e-timeline-header-container {
|
|
1634
1638
|
background: #1b1a19;
|
|
1635
1639
|
border-bottom-color: #292827;
|
|
@@ -1677,7 +1681,7 @@
|
|
|
1677
1681
|
outline-color: #a19f9d;
|
|
1678
1682
|
}
|
|
1679
1683
|
.e-gantt .e-gantt-chart .e-gantt-child-taskbar-inner-div {
|
|
1680
|
-
background
|
|
1684
|
+
background: #6ec0ff;
|
|
1681
1685
|
outline: 1px solid #0078d4;
|
|
1682
1686
|
border-radius: 4px;
|
|
1683
1687
|
}
|
|
@@ -1714,7 +1718,7 @@
|
|
|
1714
1718
|
border-radius: 3px;
|
|
1715
1719
|
}
|
|
1716
1720
|
.e-gantt .e-gantt-chart .e-gantt-child-manualtaskbar {
|
|
1717
|
-
background
|
|
1721
|
+
background: #dff6dd;
|
|
1718
1722
|
outline: 1px solid #0b6a0b;
|
|
1719
1723
|
}
|
|
1720
1724
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar.e-gantt-child-manualtaskbar {
|
|
@@ -1882,23 +1886,16 @@
|
|
|
1882
1886
|
.e-gantt .e-gantt-chart .e-icon {
|
|
1883
1887
|
color: #1b1a19;
|
|
1884
1888
|
}
|
|
1885
|
-
.e-gantt .e-gantt-chart .e-milestone
|
|
1886
|
-
|
|
1887
|
-
|
|
1888
|
-
.e-gantt .e-gantt-chart .e-milestone-bottom {
|
|
1889
|
-
border-top-color: #3b3a39;
|
|
1890
|
-
}
|
|
1891
|
-
.e-gantt .e-gantt-chart .e-parent-milestone-top {
|
|
1892
|
-
border-bottom-color: #3b3a39;
|
|
1893
|
-
}
|
|
1894
|
-
.e-gantt .e-gantt-chart .e-parent-milestone-bottom {
|
|
1895
|
-
border-top-color: #3b3a39;
|
|
1889
|
+
.e-gantt .e-gantt-chart .e-gantt-milestone {
|
|
1890
|
+
background-color: #3b3a39;
|
|
1891
|
+
border-color: #0078d4;
|
|
1896
1892
|
}
|
|
1897
|
-
.e-gantt .e-gantt-chart .e-
|
|
1898
|
-
|
|
1893
|
+
.e-gantt .e-gantt-chart .e-gantt-parent-milestone {
|
|
1894
|
+
background-color: #3b3a39;
|
|
1899
1895
|
}
|
|
1900
|
-
.e-gantt .e-gantt-chart .e-manualparent-milestone
|
|
1901
|
-
|
|
1896
|
+
.e-gantt .e-gantt-chart .e-gantt-manualparent-milestone {
|
|
1897
|
+
background-color: #3b3a39;
|
|
1898
|
+
border-color: #0078d4;
|
|
1902
1899
|
}
|
|
1903
1900
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-manualtask {
|
|
1904
1901
|
background: linear-gradient(to right, rgba(63, 81, 181, 0.2), #989A9C 30%, #989A9C 70%, #989A9C 70%, rgba(63, 81, 181, 0.2) 100%);
|
|
@@ -1918,11 +1915,8 @@
|
|
|
1918
1915
|
.e-gantt .e-gantt-chart .e-baseline-bar {
|
|
1919
1916
|
background-color: #ca5010;
|
|
1920
1917
|
}
|
|
1921
|
-
.e-gantt .e-gantt-chart .e-baseline-milestone-
|
|
1922
|
-
|
|
1923
|
-
}
|
|
1924
|
-
.e-gantt .e-gantt-chart .e-baseline-milestone-bottom {
|
|
1925
|
-
border-top-color: #ca5010;
|
|
1918
|
+
.e-gantt .e-gantt-chart .e-baseline-gantt-milestone-container {
|
|
1919
|
+
background-color: #ca5010;
|
|
1926
1920
|
}
|
|
1927
1921
|
.e-gantt .e-gantt-chart .e-uptail::before {
|
|
1928
1922
|
border-bottom-color: #292827;
|
|
@@ -1976,11 +1970,8 @@
|
|
|
1976
1970
|
background-color: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1977
1971
|
border: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1978
1972
|
}
|
|
1979
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-milestone
|
|
1980
|
-
|
|
1981
|
-
}
|
|
1982
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-milestone-bottom {
|
|
1983
|
-
border-top-color: #005a9e !important; /* stylelint-disable-line declaration-no-important */
|
|
1973
|
+
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-milestone {
|
|
1974
|
+
background-color: #005a9e !important; /* stylelint-disable-line declaration-no-important */
|
|
1984
1975
|
}
|
|
1985
1976
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-parent-taskbar-inner-div {
|
|
1986
1977
|
background-color: #323130 !important; /* stylelint-disable-line declaration-no-important */
|
|
@@ -1994,21 +1985,15 @@
|
|
|
1994
1985
|
background: #0078d4 !important; /* stylelint-disable-line declaration-no-important */
|
|
1995
1986
|
border: #0078d4 !important; /* stylelint-disable-line declaration-no-important */
|
|
1996
1987
|
}
|
|
1997
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-milestone
|
|
1998
|
-
|
|
1999
|
-
}
|
|
2000
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-milestone-bottom {
|
|
2001
|
-
border-top-color: #0078d4 !important; /* stylelint-disable-line declaration-no-important */
|
|
1988
|
+
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-gantt-milestone {
|
|
1989
|
+
background-color: #0078d4 !important; /* stylelint-disable-line declaration-no-important */
|
|
2002
1990
|
}
|
|
2003
1991
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-gantt-child-taskbar-inner-div {
|
|
2004
1992
|
background: #3baaff !important; /* stylelint-disable-line declaration-no-important */
|
|
2005
1993
|
border: #3baaff !important; /* stylelint-disable-line declaration-no-important */
|
|
2006
1994
|
}
|
|
2007
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-milestone
|
|
2008
|
-
|
|
2009
|
-
}
|
|
2010
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-milestone-bottom {
|
|
2011
|
-
border-top-color: #3baaff !important; /* stylelint-disable-line declaration-no-important */
|
|
1995
|
+
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-gantt-milestone {
|
|
1996
|
+
background-color: #3baaff !important; /* stylelint-disable-line declaration-no-important */
|
|
2012
1997
|
}
|
|
2013
1998
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-line {
|
|
2014
1999
|
border-color: #0078d4 !important; /* stylelint-disable-line declaration-no-important */
|
|
@@ -2108,7 +2093,7 @@
|
|
|
2108
2093
|
}
|
|
2109
2094
|
|
|
2110
2095
|
.e-gantt .e-gantt-chart .e-gantt-child-critical-taskbar-inner-div {
|
|
2111
|
-
background
|
|
2096
|
+
background: #fed9cc;
|
|
2112
2097
|
outline: 1px solid #fed9cc;
|
|
2113
2098
|
border-radius: 4px;
|
|
2114
2099
|
}
|
|
@@ -2127,10 +2112,6 @@
|
|
|
2127
2112
|
border-radius: 4px;
|
|
2128
2113
|
}
|
|
2129
2114
|
|
|
2130
|
-
.e-gantt .e-gantt-chart .e-critical-milestone
|
|
2131
|
-
|
|
2132
|
-
}
|
|
2133
|
-
|
|
2134
|
-
.e-gantt .e-gantt-chart .e-critical-milestone-bottom {
|
|
2135
|
-
border-top-color: #d13438;
|
|
2115
|
+
.e-gantt .e-gantt-chart .e-critical-milestone {
|
|
2116
|
+
background-color: #d13438;
|
|
2136
2117
|
}
|
package/styles/fluent.css
CHANGED
|
@@ -362,9 +362,6 @@
|
|
|
362
362
|
.e-bigger .e-gantt .e-dialog .e-dlg-header {
|
|
363
363
|
line-height: 28px;
|
|
364
364
|
}
|
|
365
|
-
.e-bigger .e-gantt .e-filter-popup.e-popup {
|
|
366
|
-
width: 392px !important;
|
|
367
|
-
}
|
|
368
365
|
.e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
|
|
369
366
|
padding: 28px 0 0 !important;
|
|
370
367
|
}
|
|
@@ -411,6 +408,7 @@
|
|
|
411
408
|
border-radius: 50%;
|
|
412
409
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
413
410
|
width: auto;
|
|
411
|
+
margin-right: 6px;
|
|
414
412
|
}
|
|
415
413
|
.e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
416
414
|
margin-left: 16px !important;
|
|
@@ -704,6 +702,9 @@
|
|
|
704
702
|
line-height: 10px;
|
|
705
703
|
vertical-align: middle;
|
|
706
704
|
}
|
|
705
|
+
.e-gantt .e-gantt-tree-grid-pane .e-grid .e-gantt-resource-parent .e-rowdragdrop {
|
|
706
|
+
pointer-events: none;
|
|
707
|
+
}
|
|
707
708
|
.e-gantt .e-gantt-chart {
|
|
708
709
|
height: 100%;
|
|
709
710
|
overflow: hidden;
|
|
@@ -1630,6 +1631,9 @@
|
|
|
1630
1631
|
background: #edebe9;
|
|
1631
1632
|
opacity: 0.9;
|
|
1632
1633
|
}
|
|
1634
|
+
.e-gantt .e-taskbar-resize-div {
|
|
1635
|
+
border-color: #0078d4;
|
|
1636
|
+
}
|
|
1633
1637
|
.e-gantt .e-gantt-chart .e-timeline-header-container {
|
|
1634
1638
|
background: #fff;
|
|
1635
1639
|
border-bottom-color: #edebe9;
|
|
@@ -1677,7 +1681,7 @@
|
|
|
1677
1681
|
outline-color: #605e5c;
|
|
1678
1682
|
}
|
|
1679
1683
|
.e-gantt .e-gantt-chart .e-gantt-child-taskbar-inner-div {
|
|
1680
|
-
background
|
|
1684
|
+
background: #6ec0ff;
|
|
1681
1685
|
outline: 1px solid #0078d4;
|
|
1682
1686
|
border-radius: 4px;
|
|
1683
1687
|
}
|
|
@@ -1714,7 +1718,7 @@
|
|
|
1714
1718
|
border-radius: 3px;
|
|
1715
1719
|
}
|
|
1716
1720
|
.e-gantt .e-gantt-chart .e-gantt-child-manualtaskbar {
|
|
1717
|
-
background
|
|
1721
|
+
background: #dff6dd;
|
|
1718
1722
|
outline: 1px solid #0b6a0b;
|
|
1719
1723
|
}
|
|
1720
1724
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar.e-gantt-child-manualtaskbar {
|
|
@@ -1882,23 +1886,16 @@
|
|
|
1882
1886
|
.e-gantt .e-gantt-chart .e-icon {
|
|
1883
1887
|
color: #fff;
|
|
1884
1888
|
}
|
|
1885
|
-
.e-gantt .e-gantt-chart .e-milestone
|
|
1886
|
-
|
|
1887
|
-
|
|
1888
|
-
.e-gantt .e-gantt-chart .e-milestone-bottom {
|
|
1889
|
-
border-top-color: #d2d0ce;
|
|
1890
|
-
}
|
|
1891
|
-
.e-gantt .e-gantt-chart .e-parent-milestone-top {
|
|
1892
|
-
border-bottom-color: #d2d0ce;
|
|
1893
|
-
}
|
|
1894
|
-
.e-gantt .e-gantt-chart .e-parent-milestone-bottom {
|
|
1895
|
-
border-top-color: #d2d0ce;
|
|
1889
|
+
.e-gantt .e-gantt-chart .e-gantt-milestone {
|
|
1890
|
+
background-color: #d2d0ce;
|
|
1891
|
+
border-color: #0078d4;
|
|
1896
1892
|
}
|
|
1897
|
-
.e-gantt .e-gantt-chart .e-
|
|
1898
|
-
|
|
1893
|
+
.e-gantt .e-gantt-chart .e-gantt-parent-milestone {
|
|
1894
|
+
background-color: #d2d0ce;
|
|
1899
1895
|
}
|
|
1900
|
-
.e-gantt .e-gantt-chart .e-manualparent-milestone
|
|
1901
|
-
|
|
1896
|
+
.e-gantt .e-gantt-chart .e-gantt-manualparent-milestone {
|
|
1897
|
+
background-color: #d2d0ce;
|
|
1898
|
+
border-color: #0078d4;
|
|
1902
1899
|
}
|
|
1903
1900
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-manualtask {
|
|
1904
1901
|
background: linear-gradient(to right, rgba(63, 81, 181, 0.2), #989A9C 30%, #989A9C 70%, #989A9C 70%, rgba(63, 81, 181, 0.2) 100%);
|
|
@@ -1918,11 +1915,8 @@
|
|
|
1918
1915
|
.e-gantt .e-gantt-chart .e-baseline-bar {
|
|
1919
1916
|
background-color: #ca5010;
|
|
1920
1917
|
}
|
|
1921
|
-
.e-gantt .e-gantt-chart .e-baseline-milestone-
|
|
1922
|
-
|
|
1923
|
-
}
|
|
1924
|
-
.e-gantt .e-gantt-chart .e-baseline-milestone-bottom {
|
|
1925
|
-
border-top-color: #ca5010;
|
|
1918
|
+
.e-gantt .e-gantt-chart .e-baseline-gantt-milestone-container {
|
|
1919
|
+
background-color: #ca5010;
|
|
1926
1920
|
}
|
|
1927
1921
|
.e-gantt .e-gantt-chart .e-uptail::before {
|
|
1928
1922
|
border-bottom-color: #edebe9;
|
|
@@ -1976,11 +1970,8 @@
|
|
|
1976
1970
|
background-color: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1977
1971
|
border: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1978
1972
|
}
|
|
1979
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-milestone
|
|
1980
|
-
|
|
1981
|
-
}
|
|
1982
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-milestone-bottom {
|
|
1983
|
-
border-top-color: #c7e0f4 !important; /* stylelint-disable-line declaration-no-important */
|
|
1973
|
+
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-milestone {
|
|
1974
|
+
background-color: #c7e0f4 !important; /* stylelint-disable-line declaration-no-important */
|
|
1984
1975
|
}
|
|
1985
1976
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-parent-taskbar-inner-div {
|
|
1986
1977
|
background-color: #e1dfdd !important; /* stylelint-disable-line declaration-no-important */
|
|
@@ -1994,21 +1985,15 @@
|
|
|
1994
1985
|
background: #0078d4 !important; /* stylelint-disable-line declaration-no-important */
|
|
1995
1986
|
border: #0078d4 !important; /* stylelint-disable-line declaration-no-important */
|
|
1996
1987
|
}
|
|
1997
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-milestone
|
|
1998
|
-
|
|
1999
|
-
}
|
|
2000
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-milestone-bottom {
|
|
2001
|
-
border-top-color: #0078d4 !important; /* stylelint-disable-line declaration-no-important */
|
|
1988
|
+
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-gantt-milestone {
|
|
1989
|
+
background-color: #0078d4 !important; /* stylelint-disable-line declaration-no-important */
|
|
2002
1990
|
}
|
|
2003
1991
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-gantt-child-taskbar-inner-div {
|
|
2004
1992
|
background: #3baaff !important; /* stylelint-disable-line declaration-no-important */
|
|
2005
1993
|
border: #3baaff !important; /* stylelint-disable-line declaration-no-important */
|
|
2006
1994
|
}
|
|
2007
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-milestone
|
|
2008
|
-
|
|
2009
|
-
}
|
|
2010
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-milestone-bottom {
|
|
2011
|
-
border-top-color: #3baaff !important; /* stylelint-disable-line declaration-no-important */
|
|
1995
|
+
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-gantt-milestone {
|
|
1996
|
+
background-color: #3baaff !important; /* stylelint-disable-line declaration-no-important */
|
|
2012
1997
|
}
|
|
2013
1998
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-line {
|
|
2014
1999
|
border-color: #0078d4 !important; /* stylelint-disable-line declaration-no-important */
|
|
@@ -2108,7 +2093,7 @@
|
|
|
2108
2093
|
}
|
|
2109
2094
|
|
|
2110
2095
|
.e-gantt .e-gantt-chart .e-gantt-child-critical-taskbar-inner-div {
|
|
2111
|
-
background
|
|
2096
|
+
background: #fed9cc;
|
|
2112
2097
|
outline: 1px solid #fed9cc;
|
|
2113
2098
|
border-radius: 4px;
|
|
2114
2099
|
}
|
|
@@ -2127,10 +2112,6 @@
|
|
|
2127
2112
|
border-radius: 4px;
|
|
2128
2113
|
}
|
|
2129
2114
|
|
|
2130
|
-
.e-gantt .e-gantt-chart .e-critical-milestone
|
|
2131
|
-
|
|
2132
|
-
}
|
|
2133
|
-
|
|
2134
|
-
.e-gantt .e-gantt-chart .e-critical-milestone-bottom {
|
|
2135
|
-
border-top-color: #d13438;
|
|
2115
|
+
.e-gantt .e-gantt-chart .e-critical-milestone {
|
|
2116
|
+
background-color: #d13438;
|
|
2136
2117
|
}
|