@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.
- package/CHANGELOG.md +186 -0
- package/dist/ej2-vue-gantt.umd.min.js +2 -2
- package/dist/ej2-vue-gantt.umd.min.js.map +1 -1
- package/dist/es6/ej2-vue-gantt.es2015.js +462 -685
- package/dist/es6/ej2-vue-gantt.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-gantt.es5.js +507 -807
- package/dist/es6/ej2-vue-gantt.es5.js.map +1 -1
- package/dist/global/ej2-vue-gantt.min.js +2 -2
- package/package.json +11 -10
- package/src/gantt/adddialogfields.directive.d.ts +2 -12
- package/src/gantt/adddialogfields.directive.js +22 -71
- package/src/gantt/columns.directive.d.ts +2 -12
- package/src/gantt/columns.directive.js +22 -71
- package/src/gantt/dayworkingtime.directive.d.ts +2 -12
- package/src/gantt/dayworkingtime.directive.js +22 -71
- package/src/gantt/editdialogfields.directive.d.ts +2 -12
- package/src/gantt/editdialogfields.directive.js +22 -71
- package/src/gantt/eventmarkers.directive.d.ts +2 -12
- package/src/gantt/eventmarkers.directive.js +22 -71
- package/src/gantt/gantt.component.d.ts +3 -100
- package/src/gantt/gantt.component.js +345 -376
- package/src/gantt/holidays.directive.d.ts +2 -12
- package/src/gantt/holidays.directive.js +22 -71
- package/styles/bootstrap-dark.css +63 -56
- package/styles/bootstrap.css +63 -58
- package/styles/bootstrap4.css +60 -55
- package/styles/bootstrap5-dark.css +60 -55
- package/styles/bootstrap5.css +60 -55
- package/styles/fabric-dark.css +58 -53
- package/styles/fabric.css +58 -53
- package/styles/fluent-dark.css +84 -76
- package/styles/fluent.css +84 -76
- package/styles/gantt/bootstrap-dark.css +63 -56
- package/styles/gantt/bootstrap.css +63 -58
- package/styles/gantt/bootstrap4.css +60 -55
- package/styles/gantt/bootstrap5-dark.css +60 -55
- package/styles/gantt/bootstrap5.css +60 -55
- package/styles/gantt/fabric-dark.css +58 -53
- package/styles/gantt/fabric.css +58 -53
- package/styles/gantt/fluent-dark.css +84 -76
- package/styles/gantt/fluent.css +84 -76
- package/styles/gantt/highcontrast-light.css +58 -55
- package/styles/gantt/highcontrast.css +58 -53
- package/styles/gantt/material-dark.css +61 -60
- package/styles/gantt/material.css +58 -53
- package/styles/gantt/material3-dark.css +2193 -0
- package/styles/gantt/material3-dark.scss +2 -0
- package/styles/gantt/material3.css +2249 -0
- package/styles/gantt/material3.scss +2 -0
- package/styles/gantt/tailwind-dark.css +58 -53
- package/styles/gantt/tailwind.css +58 -53
- package/styles/highcontrast-light.css +58 -55
- package/styles/highcontrast.css +58 -53
- package/styles/material-dark.css +61 -60
- package/styles/material.css +58 -53
- package/styles/material3-dark.css +2193 -0
- package/styles/material3-dark.scss +2 -0
- package/styles/material3.css +2249 -0
- package/styles/material3.scss +2 -0
- package/styles/tailwind-dark.css +58 -53
- package/styles/tailwind.css +58 -53
|
@@ -47,8 +47,8 @@
|
|
|
47
47
|
.e-rte-toolbar.e-extended-toolbar .e-toolbar-extended .e-rte-fontcolor-dropdown,
|
|
48
48
|
.e-rte-toolbar.e-extended-toolbar .e-toolbar-extended .e-rte-numberformatlist-dropdown,
|
|
49
49
|
.e-rte-toolbar.e-extended-toolbar .e-toolbar-extended .e-rte-bulletformatlist-dropdown {
|
|
50
|
-
padding-bottom:
|
|
51
|
-
padding-top:
|
|
50
|
+
padding-bottom: 1px;
|
|
51
|
+
padding-top: 1px;
|
|
52
52
|
}
|
|
53
53
|
.e-rte-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown.e-tbar-btn.e-btn:hover, .e-rte-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown.e-tbar-btn.e-btn.e-active, .e-rte-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown.e-tbar-btn.e-btn.e-active:hover,
|
|
54
54
|
.e-rte-toolbar .e-toolbar-items .e-rte-fontcolor-dropdown.e-tbar-btn.e-btn:hover,
|
|
@@ -456,6 +456,12 @@
|
|
|
456
456
|
.e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
|
|
457
457
|
height: 63px !important; /* stylelint-disable-line declaration-no-important */
|
|
458
458
|
}
|
|
459
|
+
.e-bigger .e-gantt .e-gantt-dialog .e-tab .e-tab-header {
|
|
460
|
+
padding-left: 12px;
|
|
461
|
+
}
|
|
462
|
+
.e-bigger .e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-indicator {
|
|
463
|
+
display: block;
|
|
464
|
+
}
|
|
459
465
|
.e-bigger .e-gantt .e-dialog .e-dlg-header-content {
|
|
460
466
|
padding: 16px 4px 16px 16px !important; /* stylelint-disable-line declaration-no-important */
|
|
461
467
|
}
|
|
@@ -475,9 +481,6 @@
|
|
|
475
481
|
.e-bigger .e-gantt .e-dialog .e-dlg-header {
|
|
476
482
|
line-height: 28px;
|
|
477
483
|
}
|
|
478
|
-
.e-bigger .e-gantt .e-filter-popup.e-popup {
|
|
479
|
-
width: 350px !important;
|
|
480
|
-
}
|
|
481
484
|
.e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
|
|
482
485
|
padding: 16px 0 0 !important;
|
|
483
486
|
}
|
|
@@ -485,7 +488,7 @@
|
|
|
485
488
|
border-radius: 6px !important;
|
|
486
489
|
padding: 32px 16px 16px !important;
|
|
487
490
|
}
|
|
488
|
-
.e-bigger .e-grid .e-columnmenu {
|
|
491
|
+
.e-bigger .e-gantt .e-grid .e-columnmenu {
|
|
489
492
|
top: 40px;
|
|
490
493
|
}
|
|
491
494
|
.e-bigger .e-gantt-dialog .e-dialog {
|
|
@@ -815,6 +818,9 @@
|
|
|
815
818
|
line-height: 10px;
|
|
816
819
|
vertical-align: middle;
|
|
817
820
|
}
|
|
821
|
+
.e-gantt .e-gantt-tree-grid-pane .e-grid .e-gantt-resource-parent .e-rowdragdrop {
|
|
822
|
+
pointer-events: none;
|
|
823
|
+
}
|
|
818
824
|
.e-gantt .e-gantt-chart {
|
|
819
825
|
height: 100%;
|
|
820
826
|
overflow: hidden;
|
|
@@ -1690,6 +1696,9 @@
|
|
|
1690
1696
|
border-color: #ddd;
|
|
1691
1697
|
border-radius: 4px;
|
|
1692
1698
|
}
|
|
1699
|
+
.e-gantt .e-grid .e-spinner-pane {
|
|
1700
|
+
display: none;
|
|
1701
|
+
}
|
|
1693
1702
|
.e-gantt .e-cloneproperties.e-draganddrop {
|
|
1694
1703
|
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
|
1695
1704
|
opacity: 0.95;
|
|
@@ -1734,6 +1743,9 @@
|
|
|
1734
1743
|
background: #c6ddf0;
|
|
1735
1744
|
opacity: 1;
|
|
1736
1745
|
}
|
|
1746
|
+
.e-gantt .e-taskbar-resize-div {
|
|
1747
|
+
border-color: #317ab9;
|
|
1748
|
+
}
|
|
1737
1749
|
.e-gantt .e-gantt-chart .e-timeline-header-container {
|
|
1738
1750
|
background: #fff;
|
|
1739
1751
|
border-bottom-color: #ddd;
|
|
@@ -1781,7 +1793,7 @@
|
|
|
1781
1793
|
outline-color: #66afe9;
|
|
1782
1794
|
}
|
|
1783
1795
|
.e-gantt .e-gantt-chart .e-gantt-child-taskbar-inner-div {
|
|
1784
|
-
background
|
|
1796
|
+
background: #317ab9;
|
|
1785
1797
|
outline: 1px solid #21527d;
|
|
1786
1798
|
border-radius: 4px;
|
|
1787
1799
|
}
|
|
@@ -1809,16 +1821,16 @@
|
|
|
1809
1821
|
}
|
|
1810
1822
|
.e-gantt .e-gantt-chart .e-gantt-parent-progressbar-inner-div {
|
|
1811
1823
|
background-color: #555;
|
|
1812
|
-
border:
|
|
1824
|
+
border: 0px solid #555;
|
|
1813
1825
|
border-radius: 4px;
|
|
1814
1826
|
}
|
|
1815
1827
|
.e-gantt .e-gantt-chart .e-gantt-child-progressbar-inner-div {
|
|
1816
1828
|
background-color: #21527d;
|
|
1817
|
-
border:
|
|
1818
|
-
border-radius:
|
|
1829
|
+
border: 0px solid #21527d;
|
|
1830
|
+
border-radius: 3px;
|
|
1819
1831
|
}
|
|
1820
1832
|
.e-gantt .e-gantt-chart .e-gantt-child-manualtaskbar {
|
|
1821
|
-
background
|
|
1833
|
+
background: #7538C9;
|
|
1822
1834
|
outline: 1px solid #572A96;
|
|
1823
1835
|
}
|
|
1824
1836
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar.e-gantt-child-manualtaskbar {
|
|
@@ -1826,7 +1838,7 @@
|
|
|
1826
1838
|
}
|
|
1827
1839
|
.e-gantt .e-gantt-chart .e-gantt-child-manualprogressbar {
|
|
1828
1840
|
background-color: #572A96;
|
|
1829
|
-
|
|
1841
|
+
outline: 0px;
|
|
1830
1842
|
}
|
|
1831
1843
|
.e-gantt .e-gantt-chart .e-gantt-critical-child-manualprogressbar {
|
|
1832
1844
|
background-color: #572A96;
|
|
@@ -1886,6 +1898,18 @@
|
|
|
1886
1898
|
.e-gantt .e-gantt-chart .e-line {
|
|
1887
1899
|
border-color: #21527d;
|
|
1888
1900
|
}
|
|
1901
|
+
.e-gantt .e-gantt-chart .e-connector-line {
|
|
1902
|
+
stroke: #21527d;
|
|
1903
|
+
}
|
|
1904
|
+
.e-gantt .e-gantt-chart .e-critical-line {
|
|
1905
|
+
stroke: #d13438;
|
|
1906
|
+
}
|
|
1907
|
+
.e-gantt .e-gantt-chart .e-connector-line-arrow {
|
|
1908
|
+
fill: #21527d;
|
|
1909
|
+
}
|
|
1910
|
+
.e-gantt .e-gantt-chart .e-critical-line-arrow {
|
|
1911
|
+
fill: #d13438;
|
|
1912
|
+
}
|
|
1889
1913
|
.e-gantt .e-gantt-chart .e-connector-line-right-arrow {
|
|
1890
1914
|
border-left-color: #21527d;
|
|
1891
1915
|
}
|
|
@@ -1937,7 +1961,10 @@
|
|
|
1937
1961
|
padding-right: 25px;
|
|
1938
1962
|
}
|
|
1939
1963
|
.e-gantt .e-gantt-chart .e-connectorpoint-right {
|
|
1940
|
-
margin-left:
|
|
1964
|
+
margin-left: 3px;
|
|
1965
|
+
}
|
|
1966
|
+
.e-gantt .e-gantt-chart .e-connectorpoint-left {
|
|
1967
|
+
margin-right: 3px;
|
|
1941
1968
|
}
|
|
1942
1969
|
.e-gantt .e-gantt-chart .e-right-connectorpoint-outer-div,
|
|
1943
1970
|
.e-gantt .e-gantt-chart .e-left-connectorpoint-outer-div {
|
|
@@ -1971,23 +1998,16 @@
|
|
|
1971
1998
|
.e-gantt .e-gantt-chart .e-icon {
|
|
1972
1999
|
color: #fff;
|
|
1973
2000
|
}
|
|
1974
|
-
.e-gantt .e-gantt-chart .e-milestone
|
|
1975
|
-
|
|
1976
|
-
|
|
1977
|
-
.e-gantt .e-gantt-chart .e-milestone-bottom {
|
|
1978
|
-
border-top-color: #555;
|
|
1979
|
-
}
|
|
1980
|
-
.e-gantt .e-gantt-chart .e-parent-milestone-top {
|
|
1981
|
-
border-bottom-color: #555;
|
|
1982
|
-
}
|
|
1983
|
-
.e-gantt .e-gantt-chart .e-parent-milestone-bottom {
|
|
1984
|
-
border-top-color: #555;
|
|
2001
|
+
.e-gantt .e-gantt-chart .e-gantt-milestone {
|
|
2002
|
+
background-color: #555;
|
|
2003
|
+
border-color: #21527d;
|
|
1985
2004
|
}
|
|
1986
|
-
.e-gantt .e-gantt-chart .e-
|
|
1987
|
-
|
|
2005
|
+
.e-gantt .e-gantt-chart .e-gantt-parent-milestone {
|
|
2006
|
+
background-color: #555;
|
|
1988
2007
|
}
|
|
1989
|
-
.e-gantt .e-gantt-chart .e-manualparent-milestone
|
|
1990
|
-
|
|
2008
|
+
.e-gantt .e-gantt-chart .e-gantt-manualparent-milestone {
|
|
2009
|
+
background-color: #989A9C;
|
|
2010
|
+
border-color: #21527d;
|
|
1991
2011
|
}
|
|
1992
2012
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-manualtask {
|
|
1993
2013
|
background: linear-gradient(to right, rgba(63, 81, 181, 0.2), #989A9C 30%, #989A9C 70%, #989A9C 70%, rgba(63, 81, 181, 0.2) 100%);
|
|
@@ -2007,11 +2027,8 @@
|
|
|
2007
2027
|
.e-gantt .e-gantt-chart .e-baseline-bar {
|
|
2008
2028
|
background-color: #f0ad4e;
|
|
2009
2029
|
}
|
|
2010
|
-
.e-gantt .e-gantt-chart .e-baseline-milestone-
|
|
2011
|
-
|
|
2012
|
-
}
|
|
2013
|
-
.e-gantt .e-gantt-chart .e-baseline-milestone-bottom {
|
|
2014
|
-
border-top-color: #f0ad4e;
|
|
2030
|
+
.e-gantt .e-gantt-chart .e-baseline-gantt-milestone-container {
|
|
2031
|
+
background-color: #f0ad4e;
|
|
2015
2032
|
}
|
|
2016
2033
|
.e-gantt .e-gantt-chart .e-uptail::before {
|
|
2017
2034
|
border-bottom-color: #e0e0e0;
|
|
@@ -2065,11 +2082,8 @@
|
|
|
2065
2082
|
background-color: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
2066
2083
|
border: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
2067
2084
|
}
|
|
2068
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-milestone
|
|
2069
|
-
|
|
2070
|
-
}
|
|
2071
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-milestone-bottom {
|
|
2072
|
-
border-top-color: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
|
|
2085
|
+
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-milestone {
|
|
2086
|
+
background-color: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
|
|
2073
2087
|
}
|
|
2074
2088
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-parent-taskbar-inner-div {
|
|
2075
2089
|
background-color: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
|
|
@@ -2083,21 +2097,15 @@
|
|
|
2083
2097
|
background: #21527d !important; /* stylelint-disable-line declaration-no-important */
|
|
2084
2098
|
border: #21527d !important; /* stylelint-disable-line declaration-no-important */
|
|
2085
2099
|
}
|
|
2086
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-milestone
|
|
2087
|
-
|
|
2088
|
-
}
|
|
2089
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-milestone-bottom {
|
|
2090
|
-
border-top-color: #21527d !important; /* stylelint-disable-line declaration-no-important */
|
|
2100
|
+
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-gantt-milestone {
|
|
2101
|
+
background-color: #21527d !important; /* stylelint-disable-line declaration-no-important */
|
|
2091
2102
|
}
|
|
2092
2103
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-gantt-child-taskbar-inner-div {
|
|
2093
2104
|
background: #75acdb !important; /* stylelint-disable-line declaration-no-important */
|
|
2094
2105
|
border: #75acdb !important; /* stylelint-disable-line declaration-no-important */
|
|
2095
2106
|
}
|
|
2096
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-milestone
|
|
2097
|
-
|
|
2098
|
-
}
|
|
2099
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-milestone-bottom {
|
|
2100
|
-
border-top-color: #75acdb !important; /* stylelint-disable-line declaration-no-important */
|
|
2107
|
+
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-gantt-milestone {
|
|
2108
|
+
background-color: #75acdb !important; /* stylelint-disable-line declaration-no-important */
|
|
2101
2109
|
}
|
|
2102
2110
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-line {
|
|
2103
2111
|
border-color: #21527d !important; /* stylelint-disable-line declaration-no-important */
|
|
@@ -2197,15 +2205,16 @@
|
|
|
2197
2205
|
}
|
|
2198
2206
|
|
|
2199
2207
|
.e-gantt .e-gantt-chart .e-gantt-child-critical-taskbar-inner-div {
|
|
2200
|
-
background
|
|
2201
|
-
|
|
2208
|
+
background: #F3D8DA;
|
|
2209
|
+
outline: 1px solid #F3D8DA;
|
|
2202
2210
|
border-radius: 4px;
|
|
2203
2211
|
}
|
|
2204
2212
|
|
|
2205
2213
|
.e-gantt .e-gantt-chart .e-gantt-child-critical-progressbar-inner-div {
|
|
2206
2214
|
background-color: #D13438;
|
|
2207
|
-
border:
|
|
2208
|
-
|
|
2215
|
+
border: 0px solid #21527d;
|
|
2216
|
+
position: absolute;
|
|
2217
|
+
border-radius: 3px;
|
|
2209
2218
|
}
|
|
2210
2219
|
|
|
2211
2220
|
.e-gantt .e-gantt-chart .e-gantt-critical-unscheduled-taskbar {
|
|
@@ -2215,10 +2224,6 @@
|
|
|
2215
2224
|
border-radius: 4px;
|
|
2216
2225
|
}
|
|
2217
2226
|
|
|
2218
|
-
.e-gantt .e-gantt-chart .e-critical-milestone
|
|
2219
|
-
|
|
2220
|
-
}
|
|
2221
|
-
|
|
2222
|
-
.e-gantt .e-gantt-chart .e-critical-milestone-bottom {
|
|
2223
|
-
border-top-color: #D13438;
|
|
2227
|
+
.e-gantt .e-gantt-chart .e-critical-milestone {
|
|
2228
|
+
background-color: #D13438;
|
|
2224
2229
|
}
|
|
@@ -38,8 +38,8 @@
|
|
|
38
38
|
}
|
|
39
39
|
.e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-inline-dropdown.e-control.e-tbar-btn.e-btn, .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-inline-dropdown.e-control.e-tbar-btn.e-btn {
|
|
40
40
|
border: 1px solid transparent;
|
|
41
|
-
padding-bottom:
|
|
42
|
-
padding-top:
|
|
41
|
+
padding-bottom: 0;
|
|
42
|
+
padding-top: 0;
|
|
43
43
|
}
|
|
44
44
|
.e-richtexteditor .e-rte-content {
|
|
45
45
|
border-bottom-left-radius: 4px;
|
|
@@ -637,6 +637,12 @@
|
|
|
637
637
|
.e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
|
|
638
638
|
height: 63px !important; /* stylelint-disable-line declaration-no-important */
|
|
639
639
|
}
|
|
640
|
+
.e-bigger .e-gantt .e-gantt-dialog .e-tab .e-tab-header {
|
|
641
|
+
padding-left: 12px;
|
|
642
|
+
}
|
|
643
|
+
.e-bigger .e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-indicator {
|
|
644
|
+
display: block;
|
|
645
|
+
}
|
|
640
646
|
.e-bigger .e-gantt .e-dialog .e-dlg-header-content {
|
|
641
647
|
padding: 16px 4px 16px 16px !important; /* stylelint-disable-line declaration-no-important */
|
|
642
648
|
}
|
|
@@ -656,9 +662,6 @@
|
|
|
656
662
|
.e-bigger .e-gantt .e-dialog .e-dlg-header {
|
|
657
663
|
line-height: 28px;
|
|
658
664
|
}
|
|
659
|
-
.e-bigger .e-gantt .e-filter-popup.e-popup {
|
|
660
|
-
width: 350px !important;
|
|
661
|
-
}
|
|
662
665
|
.e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
|
|
663
666
|
padding: 16px 0 0 !important;
|
|
664
667
|
}
|
|
@@ -666,7 +669,7 @@
|
|
|
666
669
|
border-radius: 6px !important;
|
|
667
670
|
padding: 32px 16px 16px !important;
|
|
668
671
|
}
|
|
669
|
-
.e-bigger .e-grid .e-columnmenu {
|
|
672
|
+
.e-bigger .e-gantt .e-grid .e-columnmenu {
|
|
670
673
|
top: 38px;
|
|
671
674
|
}
|
|
672
675
|
.e-bigger .e-gantt-dialog .e-dialog {
|
|
@@ -999,6 +1002,9 @@
|
|
|
999
1002
|
line-height: 10px;
|
|
1000
1003
|
vertical-align: middle;
|
|
1001
1004
|
}
|
|
1005
|
+
.e-gantt .e-gantt-tree-grid-pane .e-grid .e-gantt-resource-parent .e-rowdragdrop {
|
|
1006
|
+
pointer-events: none;
|
|
1007
|
+
}
|
|
1002
1008
|
.e-gantt .e-gantt-chart {
|
|
1003
1009
|
height: 100%;
|
|
1004
1010
|
overflow: hidden;
|
|
@@ -1874,6 +1880,9 @@
|
|
|
1874
1880
|
border-color: #dee2e6;
|
|
1875
1881
|
border-radius: 0px;
|
|
1876
1882
|
}
|
|
1883
|
+
.e-gantt .e-grid .e-spinner-pane {
|
|
1884
|
+
display: none;
|
|
1885
|
+
}
|
|
1877
1886
|
.e-gantt .e-cloneproperties.e-draganddrop {
|
|
1878
1887
|
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
|
1879
1888
|
opacity: 0.95;
|
|
@@ -1918,6 +1927,9 @@
|
|
|
1918
1927
|
background: rgba(0, 123, 255, 0.16);
|
|
1919
1928
|
opacity: 1;
|
|
1920
1929
|
}
|
|
1930
|
+
.e-gantt .e-taskbar-resize-div {
|
|
1931
|
+
border-color: #007bff;
|
|
1932
|
+
}
|
|
1921
1933
|
.e-gantt .e-gantt-chart .e-timeline-header-container {
|
|
1922
1934
|
background: #fff;
|
|
1923
1935
|
border-bottom-color: #dee2e6;
|
|
@@ -1965,7 +1977,7 @@
|
|
|
1965
1977
|
outline-color: #66afe9;
|
|
1966
1978
|
}
|
|
1967
1979
|
.e-gantt .e-gantt-chart .e-gantt-child-taskbar-inner-div {
|
|
1968
|
-
background
|
|
1980
|
+
background: #007bff;
|
|
1969
1981
|
outline: 1px solid #0056b3;
|
|
1970
1982
|
border-radius: 4px;
|
|
1971
1983
|
}
|
|
@@ -1999,10 +2011,10 @@
|
|
|
1999
2011
|
.e-gantt .e-gantt-chart .e-gantt-child-progressbar-inner-div {
|
|
2000
2012
|
background-color: #0056b3;
|
|
2001
2013
|
border: 0px;
|
|
2002
|
-
border-radius:
|
|
2014
|
+
border-radius: 3px;
|
|
2003
2015
|
}
|
|
2004
2016
|
.e-gantt .e-gantt-chart .e-gantt-child-manualtaskbar {
|
|
2005
|
-
background
|
|
2017
|
+
background: #8553F1;
|
|
2006
2018
|
outline: 1px solid #6628EE;
|
|
2007
2019
|
}
|
|
2008
2020
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar.e-gantt-child-manualtaskbar {
|
|
@@ -2010,7 +2022,7 @@
|
|
|
2010
2022
|
}
|
|
2011
2023
|
.e-gantt .e-gantt-chart .e-gantt-child-manualprogressbar {
|
|
2012
2024
|
background-color: #6628EE;
|
|
2013
|
-
|
|
2025
|
+
outline: 0px;
|
|
2014
2026
|
}
|
|
2015
2027
|
.e-gantt .e-gantt-chart .e-gantt-critical-child-manualprogressbar {
|
|
2016
2028
|
background-color: #6628EE;
|
|
@@ -2070,6 +2082,18 @@
|
|
|
2070
2082
|
.e-gantt .e-gantt-chart .e-line {
|
|
2071
2083
|
border-color: #0056b3;
|
|
2072
2084
|
}
|
|
2085
|
+
.e-gantt .e-gantt-chart .e-connector-line {
|
|
2086
|
+
stroke: #0056b3;
|
|
2087
|
+
}
|
|
2088
|
+
.e-gantt .e-gantt-chart .e-critical-line {
|
|
2089
|
+
stroke: #d13438;
|
|
2090
|
+
}
|
|
2091
|
+
.e-gantt .e-gantt-chart .e-connector-line-arrow {
|
|
2092
|
+
fill: #0056b3;
|
|
2093
|
+
}
|
|
2094
|
+
.e-gantt .e-gantt-chart .e-critical-line-arrow {
|
|
2095
|
+
fill: #d13438;
|
|
2096
|
+
}
|
|
2073
2097
|
.e-gantt .e-gantt-chart .e-connector-line-right-arrow {
|
|
2074
2098
|
border-left-color: #0056b3;
|
|
2075
2099
|
}
|
|
@@ -2121,7 +2145,10 @@
|
|
|
2121
2145
|
padding-right: 25px;
|
|
2122
2146
|
}
|
|
2123
2147
|
.e-gantt .e-gantt-chart .e-connectorpoint-right {
|
|
2124
|
-
margin-left:
|
|
2148
|
+
margin-left: 3px;
|
|
2149
|
+
}
|
|
2150
|
+
.e-gantt .e-gantt-chart .e-connectorpoint-left {
|
|
2151
|
+
margin-right: 3px;
|
|
2125
2152
|
}
|
|
2126
2153
|
.e-gantt .e-gantt-chart .e-right-connectorpoint-outer-div,
|
|
2127
2154
|
.e-gantt .e-gantt-chart .e-left-connectorpoint-outer-div {
|
|
@@ -2155,23 +2182,16 @@
|
|
|
2155
2182
|
.e-gantt .e-gantt-chart .e-icon {
|
|
2156
2183
|
color: #fff;
|
|
2157
2184
|
}
|
|
2158
|
-
.e-gantt .e-gantt-chart .e-milestone
|
|
2159
|
-
|
|
2160
|
-
|
|
2161
|
-
.e-gantt .e-gantt-chart .e-milestone-bottom {
|
|
2162
|
-
border-top-color: #495057;
|
|
2163
|
-
}
|
|
2164
|
-
.e-gantt .e-gantt-chart .e-parent-milestone-top {
|
|
2165
|
-
border-bottom-color: #495057;
|
|
2166
|
-
}
|
|
2167
|
-
.e-gantt .e-gantt-chart .e-parent-milestone-bottom {
|
|
2168
|
-
border-top-color: #495057;
|
|
2185
|
+
.e-gantt .e-gantt-chart .e-gantt-milestone {
|
|
2186
|
+
background-color: #495057;
|
|
2187
|
+
border-color: #0056b3;
|
|
2169
2188
|
}
|
|
2170
|
-
.e-gantt .e-gantt-chart .e-
|
|
2171
|
-
|
|
2189
|
+
.e-gantt .e-gantt-chart .e-gantt-parent-milestone {
|
|
2190
|
+
background-color: #495057;
|
|
2172
2191
|
}
|
|
2173
|
-
.e-gantt .e-gantt-chart .e-manualparent-milestone
|
|
2174
|
-
|
|
2192
|
+
.e-gantt .e-gantt-chart .e-gantt-manualparent-milestone {
|
|
2193
|
+
background-color: #989A9C;
|
|
2194
|
+
border-color: #0056b3;
|
|
2175
2195
|
}
|
|
2176
2196
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-manualtask {
|
|
2177
2197
|
background: linear-gradient(to right, rgba(63, 81, 181, 0.2), #989A9C 30%, #989A9C 70%, #989A9C 70%, rgba(63, 81, 181, 0.2) 100%);
|
|
@@ -2191,11 +2211,8 @@
|
|
|
2191
2211
|
.e-gantt .e-gantt-chart .e-baseline-bar {
|
|
2192
2212
|
background-color: #ffc107;
|
|
2193
2213
|
}
|
|
2194
|
-
.e-gantt .e-gantt-chart .e-baseline-milestone-
|
|
2195
|
-
|
|
2196
|
-
}
|
|
2197
|
-
.e-gantt .e-gantt-chart .e-baseline-milestone-bottom {
|
|
2198
|
-
border-top-color: #ffc107;
|
|
2214
|
+
.e-gantt .e-gantt-chart .e-baseline-gantt-milestone-container {
|
|
2215
|
+
background-color: #ffc107;
|
|
2199
2216
|
}
|
|
2200
2217
|
.e-gantt .e-gantt-chart .e-uptail::before {
|
|
2201
2218
|
border-bottom-color: #e0e0e0;
|
|
@@ -2249,11 +2266,8 @@
|
|
|
2249
2266
|
background-color: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
2250
2267
|
border: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
2251
2268
|
}
|
|
2252
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-milestone
|
|
2253
|
-
|
|
2254
|
-
}
|
|
2255
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-milestone-bottom {
|
|
2256
|
-
border-top-color: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
|
|
2269
|
+
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-milestone {
|
|
2270
|
+
background-color: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
|
|
2257
2271
|
}
|
|
2258
2272
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-parent-taskbar-inner-div {
|
|
2259
2273
|
background-color: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
|
|
@@ -2267,21 +2281,15 @@
|
|
|
2267
2281
|
background: #0056b3 !important; /* stylelint-disable-line declaration-no-important */
|
|
2268
2282
|
border: #0056b3 !important; /* stylelint-disable-line declaration-no-important */
|
|
2269
2283
|
}
|
|
2270
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-milestone
|
|
2271
|
-
|
|
2272
|
-
}
|
|
2273
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-milestone-bottom {
|
|
2274
|
-
border-top-color: #0056b3 !important; /* stylelint-disable-line declaration-no-important */
|
|
2284
|
+
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-gantt-milestone {
|
|
2285
|
+
background-color: #0056b3 !important; /* stylelint-disable-line declaration-no-important */
|
|
2275
2286
|
}
|
|
2276
2287
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-gantt-child-taskbar-inner-div {
|
|
2277
2288
|
background: #66b0ff !important; /* stylelint-disable-line declaration-no-important */
|
|
2278
2289
|
border: #66b0ff !important; /* stylelint-disable-line declaration-no-important */
|
|
2279
2290
|
}
|
|
2280
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-milestone
|
|
2281
|
-
|
|
2282
|
-
}
|
|
2283
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-milestone-bottom {
|
|
2284
|
-
border-top-color: #66b0ff !important; /* stylelint-disable-line declaration-no-important */
|
|
2291
|
+
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-gantt-milestone {
|
|
2292
|
+
background-color: #66b0ff !important; /* stylelint-disable-line declaration-no-important */
|
|
2285
2293
|
}
|
|
2286
2294
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-line {
|
|
2287
2295
|
border-color: #0056b3 !important; /* stylelint-disable-line declaration-no-important */
|
|
@@ -2381,15 +2389,16 @@
|
|
|
2381
2389
|
}
|
|
2382
2390
|
|
|
2383
2391
|
.e-gantt .e-gantt-chart .e-gantt-child-critical-taskbar-inner-div {
|
|
2384
|
-
background
|
|
2385
|
-
|
|
2392
|
+
background: #F3D8DA;
|
|
2393
|
+
outline: 1px solid #F3D8DA;
|
|
2386
2394
|
border-radius: 4px;
|
|
2387
2395
|
}
|
|
2388
2396
|
|
|
2389
2397
|
.e-gantt .e-gantt-chart .e-gantt-child-critical-progressbar-inner-div {
|
|
2390
2398
|
background-color: #D13438;
|
|
2391
2399
|
border: 0px;
|
|
2392
|
-
|
|
2400
|
+
position: absolute;
|
|
2401
|
+
border-radius: 3px;
|
|
2393
2402
|
}
|
|
2394
2403
|
|
|
2395
2404
|
.e-gantt .e-gantt-chart .e-gantt-critical-unscheduled-taskbar {
|
|
@@ -2399,10 +2408,6 @@
|
|
|
2399
2408
|
border-radius: 4px;
|
|
2400
2409
|
}
|
|
2401
2410
|
|
|
2402
|
-
.e-gantt .e-gantt-chart .e-critical-milestone
|
|
2403
|
-
|
|
2404
|
-
}
|
|
2405
|
-
|
|
2406
|
-
.e-gantt .e-gantt-chart .e-critical-milestone-bottom {
|
|
2407
|
-
border-top-color: #D13438;
|
|
2411
|
+
.e-gantt .e-gantt-chart .e-critical-milestone {
|
|
2412
|
+
background-color: #D13438;
|
|
2408
2413
|
}
|