@syncfusion/ej2-gantt 19.4.42 → 19.4.50
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 +37 -0
- package/dist/ej2-gantt.umd.min.js +2 -2
- package/dist/ej2-gantt.umd.min.js.map +1 -1
- package/dist/es6/ej2-gantt.es2015.js +193 -33
- package/dist/es6/ej2-gantt.es2015.js.map +1 -1
- package/dist/es6/ej2-gantt.es5.js +193 -33
- package/dist/es6/ej2-gantt.es5.js.map +1 -1
- package/dist/global/ej2-gantt.min.js +2 -2
- package/dist/global/ej2-gantt.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +18 -18
- package/src/gantt/actions/cell-edit.d.ts +1 -0
- package/src/gantt/actions/cell-edit.js +2 -0
- package/src/gantt/actions/chart-scroll.js +1 -0
- package/src/gantt/actions/dialog-edit.js +18 -2
- package/src/gantt/actions/edit.d.ts +3 -1
- package/src/gantt/actions/edit.js +101 -10
- package/src/gantt/actions/filter.js +1 -1
- package/src/gantt/actions/keyboard.js +1 -1
- package/src/gantt/actions/rowdragdrop.js +1 -1
- package/src/gantt/actions/taskbar-edit.js +3 -1
- package/src/gantt/base/gantt-chart.js +6 -0
- package/src/gantt/base/gantt.js +18 -5
- package/src/gantt/base/task-processor.js +9 -7
- package/src/gantt/renderer/edit-tooltip.js +1 -0
- package/src/gantt/renderer/timeline.d.ts +1 -0
- package/src/gantt/renderer/timeline.js +30 -5
- package/src/gantt/renderer/tooltip.js +1 -0
- package/styles/bootstrap-dark.css +12 -4
- package/styles/bootstrap.css +12 -4
- package/styles/bootstrap4.css +12 -4
- package/styles/bootstrap5-dark.css +10 -2
- package/styles/bootstrap5.css +10 -2
- package/styles/fabric-dark.css +9 -1
- package/styles/fabric.css +9 -1
- package/styles/gantt/_bootstrap-dark-definition.scss +3 -4
- package/styles/gantt/_bootstrap-definition.scss +3 -4
- package/styles/gantt/_bootstrap4-definition.scss +3 -4
- package/styles/gantt/_bootstrap5-definition.scss +1 -2
- package/styles/gantt/_fabric-dark-definition.scss +0 -1
- package/styles/gantt/_fabric-definition.scss +0 -1
- package/styles/gantt/_fluent-definition.scss +1 -2
- package/styles/gantt/_highcontrast-definition.scss +0 -1
- package/styles/gantt/_highcontrast-light-definition.scss +0 -1
- package/styles/gantt/_layout.scss +8 -1
- package/styles/gantt/_material-dark-definition.scss +0 -1
- package/styles/gantt/_material-definition.scss +0 -1
- package/styles/gantt/_tailwind-definition.scss +3 -4
- package/styles/gantt/bootstrap-dark.css +12 -4
- package/styles/gantt/bootstrap.css +12 -4
- package/styles/gantt/bootstrap4.css +12 -4
- package/styles/gantt/bootstrap5-dark.css +10 -2
- package/styles/gantt/bootstrap5.css +10 -2
- package/styles/gantt/fabric-dark.css +9 -1
- package/styles/gantt/fabric.css +9 -1
- package/styles/gantt/highcontrast-light.css +9 -1
- package/styles/gantt/highcontrast.css +9 -1
- package/styles/gantt/material-dark.css +9 -1
- package/styles/gantt/material.css +9 -1
- package/styles/gantt/tailwind-dark.css +12 -4
- package/styles/gantt/tailwind.css +12 -4
- package/styles/highcontrast-light.css +9 -1
- package/styles/highcontrast.css +9 -1
- package/styles/material-dark.css +9 -1
- package/styles/material.css +9 -1
- package/styles/tailwind-dark.css +12 -4
- package/styles/tailwind.css +12 -4
package/styles/bootstrap.css
CHANGED
|
@@ -650,6 +650,11 @@
|
|
|
650
650
|
white-space: nowrap;
|
|
651
651
|
}
|
|
652
652
|
|
|
653
|
+
.e-gantt .e-gantt-chart .e-timeline-header-table-body > tr {
|
|
654
|
+
display: -ms-inline-flexbox;
|
|
655
|
+
display: inline-flex;
|
|
656
|
+
}
|
|
657
|
+
|
|
653
658
|
.e-gantt .e-gantt-chart .e-timeline-top-header-cell,
|
|
654
659
|
.e-gantt .e-gantt-chart .e-timeline-single-header-cell {
|
|
655
660
|
border-spacing: 0;
|
|
@@ -1219,7 +1224,6 @@
|
|
|
1219
1224
|
.e-gantt-dialog .e-edit-form-row {
|
|
1220
1225
|
height: 241px;
|
|
1221
1226
|
overflow-y: auto;
|
|
1222
|
-
padding-bottom: 16px;
|
|
1223
1227
|
}
|
|
1224
1228
|
|
|
1225
1229
|
.e-gantt-dialog .e-edit-form-column:nth-child(odd) {
|
|
@@ -1337,6 +1341,10 @@
|
|
|
1337
1341
|
opacity: 1;
|
|
1338
1342
|
}
|
|
1339
1343
|
|
|
1344
|
+
.e-gantt-tooltip {
|
|
1345
|
+
visibility: hidden;
|
|
1346
|
+
}
|
|
1347
|
+
|
|
1340
1348
|
.e-gantt .e-cloneproperties.e-draganddrop .e-row .e-rowcell .e-treecolumn-container .e-icons.e-none::before {
|
|
1341
1349
|
content: '';
|
|
1342
1350
|
}
|
|
@@ -1493,10 +1501,10 @@
|
|
|
1493
1501
|
.e-gantt .e-gantt-chart .e-timeline-header-container {
|
|
1494
1502
|
background: #fff;
|
|
1495
1503
|
border-bottom-color: #ddd;
|
|
1496
|
-
border-bottom-width:
|
|
1504
|
+
border-bottom-width: 0px;
|
|
1497
1505
|
border-right-color: #ddd;
|
|
1498
1506
|
color: #333;
|
|
1499
|
-
height:
|
|
1507
|
+
height: 64px;
|
|
1500
1508
|
}
|
|
1501
1509
|
|
|
1502
1510
|
.e-gantt .e-gantt-chart .e-timeline-top-header-cell,
|
|
@@ -1515,7 +1523,7 @@
|
|
|
1515
1523
|
}
|
|
1516
1524
|
|
|
1517
1525
|
.e-gantt .e-gantt-chart .e-timeline-top-header-cell {
|
|
1518
|
-
height:
|
|
1526
|
+
height: 32px;
|
|
1519
1527
|
}
|
|
1520
1528
|
|
|
1521
1529
|
.e-gantt .e-gantt-chart .e-chart-root-container {
|
package/styles/bootstrap4.css
CHANGED
|
@@ -867,6 +867,11 @@
|
|
|
867
867
|
white-space: nowrap;
|
|
868
868
|
}
|
|
869
869
|
|
|
870
|
+
.e-gantt .e-gantt-chart .e-timeline-header-table-body > tr {
|
|
871
|
+
display: -ms-inline-flexbox;
|
|
872
|
+
display: inline-flex;
|
|
873
|
+
}
|
|
874
|
+
|
|
870
875
|
.e-gantt .e-gantt-chart .e-timeline-top-header-cell,
|
|
871
876
|
.e-gantt .e-gantt-chart .e-timeline-single-header-cell {
|
|
872
877
|
border-spacing: 0;
|
|
@@ -1436,7 +1441,6 @@
|
|
|
1436
1441
|
.e-gantt-dialog .e-edit-form-row {
|
|
1437
1442
|
height: 241px;
|
|
1438
1443
|
overflow-y: auto;
|
|
1439
|
-
padding-bottom: 12px;
|
|
1440
1444
|
}
|
|
1441
1445
|
|
|
1442
1446
|
.e-gantt-dialog .e-edit-form-column:nth-child(odd) {
|
|
@@ -1554,6 +1558,10 @@
|
|
|
1554
1558
|
opacity: 1;
|
|
1555
1559
|
}
|
|
1556
1560
|
|
|
1561
|
+
.e-gantt-tooltip {
|
|
1562
|
+
visibility: hidden;
|
|
1563
|
+
}
|
|
1564
|
+
|
|
1557
1565
|
.e-gantt .e-cloneproperties.e-draganddrop .e-row .e-rowcell .e-treecolumn-container .e-icons.e-none::before {
|
|
1558
1566
|
content: '';
|
|
1559
1567
|
}
|
|
@@ -1710,10 +1718,10 @@
|
|
|
1710
1718
|
.e-gantt .e-gantt-chart .e-timeline-header-container {
|
|
1711
1719
|
background: #fff;
|
|
1712
1720
|
border-bottom-color: #dee2e6;
|
|
1713
|
-
border-bottom-width:
|
|
1721
|
+
border-bottom-width: 0px;
|
|
1714
1722
|
border-right-color: #dee2e6;
|
|
1715
1723
|
color: #212529;
|
|
1716
|
-
height:
|
|
1724
|
+
height: 64px;
|
|
1717
1725
|
}
|
|
1718
1726
|
|
|
1719
1727
|
.e-gantt .e-gantt-chart .e-timeline-top-header-cell,
|
|
@@ -1732,7 +1740,7 @@
|
|
|
1732
1740
|
}
|
|
1733
1741
|
|
|
1734
1742
|
.e-gantt .e-gantt-chart .e-timeline-top-header-cell {
|
|
1735
|
-
height:
|
|
1743
|
+
height: 32px;
|
|
1736
1744
|
}
|
|
1737
1745
|
|
|
1738
1746
|
.e-gantt .e-gantt-chart .e-chart-root-container {
|
|
@@ -534,6 +534,11 @@
|
|
|
534
534
|
white-space: nowrap;
|
|
535
535
|
}
|
|
536
536
|
|
|
537
|
+
.e-gantt .e-gantt-chart .e-timeline-header-table-body > tr {
|
|
538
|
+
display: -ms-inline-flexbox;
|
|
539
|
+
display: inline-flex;
|
|
540
|
+
}
|
|
541
|
+
|
|
537
542
|
.e-gantt .e-gantt-chart .e-timeline-top-header-cell,
|
|
538
543
|
.e-gantt .e-gantt-chart .e-timeline-single-header-cell {
|
|
539
544
|
border-spacing: 0;
|
|
@@ -1103,7 +1108,6 @@
|
|
|
1103
1108
|
.e-gantt-dialog .e-edit-form-row {
|
|
1104
1109
|
height: 241px;
|
|
1105
1110
|
overflow-y: auto;
|
|
1106
|
-
padding-bottom: 12px;
|
|
1107
1111
|
}
|
|
1108
1112
|
|
|
1109
1113
|
.e-gantt-dialog .e-edit-form-column:nth-child(odd) {
|
|
@@ -1221,6 +1225,10 @@
|
|
|
1221
1225
|
opacity: 1;
|
|
1222
1226
|
}
|
|
1223
1227
|
|
|
1228
|
+
.e-gantt-tooltip {
|
|
1229
|
+
visibility: hidden;
|
|
1230
|
+
}
|
|
1231
|
+
|
|
1224
1232
|
.e-gantt .e-cloneproperties.e-draganddrop .e-row .e-rowcell .e-treecolumn-container .e-icons.e-none::before {
|
|
1225
1233
|
content: '';
|
|
1226
1234
|
}
|
|
@@ -1399,7 +1407,7 @@
|
|
|
1399
1407
|
}
|
|
1400
1408
|
|
|
1401
1409
|
.e-gantt .e-gantt-chart .e-timeline-top-header-cell {
|
|
1402
|
-
height:
|
|
1410
|
+
height: 32px;
|
|
1403
1411
|
}
|
|
1404
1412
|
|
|
1405
1413
|
.e-gantt .e-gantt-chart .e-chart-root-container {
|
package/styles/bootstrap5.css
CHANGED
|
@@ -534,6 +534,11 @@
|
|
|
534
534
|
white-space: nowrap;
|
|
535
535
|
}
|
|
536
536
|
|
|
537
|
+
.e-gantt .e-gantt-chart .e-timeline-header-table-body > tr {
|
|
538
|
+
display: -ms-inline-flexbox;
|
|
539
|
+
display: inline-flex;
|
|
540
|
+
}
|
|
541
|
+
|
|
537
542
|
.e-gantt .e-gantt-chart .e-timeline-top-header-cell,
|
|
538
543
|
.e-gantt .e-gantt-chart .e-timeline-single-header-cell {
|
|
539
544
|
border-spacing: 0;
|
|
@@ -1103,7 +1108,6 @@
|
|
|
1103
1108
|
.e-gantt-dialog .e-edit-form-row {
|
|
1104
1109
|
height: 241px;
|
|
1105
1110
|
overflow-y: auto;
|
|
1106
|
-
padding-bottom: 12px;
|
|
1107
1111
|
}
|
|
1108
1112
|
|
|
1109
1113
|
.e-gantt-dialog .e-edit-form-column:nth-child(odd) {
|
|
@@ -1221,6 +1225,10 @@
|
|
|
1221
1225
|
opacity: 1;
|
|
1222
1226
|
}
|
|
1223
1227
|
|
|
1228
|
+
.e-gantt-tooltip {
|
|
1229
|
+
visibility: hidden;
|
|
1230
|
+
}
|
|
1231
|
+
|
|
1224
1232
|
.e-gantt .e-cloneproperties.e-draganddrop .e-row .e-rowcell .e-treecolumn-container .e-icons.e-none::before {
|
|
1225
1233
|
content: '';
|
|
1226
1234
|
}
|
|
@@ -1399,7 +1407,7 @@
|
|
|
1399
1407
|
}
|
|
1400
1408
|
|
|
1401
1409
|
.e-gantt .e-gantt-chart .e-timeline-top-header-cell {
|
|
1402
|
-
height:
|
|
1410
|
+
height: 32px;
|
|
1403
1411
|
}
|
|
1404
1412
|
|
|
1405
1413
|
.e-gantt .e-gantt-chart .e-chart-root-container {
|
package/styles/fabric-dark.css
CHANGED
|
@@ -454,6 +454,11 @@
|
|
|
454
454
|
white-space: nowrap;
|
|
455
455
|
}
|
|
456
456
|
|
|
457
|
+
.e-gantt .e-gantt-chart .e-timeline-header-table-body > tr {
|
|
458
|
+
display: -ms-inline-flexbox;
|
|
459
|
+
display: inline-flex;
|
|
460
|
+
}
|
|
461
|
+
|
|
457
462
|
.e-gantt .e-gantt-chart .e-timeline-top-header-cell,
|
|
458
463
|
.e-gantt .e-gantt-chart .e-timeline-single-header-cell {
|
|
459
464
|
border-spacing: 0;
|
|
@@ -1023,7 +1028,6 @@
|
|
|
1023
1028
|
.e-gantt-dialog .e-edit-form-row {
|
|
1024
1029
|
height: 241px;
|
|
1025
1030
|
overflow-y: auto;
|
|
1026
|
-
padding-bottom: 16px;
|
|
1027
1031
|
}
|
|
1028
1032
|
|
|
1029
1033
|
.e-gantt-dialog .e-edit-form-column:nth-child(odd) {
|
|
@@ -1141,6 +1145,10 @@
|
|
|
1141
1145
|
opacity: 1;
|
|
1142
1146
|
}
|
|
1143
1147
|
|
|
1148
|
+
.e-gantt-tooltip {
|
|
1149
|
+
visibility: hidden;
|
|
1150
|
+
}
|
|
1151
|
+
|
|
1144
1152
|
.e-gantt .e-cloneproperties.e-draganddrop .e-row .e-rowcell .e-treecolumn-container .e-icons.e-none::before {
|
|
1145
1153
|
content: '';
|
|
1146
1154
|
}
|
package/styles/fabric.css
CHANGED
|
@@ -452,6 +452,11 @@
|
|
|
452
452
|
white-space: nowrap;
|
|
453
453
|
}
|
|
454
454
|
|
|
455
|
+
.e-gantt .e-gantt-chart .e-timeline-header-table-body > tr {
|
|
456
|
+
display: -ms-inline-flexbox;
|
|
457
|
+
display: inline-flex;
|
|
458
|
+
}
|
|
459
|
+
|
|
455
460
|
.e-gantt .e-gantt-chart .e-timeline-top-header-cell,
|
|
456
461
|
.e-gantt .e-gantt-chart .e-timeline-single-header-cell {
|
|
457
462
|
border-spacing: 0;
|
|
@@ -1021,7 +1026,6 @@
|
|
|
1021
1026
|
.e-gantt-dialog .e-edit-form-row {
|
|
1022
1027
|
height: 241px;
|
|
1023
1028
|
overflow-y: auto;
|
|
1024
|
-
padding-bottom: 16px;
|
|
1025
1029
|
}
|
|
1026
1030
|
|
|
1027
1031
|
.e-gantt-dialog .e-edit-form-column:nth-child(odd) {
|
|
@@ -1139,6 +1143,10 @@
|
|
|
1139
1143
|
opacity: 1;
|
|
1140
1144
|
}
|
|
1141
1145
|
|
|
1146
|
+
.e-gantt-tooltip {
|
|
1147
|
+
visibility: hidden;
|
|
1148
|
+
}
|
|
1149
|
+
|
|
1142
1150
|
.e-gantt .e-cloneproperties.e-draganddrop .e-row .e-rowcell .e-treecolumn-container .e-icons.e-none::before {
|
|
1143
1151
|
content: '';
|
|
1144
1152
|
}
|
|
@@ -111,14 +111,13 @@ $gantt-baseline-color: #f0ad4e !default;
|
|
|
111
111
|
$gantt-child-progress-margin-left: 0.5px !default;
|
|
112
112
|
$gantt-timeline-single-header-outer-div: 45px !default;
|
|
113
113
|
$gantt-chart-timeline-single-header-outer-div: 47px !default;
|
|
114
|
-
$gantt-header-border-height:
|
|
114
|
+
$gantt-header-border-height: 64px !default;
|
|
115
115
|
$gantt-treegrid-header-border-height: 63px !default;
|
|
116
|
-
$gantt-header-border-bottom-width:
|
|
117
|
-
$gantt-timeline-top-header-cell-height:
|
|
116
|
+
$gantt-header-border-bottom-width: 0px !default;
|
|
117
|
+
$gantt-timeline-top-header-cell-height: 32px !default;
|
|
118
118
|
$gantt-header-border-radius: 4px !default;
|
|
119
119
|
$gantt-splitter-border-top-right-radius: 0px !default;
|
|
120
120
|
$gantt-splitter-border-top-left-radius: 0px !default;
|
|
121
|
-
$gantt-dialog-general-padding-bottom: 16px !default;
|
|
122
121
|
$gantt-filter-menu-value-div-padding: 24px !default;
|
|
123
122
|
$gantt-dialog-tab-hover-border-bottom: 0px !default;
|
|
124
123
|
$gantt-dialog-tab-hover-border-bottom-radius: 0px !default;
|
|
@@ -111,14 +111,13 @@ $gantt-baseline-color: #FF9800 !default;
|
|
|
111
111
|
$gantt-child-progress-margin-left: 0.5px !default;
|
|
112
112
|
$gantt-timeline-single-header-outer-div: 45px !default;
|
|
113
113
|
$gantt-chart-timeline-single-header-outer-div: 47px !default;
|
|
114
|
-
$gantt-header-border-height:
|
|
114
|
+
$gantt-header-border-height: 64px !default;
|
|
115
115
|
$gantt-treegrid-header-border-height: 63px !default;
|
|
116
|
-
$gantt-header-border-bottom-width:
|
|
117
|
-
$gantt-timeline-top-header-cell-height:
|
|
116
|
+
$gantt-header-border-bottom-width: 0px !default;
|
|
117
|
+
$gantt-timeline-top-header-cell-height: 32px !default;
|
|
118
118
|
$gantt-header-border-radius: 4px !default;
|
|
119
119
|
$gantt-splitter-border-top-right-radius: 0px !default;
|
|
120
120
|
$gantt-splitter-border-top-left-radius: 0px !default;
|
|
121
|
-
$gantt-dialog-general-padding-bottom: 16px !default;
|
|
122
121
|
$gantt-filter-menu-value-div-padding: 24px !default;
|
|
123
122
|
$gantt-dialog-tab-hover-border-bottom: 0px !default;
|
|
124
123
|
$gantt-dialog-tab-hover-border-bottom-radius: 0px !default;
|
|
@@ -111,14 +111,13 @@ $gantt-baseline-color: $orange !default;
|
|
|
111
111
|
$gantt-child-progress-margin-left: 0.5px !default;
|
|
112
112
|
$gantt-timeline-single-header-outer-div: 45px !default;
|
|
113
113
|
$gantt-chart-timeline-single-header-outer-div: 47px !default;
|
|
114
|
-
$gantt-header-border-height:
|
|
114
|
+
$gantt-header-border-height: 64px !default;
|
|
115
115
|
$gantt-treegrid-header-border-height: 63px !default;
|
|
116
|
-
$gantt-header-border-bottom-width:
|
|
117
|
-
$gantt-timeline-top-header-cell-height:
|
|
116
|
+
$gantt-header-border-bottom-width: 0px !default;
|
|
117
|
+
$gantt-timeline-top-header-cell-height: 32px !default;
|
|
118
118
|
$gantt-header-border-radius: 0px !default;
|
|
119
119
|
$gantt-splitter-border-top-right-radius: 0px !default;
|
|
120
120
|
$gantt-splitter-border-top-left-radius: 0px !default;
|
|
121
|
-
$gantt-dialog-general-padding-bottom: 12px !default;
|
|
122
121
|
$gantt-filter-menu-value-div-padding: 16px !default;
|
|
123
122
|
$gantt-dialog-tab-hover-border-bottom: 0px !default;
|
|
124
123
|
$gantt-dialog-tab-hover-border-bottom-radius: 0px !default;
|
|
@@ -138,11 +138,10 @@ $gantt-chart-timeline-single-header-outer-div: 46px !default;
|
|
|
138
138
|
$gantt-header-border-height: 64px !default;
|
|
139
139
|
$gantt-treegrid-header-border-height: 63px !default;
|
|
140
140
|
$gantt-header-border-bottom-width: 1px !default;
|
|
141
|
-
$gantt-timeline-top-header-cell-height:
|
|
141
|
+
$gantt-timeline-top-header-cell-height: 32px !default;
|
|
142
142
|
$gantt-header-border-radius: 0px !default;
|
|
143
143
|
$gantt-splitter-border-top-right-radius: 0px !default;
|
|
144
144
|
$gantt-splitter-border-top-left-radius: 0px !default;
|
|
145
|
-
$gantt-dialog-general-padding-bottom: 12px !default;
|
|
146
145
|
$gantt-filter-menu-value-div-padding: 16px !default;
|
|
147
146
|
$gantt-dialog-tab-hover-border-bottom: 0px !default;
|
|
148
147
|
$gantt-dialog-tab-hover-border-bottom-radius: 0px !default;
|
|
@@ -118,7 +118,6 @@ $gantt-header-border-bottom-width: 1px !default;
|
|
|
118
118
|
$gantt-header-border-radius: 0px !default;
|
|
119
119
|
$gantt-splitter-border-top-right-radius: 0px !default;
|
|
120
120
|
$gantt-splitter-border-top-left-radius: 0px !default;
|
|
121
|
-
$gantt-dialog-general-padding-bottom: 16px !default;
|
|
122
121
|
$gantt-filter-menu-value-div-padding: 24px !default;
|
|
123
122
|
$gantt-dialog-tab-hover-border-bottom: 0px !default;
|
|
124
123
|
$gantt-dialog-tab-hover-border-bottom-radius: 0px !default;
|
|
@@ -118,7 +118,6 @@ $gantt-header-border-bottom-width: 1px !default;
|
|
|
118
118
|
$gantt-header-border-radius: 0px !default;
|
|
119
119
|
$gantt-splitter-border-top-right-radius: 0px !default;
|
|
120
120
|
$gantt-splitter-border-top-left-radius: 0px !default;
|
|
121
|
-
$gantt-dialog-general-padding-bottom: 16px !default;
|
|
122
121
|
$gantt-filter-menu-value-div-padding: 24px !default;
|
|
123
122
|
$gantt-dialog-tab-hover-border-bottom: 0px !default;
|
|
124
123
|
$gantt-dialog-tab-hover-border-bottom-radius: 0px !default;
|
|
@@ -138,11 +138,10 @@ $gantt-chart-timeline-single-header-outer-div: 46px !default;
|
|
|
138
138
|
$gantt-header-border-height: 64px !default;
|
|
139
139
|
$gantt-treegrid-header-border-height: 63px !default;
|
|
140
140
|
$gantt-header-border-bottom-width: 1px !default;
|
|
141
|
-
$gantt-timeline-top-header-cell-height:
|
|
141
|
+
$gantt-timeline-top-header-cell-height: 32px !default;
|
|
142
142
|
$gantt-header-border-radius: 0px !default;
|
|
143
143
|
$gantt-splitter-border-top-right-radius: 0px !default;
|
|
144
144
|
$gantt-splitter-border-top-left-radius: 0px !default;
|
|
145
|
-
$gantt-dialog-general-padding-bottom: 12px !default;
|
|
146
145
|
$gantt-filter-menu-value-div-padding: 16px !default;
|
|
147
146
|
$gantt-dialog-tab-hover-border-bottom: 0px !default;
|
|
148
147
|
$gantt-dialog-tab-hover-border-bottom-radius: 0px !default;
|
|
@@ -118,7 +118,6 @@ $progress-handler-outline: #fff !default;
|
|
|
118
118
|
$gantt-header-border-radius: 0px !default;
|
|
119
119
|
$gantt-splitter-border-top-right-radius: 0px !default;
|
|
120
120
|
$gantt-splitter-border-top-left-radius: 0px !default;
|
|
121
|
-
$gantt-dialog-general-padding-bottom: 16px !default;
|
|
122
121
|
$gantt-filter-menu-value-div-padding: 24px !default;
|
|
123
122
|
$gantt-dialog-tab-hover-border-bottom: 0px !default;
|
|
124
123
|
$gantt-dialog-tab-hover-border-bottom-radius: 0px !default;
|
|
@@ -118,7 +118,6 @@ $gantt-timeline-top-header-cell-height: 32px !default;
|
|
|
118
118
|
$gantt-header-border-radius: 0px !default;
|
|
119
119
|
$gantt-splitter-border-top-right-radius: 0px !default;
|
|
120
120
|
$gantt-splitter-border-top-left-radius: 0px !default;
|
|
121
|
-
$gantt-dialog-general-padding-bottom: 16px !default;
|
|
122
121
|
$gantt-filter-menu-value-div-padding: 24px !default;
|
|
123
122
|
$gantt-dialog-tab-hover-border-bottom: 0px !default;
|
|
124
123
|
$gantt-dialog-tab-hover-border-bottom-radius: 0px !default;
|
|
@@ -226,6 +226,10 @@
|
|
|
226
226
|
white-space: nowrap;
|
|
227
227
|
}
|
|
228
228
|
|
|
229
|
+
.e-timeline-header-table-body > tr {
|
|
230
|
+
display: inline-flex;
|
|
231
|
+
}
|
|
232
|
+
|
|
229
233
|
.e-timeline-top-header-cell,
|
|
230
234
|
.e-timeline-single-header-cell {
|
|
231
235
|
border-spacing: 0;
|
|
@@ -797,7 +801,6 @@
|
|
|
797
801
|
.e-edit-form-row {
|
|
798
802
|
height: $gantt-dialog-general-height;
|
|
799
803
|
overflow-y: auto;
|
|
800
|
-
padding-bottom: $gantt-dialog-general-padding-bottom;
|
|
801
804
|
}
|
|
802
805
|
|
|
803
806
|
.e-edit-form-column:nth-child(odd) {
|
|
@@ -920,6 +923,10 @@
|
|
|
920
923
|
opacity: 1;
|
|
921
924
|
}
|
|
922
925
|
|
|
926
|
+
.e-gantt-tooltip {
|
|
927
|
+
visibility: hidden;
|
|
928
|
+
}
|
|
929
|
+
|
|
923
930
|
.e-gantt .e-cloneproperties.e-draganddrop .e-row .e-rowcell .e-treecolumn-container .e-icons.e-none::before {
|
|
924
931
|
content: '';
|
|
925
932
|
}
|
|
@@ -118,7 +118,6 @@ $gantt-timeline-top-header-cell-height: 32px !default;
|
|
|
118
118
|
$gantt-header-border-radius: 0px !default;
|
|
119
119
|
$gantt-splitter-border-top-right-radius: 0px !default;
|
|
120
120
|
$gantt-splitter-border-top-left-radius: 0px !default;
|
|
121
|
-
$gantt-dialog-general-padding-bottom: 16px !default;
|
|
122
121
|
$gantt-filter-menu-value-div-padding: 24px !default;
|
|
123
122
|
$gantt-dialog-tab-hover-border-bottom: 0px !default;
|
|
124
123
|
$gantt-dialog-tab-hover-border-bottom-radius: 0px !default;
|
|
@@ -118,7 +118,6 @@ $gantt-timeline-top-header-cell-height: 32px !default;
|
|
|
118
118
|
$gantt-header-border-radius: 0px !default;
|
|
119
119
|
$gantt-splitter-border-top-right-radius: 0px !default;
|
|
120
120
|
$gantt-splitter-border-top-left-radius: 0px !default;
|
|
121
|
-
$gantt-dialog-general-padding-bottom: 16px !default;
|
|
122
121
|
$gantt-filter-menu-value-div-padding: 24px !default;
|
|
123
122
|
$gantt-dialog-tab-hover-border-bottom: 0px !default;
|
|
124
123
|
$gantt-dialog-tab-hover-border-bottom-radius: 0px !default;
|
|
@@ -133,14 +133,13 @@ $gantt-active-color-opacity: 0.9 !default;
|
|
|
133
133
|
$gantt-child-progress-margin-left: 0.5px !default;
|
|
134
134
|
$gantt-timeline-single-header-outer-div: 45px !default;
|
|
135
135
|
$gantt-chart-timeline-single-header-outer-div: 46px !default;
|
|
136
|
-
$gantt-header-border-height:
|
|
136
|
+
$gantt-header-border-height: 49px !default;
|
|
137
137
|
$gantt-treegrid-header-border-height: 48px !default;
|
|
138
|
-
$gantt-header-border-bottom-width:
|
|
139
|
-
$gantt-timeline-top-header-cell-height:
|
|
138
|
+
$gantt-header-border-bottom-width: 0px !default;
|
|
139
|
+
$gantt-timeline-top-header-cell-height: 24.5px !default;
|
|
140
140
|
$gantt-header-border-radius: 0px !default;
|
|
141
141
|
$gantt-splitter-border-top-right-radius: 0px !default;
|
|
142
142
|
$gantt-splitter-border-top-left-radius: 0px !default;
|
|
143
|
-
$gantt-dialog-general-padding-bottom: 12px !default;
|
|
144
143
|
$gantt-filter-menu-value-div-padding: 18px !default;
|
|
145
144
|
$gantt-dialog-tab-hover-border-bottom: 0px !default;
|
|
146
145
|
$gantt-dialog-tab-hover-border-bottom-radius: 0px !default;
|
|
@@ -500,6 +500,11 @@
|
|
|
500
500
|
white-space: nowrap;
|
|
501
501
|
}
|
|
502
502
|
|
|
503
|
+
.e-gantt .e-gantt-chart .e-timeline-header-table-body > tr {
|
|
504
|
+
display: -ms-inline-flexbox;
|
|
505
|
+
display: inline-flex;
|
|
506
|
+
}
|
|
507
|
+
|
|
503
508
|
.e-gantt .e-gantt-chart .e-timeline-top-header-cell,
|
|
504
509
|
.e-gantt .e-gantt-chart .e-timeline-single-header-cell {
|
|
505
510
|
border-spacing: 0;
|
|
@@ -1069,7 +1074,6 @@
|
|
|
1069
1074
|
.e-gantt-dialog .e-edit-form-row {
|
|
1070
1075
|
height: 241px;
|
|
1071
1076
|
overflow-y: auto;
|
|
1072
|
-
padding-bottom: 16px;
|
|
1073
1077
|
}
|
|
1074
1078
|
|
|
1075
1079
|
.e-gantt-dialog .e-edit-form-column:nth-child(odd) {
|
|
@@ -1187,6 +1191,10 @@
|
|
|
1187
1191
|
opacity: 1;
|
|
1188
1192
|
}
|
|
1189
1193
|
|
|
1194
|
+
.e-gantt-tooltip {
|
|
1195
|
+
visibility: hidden;
|
|
1196
|
+
}
|
|
1197
|
+
|
|
1190
1198
|
.e-gantt .e-cloneproperties.e-draganddrop .e-row .e-rowcell .e-treecolumn-container .e-icons.e-none::before {
|
|
1191
1199
|
content: '';
|
|
1192
1200
|
}
|
|
@@ -1343,10 +1351,10 @@
|
|
|
1343
1351
|
.e-gantt .e-gantt-chart .e-timeline-header-container {
|
|
1344
1352
|
background: #1a1a1a;
|
|
1345
1353
|
border-bottom-color: #484848;
|
|
1346
|
-
border-bottom-width:
|
|
1354
|
+
border-bottom-width: 0px;
|
|
1347
1355
|
border-right-color: #484848;
|
|
1348
1356
|
color: #f0f0f0;
|
|
1349
|
-
height:
|
|
1357
|
+
height: 64px;
|
|
1350
1358
|
}
|
|
1351
1359
|
|
|
1352
1360
|
.e-gantt .e-gantt-chart .e-timeline-top-header-cell,
|
|
@@ -1365,7 +1373,7 @@
|
|
|
1365
1373
|
}
|
|
1366
1374
|
|
|
1367
1375
|
.e-gantt .e-gantt-chart .e-timeline-top-header-cell {
|
|
1368
|
-
height:
|
|
1376
|
+
height: 32px;
|
|
1369
1377
|
}
|
|
1370
1378
|
|
|
1371
1379
|
.e-gantt .e-gantt-chart .e-chart-root-container {
|
|
@@ -650,6 +650,11 @@
|
|
|
650
650
|
white-space: nowrap;
|
|
651
651
|
}
|
|
652
652
|
|
|
653
|
+
.e-gantt .e-gantt-chart .e-timeline-header-table-body > tr {
|
|
654
|
+
display: -ms-inline-flexbox;
|
|
655
|
+
display: inline-flex;
|
|
656
|
+
}
|
|
657
|
+
|
|
653
658
|
.e-gantt .e-gantt-chart .e-timeline-top-header-cell,
|
|
654
659
|
.e-gantt .e-gantt-chart .e-timeline-single-header-cell {
|
|
655
660
|
border-spacing: 0;
|
|
@@ -1219,7 +1224,6 @@
|
|
|
1219
1224
|
.e-gantt-dialog .e-edit-form-row {
|
|
1220
1225
|
height: 241px;
|
|
1221
1226
|
overflow-y: auto;
|
|
1222
|
-
padding-bottom: 16px;
|
|
1223
1227
|
}
|
|
1224
1228
|
|
|
1225
1229
|
.e-gantt-dialog .e-edit-form-column:nth-child(odd) {
|
|
@@ -1337,6 +1341,10 @@
|
|
|
1337
1341
|
opacity: 1;
|
|
1338
1342
|
}
|
|
1339
1343
|
|
|
1344
|
+
.e-gantt-tooltip {
|
|
1345
|
+
visibility: hidden;
|
|
1346
|
+
}
|
|
1347
|
+
|
|
1340
1348
|
.e-gantt .e-cloneproperties.e-draganddrop .e-row .e-rowcell .e-treecolumn-container .e-icons.e-none::before {
|
|
1341
1349
|
content: '';
|
|
1342
1350
|
}
|
|
@@ -1493,10 +1501,10 @@
|
|
|
1493
1501
|
.e-gantt .e-gantt-chart .e-timeline-header-container {
|
|
1494
1502
|
background: #fff;
|
|
1495
1503
|
border-bottom-color: #ddd;
|
|
1496
|
-
border-bottom-width:
|
|
1504
|
+
border-bottom-width: 0px;
|
|
1497
1505
|
border-right-color: #ddd;
|
|
1498
1506
|
color: #333;
|
|
1499
|
-
height:
|
|
1507
|
+
height: 64px;
|
|
1500
1508
|
}
|
|
1501
1509
|
|
|
1502
1510
|
.e-gantt .e-gantt-chart .e-timeline-top-header-cell,
|
|
@@ -1515,7 +1523,7 @@
|
|
|
1515
1523
|
}
|
|
1516
1524
|
|
|
1517
1525
|
.e-gantt .e-gantt-chart .e-timeline-top-header-cell {
|
|
1518
|
-
height:
|
|
1526
|
+
height: 32px;
|
|
1519
1527
|
}
|
|
1520
1528
|
|
|
1521
1529
|
.e-gantt .e-gantt-chart .e-chart-root-container {
|
|
@@ -867,6 +867,11 @@
|
|
|
867
867
|
white-space: nowrap;
|
|
868
868
|
}
|
|
869
869
|
|
|
870
|
+
.e-gantt .e-gantt-chart .e-timeline-header-table-body > tr {
|
|
871
|
+
display: -ms-inline-flexbox;
|
|
872
|
+
display: inline-flex;
|
|
873
|
+
}
|
|
874
|
+
|
|
870
875
|
.e-gantt .e-gantt-chart .e-timeline-top-header-cell,
|
|
871
876
|
.e-gantt .e-gantt-chart .e-timeline-single-header-cell {
|
|
872
877
|
border-spacing: 0;
|
|
@@ -1436,7 +1441,6 @@
|
|
|
1436
1441
|
.e-gantt-dialog .e-edit-form-row {
|
|
1437
1442
|
height: 241px;
|
|
1438
1443
|
overflow-y: auto;
|
|
1439
|
-
padding-bottom: 12px;
|
|
1440
1444
|
}
|
|
1441
1445
|
|
|
1442
1446
|
.e-gantt-dialog .e-edit-form-column:nth-child(odd) {
|
|
@@ -1554,6 +1558,10 @@
|
|
|
1554
1558
|
opacity: 1;
|
|
1555
1559
|
}
|
|
1556
1560
|
|
|
1561
|
+
.e-gantt-tooltip {
|
|
1562
|
+
visibility: hidden;
|
|
1563
|
+
}
|
|
1564
|
+
|
|
1557
1565
|
.e-gantt .e-cloneproperties.e-draganddrop .e-row .e-rowcell .e-treecolumn-container .e-icons.e-none::before {
|
|
1558
1566
|
content: '';
|
|
1559
1567
|
}
|
|
@@ -1710,10 +1718,10 @@
|
|
|
1710
1718
|
.e-gantt .e-gantt-chart .e-timeline-header-container {
|
|
1711
1719
|
background: #fff;
|
|
1712
1720
|
border-bottom-color: #dee2e6;
|
|
1713
|
-
border-bottom-width:
|
|
1721
|
+
border-bottom-width: 0px;
|
|
1714
1722
|
border-right-color: #dee2e6;
|
|
1715
1723
|
color: #212529;
|
|
1716
|
-
height:
|
|
1724
|
+
height: 64px;
|
|
1717
1725
|
}
|
|
1718
1726
|
|
|
1719
1727
|
.e-gantt .e-gantt-chart .e-timeline-top-header-cell,
|
|
@@ -1732,7 +1740,7 @@
|
|
|
1732
1740
|
}
|
|
1733
1741
|
|
|
1734
1742
|
.e-gantt .e-gantt-chart .e-timeline-top-header-cell {
|
|
1735
|
-
height:
|
|
1743
|
+
height: 32px;
|
|
1736
1744
|
}
|
|
1737
1745
|
|
|
1738
1746
|
.e-gantt .e-gantt-chart .e-chart-root-container {
|
|
@@ -534,6 +534,11 @@
|
|
|
534
534
|
white-space: nowrap;
|
|
535
535
|
}
|
|
536
536
|
|
|
537
|
+
.e-gantt .e-gantt-chart .e-timeline-header-table-body > tr {
|
|
538
|
+
display: -ms-inline-flexbox;
|
|
539
|
+
display: inline-flex;
|
|
540
|
+
}
|
|
541
|
+
|
|
537
542
|
.e-gantt .e-gantt-chart .e-timeline-top-header-cell,
|
|
538
543
|
.e-gantt .e-gantt-chart .e-timeline-single-header-cell {
|
|
539
544
|
border-spacing: 0;
|
|
@@ -1103,7 +1108,6 @@
|
|
|
1103
1108
|
.e-gantt-dialog .e-edit-form-row {
|
|
1104
1109
|
height: 241px;
|
|
1105
1110
|
overflow-y: auto;
|
|
1106
|
-
padding-bottom: 12px;
|
|
1107
1111
|
}
|
|
1108
1112
|
|
|
1109
1113
|
.e-gantt-dialog .e-edit-form-column:nth-child(odd) {
|
|
@@ -1221,6 +1225,10 @@
|
|
|
1221
1225
|
opacity: 1;
|
|
1222
1226
|
}
|
|
1223
1227
|
|
|
1228
|
+
.e-gantt-tooltip {
|
|
1229
|
+
visibility: hidden;
|
|
1230
|
+
}
|
|
1231
|
+
|
|
1224
1232
|
.e-gantt .e-cloneproperties.e-draganddrop .e-row .e-rowcell .e-treecolumn-container .e-icons.e-none::before {
|
|
1225
1233
|
content: '';
|
|
1226
1234
|
}
|
|
@@ -1399,7 +1407,7 @@
|
|
|
1399
1407
|
}
|
|
1400
1408
|
|
|
1401
1409
|
.e-gantt .e-gantt-chart .e-timeline-top-header-cell {
|
|
1402
|
-
height:
|
|
1410
|
+
height: 32px;
|
|
1403
1411
|
}
|
|
1404
1412
|
|
|
1405
1413
|
.e-gantt .e-gantt-chart .e-chart-root-container {
|
|
@@ -534,6 +534,11 @@
|
|
|
534
534
|
white-space: nowrap;
|
|
535
535
|
}
|
|
536
536
|
|
|
537
|
+
.e-gantt .e-gantt-chart .e-timeline-header-table-body > tr {
|
|
538
|
+
display: -ms-inline-flexbox;
|
|
539
|
+
display: inline-flex;
|
|
540
|
+
}
|
|
541
|
+
|
|
537
542
|
.e-gantt .e-gantt-chart .e-timeline-top-header-cell,
|
|
538
543
|
.e-gantt .e-gantt-chart .e-timeline-single-header-cell {
|
|
539
544
|
border-spacing: 0;
|
|
@@ -1103,7 +1108,6 @@
|
|
|
1103
1108
|
.e-gantt-dialog .e-edit-form-row {
|
|
1104
1109
|
height: 241px;
|
|
1105
1110
|
overflow-y: auto;
|
|
1106
|
-
padding-bottom: 12px;
|
|
1107
1111
|
}
|
|
1108
1112
|
|
|
1109
1113
|
.e-gantt-dialog .e-edit-form-column:nth-child(odd) {
|
|
@@ -1221,6 +1225,10 @@
|
|
|
1221
1225
|
opacity: 1;
|
|
1222
1226
|
}
|
|
1223
1227
|
|
|
1228
|
+
.e-gantt-tooltip {
|
|
1229
|
+
visibility: hidden;
|
|
1230
|
+
}
|
|
1231
|
+
|
|
1224
1232
|
.e-gantt .e-cloneproperties.e-draganddrop .e-row .e-rowcell .e-treecolumn-container .e-icons.e-none::before {
|
|
1225
1233
|
content: '';
|
|
1226
1234
|
}
|
|
@@ -1399,7 +1407,7 @@
|
|
|
1399
1407
|
}
|
|
1400
1408
|
|
|
1401
1409
|
.e-gantt .e-gantt-chart .e-timeline-top-header-cell {
|
|
1402
|
-
height:
|
|
1410
|
+
height: 32px;
|
|
1403
1411
|
}
|
|
1404
1412
|
|
|
1405
1413
|
.e-gantt .e-gantt-chart .e-chart-root-container {
|