@syncfusion/ej2-vue-gantt 22.2.12 → 23.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 +185 -164
- 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 +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 +2 -2
- 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
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
|
|
2
1
|
.e-ddl.e-control-wrapper .e-ddl-icon::before {
|
|
3
2
|
transform: rotate(0deg);
|
|
4
3
|
transition: transform 300ms ease;
|
|
@@ -252,6 +251,10 @@
|
|
|
252
251
|
content: "\e770";
|
|
253
252
|
}
|
|
254
253
|
|
|
254
|
+
.e-icon-rowselect::before {
|
|
255
|
+
content: "\e7d4";
|
|
256
|
+
}
|
|
257
|
+
|
|
255
258
|
.e-gantt-tooltip-arrow-left::before {
|
|
256
259
|
content: "\e773";
|
|
257
260
|
}
|
|
@@ -304,6 +307,7 @@
|
|
|
304
307
|
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
|
|
305
308
|
background-color: #291fd9;
|
|
306
309
|
border-color: #fff;
|
|
310
|
+
position: relative;
|
|
307
311
|
}
|
|
308
312
|
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover:hover,
|
|
309
313
|
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover:hover {
|
|
@@ -311,6 +315,17 @@
|
|
|
311
315
|
border-color: #fff;
|
|
312
316
|
outline: 2px solid #818cf8;
|
|
313
317
|
}
|
|
318
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover::after,
|
|
319
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover::after {
|
|
320
|
+
content: "";
|
|
321
|
+
position: absolute;
|
|
322
|
+
width: 30px;
|
|
323
|
+
height: 40px;
|
|
324
|
+
top: -10px;
|
|
325
|
+
}
|
|
326
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-allow-block {
|
|
327
|
+
cursor: no-drop;
|
|
328
|
+
}
|
|
314
329
|
.e-bigger .e-gantt .e-tab .e-content {
|
|
315
330
|
height: 242px !important;
|
|
316
331
|
}
|
|
@@ -357,7 +372,6 @@
|
|
|
357
372
|
}
|
|
358
373
|
.e-bigger .e-gantt-dialog .e-dialog {
|
|
359
374
|
border-radius: 6px;
|
|
360
|
-
width: 564px !important;
|
|
361
375
|
}
|
|
362
376
|
.e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
363
377
|
padding: 0 16px !important; /* stylelint-disable-line declaration-no-important */
|
|
@@ -501,10 +515,6 @@
|
|
|
501
515
|
border-right: none !important; /* stylelint-disable-line declaration-no-important */
|
|
502
516
|
border-left-color: #4f46e5;
|
|
503
517
|
}
|
|
504
|
-
.e-gantt.e-gantt-rtl .e-toolbar-right {
|
|
505
|
-
left: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
506
|
-
right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
507
|
-
}
|
|
508
518
|
.e-gantt.e-gantt-rtl .e-gantt-chart .e-timeline-header-container {
|
|
509
519
|
border-right: none !important; /* stylelint-disable-line declaration-no-important */
|
|
510
520
|
border-left: 1px solid !important; /* stylelint-disable-line declaration-no-important */
|
|
@@ -827,6 +837,12 @@
|
|
|
827
837
|
vertical-align: middle;
|
|
828
838
|
z-index: 3;
|
|
829
839
|
}
|
|
840
|
+
.e-gantt .e-gantt-chart .e-taskbar-main-container:hover {
|
|
841
|
+
z-index: 4;
|
|
842
|
+
}
|
|
843
|
+
.e-gantt .e-gantt-chart .e-taskbar-main-container.e-gantt-multi-taskbar:hover {
|
|
844
|
+
z-index: 4;
|
|
845
|
+
}
|
|
830
846
|
.e-gantt .e-gantt-chart .e-left-label-container.e-left-label-temp-container {
|
|
831
847
|
-ms-flex-align: center;
|
|
832
848
|
align-items: center;
|
|
@@ -966,72 +982,61 @@
|
|
|
966
982
|
height: 16px;
|
|
967
983
|
width: 16px;
|
|
968
984
|
left: 14px;
|
|
969
|
-
background: rgb(225, 223, 221);
|
|
970
985
|
}
|
|
971
986
|
.e-gantt .e-gantt-chart .e-innerHTML1 {
|
|
972
987
|
height: 16px;
|
|
973
988
|
width: 16px;
|
|
974
989
|
left: 30px;
|
|
975
|
-
background: rgb(225, 223, 221);
|
|
976
990
|
}
|
|
977
991
|
.e-gantt .e-gantt-chart .e-innerHTML2 {
|
|
978
992
|
height: 16px;
|
|
979
993
|
width: 16px;
|
|
980
994
|
left: 60px;
|
|
981
|
-
background: rgb(225, 223, 221);
|
|
982
995
|
}
|
|
983
996
|
.e-gantt .e-gantt-chart .e-timelineHeader {
|
|
984
997
|
height: 16px;
|
|
985
998
|
width: 82px;
|
|
986
999
|
left: 20px;
|
|
987
|
-
background: rgb(225, 223, 221);
|
|
988
1000
|
}
|
|
989
1001
|
.e-gantt .e-gantt-chart .e-maskcell01 {
|
|
990
1002
|
height: 12px;
|
|
991
1003
|
width: 88px;
|
|
992
1004
|
left: 14px;
|
|
993
1005
|
border-radius: 0;
|
|
994
|
-
background: rgb(225, 223, 221);
|
|
995
1006
|
}
|
|
996
1007
|
.e-gantt .e-gantt-chart .e-maskcell02 {
|
|
997
1008
|
height: 18px;
|
|
998
1009
|
width: 410px;
|
|
999
1010
|
border-radius: 0;
|
|
1000
|
-
background: rgb(225, 223, 221);
|
|
1001
1011
|
}
|
|
1002
1012
|
.e-gantt .e-gantt-chart .e-maskcell03 {
|
|
1003
1013
|
height: 12px;
|
|
1004
1014
|
width: 88px;
|
|
1005
1015
|
left: 14px;
|
|
1006
1016
|
border-radius: 0;
|
|
1007
|
-
background: rgb(225, 223, 221);
|
|
1008
1017
|
}
|
|
1009
1018
|
.e-gantt .e-gantt-chart .e-maskcell04 {
|
|
1010
1019
|
height: 18px;
|
|
1011
1020
|
width: 208px;
|
|
1012
1021
|
border-radius: 0;
|
|
1013
|
-
background: rgb(225, 223, 221);
|
|
1014
1022
|
}
|
|
1015
1023
|
.e-gantt .e-gantt-chart .e-maskcell05 {
|
|
1016
1024
|
height: 12px;
|
|
1017
1025
|
width: 108px;
|
|
1018
1026
|
left: 64px;
|
|
1019
1027
|
border-radius: 0;
|
|
1020
|
-
background: rgb(225, 223, 221);
|
|
1021
1028
|
}
|
|
1022
1029
|
.e-gantt .e-gantt-chart .e-maskcell06 {
|
|
1023
1030
|
height: 18px;
|
|
1024
1031
|
width: 195px;
|
|
1025
1032
|
left: 192px;
|
|
1026
1033
|
border-radius: 0;
|
|
1027
|
-
background: rgb(225, 223, 221);
|
|
1028
1034
|
}
|
|
1029
1035
|
.e-gantt .e-gantt-chart .e-maskcell07 {
|
|
1030
1036
|
height: 18px;
|
|
1031
1037
|
width: 156px;
|
|
1032
1038
|
left: 388px;
|
|
1033
1039
|
border-radius: 0;
|
|
1034
|
-
background: rgb(225, 223, 221);
|
|
1035
1040
|
}
|
|
1036
1041
|
.e-gantt .e-gantt-chart .e-taskbar-left-resizer,
|
|
1037
1042
|
.e-gantt .e-gantt-chart .e-taskbar-right-resizer {
|
|
@@ -1166,7 +1171,7 @@
|
|
|
1166
1171
|
border-left: 1px dashed;
|
|
1167
1172
|
position: absolute;
|
|
1168
1173
|
width: 1px;
|
|
1169
|
-
z-index:
|
|
1174
|
+
z-index: 4;
|
|
1170
1175
|
}
|
|
1171
1176
|
.e-gantt .e-gantt-chart .e-event-markers .e-span-label {
|
|
1172
1177
|
border-radius: 3px;
|
|
@@ -1384,10 +1389,6 @@
|
|
|
1384
1389
|
width: auto;
|
|
1385
1390
|
}
|
|
1386
1391
|
|
|
1387
|
-
.e-icon-rowselect::before {
|
|
1388
|
-
content: "\e930";
|
|
1389
|
-
}
|
|
1390
|
-
|
|
1391
1392
|
.e-ganttpopup {
|
|
1392
1393
|
-moz-user-select: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
1393
1394
|
-ms-user-select: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
@@ -1446,6 +1447,15 @@
|
|
|
1446
1447
|
font-size: 16px;
|
|
1447
1448
|
}
|
|
1448
1449
|
|
|
1450
|
+
.e-bigger .e-gantt .e-gantt-chart .e-timeline-single-header-outer-div {
|
|
1451
|
+
height: 64px !important; /* stylelint-disable-line declaration-no-important */
|
|
1452
|
+
}
|
|
1453
|
+
|
|
1454
|
+
.e-bigger .e-timeline-single-header-cell {
|
|
1455
|
+
height: 64px !important; /* stylelint-disable-line declaration-no-important */
|
|
1456
|
+
line-height: 64px !important; /* stylelint-disable-line declaration-no-important */
|
|
1457
|
+
}
|
|
1458
|
+
|
|
1449
1459
|
.e-gantt-tooltip-label {
|
|
1450
1460
|
padding-bottom: 2px;
|
|
1451
1461
|
padding-right: 2px;
|
|
@@ -1490,16 +1500,6 @@
|
|
|
1490
1500
|
.e-gantt.e-device .e-gridheader .e-icons {
|
|
1491
1501
|
font-size: 12px;
|
|
1492
1502
|
}
|
|
1493
|
-
.e-gantt.e-device .e-right-resize-gripper,
|
|
1494
|
-
.e-gantt.e-device .e-left-resize-gripper {
|
|
1495
|
-
border: 7px solid;
|
|
1496
|
-
z-index: -1;
|
|
1497
|
-
}
|
|
1498
|
-
.e-gantt.e-device .e-right-resize-gripper::before,
|
|
1499
|
-
.e-gantt.e-device .e-left-resize-gripper::before {
|
|
1500
|
-
font-size: 14px;
|
|
1501
|
-
margin-left: -7px;
|
|
1502
|
-
}
|
|
1503
1503
|
.e-gantt.e-device .e-dependent-div .e-content {
|
|
1504
1504
|
height: 100%;
|
|
1505
1505
|
}
|
|
@@ -1562,6 +1562,12 @@
|
|
|
1562
1562
|
color: #111827;
|
|
1563
1563
|
}
|
|
1564
1564
|
|
|
1565
|
+
.e-gantt-chart-resize-indicator {
|
|
1566
|
+
height: 100%;
|
|
1567
|
+
position: absolute;
|
|
1568
|
+
z-index: 1;
|
|
1569
|
+
}
|
|
1570
|
+
|
|
1565
1571
|
/*! Gantt theme */
|
|
1566
1572
|
.e-gantt .e-gantt-splitter {
|
|
1567
1573
|
border-color: #e5e7eb;
|
|
@@ -1918,75 +1924,6 @@
|
|
|
1918
1924
|
.e-gantt .e-gantt-chart .e-grid .e-gridpopup .e-spanclicked {
|
|
1919
1925
|
border-color: #000;
|
|
1920
1926
|
}
|
|
1921
|
-
.e-gantt .e-gantt-chart .e-active-parent-task {
|
|
1922
|
-
border-radius: 4px;
|
|
1923
|
-
box-shadow: 4px 4px 3px 0 rgba(0, 0, 0, 0.5);
|
|
1924
|
-
}
|
|
1925
|
-
.e-gantt .e-gantt-chart .e-active-parent-task .e-gantt-parent-taskbar-inner-div {
|
|
1926
|
-
background: #1a1a1a;
|
|
1927
|
-
border: #1a1a1a;
|
|
1928
|
-
}
|
|
1929
|
-
.e-gantt .e-gantt-chart .e-active-parent-task .e-gantt-parent-progressbar-inner-div {
|
|
1930
|
-
background-color: transparent;
|
|
1931
|
-
border: transparent;
|
|
1932
|
-
}
|
|
1933
|
-
.e-gantt .e-gantt-chart .e-active-parent-task .e-task-label {
|
|
1934
|
-
color: transparent;
|
|
1935
|
-
}
|
|
1936
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-task-label {
|
|
1937
|
-
color: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1938
|
-
}
|
|
1939
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-line {
|
|
1940
|
-
border-color: #d1d5db !important; /* stylelint-disable-line declaration-no-important */
|
|
1941
|
-
}
|
|
1942
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-connector-line-right-arrow {
|
|
1943
|
-
border-left-color: #d1d5db !important; /* stylelint-disable-line declaration-no-important */
|
|
1944
|
-
}
|
|
1945
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-connector-line-left-arrow {
|
|
1946
|
-
border-right-color: #d1d5db !important; /* stylelint-disable-line declaration-no-important */
|
|
1947
|
-
}
|
|
1948
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-child-taskbar-inner-div {
|
|
1949
|
-
background: #818cf8 !important; /* stylelint-disable-line declaration-no-important */
|
|
1950
|
-
border: #818cf8 !important; /* stylelint-disable-line declaration-no-important */
|
|
1951
|
-
}
|
|
1952
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-child-progressbar-inner-div {
|
|
1953
|
-
background-color: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1954
|
-
border: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1955
|
-
}
|
|
1956
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-milestone {
|
|
1957
|
-
background-color: #818cf8 !important; /* stylelint-disable-line declaration-no-important */
|
|
1958
|
-
}
|
|
1959
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-parent-taskbar-inner-div {
|
|
1960
|
-
background-color: #d1d5db !important; /* stylelint-disable-line declaration-no-important */
|
|
1961
|
-
border: #d1d5db !important; /* stylelint-disable-line declaration-no-important */
|
|
1962
|
-
}
|
|
1963
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-parent-progressbar-inner-div {
|
|
1964
|
-
background-color: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1965
|
-
border: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1966
|
-
}
|
|
1967
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-gantt-child-taskbar-inner-div {
|
|
1968
|
-
background: #4f46e5 !important; /* stylelint-disable-line declaration-no-important */
|
|
1969
|
-
border: #4f46e5 !important; /* stylelint-disable-line declaration-no-important */
|
|
1970
|
-
}
|
|
1971
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-gantt-milestone {
|
|
1972
|
-
background-color: #4f46e5 !important; /* stylelint-disable-line declaration-no-important */
|
|
1973
|
-
}
|
|
1974
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-gantt-child-taskbar-inner-div {
|
|
1975
|
-
background: #a49ff2 !important; /* stylelint-disable-line declaration-no-important */
|
|
1976
|
-
border: #a49ff2 !important; /* stylelint-disable-line declaration-no-important */
|
|
1977
|
-
}
|
|
1978
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-gantt-milestone {
|
|
1979
|
-
background-color: #a49ff2 !important; /* stylelint-disable-line declaration-no-important */
|
|
1980
|
-
}
|
|
1981
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-line {
|
|
1982
|
-
border-color: #4f46e5 !important; /* stylelint-disable-line declaration-no-important */
|
|
1983
|
-
}
|
|
1984
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-connector-line-right-arrow {
|
|
1985
|
-
border-left-color: #4f46e5 !important; /* stylelint-disable-line declaration-no-important */
|
|
1986
|
-
}
|
|
1987
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-connector-line-left-arrow {
|
|
1988
|
-
border-right-color: #4f46e5 !important; /* stylelint-disable-line declaration-no-important */
|
|
1989
|
-
}
|
|
1990
1927
|
.e-gantt .e-icons {
|
|
1991
1928
|
color: #6b7280;
|
|
1992
1929
|
}
|
|
@@ -2096,4 +2033,10 @@
|
|
|
2096
2033
|
|
|
2097
2034
|
.e-gantt .e-gantt-chart .e-critical-milestone {
|
|
2098
2035
|
background-color: #dc2626;
|
|
2036
|
+
}
|
|
2037
|
+
|
|
2038
|
+
.e-gantt-chart-resize-indicator {
|
|
2039
|
+
border: 1px dashed #818cf8;
|
|
2040
|
+
border-bottom: none;
|
|
2041
|
+
border-top: none;
|
|
2099
2042
|
}
|
|
@@ -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
|
}
|