@syncfusion/ej2-vue-gantt 22.2.12 → 23.1.38
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 +202 -164
- package/dist/ej2-vue-gantt.umd.min.js +3 -3
- package/dist/ej2-vue-gantt.umd.min.js.map +1 -1
- package/dist/es6/ej2-vue-gantt.es2015.js +1 -1
- package/dist/es6/ej2-vue-gantt.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-gantt.es5.js +1 -1
- package/dist/es6/ej2-vue-gantt.es5.js.map +1 -1
- package/dist/global/ej2-vue-gantt.min.js +3 -3
- package/package.json +9 -9
- package/src/gantt/adddialogfields.directive.d.ts +3 -1
- package/src/gantt/columns.directive.d.ts +3 -1
- package/src/gantt/dayworkingtime.directive.d.ts +3 -1
- package/src/gantt/editdialogfields.directive.d.ts +3 -1
- package/src/gantt/eventmarkers.directive.d.ts +3 -1
- package/src/gantt/gantt.component.d.ts +3 -1
- package/src/gantt/gantt.component.js +1 -1
- package/src/gantt/holidays.directive.d.ts +3 -1
- package/styles/bootstrap-dark.css +44 -100
- package/styles/bootstrap.css +44 -100
- package/styles/bootstrap4.css +44 -100
- package/styles/bootstrap5-dark.css +44 -100
- package/styles/bootstrap5.css +44 -100
- package/styles/fabric-dark.css +44 -100
- package/styles/fabric.css +44 -100
- package/styles/fluent-dark.css +44 -100
- package/styles/fluent.css +44 -100
- package/styles/gantt/bootstrap-dark.css +44 -100
- package/styles/gantt/bootstrap.css +44 -100
- package/styles/gantt/bootstrap4.css +44 -100
- package/styles/gantt/bootstrap5-dark.css +44 -100
- package/styles/gantt/bootstrap5.css +44 -100
- package/styles/gantt/fabric-dark.css +44 -100
- package/styles/gantt/fabric.css +44 -100
- package/styles/gantt/fluent-dark.css +44 -100
- package/styles/gantt/fluent.css +44 -100
- package/styles/gantt/highcontrast-light.css +40 -100
- package/styles/gantt/highcontrast.css +44 -100
- package/styles/gantt/material-dark.css +44 -101
- package/styles/gantt/material.css +44 -101
- package/styles/gantt/material3-dark.css +45 -102
- package/styles/gantt/material3-dark.scss +1 -1
- package/styles/gantt/material3.css +45 -102
- package/styles/gantt/material3.scss +1 -1
- package/styles/gantt/tailwind-dark.css +44 -101
- package/styles/gantt/tailwind.css +44 -101
- package/styles/highcontrast-light.css +40 -100
- package/styles/highcontrast.css +44 -100
- package/styles/material-dark.css +44 -101
- package/styles/material.css +44 -101
- package/styles/material3-dark.css +45 -102
- package/styles/material3.css +45 -102
- package/styles/tailwind-dark.css +44 -101
- package/styles/tailwind.css +44 -101
package/styles/gantt/fluent.css
CHANGED
|
@@ -267,6 +267,10 @@
|
|
|
267
267
|
content: "\e770";
|
|
268
268
|
}
|
|
269
269
|
|
|
270
|
+
.e-icon-rowselect::before {
|
|
271
|
+
content: "\e7d4";
|
|
272
|
+
}
|
|
273
|
+
|
|
270
274
|
.e-gantt-tooltip-arrow-left::before {
|
|
271
275
|
content: "\e773";
|
|
272
276
|
}
|
|
@@ -319,6 +323,7 @@
|
|
|
319
323
|
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
|
|
320
324
|
background-color: #005ba1;
|
|
321
325
|
border-color: #fff;
|
|
326
|
+
position: relative;
|
|
322
327
|
}
|
|
323
328
|
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover:hover,
|
|
324
329
|
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover:hover {
|
|
@@ -326,6 +331,17 @@
|
|
|
326
331
|
border-color: #fff;
|
|
327
332
|
outline: 2px solid #fff;
|
|
328
333
|
}
|
|
334
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover::after,
|
|
335
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover::after {
|
|
336
|
+
content: "";
|
|
337
|
+
position: absolute;
|
|
338
|
+
width: 30px;
|
|
339
|
+
height: 40px;
|
|
340
|
+
top: -10px;
|
|
341
|
+
}
|
|
342
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-allow-block {
|
|
343
|
+
cursor: no-drop;
|
|
344
|
+
}
|
|
329
345
|
.e-bigger .e-gantt .e-tab .e-content {
|
|
330
346
|
height: 254px !important;
|
|
331
347
|
}
|
|
@@ -374,7 +390,6 @@
|
|
|
374
390
|
}
|
|
375
391
|
.e-bigger .e-gantt-dialog .e-dialog {
|
|
376
392
|
border-radius: 6px;
|
|
377
|
-
width: 580px !important;
|
|
378
393
|
}
|
|
379
394
|
.e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
380
395
|
padding: 0 16px !important; /* stylelint-disable-line declaration-no-important */
|
|
@@ -518,10 +533,6 @@
|
|
|
518
533
|
border-right: none !important; /* stylelint-disable-line declaration-no-important */
|
|
519
534
|
border-left-color: #0078d4;
|
|
520
535
|
}
|
|
521
|
-
.e-gantt.e-gantt-rtl .e-toolbar-right {
|
|
522
|
-
left: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
523
|
-
right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
524
|
-
}
|
|
525
536
|
.e-gantt.e-gantt-rtl .e-gantt-chart .e-timeline-header-container {
|
|
526
537
|
border-right: none !important; /* stylelint-disable-line declaration-no-important */
|
|
527
538
|
border-left: 1px solid !important; /* stylelint-disable-line declaration-no-important */
|
|
@@ -841,6 +852,12 @@
|
|
|
841
852
|
vertical-align: middle;
|
|
842
853
|
z-index: 3;
|
|
843
854
|
}
|
|
855
|
+
.e-gantt .e-gantt-chart .e-taskbar-main-container:hover {
|
|
856
|
+
z-index: 4;
|
|
857
|
+
}
|
|
858
|
+
.e-gantt .e-gantt-chart .e-taskbar-main-container.e-gantt-multi-taskbar:hover {
|
|
859
|
+
z-index: 4;
|
|
860
|
+
}
|
|
844
861
|
.e-gantt .e-gantt-chart .e-left-label-container.e-left-label-temp-container {
|
|
845
862
|
-ms-flex-align: center;
|
|
846
863
|
align-items: center;
|
|
@@ -980,72 +997,61 @@
|
|
|
980
997
|
height: 16px;
|
|
981
998
|
width: 16px;
|
|
982
999
|
left: 14px;
|
|
983
|
-
background: rgb(225, 223, 221);
|
|
984
1000
|
}
|
|
985
1001
|
.e-gantt .e-gantt-chart .e-innerHTML1 {
|
|
986
1002
|
height: 16px;
|
|
987
1003
|
width: 16px;
|
|
988
1004
|
left: 30px;
|
|
989
|
-
background: rgb(225, 223, 221);
|
|
990
1005
|
}
|
|
991
1006
|
.e-gantt .e-gantt-chart .e-innerHTML2 {
|
|
992
1007
|
height: 16px;
|
|
993
1008
|
width: 16px;
|
|
994
1009
|
left: 60px;
|
|
995
|
-
background: rgb(225, 223, 221);
|
|
996
1010
|
}
|
|
997
1011
|
.e-gantt .e-gantt-chart .e-timelineHeader {
|
|
998
1012
|
height: 16px;
|
|
999
1013
|
width: 82px;
|
|
1000
1014
|
left: 20px;
|
|
1001
|
-
background: rgb(225, 223, 221);
|
|
1002
1015
|
}
|
|
1003
1016
|
.e-gantt .e-gantt-chart .e-maskcell01 {
|
|
1004
1017
|
height: 12px;
|
|
1005
1018
|
width: 88px;
|
|
1006
1019
|
left: 14px;
|
|
1007
1020
|
border-radius: 0;
|
|
1008
|
-
background: rgb(225, 223, 221);
|
|
1009
1021
|
}
|
|
1010
1022
|
.e-gantt .e-gantt-chart .e-maskcell02 {
|
|
1011
1023
|
height: 18px;
|
|
1012
1024
|
width: 410px;
|
|
1013
1025
|
border-radius: 0;
|
|
1014
|
-
background: rgb(225, 223, 221);
|
|
1015
1026
|
}
|
|
1016
1027
|
.e-gantt .e-gantt-chart .e-maskcell03 {
|
|
1017
1028
|
height: 12px;
|
|
1018
1029
|
width: 88px;
|
|
1019
1030
|
left: 14px;
|
|
1020
1031
|
border-radius: 0;
|
|
1021
|
-
background: rgb(225, 223, 221);
|
|
1022
1032
|
}
|
|
1023
1033
|
.e-gantt .e-gantt-chart .e-maskcell04 {
|
|
1024
1034
|
height: 18px;
|
|
1025
1035
|
width: 208px;
|
|
1026
1036
|
border-radius: 0;
|
|
1027
|
-
background: rgb(225, 223, 221);
|
|
1028
1037
|
}
|
|
1029
1038
|
.e-gantt .e-gantt-chart .e-maskcell05 {
|
|
1030
1039
|
height: 12px;
|
|
1031
1040
|
width: 108px;
|
|
1032
1041
|
left: 64px;
|
|
1033
1042
|
border-radius: 0;
|
|
1034
|
-
background: rgb(225, 223, 221);
|
|
1035
1043
|
}
|
|
1036
1044
|
.e-gantt .e-gantt-chart .e-maskcell06 {
|
|
1037
1045
|
height: 18px;
|
|
1038
1046
|
width: 195px;
|
|
1039
1047
|
left: 192px;
|
|
1040
1048
|
border-radius: 0;
|
|
1041
|
-
background: rgb(225, 223, 221);
|
|
1042
1049
|
}
|
|
1043
1050
|
.e-gantt .e-gantt-chart .e-maskcell07 {
|
|
1044
1051
|
height: 18px;
|
|
1045
1052
|
width: 156px;
|
|
1046
1053
|
left: 388px;
|
|
1047
1054
|
border-radius: 0;
|
|
1048
|
-
background: rgb(225, 223, 221);
|
|
1049
1055
|
}
|
|
1050
1056
|
.e-gantt .e-gantt-chart .e-taskbar-left-resizer,
|
|
1051
1057
|
.e-gantt .e-gantt-chart .e-taskbar-right-resizer {
|
|
@@ -1180,7 +1186,7 @@
|
|
|
1180
1186
|
border-left: 1px dashed;
|
|
1181
1187
|
position: absolute;
|
|
1182
1188
|
width: 1px;
|
|
1183
|
-
z-index:
|
|
1189
|
+
z-index: 4;
|
|
1184
1190
|
}
|
|
1185
1191
|
.e-gantt .e-gantt-chart .e-event-markers .e-span-label {
|
|
1186
1192
|
border-radius: 3px;
|
|
@@ -1399,10 +1405,6 @@
|
|
|
1399
1405
|
width: auto;
|
|
1400
1406
|
}
|
|
1401
1407
|
|
|
1402
|
-
.e-icon-rowselect::before {
|
|
1403
|
-
content: "\e930";
|
|
1404
|
-
}
|
|
1405
|
-
|
|
1406
1408
|
.e-ganttpopup {
|
|
1407
1409
|
-moz-user-select: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
1408
1410
|
-ms-user-select: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
@@ -1461,6 +1463,15 @@
|
|
|
1461
1463
|
font-size: 16px;
|
|
1462
1464
|
}
|
|
1463
1465
|
|
|
1466
|
+
.e-bigger .e-gantt .e-gantt-chart .e-timeline-single-header-outer-div {
|
|
1467
|
+
height: 64px !important; /* stylelint-disable-line declaration-no-important */
|
|
1468
|
+
}
|
|
1469
|
+
|
|
1470
|
+
.e-bigger .e-timeline-single-header-cell {
|
|
1471
|
+
height: 64px !important; /* stylelint-disable-line declaration-no-important */
|
|
1472
|
+
line-height: 64px !important; /* stylelint-disable-line declaration-no-important */
|
|
1473
|
+
}
|
|
1474
|
+
|
|
1464
1475
|
.e-gantt-tooltip-label {
|
|
1465
1476
|
padding-bottom: 2px;
|
|
1466
1477
|
padding-right: 2px;
|
|
@@ -1505,16 +1516,6 @@
|
|
|
1505
1516
|
.e-gantt.e-device .e-gridheader .e-icons {
|
|
1506
1517
|
font-size: 12px;
|
|
1507
1518
|
}
|
|
1508
|
-
.e-gantt.e-device .e-right-resize-gripper,
|
|
1509
|
-
.e-gantt.e-device .e-left-resize-gripper {
|
|
1510
|
-
border: 7px solid;
|
|
1511
|
-
z-index: -1;
|
|
1512
|
-
}
|
|
1513
|
-
.e-gantt.e-device .e-right-resize-gripper::before,
|
|
1514
|
-
.e-gantt.e-device .e-left-resize-gripper::before {
|
|
1515
|
-
font-size: 14px;
|
|
1516
|
-
margin-left: -7px;
|
|
1517
|
-
}
|
|
1518
1519
|
.e-gantt.e-device .e-dependent-div .e-content {
|
|
1519
1520
|
height: 100%;
|
|
1520
1521
|
}
|
|
@@ -1579,6 +1580,12 @@
|
|
|
1579
1580
|
margin-bottom: 0;
|
|
1580
1581
|
}
|
|
1581
1582
|
|
|
1583
|
+
.e-gantt-chart-resize-indicator {
|
|
1584
|
+
height: 100%;
|
|
1585
|
+
position: absolute;
|
|
1586
|
+
z-index: 1;
|
|
1587
|
+
}
|
|
1588
|
+
|
|
1582
1589
|
/*! Gantt theme */
|
|
1583
1590
|
.e-gantt .e-gantt-splitter {
|
|
1584
1591
|
border-color: #edebe9;
|
|
@@ -1935,75 +1942,6 @@
|
|
|
1935
1942
|
.e-gantt .e-gantt-chart .e-grid .e-gridpopup .e-spanclicked {
|
|
1936
1943
|
border-color: #000;
|
|
1937
1944
|
}
|
|
1938
|
-
.e-gantt .e-gantt-chart .e-active-parent-task {
|
|
1939
|
-
border-radius: 4px;
|
|
1940
|
-
box-shadow: 4px 4px 3px 0 rgba(0, 0, 0, 0.5);
|
|
1941
|
-
}
|
|
1942
|
-
.e-gantt .e-gantt-chart .e-active-parent-task .e-gantt-parent-taskbar-inner-div {
|
|
1943
|
-
background: #1a1a1a;
|
|
1944
|
-
border: #1a1a1a;
|
|
1945
|
-
}
|
|
1946
|
-
.e-gantt .e-gantt-chart .e-active-parent-task .e-gantt-parent-progressbar-inner-div {
|
|
1947
|
-
background-color: transparent;
|
|
1948
|
-
border: transparent;
|
|
1949
|
-
}
|
|
1950
|
-
.e-gantt .e-gantt-chart .e-active-parent-task .e-task-label {
|
|
1951
|
-
color: transparent;
|
|
1952
|
-
}
|
|
1953
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-task-label {
|
|
1954
|
-
color: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1955
|
-
}
|
|
1956
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-line {
|
|
1957
|
-
border-color: #e1dfdd !important; /* stylelint-disable-line declaration-no-important */
|
|
1958
|
-
}
|
|
1959
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-connector-line-right-arrow {
|
|
1960
|
-
border-left-color: #e1dfdd !important; /* stylelint-disable-line declaration-no-important */
|
|
1961
|
-
}
|
|
1962
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-connector-line-left-arrow {
|
|
1963
|
-
border-right-color: #e1dfdd !important; /* stylelint-disable-line declaration-no-important */
|
|
1964
|
-
}
|
|
1965
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-child-taskbar-inner-div {
|
|
1966
|
-
background: #c7e0f4 !important; /* stylelint-disable-line declaration-no-important */
|
|
1967
|
-
border: #c7e0f4 !important; /* stylelint-disable-line declaration-no-important */
|
|
1968
|
-
}
|
|
1969
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-child-progressbar-inner-div {
|
|
1970
|
-
background-color: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1971
|
-
border: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1972
|
-
}
|
|
1973
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-milestone {
|
|
1974
|
-
background-color: #c7e0f4 !important; /* stylelint-disable-line declaration-no-important */
|
|
1975
|
-
}
|
|
1976
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-parent-taskbar-inner-div {
|
|
1977
|
-
background-color: #e1dfdd !important; /* stylelint-disable-line declaration-no-important */
|
|
1978
|
-
border: #e1dfdd !important; /* stylelint-disable-line declaration-no-important */
|
|
1979
|
-
}
|
|
1980
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-parent-progressbar-inner-div {
|
|
1981
|
-
background-color: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1982
|
-
border: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1983
|
-
}
|
|
1984
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-gantt-child-taskbar-inner-div {
|
|
1985
|
-
background: #0078d4 !important; /* stylelint-disable-line declaration-no-important */
|
|
1986
|
-
border: #0078d4 !important; /* stylelint-disable-line declaration-no-important */
|
|
1987
|
-
}
|
|
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 */
|
|
1990
|
-
}
|
|
1991
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-gantt-child-taskbar-inner-div {
|
|
1992
|
-
background: #3baaff !important; /* stylelint-disable-line declaration-no-important */
|
|
1993
|
-
border: #3baaff !important; /* stylelint-disable-line declaration-no-important */
|
|
1994
|
-
}
|
|
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 */
|
|
1997
|
-
}
|
|
1998
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-line {
|
|
1999
|
-
border-color: #0078d4 !important; /* stylelint-disable-line declaration-no-important */
|
|
2000
|
-
}
|
|
2001
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-connector-line-right-arrow {
|
|
2002
|
-
border-left-color: #0078d4 !important; /* stylelint-disable-line declaration-no-important */
|
|
2003
|
-
}
|
|
2004
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-connector-line-left-arrow {
|
|
2005
|
-
border-right-color: #0078d4 !important; /* stylelint-disable-line declaration-no-important */
|
|
2006
|
-
}
|
|
2007
1945
|
.e-gantt .e-icons {
|
|
2008
1946
|
color: #605e5c;
|
|
2009
1947
|
}
|
|
@@ -2113,4 +2051,10 @@
|
|
|
2113
2051
|
|
|
2114
2052
|
.e-gantt .e-gantt-chart .e-critical-milestone {
|
|
2115
2053
|
background-color: #d13438;
|
|
2054
|
+
}
|
|
2055
|
+
|
|
2056
|
+
.e-gantt-chart-resize-indicator {
|
|
2057
|
+
border: 1px dashed #6ec0ff;
|
|
2058
|
+
border-bottom: none;
|
|
2059
|
+
border-top: none;
|
|
2116
2060
|
}
|
|
@@ -238,6 +238,7 @@
|
|
|
238
238
|
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
|
|
239
239
|
background-color: #ffd939;
|
|
240
240
|
border-color: #000;
|
|
241
|
+
position: relative;
|
|
241
242
|
}
|
|
242
243
|
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover:hover,
|
|
243
244
|
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover:hover {
|
|
@@ -245,6 +246,17 @@
|
|
|
245
246
|
border-color: #000;
|
|
246
247
|
outline: 2px solid #e7f1ff;
|
|
247
248
|
}
|
|
249
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover::after,
|
|
250
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover::after {
|
|
251
|
+
content: "";
|
|
252
|
+
position: absolute;
|
|
253
|
+
width: 30px;
|
|
254
|
+
height: 40px;
|
|
255
|
+
top: -10px;
|
|
256
|
+
}
|
|
257
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-allow-block {
|
|
258
|
+
cursor: no-drop;
|
|
259
|
+
}
|
|
248
260
|
.e-bigger .e-gantt .e-tab .e-content {
|
|
249
261
|
height: 241px !important;
|
|
250
262
|
}
|
|
@@ -288,7 +300,6 @@
|
|
|
288
300
|
}
|
|
289
301
|
.e-bigger .e-gantt-dialog .e-dialog {
|
|
290
302
|
border-radius: 6px;
|
|
291
|
-
width: 554px !important;
|
|
292
303
|
}
|
|
293
304
|
.e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
294
305
|
padding: 0 16px !important; /* stylelint-disable-line declaration-no-important */
|
|
@@ -429,10 +440,6 @@
|
|
|
429
440
|
border-right: none !important; /* stylelint-disable-line declaration-no-important */
|
|
430
441
|
border-left-color: #29c400;
|
|
431
442
|
}
|
|
432
|
-
.e-gantt.e-gantt-rtl .e-toolbar-right {
|
|
433
|
-
left: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
434
|
-
right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
435
|
-
}
|
|
436
443
|
.e-gantt.e-gantt-rtl .e-gantt-chart .e-timeline-header-container {
|
|
437
444
|
border-right: none !important; /* stylelint-disable-line declaration-no-important */
|
|
438
445
|
border-left: 1px solid !important; /* stylelint-disable-line declaration-no-important */
|
|
@@ -752,6 +759,12 @@
|
|
|
752
759
|
vertical-align: middle;
|
|
753
760
|
z-index: 3;
|
|
754
761
|
}
|
|
762
|
+
.e-gantt .e-gantt-chart .e-taskbar-main-container:hover {
|
|
763
|
+
z-index: 4;
|
|
764
|
+
}
|
|
765
|
+
.e-gantt .e-gantt-chart .e-taskbar-main-container.e-gantt-multi-taskbar:hover {
|
|
766
|
+
z-index: 4;
|
|
767
|
+
}
|
|
755
768
|
.e-gantt .e-gantt-chart .e-left-label-container.e-left-label-temp-container {
|
|
756
769
|
-ms-flex-align: center;
|
|
757
770
|
align-items: center;
|
|
@@ -891,72 +904,61 @@
|
|
|
891
904
|
height: 16px;
|
|
892
905
|
width: 16px;
|
|
893
906
|
left: 14px;
|
|
894
|
-
background: #e1dfdd;
|
|
895
907
|
}
|
|
896
908
|
.e-gantt .e-gantt-chart .e-innerHTML1 {
|
|
897
909
|
height: 16px;
|
|
898
910
|
width: 16px;
|
|
899
911
|
left: 30px;
|
|
900
|
-
background: #e1dfdd;
|
|
901
912
|
}
|
|
902
913
|
.e-gantt .e-gantt-chart .e-innerHTML2 {
|
|
903
914
|
height: 16px;
|
|
904
915
|
width: 16px;
|
|
905
916
|
left: 60px;
|
|
906
|
-
background: #e1dfdd;
|
|
907
917
|
}
|
|
908
918
|
.e-gantt .e-gantt-chart .e-timelineHeader {
|
|
909
919
|
height: 16px;
|
|
910
920
|
width: 82px;
|
|
911
921
|
left: 20px;
|
|
912
|
-
background: #e1dfdd;
|
|
913
922
|
}
|
|
914
923
|
.e-gantt .e-gantt-chart .e-maskcell01 {
|
|
915
924
|
height: 12px;
|
|
916
925
|
width: 88px;
|
|
917
926
|
left: 14px;
|
|
918
927
|
border-radius: 0;
|
|
919
|
-
background: #e1dfdd;
|
|
920
928
|
}
|
|
921
929
|
.e-gantt .e-gantt-chart .e-maskcell02 {
|
|
922
930
|
height: 18px;
|
|
923
931
|
width: 410px;
|
|
924
932
|
border-radius: 0;
|
|
925
|
-
background: #e1dfdd;
|
|
926
933
|
}
|
|
927
934
|
.e-gantt .e-gantt-chart .e-maskcell03 {
|
|
928
935
|
height: 12px;
|
|
929
936
|
width: 88px;
|
|
930
937
|
left: 14px;
|
|
931
938
|
border-radius: 0;
|
|
932
|
-
background: #e1dfdd;
|
|
933
939
|
}
|
|
934
940
|
.e-gantt .e-gantt-chart .e-maskcell04 {
|
|
935
941
|
height: 18px;
|
|
936
942
|
width: 208px;
|
|
937
943
|
border-radius: 0;
|
|
938
|
-
background: #e1dfdd;
|
|
939
944
|
}
|
|
940
945
|
.e-gantt .e-gantt-chart .e-maskcell05 {
|
|
941
946
|
height: 12px;
|
|
942
947
|
width: 108px;
|
|
943
948
|
left: 64px;
|
|
944
949
|
border-radius: 0;
|
|
945
|
-
background: #e1dfdd;
|
|
946
950
|
}
|
|
947
951
|
.e-gantt .e-gantt-chart .e-maskcell06 {
|
|
948
952
|
height: 18px;
|
|
949
953
|
width: 195px;
|
|
950
954
|
left: 192px;
|
|
951
955
|
border-radius: 0;
|
|
952
|
-
background: #e1dfdd;
|
|
953
956
|
}
|
|
954
957
|
.e-gantt .e-gantt-chart .e-maskcell07 {
|
|
955
958
|
height: 18px;
|
|
956
959
|
width: 156px;
|
|
957
960
|
left: 388px;
|
|
958
961
|
border-radius: 0;
|
|
959
|
-
background: #e1dfdd;
|
|
960
962
|
}
|
|
961
963
|
.e-gantt .e-gantt-chart .e-taskbar-left-resizer,
|
|
962
964
|
.e-gantt .e-gantt-chart .e-taskbar-right-resizer {
|
|
@@ -1091,7 +1093,7 @@
|
|
|
1091
1093
|
border-left: 1px dashed;
|
|
1092
1094
|
position: absolute;
|
|
1093
1095
|
width: 1px;
|
|
1094
|
-
z-index:
|
|
1096
|
+
z-index: 4;
|
|
1095
1097
|
}
|
|
1096
1098
|
.e-gantt .e-gantt-chart .e-event-markers .e-span-label {
|
|
1097
1099
|
border-radius: 3px;
|
|
@@ -1308,10 +1310,6 @@
|
|
|
1308
1310
|
width: auto;
|
|
1309
1311
|
}
|
|
1310
1312
|
|
|
1311
|
-
.e-icon-rowselect::before {
|
|
1312
|
-
content: "\e930";
|
|
1313
|
-
}
|
|
1314
|
-
|
|
1315
1313
|
.e-ganttpopup {
|
|
1316
1314
|
-moz-user-select: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
1317
1315
|
-ms-user-select: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
@@ -1370,6 +1368,15 @@
|
|
|
1370
1368
|
font-size: 13px;
|
|
1371
1369
|
}
|
|
1372
1370
|
|
|
1371
|
+
.e-bigger .e-gantt .e-gantt-chart .e-timeline-single-header-outer-div {
|
|
1372
|
+
height: 64px !important; /* stylelint-disable-line declaration-no-important */
|
|
1373
|
+
}
|
|
1374
|
+
|
|
1375
|
+
.e-bigger .e-timeline-single-header-cell {
|
|
1376
|
+
height: 64px !important; /* stylelint-disable-line declaration-no-important */
|
|
1377
|
+
line-height: 64px !important; /* stylelint-disable-line declaration-no-important */
|
|
1378
|
+
}
|
|
1379
|
+
|
|
1373
1380
|
.e-gantt-tooltip-label {
|
|
1374
1381
|
padding-bottom: 2px;
|
|
1375
1382
|
padding-right: 2px;
|
|
@@ -1414,16 +1421,6 @@
|
|
|
1414
1421
|
.e-gantt.e-device .e-gridheader .e-icons {
|
|
1415
1422
|
font-size: 12px;
|
|
1416
1423
|
}
|
|
1417
|
-
.e-gantt.e-device .e-right-resize-gripper,
|
|
1418
|
-
.e-gantt.e-device .e-left-resize-gripper {
|
|
1419
|
-
border: 7px solid;
|
|
1420
|
-
z-index: -1;
|
|
1421
|
-
}
|
|
1422
|
-
.e-gantt.e-device .e-right-resize-gripper::before,
|
|
1423
|
-
.e-gantt.e-device .e-left-resize-gripper::before {
|
|
1424
|
-
font-size: 14px;
|
|
1425
|
-
margin-left: -7px;
|
|
1426
|
-
}
|
|
1427
1424
|
.e-gantt.e-device .e-dependent-div .e-content {
|
|
1428
1425
|
height: 100%;
|
|
1429
1426
|
}
|
|
@@ -1486,6 +1483,12 @@
|
|
|
1486
1483
|
color: #000;
|
|
1487
1484
|
}
|
|
1488
1485
|
|
|
1486
|
+
.e-gantt-chart-resize-indicator {
|
|
1487
|
+
height: 100%;
|
|
1488
|
+
position: absolute;
|
|
1489
|
+
z-index: 1;
|
|
1490
|
+
}
|
|
1491
|
+
|
|
1489
1492
|
/*! Gantt theme */
|
|
1490
1493
|
.e-gantt .e-gantt-splitter {
|
|
1491
1494
|
border-color: #757575;
|
|
@@ -1842,75 +1845,6 @@
|
|
|
1842
1845
|
.e-gantt .e-gantt-chart .e-grid .e-gridpopup .e-spanclicked {
|
|
1843
1846
|
border-color: #000;
|
|
1844
1847
|
}
|
|
1845
|
-
.e-gantt .e-gantt-chart .e-active-parent-task {
|
|
1846
|
-
border-radius: 4px;
|
|
1847
|
-
box-shadow: 4px 4px 3px 0 rgba(0, 0, 0, 0.5);
|
|
1848
|
-
}
|
|
1849
|
-
.e-gantt .e-gantt-chart .e-active-parent-task .e-gantt-parent-taskbar-inner-div {
|
|
1850
|
-
background: #1a1a1a;
|
|
1851
|
-
border: #1a1a1a;
|
|
1852
|
-
}
|
|
1853
|
-
.e-gantt .e-gantt-chart .e-active-parent-task .e-gantt-parent-progressbar-inner-div {
|
|
1854
|
-
background-color: transparent;
|
|
1855
|
-
border: transparent;
|
|
1856
|
-
}
|
|
1857
|
-
.e-gantt .e-gantt-chart .e-active-parent-task .e-task-label {
|
|
1858
|
-
color: transparent;
|
|
1859
|
-
}
|
|
1860
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-task-label {
|
|
1861
|
-
color: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1862
|
-
}
|
|
1863
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-line {
|
|
1864
|
-
border-color: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
|
|
1865
|
-
}
|
|
1866
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-connector-line-right-arrow {
|
|
1867
|
-
border-left-color: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
|
|
1868
|
-
}
|
|
1869
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-connector-line-left-arrow {
|
|
1870
|
-
border-right-color: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
|
|
1871
|
-
}
|
|
1872
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-child-taskbar-inner-div {
|
|
1873
|
-
background: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
|
|
1874
|
-
border: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
|
|
1875
|
-
}
|
|
1876
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-child-progressbar-inner-div {
|
|
1877
|
-
background-color: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1878
|
-
border: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1879
|
-
}
|
|
1880
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-milestone {
|
|
1881
|
-
background-color: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
|
|
1882
|
-
}
|
|
1883
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-parent-taskbar-inner-div {
|
|
1884
|
-
background-color: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
|
|
1885
|
-
border: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
|
|
1886
|
-
}
|
|
1887
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-parent-progressbar-inner-div {
|
|
1888
|
-
background-color: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1889
|
-
border: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1890
|
-
}
|
|
1891
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-gantt-child-taskbar-inner-div {
|
|
1892
|
-
background: #6e06f1 !important; /* stylelint-disable-line declaration-no-important */
|
|
1893
|
-
border: #6e06f1 !important; /* stylelint-disable-line declaration-no-important */
|
|
1894
|
-
}
|
|
1895
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-gantt-milestone {
|
|
1896
|
-
background-color: #6e06f1 !important; /* stylelint-disable-line declaration-no-important */
|
|
1897
|
-
}
|
|
1898
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-gantt-child-taskbar-inner-div {
|
|
1899
|
-
background: #6f07e0 !important; /* stylelint-disable-line declaration-no-important */
|
|
1900
|
-
border: #6f07e0 !important; /* stylelint-disable-line declaration-no-important */
|
|
1901
|
-
}
|
|
1902
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-gantt-milestone {
|
|
1903
|
-
background-color: #6f07e0 !important; /* stylelint-disable-line declaration-no-important */
|
|
1904
|
-
}
|
|
1905
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-line {
|
|
1906
|
-
border-color: #6e06f1 !important; /* stylelint-disable-line declaration-no-important */
|
|
1907
|
-
}
|
|
1908
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-connector-line-right-arrow {
|
|
1909
|
-
border-left-color: #6e06f1 !important; /* stylelint-disable-line declaration-no-important */
|
|
1910
|
-
}
|
|
1911
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-connector-line-left-arrow {
|
|
1912
|
-
border-right-color: #6e06f1 !important; /* stylelint-disable-line declaration-no-important */
|
|
1913
|
-
}
|
|
1914
1848
|
.e-gantt .e-icons {
|
|
1915
1849
|
color: rgba(0, 0, 0, 0.87);
|
|
1916
1850
|
}
|
|
@@ -2020,4 +1954,10 @@
|
|
|
2020
1954
|
|
|
2021
1955
|
.e-gantt .e-gantt-chart .e-critical-milestone {
|
|
2022
1956
|
background-color: #D13438;
|
|
1957
|
+
}
|
|
1958
|
+
|
|
1959
|
+
.e-gantt-chart-resize-indicator {
|
|
1960
|
+
border: 1px dashed #3e047d;
|
|
1961
|
+
border-bottom: none;
|
|
1962
|
+
border-top: none;
|
|
2023
1963
|
}
|