@syncfusion/ej2-react-gantt 22.2.11 → 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 +209 -162
- package/dist/ej2-react-gantt.min.js +1 -1
- package/dist/ej2-react-gantt.umd.min.js +1 -1
- package/package.json +9 -9
- 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
|
@@ -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
|
}
|
|
@@ -287,6 +287,10 @@
|
|
|
287
287
|
content: "\e903";
|
|
288
288
|
}
|
|
289
289
|
|
|
290
|
+
.e-icon-rowselect::before {
|
|
291
|
+
content: "\e930";
|
|
292
|
+
}
|
|
293
|
+
|
|
290
294
|
.e-gantt-tooltip-arrow-left::before {
|
|
291
295
|
content: "\e85b";
|
|
292
296
|
}
|
|
@@ -339,6 +343,7 @@
|
|
|
339
343
|
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
|
|
340
344
|
background-color: #ffd939;
|
|
341
345
|
border-color: #000;
|
|
346
|
+
position: relative;
|
|
342
347
|
}
|
|
343
348
|
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover:hover,
|
|
344
349
|
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover:hover {
|
|
@@ -346,6 +351,17 @@
|
|
|
346
351
|
border-color: #000;
|
|
347
352
|
outline: 2px solid #685708;
|
|
348
353
|
}
|
|
354
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover::after,
|
|
355
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover::after {
|
|
356
|
+
content: "";
|
|
357
|
+
position: absolute;
|
|
358
|
+
width: 30px;
|
|
359
|
+
height: 40px;
|
|
360
|
+
top: -10px;
|
|
361
|
+
}
|
|
362
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-allow-block {
|
|
363
|
+
cursor: no-drop;
|
|
364
|
+
}
|
|
349
365
|
.e-bigger .e-gantt .e-tab .e-content {
|
|
350
366
|
height: 241px !important;
|
|
351
367
|
}
|
|
@@ -389,7 +405,6 @@
|
|
|
389
405
|
}
|
|
390
406
|
.e-bigger .e-gantt-dialog .e-dialog {
|
|
391
407
|
border-radius: 6px;
|
|
392
|
-
width: 554px !important;
|
|
393
408
|
}
|
|
394
409
|
.e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
395
410
|
padding: 0 16px !important; /* stylelint-disable-line declaration-no-important */
|
|
@@ -531,10 +546,6 @@
|
|
|
531
546
|
border-right: none !important; /* stylelint-disable-line declaration-no-important */
|
|
532
547
|
border-left-color: #29c400;
|
|
533
548
|
}
|
|
534
|
-
.e-gantt.e-gantt-rtl .e-toolbar-right {
|
|
535
|
-
left: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
536
|
-
right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
537
|
-
}
|
|
538
549
|
.e-gantt.e-gantt-rtl .e-gantt-chart .e-timeline-header-container {
|
|
539
550
|
border-right: none !important; /* stylelint-disable-line declaration-no-important */
|
|
540
551
|
border-left: 1px solid !important; /* stylelint-disable-line declaration-no-important */
|
|
@@ -854,6 +865,12 @@
|
|
|
854
865
|
vertical-align: middle;
|
|
855
866
|
z-index: 3;
|
|
856
867
|
}
|
|
868
|
+
.e-gantt .e-gantt-chart .e-taskbar-main-container:hover {
|
|
869
|
+
z-index: 4;
|
|
870
|
+
}
|
|
871
|
+
.e-gantt .e-gantt-chart .e-taskbar-main-container.e-gantt-multi-taskbar:hover {
|
|
872
|
+
z-index: 4;
|
|
873
|
+
}
|
|
857
874
|
.e-gantt .e-gantt-chart .e-left-label-container.e-left-label-temp-container {
|
|
858
875
|
-ms-flex-align: center;
|
|
859
876
|
align-items: center;
|
|
@@ -993,72 +1010,61 @@
|
|
|
993
1010
|
height: 16px;
|
|
994
1011
|
width: 16px;
|
|
995
1012
|
left: 14px;
|
|
996
|
-
background: #e1dfdd;
|
|
997
1013
|
}
|
|
998
1014
|
.e-gantt .e-gantt-chart .e-innerHTML1 {
|
|
999
1015
|
height: 16px;
|
|
1000
1016
|
width: 16px;
|
|
1001
1017
|
left: 30px;
|
|
1002
|
-
background: #e1dfdd;
|
|
1003
1018
|
}
|
|
1004
1019
|
.e-gantt .e-gantt-chart .e-innerHTML2 {
|
|
1005
1020
|
height: 16px;
|
|
1006
1021
|
width: 16px;
|
|
1007
1022
|
left: 60px;
|
|
1008
|
-
background: #e1dfdd;
|
|
1009
1023
|
}
|
|
1010
1024
|
.e-gantt .e-gantt-chart .e-timelineHeader {
|
|
1011
1025
|
height: 16px;
|
|
1012
1026
|
width: 82px;
|
|
1013
1027
|
left: 20px;
|
|
1014
|
-
background: #e1dfdd;
|
|
1015
1028
|
}
|
|
1016
1029
|
.e-gantt .e-gantt-chart .e-maskcell01 {
|
|
1017
1030
|
height: 12px;
|
|
1018
1031
|
width: 88px;
|
|
1019
1032
|
left: 14px;
|
|
1020
1033
|
border-radius: 0;
|
|
1021
|
-
background: #e1dfdd;
|
|
1022
1034
|
}
|
|
1023
1035
|
.e-gantt .e-gantt-chart .e-maskcell02 {
|
|
1024
1036
|
height: 18px;
|
|
1025
1037
|
width: 410px;
|
|
1026
1038
|
border-radius: 0;
|
|
1027
|
-
background: #e1dfdd;
|
|
1028
1039
|
}
|
|
1029
1040
|
.e-gantt .e-gantt-chart .e-maskcell03 {
|
|
1030
1041
|
height: 12px;
|
|
1031
1042
|
width: 88px;
|
|
1032
1043
|
left: 14px;
|
|
1033
1044
|
border-radius: 0;
|
|
1034
|
-
background: #e1dfdd;
|
|
1035
1045
|
}
|
|
1036
1046
|
.e-gantt .e-gantt-chart .e-maskcell04 {
|
|
1037
1047
|
height: 18px;
|
|
1038
1048
|
width: 208px;
|
|
1039
1049
|
border-radius: 0;
|
|
1040
|
-
background: #e1dfdd;
|
|
1041
1050
|
}
|
|
1042
1051
|
.e-gantt .e-gantt-chart .e-maskcell05 {
|
|
1043
1052
|
height: 12px;
|
|
1044
1053
|
width: 108px;
|
|
1045
1054
|
left: 64px;
|
|
1046
1055
|
border-radius: 0;
|
|
1047
|
-
background: #e1dfdd;
|
|
1048
1056
|
}
|
|
1049
1057
|
.e-gantt .e-gantt-chart .e-maskcell06 {
|
|
1050
1058
|
height: 18px;
|
|
1051
1059
|
width: 195px;
|
|
1052
1060
|
left: 192px;
|
|
1053
1061
|
border-radius: 0;
|
|
1054
|
-
background: #e1dfdd;
|
|
1055
1062
|
}
|
|
1056
1063
|
.e-gantt .e-gantt-chart .e-maskcell07 {
|
|
1057
1064
|
height: 18px;
|
|
1058
1065
|
width: 156px;
|
|
1059
1066
|
left: 388px;
|
|
1060
1067
|
border-radius: 0;
|
|
1061
|
-
background: #e1dfdd;
|
|
1062
1068
|
}
|
|
1063
1069
|
.e-gantt .e-gantt-chart .e-taskbar-left-resizer,
|
|
1064
1070
|
.e-gantt .e-gantt-chart .e-taskbar-right-resizer {
|
|
@@ -1193,7 +1199,7 @@
|
|
|
1193
1199
|
border-left: 1px dashed;
|
|
1194
1200
|
position: absolute;
|
|
1195
1201
|
width: 1px;
|
|
1196
|
-
z-index:
|
|
1202
|
+
z-index: 4;
|
|
1197
1203
|
}
|
|
1198
1204
|
.e-gantt .e-gantt-chart .e-event-markers .e-span-label {
|
|
1199
1205
|
border-radius: 3px;
|
|
@@ -1410,10 +1416,6 @@
|
|
|
1410
1416
|
width: auto;
|
|
1411
1417
|
}
|
|
1412
1418
|
|
|
1413
|
-
.e-icon-rowselect::before {
|
|
1414
|
-
content: "\e930";
|
|
1415
|
-
}
|
|
1416
|
-
|
|
1417
1419
|
.e-ganttpopup {
|
|
1418
1420
|
-moz-user-select: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
1419
1421
|
-ms-user-select: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
@@ -1472,6 +1474,15 @@
|
|
|
1472
1474
|
font-size: 13px;
|
|
1473
1475
|
}
|
|
1474
1476
|
|
|
1477
|
+
.e-bigger .e-gantt .e-gantt-chart .e-timeline-single-header-outer-div {
|
|
1478
|
+
height: 64px !important; /* stylelint-disable-line declaration-no-important */
|
|
1479
|
+
}
|
|
1480
|
+
|
|
1481
|
+
.e-bigger .e-timeline-single-header-cell {
|
|
1482
|
+
height: 64px !important; /* stylelint-disable-line declaration-no-important */
|
|
1483
|
+
line-height: 64px !important; /* stylelint-disable-line declaration-no-important */
|
|
1484
|
+
}
|
|
1485
|
+
|
|
1475
1486
|
.e-gantt-tooltip-label {
|
|
1476
1487
|
padding-bottom: 2px;
|
|
1477
1488
|
padding-right: 2px;
|
|
@@ -1516,16 +1527,6 @@
|
|
|
1516
1527
|
.e-gantt.e-device .e-gridheader .e-icons {
|
|
1517
1528
|
font-size: 12px;
|
|
1518
1529
|
}
|
|
1519
|
-
.e-gantt.e-device .e-right-resize-gripper,
|
|
1520
|
-
.e-gantt.e-device .e-left-resize-gripper {
|
|
1521
|
-
border: 7px solid;
|
|
1522
|
-
z-index: -1;
|
|
1523
|
-
}
|
|
1524
|
-
.e-gantt.e-device .e-right-resize-gripper::before,
|
|
1525
|
-
.e-gantt.e-device .e-left-resize-gripper::before {
|
|
1526
|
-
font-size: 14px;
|
|
1527
|
-
margin-left: -7px;
|
|
1528
|
-
}
|
|
1529
1530
|
.e-gantt.e-device .e-dependent-div .e-content {
|
|
1530
1531
|
height: 100%;
|
|
1531
1532
|
}
|
|
@@ -1589,6 +1590,12 @@
|
|
|
1589
1590
|
color: #fff;
|
|
1590
1591
|
}
|
|
1591
1592
|
|
|
1593
|
+
.e-gantt-chart-resize-indicator {
|
|
1594
|
+
height: 100%;
|
|
1595
|
+
position: absolute;
|
|
1596
|
+
z-index: 1;
|
|
1597
|
+
}
|
|
1598
|
+
|
|
1592
1599
|
/*! Gantt theme */
|
|
1593
1600
|
.e-gantt .e-gantt-splitter {
|
|
1594
1601
|
border-color: #969696;
|
|
@@ -1945,75 +1952,6 @@
|
|
|
1945
1952
|
.e-gantt .e-gantt-chart .e-grid .e-gridpopup .e-spanclicked {
|
|
1946
1953
|
border-color: #000;
|
|
1947
1954
|
}
|
|
1948
|
-
.e-gantt .e-gantt-chart .e-active-parent-task {
|
|
1949
|
-
border-radius: 4px;
|
|
1950
|
-
box-shadow: 4px 4px 3px 0 rgba(0, 0, 0, 0.5);
|
|
1951
|
-
}
|
|
1952
|
-
.e-gantt .e-gantt-chart .e-active-parent-task .e-gantt-parent-taskbar-inner-div {
|
|
1953
|
-
background: #1a1a1a;
|
|
1954
|
-
border: #1a1a1a;
|
|
1955
|
-
}
|
|
1956
|
-
.e-gantt .e-gantt-chart .e-active-parent-task .e-gantt-parent-progressbar-inner-div {
|
|
1957
|
-
background-color: transparent;
|
|
1958
|
-
border: transparent;
|
|
1959
|
-
}
|
|
1960
|
-
.e-gantt .e-gantt-chart .e-active-parent-task .e-task-label {
|
|
1961
|
-
color: transparent;
|
|
1962
|
-
}
|
|
1963
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-task-label {
|
|
1964
|
-
color: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1965
|
-
}
|
|
1966
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-line {
|
|
1967
|
-
border-color: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
|
|
1968
|
-
}
|
|
1969
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-connector-line-right-arrow {
|
|
1970
|
-
border-left-color: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
|
|
1971
|
-
}
|
|
1972
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-connector-line-left-arrow {
|
|
1973
|
-
border-right-color: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
|
|
1974
|
-
}
|
|
1975
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-child-taskbar-inner-div {
|
|
1976
|
-
background: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
|
|
1977
|
-
border: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
|
|
1978
|
-
}
|
|
1979
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-child-progressbar-inner-div {
|
|
1980
|
-
background-color: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1981
|
-
border: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1982
|
-
}
|
|
1983
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-milestone {
|
|
1984
|
-
background-color: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
|
|
1985
|
-
}
|
|
1986
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-parent-taskbar-inner-div {
|
|
1987
|
-
background-color: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
|
|
1988
|
-
border: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
|
|
1989
|
-
}
|
|
1990
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-parent-progressbar-inner-div {
|
|
1991
|
-
background-color: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1992
|
-
border: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1993
|
-
}
|
|
1994
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-gantt-child-taskbar-inner-div {
|
|
1995
|
-
background: #3e047d !important; /* stylelint-disable-line declaration-no-important */
|
|
1996
|
-
border: #3e047d !important; /* stylelint-disable-line declaration-no-important */
|
|
1997
|
-
}
|
|
1998
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-gantt-milestone {
|
|
1999
|
-
background-color: #3e047d !important; /* stylelint-disable-line declaration-no-important */
|
|
2000
|
-
}
|
|
2001
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-gantt-child-taskbar-inner-div {
|
|
2002
|
-
background: #a662fb !important; /* stylelint-disable-line declaration-no-important */
|
|
2003
|
-
border: #a662fb !important; /* stylelint-disable-line declaration-no-important */
|
|
2004
|
-
}
|
|
2005
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-gantt-milestone {
|
|
2006
|
-
background-color: #a662fb !important; /* stylelint-disable-line declaration-no-important */
|
|
2007
|
-
}
|
|
2008
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-line {
|
|
2009
|
-
border-color: #3e047d !important; /* stylelint-disable-line declaration-no-important */
|
|
2010
|
-
}
|
|
2011
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-connector-line-right-arrow {
|
|
2012
|
-
border-left-color: #3e047d !important; /* stylelint-disable-line declaration-no-important */
|
|
2013
|
-
}
|
|
2014
|
-
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-connector-line-left-arrow {
|
|
2015
|
-
border-right-color: #3e047d !important; /* stylelint-disable-line declaration-no-important */
|
|
2016
|
-
}
|
|
2017
1955
|
.e-gantt .e-icons {
|
|
2018
1956
|
color: #fff;
|
|
2019
1957
|
}
|
|
@@ -2123,4 +2061,10 @@
|
|
|
2123
2061
|
|
|
2124
2062
|
.e-gantt .e-gantt-chart .e-critical-milestone {
|
|
2125
2063
|
background-color: #D13438;
|
|
2064
|
+
}
|
|
2065
|
+
|
|
2066
|
+
.e-gantt-chart-resize-indicator {
|
|
2067
|
+
border: 1px dashed #6e06f1;
|
|
2068
|
+
border-bottom: none;
|
|
2069
|
+
border-top: none;
|
|
2126
2070
|
}
|