@syncfusion/ej2-vue-gantt 19.4.54 → 20.1.47
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 +35 -0
- package/dist/ej2-vue-gantt.umd.min.js +2 -2
- package/dist/es6/ej2-vue-gantt.es2015.js +221 -15
- package/dist/es6/ej2-vue-gantt.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-gantt.es5.js +150 -15
- package/dist/es6/ej2-vue-gantt.es5.js.map +1 -1
- package/dist/global/ej2-vue-gantt.min.js +2 -2
- package/package.json +8 -8
- package/src/gantt/adddialogfields.directive.d.ts +3 -1
- package/src/gantt/adddialogfields.directive.js +24 -2
- package/src/gantt/columns.directive.d.ts +3 -1
- package/src/gantt/columns.directive.js +24 -2
- package/src/gantt/dayworkingtime.directive.d.ts +3 -1
- package/src/gantt/dayworkingtime.directive.js +24 -2
- package/src/gantt/editdialogfields.directive.d.ts +3 -1
- package/src/gantt/editdialogfields.directive.js +24 -2
- package/src/gantt/eventmarkers.directive.d.ts +3 -1
- package/src/gantt/eventmarkers.directive.js +24 -2
- package/src/gantt/gantt.component.d.ts +1 -0
- package/src/gantt/gantt.component.js +10 -1
- package/src/gantt/holidays.directive.d.ts +3 -1
- package/src/gantt/holidays.directive.js +24 -2
- package/styles/bootstrap-dark.css +37 -10
- package/styles/bootstrap.css +37 -10
- package/styles/bootstrap4.css +37 -10
- package/styles/bootstrap5-dark.css +53 -19
- package/styles/bootstrap5.css +53 -19
- package/styles/fabric-dark.css +34 -7
- package/styles/fabric.css +37 -10
- package/styles/fluent-dark.css +1942 -0
- package/styles/fluent-dark.scss +1 -0
- package/styles/fluent.css +1942 -0
- package/styles/fluent.scss +1 -0
- package/styles/gantt/bootstrap-dark.css +37 -10
- package/styles/gantt/bootstrap.css +37 -10
- package/styles/gantt/bootstrap4.css +37 -10
- package/styles/gantt/bootstrap5-dark.css +53 -19
- package/styles/gantt/bootstrap5.css +53 -19
- package/styles/gantt/fabric-dark.css +34 -7
- package/styles/gantt/fabric.css +37 -10
- package/styles/gantt/fluent-dark.css +1942 -0
- package/styles/gantt/fluent-dark.scss +1 -0
- package/styles/gantt/fluent.css +1942 -0
- package/styles/gantt/fluent.scss +1 -0
- package/styles/gantt/highcontrast-light.css +34 -7
- package/styles/gantt/highcontrast.css +34 -7
- package/styles/gantt/material-dark.css +37 -10
- package/styles/gantt/material.css +37 -10
- package/styles/gantt/tailwind-dark.css +70 -99
- package/styles/gantt/tailwind.css +70 -99
- package/styles/highcontrast-light.css +34 -7
- package/styles/highcontrast.css +34 -7
- package/styles/material-dark.css +37 -10
- package/styles/material.css +37 -10
- package/styles/tailwind-dark.css +70 -99
- package/styles/tailwind.css +70 -99
package/styles/bootstrap4.css
CHANGED
|
@@ -643,6 +643,34 @@
|
|
|
643
643
|
content: '\e903';
|
|
644
644
|
}
|
|
645
645
|
|
|
646
|
+
.e-bigger .e-gantt .e-gantt-chart .e-timeline-header-container {
|
|
647
|
+
height: 64px;
|
|
648
|
+
}
|
|
649
|
+
|
|
650
|
+
.e-bigger .e-gantt .e-gantt-chart .e-timeline-top-header-cell {
|
|
651
|
+
height: 32px;
|
|
652
|
+
}
|
|
653
|
+
|
|
654
|
+
.e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
|
|
655
|
+
height: 63px !important;
|
|
656
|
+
}
|
|
657
|
+
|
|
658
|
+
.e-bigger .e-columnmenu {
|
|
659
|
+
top: 38px;
|
|
660
|
+
}
|
|
661
|
+
|
|
662
|
+
.e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(odd) {
|
|
663
|
+
padding: 16px 18px 0 18px;
|
|
664
|
+
}
|
|
665
|
+
|
|
666
|
+
.e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(even) {
|
|
667
|
+
padding: 16px 18px 0 0;
|
|
668
|
+
}
|
|
669
|
+
|
|
670
|
+
.e-bigger .e-gantt-dialog .e-edit-form-row.e-scroll .e-edit-form-column:nth-child(even) {
|
|
671
|
+
padding: 16px 18px 0 0;
|
|
672
|
+
}
|
|
673
|
+
|
|
646
674
|
.e-gantt {
|
|
647
675
|
display: block;
|
|
648
676
|
width: 100%;
|
|
@@ -1157,9 +1185,10 @@
|
|
|
1157
1185
|
}
|
|
1158
1186
|
|
|
1159
1187
|
.e-gantt .e-gantt-chart .e-baseline-bar {
|
|
1188
|
+
border-radius: 2px;
|
|
1160
1189
|
box-sizing: border-box;
|
|
1161
1190
|
position: absolute;
|
|
1162
|
-
z-index:
|
|
1191
|
+
z-index: 2;
|
|
1163
1192
|
}
|
|
1164
1193
|
|
|
1165
1194
|
.e-gantt .e-gantt-chart .e-milestone-top,
|
|
@@ -1221,7 +1250,6 @@
|
|
|
1221
1250
|
}
|
|
1222
1251
|
|
|
1223
1252
|
.e-gantt .e-gantt-chart .e-holiday .e-span {
|
|
1224
|
-
font-size: 13px;
|
|
1225
1253
|
position: absolute;
|
|
1226
1254
|
transform: rotate(-90deg);
|
|
1227
1255
|
white-space: nowrap;
|
|
@@ -1504,6 +1532,8 @@
|
|
|
1504
1532
|
|
|
1505
1533
|
.e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
1506
1534
|
border-radius: 50%;
|
|
1535
|
+
height: auto !important;
|
|
1536
|
+
width: auto !important;
|
|
1507
1537
|
}
|
|
1508
1538
|
|
|
1509
1539
|
.e-icon-rowselect::before {
|
|
@@ -1812,11 +1842,13 @@
|
|
|
1812
1842
|
.e-gantt .e-gantt-chart .e-gantt-parent-progressbar-inner-div {
|
|
1813
1843
|
background-color: #495057;
|
|
1814
1844
|
border: 0px;
|
|
1845
|
+
border-radius: 4px;
|
|
1815
1846
|
}
|
|
1816
1847
|
|
|
1817
1848
|
.e-gantt .e-gantt-chart .e-gantt-child-progressbar-inner-div {
|
|
1818
1849
|
background-color: #0056b3;
|
|
1819
1850
|
border: 0px;
|
|
1851
|
+
border-radius: 4px;
|
|
1820
1852
|
}
|
|
1821
1853
|
|
|
1822
1854
|
.e-gantt .e-gantt-chart .e-gantt-child-manualtaskbar {
|
|
@@ -1887,11 +1919,6 @@
|
|
|
1887
1919
|
|
|
1888
1920
|
.e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler {
|
|
1889
1921
|
background: #222;
|
|
1890
|
-
border-color: #fff;
|
|
1891
|
-
}
|
|
1892
|
-
|
|
1893
|
-
.e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-element {
|
|
1894
|
-
border-bottom-color: #fff;
|
|
1895
1922
|
}
|
|
1896
1923
|
|
|
1897
1924
|
.e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-after {
|
|
@@ -2055,15 +2082,15 @@
|
|
|
2055
2082
|
}
|
|
2056
2083
|
|
|
2057
2084
|
.e-gantt .e-gantt-chart .e-baseline-bar {
|
|
2058
|
-
background-color: #
|
|
2085
|
+
background-color: #ffc107;
|
|
2059
2086
|
}
|
|
2060
2087
|
|
|
2061
2088
|
.e-gantt .e-gantt-chart .e-baseline-milestone-top {
|
|
2062
|
-
border-bottom-color: #
|
|
2089
|
+
border-bottom-color: #ffc107;
|
|
2063
2090
|
}
|
|
2064
2091
|
|
|
2065
2092
|
.e-gantt .e-gantt-chart .e-baseline-milestone-bottom {
|
|
2066
|
-
border-top-color: #
|
|
2093
|
+
border-top-color: #ffc107;
|
|
2067
2094
|
}
|
|
2068
2095
|
|
|
2069
2096
|
.e-gantt .e-gantt-chart .e-uptail::before {
|
|
@@ -89,6 +89,13 @@
|
|
|
89
89
|
color: #adb5bd;
|
|
90
90
|
}
|
|
91
91
|
|
|
92
|
+
.e-input-group.e-ddl.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon,
|
|
93
|
+
.e-input-group.e-control-wrapper.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon,
|
|
94
|
+
.e-float-input.e-ddl.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon,
|
|
95
|
+
.e-float-input.e-control-wrapper.e-ddl.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon {
|
|
96
|
+
background: #343a40;
|
|
97
|
+
}
|
|
98
|
+
|
|
92
99
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon,
|
|
93
100
|
.e-input-group.e-disabled.e-ddl .e-control.e-dropdownlist ~ .e-input-group-icon,
|
|
94
101
|
.e-control.e-dropdownlist .e-input-group.e-disabled.e-ddl .e-input-group-icon,
|
|
@@ -151,7 +158,7 @@
|
|
|
151
158
|
}
|
|
152
159
|
|
|
153
160
|
.e-multiselect .e-input-group-icon.e-ddl-icon {
|
|
154
|
-
border-radius: 0
|
|
161
|
+
border-radius: 0 2px 2px 0;
|
|
155
162
|
border-right-width: 0;
|
|
156
163
|
}
|
|
157
164
|
|
|
@@ -310,6 +317,34 @@
|
|
|
310
317
|
content: '\e770';
|
|
311
318
|
}
|
|
312
319
|
|
|
320
|
+
.e-bigger .e-gantt .e-gantt-chart .e-timeline-header-container {
|
|
321
|
+
height: 64px;
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
.e-bigger .e-gantt .e-gantt-chart .e-timeline-top-header-cell {
|
|
325
|
+
height: 32px;
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
.e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
|
|
329
|
+
height: 63px !important;
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
.e-bigger .e-columnmenu {
|
|
333
|
+
top: 35px;
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
.e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(odd) {
|
|
337
|
+
padding: 16px 18px 0 18px;
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
.e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(even) {
|
|
341
|
+
padding: 16px 18px 0 0;
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
.e-bigger .e-gantt-dialog .e-edit-form-row.e-scroll .e-edit-form-column:nth-child(even) {
|
|
345
|
+
padding: 16px 18px 0 0;
|
|
346
|
+
}
|
|
347
|
+
|
|
313
348
|
.e-gantt {
|
|
314
349
|
display: block;
|
|
315
350
|
width: 100%;
|
|
@@ -447,7 +482,7 @@
|
|
|
447
482
|
|
|
448
483
|
.e-gantt .e-gantt-tree-grid-pane .e-columnheader,
|
|
449
484
|
.e-gantt .e-gantt-tree-grid-pane .e-headercell {
|
|
450
|
-
height:
|
|
485
|
+
height: 51px !important;
|
|
451
486
|
}
|
|
452
487
|
|
|
453
488
|
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content {
|
|
@@ -824,9 +859,10 @@
|
|
|
824
859
|
}
|
|
825
860
|
|
|
826
861
|
.e-gantt .e-gantt-chart .e-baseline-bar {
|
|
862
|
+
border-radius: 2px;
|
|
827
863
|
box-sizing: border-box;
|
|
828
864
|
position: absolute;
|
|
829
|
-
z-index:
|
|
865
|
+
z-index: 2;
|
|
830
866
|
}
|
|
831
867
|
|
|
832
868
|
.e-gantt .e-gantt-chart .e-milestone-top,
|
|
@@ -888,7 +924,6 @@
|
|
|
888
924
|
}
|
|
889
925
|
|
|
890
926
|
.e-gantt .e-gantt-chart .e-holiday .e-span {
|
|
891
|
-
font-size: 13px;
|
|
892
927
|
position: absolute;
|
|
893
928
|
transform: rotate(-90deg);
|
|
894
929
|
white-space: nowrap;
|
|
@@ -1115,18 +1150,18 @@
|
|
|
1115
1150
|
|
|
1116
1151
|
.e-gantt-dialog .e-edit-form-column:nth-child(odd) {
|
|
1117
1152
|
float: left;
|
|
1118
|
-
padding:
|
|
1153
|
+
padding: 12px 18px 0 18px;
|
|
1119
1154
|
width: 50%;
|
|
1120
1155
|
}
|
|
1121
1156
|
|
|
1122
1157
|
.e-gantt-dialog .e-edit-form-column:nth-child(even) {
|
|
1123
1158
|
float: left;
|
|
1124
|
-
padding:
|
|
1159
|
+
padding: 12px 18px 0 0;
|
|
1125
1160
|
width: 50%;
|
|
1126
1161
|
}
|
|
1127
1162
|
|
|
1128
1163
|
.e-gantt-dialog .e-edit-form-row.e-scroll .e-edit-form-column:nth-child(even) {
|
|
1129
|
-
padding:
|
|
1164
|
+
padding: 12px 18px 0 0;
|
|
1130
1165
|
}
|
|
1131
1166
|
|
|
1132
1167
|
.e-gantt-dialog .e-edit-form-column {
|
|
@@ -1166,11 +1201,13 @@
|
|
|
1166
1201
|
|
|
1167
1202
|
.e-gantt-dialog .e-dlg-header-content {
|
|
1168
1203
|
border-radius: 3px 3px 0px 0px;
|
|
1169
|
-
padding-bottom:
|
|
1204
|
+
padding-bottom: 12px;
|
|
1170
1205
|
}
|
|
1171
1206
|
|
|
1172
1207
|
.e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
1173
1208
|
border-radius: 50%;
|
|
1209
|
+
height: auto !important;
|
|
1210
|
+
width: auto !important;
|
|
1174
1211
|
}
|
|
1175
1212
|
|
|
1176
1213
|
.e-icon-rowselect::before {
|
|
@@ -1248,7 +1285,7 @@
|
|
|
1248
1285
|
|
|
1249
1286
|
.e-gantt.e-device .e-edit-form-column:nth-child(odd), .e-gantt.e-device .e-edit-form-column:nth-child(even) {
|
|
1250
1287
|
float: none;
|
|
1251
|
-
padding:
|
|
1288
|
+
padding: 12px 18px 0 18px;
|
|
1252
1289
|
width: 100%;
|
|
1253
1290
|
}
|
|
1254
1291
|
|
|
@@ -1391,7 +1428,7 @@
|
|
|
1391
1428
|
border-bottom-width: 1px;
|
|
1392
1429
|
border-right-color: #444c54;
|
|
1393
1430
|
color: #fff;
|
|
1394
|
-
height:
|
|
1431
|
+
height: 52px;
|
|
1395
1432
|
}
|
|
1396
1433
|
|
|
1397
1434
|
.e-gantt .e-gantt-chart .e-timeline-top-header-cell,
|
|
@@ -1410,7 +1447,7 @@
|
|
|
1410
1447
|
}
|
|
1411
1448
|
|
|
1412
1449
|
.e-gantt .e-gantt-chart .e-timeline-top-header-cell {
|
|
1413
|
-
height:
|
|
1450
|
+
height: 26px;
|
|
1414
1451
|
}
|
|
1415
1452
|
|
|
1416
1453
|
.e-gantt .e-gantt-chart .e-chart-root-container {
|
|
@@ -1479,11 +1516,13 @@
|
|
|
1479
1516
|
.e-gantt .e-gantt-chart .e-gantt-parent-progressbar-inner-div {
|
|
1480
1517
|
background-color: #adb5bd;
|
|
1481
1518
|
border: 0px;
|
|
1519
|
+
border-radius: 4px;
|
|
1482
1520
|
}
|
|
1483
1521
|
|
|
1484
1522
|
.e-gantt .e-gantt-chart .e-gantt-child-progressbar-inner-div {
|
|
1485
1523
|
background-color: #0d6efd;
|
|
1486
1524
|
border: 0px;
|
|
1525
|
+
border-radius: 4px;
|
|
1487
1526
|
}
|
|
1488
1527
|
|
|
1489
1528
|
.e-gantt .e-gantt-chart .e-gantt-child-manualtaskbar {
|
|
@@ -1554,11 +1593,6 @@
|
|
|
1554
1593
|
|
|
1555
1594
|
.e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler {
|
|
1556
1595
|
background: #fff;
|
|
1557
|
-
border-color: #fff;
|
|
1558
|
-
}
|
|
1559
|
-
|
|
1560
|
-
.e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-element {
|
|
1561
|
-
border-bottom-color: #fff;
|
|
1562
1596
|
}
|
|
1563
1597
|
|
|
1564
1598
|
.e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-after {
|
|
@@ -1722,15 +1756,15 @@
|
|
|
1722
1756
|
}
|
|
1723
1757
|
|
|
1724
1758
|
.e-gantt .e-gantt-chart .e-baseline-bar {
|
|
1725
|
-
background-color: #
|
|
1759
|
+
background-color: #ffc107;
|
|
1726
1760
|
}
|
|
1727
1761
|
|
|
1728
1762
|
.e-gantt .e-gantt-chart .e-baseline-milestone-top {
|
|
1729
|
-
border-bottom-color: #
|
|
1763
|
+
border-bottom-color: #ffc107;
|
|
1730
1764
|
}
|
|
1731
1765
|
|
|
1732
1766
|
.e-gantt .e-gantt-chart .e-baseline-milestone-bottom {
|
|
1733
|
-
border-top-color: #
|
|
1767
|
+
border-top-color: #ffc107;
|
|
1734
1768
|
}
|
|
1735
1769
|
|
|
1736
1770
|
.e-gantt .e-gantt-chart .e-uptail::before {
|
package/styles/bootstrap5.css
CHANGED
|
@@ -89,6 +89,13 @@
|
|
|
89
89
|
color: #6c757d;
|
|
90
90
|
}
|
|
91
91
|
|
|
92
|
+
.e-input-group.e-ddl.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon,
|
|
93
|
+
.e-input-group.e-control-wrapper.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon,
|
|
94
|
+
.e-float-input.e-ddl.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon,
|
|
95
|
+
.e-float-input.e-control-wrapper.e-ddl.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon {
|
|
96
|
+
background: #e9ecef;
|
|
97
|
+
}
|
|
98
|
+
|
|
92
99
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon,
|
|
93
100
|
.e-input-group.e-disabled.e-ddl .e-control.e-dropdownlist ~ .e-input-group-icon,
|
|
94
101
|
.e-control.e-dropdownlist .e-input-group.e-disabled.e-ddl .e-input-group-icon,
|
|
@@ -151,7 +158,7 @@
|
|
|
151
158
|
}
|
|
152
159
|
|
|
153
160
|
.e-multiselect .e-input-group-icon.e-ddl-icon {
|
|
154
|
-
border-radius: 0
|
|
161
|
+
border-radius: 0 2px 2px 0;
|
|
155
162
|
border-right-width: 0;
|
|
156
163
|
}
|
|
157
164
|
|
|
@@ -310,6 +317,34 @@
|
|
|
310
317
|
content: '\e770';
|
|
311
318
|
}
|
|
312
319
|
|
|
320
|
+
.e-bigger .e-gantt .e-gantt-chart .e-timeline-header-container {
|
|
321
|
+
height: 64px;
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
.e-bigger .e-gantt .e-gantt-chart .e-timeline-top-header-cell {
|
|
325
|
+
height: 32px;
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
.e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
|
|
329
|
+
height: 63px !important;
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
.e-bigger .e-columnmenu {
|
|
333
|
+
top: 35px;
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
.e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(odd) {
|
|
337
|
+
padding: 16px 18px 0 18px;
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
.e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(even) {
|
|
341
|
+
padding: 16px 18px 0 0;
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
.e-bigger .e-gantt-dialog .e-edit-form-row.e-scroll .e-edit-form-column:nth-child(even) {
|
|
345
|
+
padding: 16px 18px 0 0;
|
|
346
|
+
}
|
|
347
|
+
|
|
313
348
|
.e-gantt {
|
|
314
349
|
display: block;
|
|
315
350
|
width: 100%;
|
|
@@ -447,7 +482,7 @@
|
|
|
447
482
|
|
|
448
483
|
.e-gantt .e-gantt-tree-grid-pane .e-columnheader,
|
|
449
484
|
.e-gantt .e-gantt-tree-grid-pane .e-headercell {
|
|
450
|
-
height:
|
|
485
|
+
height: 51px !important;
|
|
451
486
|
}
|
|
452
487
|
|
|
453
488
|
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content {
|
|
@@ -824,9 +859,10 @@
|
|
|
824
859
|
}
|
|
825
860
|
|
|
826
861
|
.e-gantt .e-gantt-chart .e-baseline-bar {
|
|
862
|
+
border-radius: 2px;
|
|
827
863
|
box-sizing: border-box;
|
|
828
864
|
position: absolute;
|
|
829
|
-
z-index:
|
|
865
|
+
z-index: 2;
|
|
830
866
|
}
|
|
831
867
|
|
|
832
868
|
.e-gantt .e-gantt-chart .e-milestone-top,
|
|
@@ -888,7 +924,6 @@
|
|
|
888
924
|
}
|
|
889
925
|
|
|
890
926
|
.e-gantt .e-gantt-chart .e-holiday .e-span {
|
|
891
|
-
font-size: 13px;
|
|
892
927
|
position: absolute;
|
|
893
928
|
transform: rotate(-90deg);
|
|
894
929
|
white-space: nowrap;
|
|
@@ -1115,18 +1150,18 @@
|
|
|
1115
1150
|
|
|
1116
1151
|
.e-gantt-dialog .e-edit-form-column:nth-child(odd) {
|
|
1117
1152
|
float: left;
|
|
1118
|
-
padding:
|
|
1153
|
+
padding: 12px 18px 0 18px;
|
|
1119
1154
|
width: 50%;
|
|
1120
1155
|
}
|
|
1121
1156
|
|
|
1122
1157
|
.e-gantt-dialog .e-edit-form-column:nth-child(even) {
|
|
1123
1158
|
float: left;
|
|
1124
|
-
padding:
|
|
1159
|
+
padding: 12px 18px 0 0;
|
|
1125
1160
|
width: 50%;
|
|
1126
1161
|
}
|
|
1127
1162
|
|
|
1128
1163
|
.e-gantt-dialog .e-edit-form-row.e-scroll .e-edit-form-column:nth-child(even) {
|
|
1129
|
-
padding:
|
|
1164
|
+
padding: 12px 18px 0 0;
|
|
1130
1165
|
}
|
|
1131
1166
|
|
|
1132
1167
|
.e-gantt-dialog .e-edit-form-column {
|
|
@@ -1166,11 +1201,13 @@
|
|
|
1166
1201
|
|
|
1167
1202
|
.e-gantt-dialog .e-dlg-header-content {
|
|
1168
1203
|
border-radius: 3px 3px 0px 0px;
|
|
1169
|
-
padding-bottom:
|
|
1204
|
+
padding-bottom: 12px;
|
|
1170
1205
|
}
|
|
1171
1206
|
|
|
1172
1207
|
.e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
1173
1208
|
border-radius: 50%;
|
|
1209
|
+
height: auto !important;
|
|
1210
|
+
width: auto !important;
|
|
1174
1211
|
}
|
|
1175
1212
|
|
|
1176
1213
|
.e-icon-rowselect::before {
|
|
@@ -1248,7 +1285,7 @@
|
|
|
1248
1285
|
|
|
1249
1286
|
.e-gantt.e-device .e-edit-form-column:nth-child(odd), .e-gantt.e-device .e-edit-form-column:nth-child(even) {
|
|
1250
1287
|
float: none;
|
|
1251
|
-
padding:
|
|
1288
|
+
padding: 12px 18px 0 18px;
|
|
1252
1289
|
width: 100%;
|
|
1253
1290
|
}
|
|
1254
1291
|
|
|
@@ -1391,7 +1428,7 @@
|
|
|
1391
1428
|
border-bottom-width: 1px;
|
|
1392
1429
|
border-right-color: #dee2e6;
|
|
1393
1430
|
color: #212529;
|
|
1394
|
-
height:
|
|
1431
|
+
height: 52px;
|
|
1395
1432
|
}
|
|
1396
1433
|
|
|
1397
1434
|
.e-gantt .e-gantt-chart .e-timeline-top-header-cell,
|
|
@@ -1410,7 +1447,7 @@
|
|
|
1410
1447
|
}
|
|
1411
1448
|
|
|
1412
1449
|
.e-gantt .e-gantt-chart .e-timeline-top-header-cell {
|
|
1413
|
-
height:
|
|
1450
|
+
height: 26px;
|
|
1414
1451
|
}
|
|
1415
1452
|
|
|
1416
1453
|
.e-gantt .e-gantt-chart .e-chart-root-container {
|
|
@@ -1479,11 +1516,13 @@
|
|
|
1479
1516
|
.e-gantt .e-gantt-chart .e-gantt-parent-progressbar-inner-div {
|
|
1480
1517
|
background-color: #adb5bd;
|
|
1481
1518
|
border: 0px;
|
|
1519
|
+
border-radius: 4px;
|
|
1482
1520
|
}
|
|
1483
1521
|
|
|
1484
1522
|
.e-gantt .e-gantt-chart .e-gantt-child-progressbar-inner-div {
|
|
1485
1523
|
background-color: #0d6efd;
|
|
1486
1524
|
border: 0px;
|
|
1525
|
+
border-radius: 4px;
|
|
1487
1526
|
}
|
|
1488
1527
|
|
|
1489
1528
|
.e-gantt .e-gantt-chart .e-gantt-child-manualtaskbar {
|
|
@@ -1554,11 +1593,6 @@
|
|
|
1554
1593
|
|
|
1555
1594
|
.e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler {
|
|
1556
1595
|
background: #212529;
|
|
1557
|
-
border-color: #fff;
|
|
1558
|
-
}
|
|
1559
|
-
|
|
1560
|
-
.e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-element {
|
|
1561
|
-
border-bottom-color: #fff;
|
|
1562
1596
|
}
|
|
1563
1597
|
|
|
1564
1598
|
.e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-after {
|
|
@@ -1722,15 +1756,15 @@
|
|
|
1722
1756
|
}
|
|
1723
1757
|
|
|
1724
1758
|
.e-gantt .e-gantt-chart .e-baseline-bar {
|
|
1725
|
-
background-color: #
|
|
1759
|
+
background-color: #ffc107;
|
|
1726
1760
|
}
|
|
1727
1761
|
|
|
1728
1762
|
.e-gantt .e-gantt-chart .e-baseline-milestone-top {
|
|
1729
|
-
border-bottom-color: #
|
|
1763
|
+
border-bottom-color: #ffc107;
|
|
1730
1764
|
}
|
|
1731
1765
|
|
|
1732
1766
|
.e-gantt .e-gantt-chart .e-baseline-milestone-bottom {
|
|
1733
|
-
border-top-color: #
|
|
1767
|
+
border-top-color: #ffc107;
|
|
1734
1768
|
}
|
|
1735
1769
|
|
|
1736
1770
|
.e-gantt .e-gantt-chart .e-uptail::before {
|
package/styles/fabric-dark.css
CHANGED
|
@@ -230,6 +230,34 @@
|
|
|
230
230
|
content: '\e903';
|
|
231
231
|
}
|
|
232
232
|
|
|
233
|
+
.e-bigger .e-gantt .e-gantt-chart .e-timeline-header-container {
|
|
234
|
+
height: 64px;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
.e-bigger .e-gantt .e-gantt-chart .e-timeline-top-header-cell {
|
|
238
|
+
height: 32px;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
.e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
|
|
242
|
+
height: 63px !important;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
.e-bigger .e-columnmenu {
|
|
246
|
+
top: 45px;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
.e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(odd) {
|
|
250
|
+
padding: 16px 18px 0 18px;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
.e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(even) {
|
|
254
|
+
padding: 16px 18px 0 0;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
.e-bigger .e-gantt-dialog .e-edit-form-row.e-scroll .e-edit-form-column:nth-child(even) {
|
|
258
|
+
padding: 16px 18px 0 0;
|
|
259
|
+
}
|
|
260
|
+
|
|
233
261
|
.e-gantt {
|
|
234
262
|
display: block;
|
|
235
263
|
width: 100%;
|
|
@@ -744,9 +772,10 @@
|
|
|
744
772
|
}
|
|
745
773
|
|
|
746
774
|
.e-gantt .e-gantt-chart .e-baseline-bar {
|
|
775
|
+
border-radius: 2px;
|
|
747
776
|
box-sizing: border-box;
|
|
748
777
|
position: absolute;
|
|
749
|
-
z-index:
|
|
778
|
+
z-index: 2;
|
|
750
779
|
}
|
|
751
780
|
|
|
752
781
|
.e-gantt .e-gantt-chart .e-milestone-top,
|
|
@@ -808,7 +837,6 @@
|
|
|
808
837
|
}
|
|
809
838
|
|
|
810
839
|
.e-gantt .e-gantt-chart .e-holiday .e-span {
|
|
811
|
-
font-size: 13px;
|
|
812
840
|
position: absolute;
|
|
813
841
|
transform: rotate(-90deg);
|
|
814
842
|
white-space: nowrap;
|
|
@@ -1091,6 +1119,8 @@
|
|
|
1091
1119
|
|
|
1092
1120
|
.e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
1093
1121
|
border-radius: 50%;
|
|
1122
|
+
height: auto !important;
|
|
1123
|
+
width: auto !important;
|
|
1094
1124
|
}
|
|
1095
1125
|
|
|
1096
1126
|
.e-icon-rowselect::before {
|
|
@@ -1399,11 +1429,13 @@
|
|
|
1399
1429
|
.e-gantt .e-gantt-chart .e-gantt-parent-progressbar-inner-div {
|
|
1400
1430
|
background-color: #4cc7ba;
|
|
1401
1431
|
border: 0px;
|
|
1432
|
+
border-radius: 0px;
|
|
1402
1433
|
}
|
|
1403
1434
|
|
|
1404
1435
|
.e-gantt .e-gantt-chart .e-gantt-child-progressbar-inner-div {
|
|
1405
1436
|
background-color: #0063ad;
|
|
1406
1437
|
border: 0px;
|
|
1438
|
+
border-radius: 4px;
|
|
1407
1439
|
}
|
|
1408
1440
|
|
|
1409
1441
|
.e-gantt .e-gantt-chart .e-gantt-child-manualtaskbar {
|
|
@@ -1474,11 +1506,6 @@
|
|
|
1474
1506
|
|
|
1475
1507
|
.e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler {
|
|
1476
1508
|
background: #222;
|
|
1477
|
-
border-color: #fff;
|
|
1478
|
-
}
|
|
1479
|
-
|
|
1480
|
-
.e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-element {
|
|
1481
|
-
border-bottom-color: #fff;
|
|
1482
1509
|
}
|
|
1483
1510
|
|
|
1484
1511
|
.e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-after {
|
package/styles/fabric.css
CHANGED
|
@@ -228,6 +228,34 @@
|
|
|
228
228
|
content: '\e903';
|
|
229
229
|
}
|
|
230
230
|
|
|
231
|
+
.e-bigger .e-gantt .e-gantt-chart .e-timeline-header-container {
|
|
232
|
+
height: 64px;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
.e-bigger .e-gantt .e-gantt-chart .e-timeline-top-header-cell {
|
|
236
|
+
height: 32px;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
.e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
|
|
240
|
+
height: 63px !important;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
.e-bigger .e-columnmenu {
|
|
244
|
+
top: 45px;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
.e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(odd) {
|
|
248
|
+
padding: 16px 18px 0 18px;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
.e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(even) {
|
|
252
|
+
padding: 16px 18px 0 0;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
.e-bigger .e-gantt-dialog .e-edit-form-row.e-scroll .e-edit-form-column:nth-child(even) {
|
|
256
|
+
padding: 16px 18px 0 0;
|
|
257
|
+
}
|
|
258
|
+
|
|
231
259
|
.e-gantt {
|
|
232
260
|
display: block;
|
|
233
261
|
width: 100%;
|
|
@@ -742,9 +770,10 @@
|
|
|
742
770
|
}
|
|
743
771
|
|
|
744
772
|
.e-gantt .e-gantt-chart .e-baseline-bar {
|
|
773
|
+
border-radius: 2px;
|
|
745
774
|
box-sizing: border-box;
|
|
746
775
|
position: absolute;
|
|
747
|
-
z-index:
|
|
776
|
+
z-index: 2;
|
|
748
777
|
}
|
|
749
778
|
|
|
750
779
|
.e-gantt .e-gantt-chart .e-milestone-top,
|
|
@@ -806,7 +835,6 @@
|
|
|
806
835
|
}
|
|
807
836
|
|
|
808
837
|
.e-gantt .e-gantt-chart .e-holiday .e-span {
|
|
809
|
-
font-size: 13px;
|
|
810
838
|
position: absolute;
|
|
811
839
|
transform: rotate(-90deg);
|
|
812
840
|
white-space: nowrap;
|
|
@@ -1089,6 +1117,8 @@
|
|
|
1089
1117
|
|
|
1090
1118
|
.e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
1091
1119
|
border-radius: 50%;
|
|
1120
|
+
height: auto !important;
|
|
1121
|
+
width: auto !important;
|
|
1092
1122
|
}
|
|
1093
1123
|
|
|
1094
1124
|
.e-icon-rowselect::before {
|
|
@@ -1397,11 +1427,13 @@
|
|
|
1397
1427
|
.e-gantt .e-gantt-chart .e-gantt-parent-progressbar-inner-div {
|
|
1398
1428
|
background-color: #505050;
|
|
1399
1429
|
border: 0px;
|
|
1430
|
+
border-radius: 0px;
|
|
1400
1431
|
}
|
|
1401
1432
|
|
|
1402
1433
|
.e-gantt .e-gantt-chart .e-gantt-child-progressbar-inner-div {
|
|
1403
1434
|
background-color: #005ba3;
|
|
1404
1435
|
border: 0px;
|
|
1436
|
+
border-radius: 4px;
|
|
1405
1437
|
}
|
|
1406
1438
|
|
|
1407
1439
|
.e-gantt .e-gantt-chart .e-gantt-child-manualtaskbar {
|
|
@@ -1472,11 +1504,6 @@
|
|
|
1472
1504
|
|
|
1473
1505
|
.e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler {
|
|
1474
1506
|
background: #222;
|
|
1475
|
-
border-color: #fff;
|
|
1476
|
-
}
|
|
1477
|
-
|
|
1478
|
-
.e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-element {
|
|
1479
|
-
border-bottom-color: #fff;
|
|
1480
1507
|
}
|
|
1481
1508
|
|
|
1482
1509
|
.e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-after {
|
|
@@ -1640,15 +1667,15 @@
|
|
|
1640
1667
|
}
|
|
1641
1668
|
|
|
1642
1669
|
.e-gantt .e-gantt-chart .e-baseline-bar {
|
|
1643
|
-
background-color: #
|
|
1670
|
+
background-color: #D83B01;
|
|
1644
1671
|
}
|
|
1645
1672
|
|
|
1646
1673
|
.e-gantt .e-gantt-chart .e-baseline-milestone-top {
|
|
1647
|
-
border-bottom-color: #
|
|
1674
|
+
border-bottom-color: #D83B01;
|
|
1648
1675
|
}
|
|
1649
1676
|
|
|
1650
1677
|
.e-gantt .e-gantt-chart .e-baseline-milestone-bottom {
|
|
1651
|
-
border-top-color: #
|
|
1678
|
+
border-top-color: #D83B01;
|
|
1652
1679
|
}
|
|
1653
1680
|
|
|
1654
1681
|
.e-gantt .e-gantt-chart .e-uptail::before {
|