@syncfusion/ej2-gantt 19.3.43 → 19.3.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-gantt.umd.min.js +2 -2
- package/dist/ej2-gantt.umd.min.js.map +1 -1
- package/dist/es6/ej2-gantt.es2015.js +61 -27
- package/dist/es6/ej2-gantt.es2015.js.map +1 -1
- package/dist/es6/ej2-gantt.es5.js +64 -29
- 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.js +1 -0
- package/src/gantt/actions/dialog-edit.js +6 -6
- package/src/gantt/actions/edit.js +7 -3
- package/src/gantt/base/date-processor.js +4 -1
- package/src/gantt/base/gantt.js +20 -0
- package/src/gantt/base/task-processor.js +11 -2
- package/src/gantt/base/utils.js +3 -3
- package/src/gantt/export/export-helper.js +12 -14
- package/styles/bootstrap-dark.css +99 -99
- package/styles/bootstrap.css +99 -99
- package/styles/bootstrap4.css +104 -99
- package/styles/bootstrap5-dark.css +104 -99
- package/styles/bootstrap5.css +104 -99
- package/styles/fabric-dark.css +99 -99
- package/styles/fabric.css +99 -99
- package/styles/gantt/_bootstrap-dark-definition.scss +0 -1
- package/styles/gantt/_bootstrap-definition.scss +0 -1
- package/styles/gantt/_bootstrap4-definition.scss +0 -1
- package/styles/gantt/_bootstrap5-definition.scss +0 -1
- package/styles/gantt/_fabric-dark-definition.scss +0 -1
- package/styles/gantt/_fabric-definition.scss +0 -1
- package/styles/gantt/_highcontrast-definition.scss +0 -1
- package/styles/gantt/_highcontrast-light-definition.scss +0 -1
- package/styles/gantt/_layout.scss +100 -95
- package/styles/gantt/_material-dark-definition.scss +0 -1
- package/styles/gantt/_material-definition.scss +0 -1
- package/styles/gantt/_tailwind-definition.scss +0 -1
- package/styles/gantt/_theme.scss +76 -81
- package/styles/gantt/bootstrap-dark.css +99 -99
- package/styles/gantt/bootstrap.css +99 -99
- package/styles/gantt/bootstrap4.css +104 -99
- package/styles/gantt/bootstrap5-dark.css +104 -99
- package/styles/gantt/bootstrap5.css +104 -99
- package/styles/gantt/fabric-dark.css +99 -99
- package/styles/gantt/fabric.css +99 -99
- package/styles/gantt/highcontrast-light.css +99 -99
- package/styles/gantt/highcontrast.css +99 -99
- package/styles/gantt/material-dark.css +99 -99
- package/styles/gantt/material.css +99 -99
- package/styles/gantt/tailwind-dark.css +99 -99
- package/styles/gantt/tailwind.css +99 -99
- package/styles/highcontrast-light.css +99 -99
- package/styles/highcontrast.css +99 -99
- package/styles/material-dark.css +99 -99
- package/styles/material.css +99 -99
- package/styles/tailwind-dark.css +99 -99
- package/styles/tailwind.css +99 -99
package/styles/highcontrast.css
CHANGED
|
@@ -452,23 +452,6 @@
|
|
|
452
452
|
border-color: transparent;
|
|
453
453
|
}
|
|
454
454
|
|
|
455
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header {
|
|
456
|
-
padding-left: 13px;
|
|
457
|
-
}
|
|
458
|
-
|
|
459
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-indicator {
|
|
460
|
-
display: block;
|
|
461
|
-
}
|
|
462
|
-
|
|
463
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
464
|
-
border-style: solid;
|
|
465
|
-
border-width: 0px;
|
|
466
|
-
}
|
|
467
|
-
|
|
468
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header:not(.e-vertical)::before {
|
|
469
|
-
border: 0;
|
|
470
|
-
}
|
|
471
|
-
|
|
472
455
|
.e-gantt .e-gantt-tree-grid-pane .e-grid {
|
|
473
456
|
border-width: 0;
|
|
474
457
|
}
|
|
@@ -807,6 +790,10 @@
|
|
|
807
790
|
user-select: none;
|
|
808
791
|
}
|
|
809
792
|
|
|
793
|
+
.e-gantt .e-gantt-chart .e-chart-rows-container {
|
|
794
|
+
line-height: initial;
|
|
795
|
+
}
|
|
796
|
+
|
|
810
797
|
.e-gantt .e-gantt-chart .e-taskbar-left-resizer,
|
|
811
798
|
.e-gantt .e-gantt-chart .e-taskbar-right-resizer {
|
|
812
799
|
display: inline-block;
|
|
@@ -1099,101 +1086,118 @@
|
|
|
1099
1086
|
outline-offset: 2px;
|
|
1100
1087
|
}
|
|
1101
1088
|
|
|
1102
|
-
.e-gantt .e-
|
|
1089
|
+
.e-gantt-dialog .e-tab .e-tab-header {
|
|
1090
|
+
padding-left: 13px;
|
|
1091
|
+
}
|
|
1092
|
+
|
|
1093
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-indicator {
|
|
1094
|
+
display: block;
|
|
1095
|
+
}
|
|
1096
|
+
|
|
1097
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
1098
|
+
border-style: solid;
|
|
1099
|
+
border-width: 0px;
|
|
1100
|
+
}
|
|
1101
|
+
|
|
1102
|
+
.e-gantt-dialog .e-tab .e-tab-header:not(.e-vertical)::before {
|
|
1103
1103
|
border: 0;
|
|
1104
1104
|
}
|
|
1105
1105
|
|
|
1106
|
-
.e-gantt
|
|
1106
|
+
.e-gantt-dialog {
|
|
1107
|
+
border: 0;
|
|
1108
|
+
}
|
|
1109
|
+
|
|
1110
|
+
.e-gantt-dialog .e-gridform .e-table {
|
|
1107
1111
|
border-spacing: 0;
|
|
1108
1112
|
}
|
|
1109
1113
|
|
|
1110
|
-
.e-gantt
|
|
1114
|
+
.e-gantt-dialog .e-item {
|
|
1111
1115
|
height: 241px;
|
|
1112
1116
|
}
|
|
1113
1117
|
|
|
1114
|
-
.e-gantt
|
|
1118
|
+
.e-gantt-dialog .e-dependent-div {
|
|
1115
1119
|
border-bottom-width: 1px;
|
|
1116
1120
|
}
|
|
1117
1121
|
|
|
1118
|
-
.e-gantt
|
|
1122
|
+
.e-gantt-dialog .e-icon-dlg-close {
|
|
1119
1123
|
opacity: initial;
|
|
1120
1124
|
}
|
|
1121
1125
|
|
|
1122
|
-
.e-gantt
|
|
1126
|
+
.e-gantt-dialog .e-toolbar {
|
|
1123
1127
|
border-top-width: 0;
|
|
1124
1128
|
}
|
|
1125
1129
|
|
|
1126
|
-
.e-gantt
|
|
1130
|
+
.e-gantt-dialog .e-resource-div {
|
|
1127
1131
|
border-bottom-width: 1px;
|
|
1128
1132
|
}
|
|
1129
1133
|
|
|
1130
|
-
.e-gantt
|
|
1134
|
+
.e-gantt-dialog .e-resource-div .e-gridheader {
|
|
1131
1135
|
border-top-width: 0;
|
|
1132
1136
|
}
|
|
1133
1137
|
|
|
1134
|
-
.e-gantt
|
|
1138
|
+
.e-gantt-dialog .e-edit-form-row {
|
|
1135
1139
|
height: 241px;
|
|
1136
1140
|
overflow-y: auto;
|
|
1137
1141
|
padding-bottom: 16px;
|
|
1138
1142
|
}
|
|
1139
1143
|
|
|
1140
|
-
.e-gantt
|
|
1144
|
+
.e-gantt-dialog .e-edit-form-column:nth-child(odd) {
|
|
1141
1145
|
float: left;
|
|
1142
1146
|
padding: 16px 18px 0 18px;
|
|
1143
1147
|
width: 50%;
|
|
1144
1148
|
}
|
|
1145
1149
|
|
|
1146
|
-
.e-gantt
|
|
1150
|
+
.e-gantt-dialog .e-edit-form-column:nth-child(even) {
|
|
1147
1151
|
float: left;
|
|
1148
1152
|
padding: 16px 16px 0 0;
|
|
1149
1153
|
width: 50%;
|
|
1150
1154
|
}
|
|
1151
1155
|
|
|
1152
|
-
.e-gantt
|
|
1156
|
+
.e-gantt-dialog .e-edit-form-row.e-scroll .e-edit-form-column:nth-child(even) {
|
|
1153
1157
|
padding: 16px 16px 0 0;
|
|
1154
1158
|
}
|
|
1155
1159
|
|
|
1156
|
-
.e-gantt
|
|
1160
|
+
.e-gantt-dialog .e-edit-form-column {
|
|
1157
1161
|
height: 75px;
|
|
1158
1162
|
}
|
|
1159
1163
|
|
|
1160
|
-
.e-gantt
|
|
1164
|
+
.e-gantt-dialog .e-dependent-div .e-content {
|
|
1161
1165
|
height: 161px;
|
|
1162
1166
|
}
|
|
1163
1167
|
|
|
1164
|
-
.e-gantt
|
|
1168
|
+
.e-gantt-dialog .e-resource-div .e-content {
|
|
1165
1169
|
height: 202px;
|
|
1166
1170
|
}
|
|
1167
1171
|
|
|
1168
|
-
.e-gantt
|
|
1172
|
+
.e-gantt-dialog .e-richtexteditor {
|
|
1169
1173
|
border-bottom-width: 1px;
|
|
1170
1174
|
height: 241px !important;
|
|
1171
1175
|
overflow: hidden;
|
|
1172
1176
|
}
|
|
1173
1177
|
|
|
1174
|
-
.e-gantt
|
|
1178
|
+
.e-gantt-dialog .e-richtexteditor.e-rte-tb-expand {
|
|
1175
1179
|
border-top: 0;
|
|
1176
1180
|
}
|
|
1177
1181
|
|
|
1178
|
-
.e-gantt
|
|
1182
|
+
.e-gantt-dialog .e-richtexteditor .e-rte-content {
|
|
1179
1183
|
border-bottom-width: 0px;
|
|
1180
1184
|
height: 200px;
|
|
1181
1185
|
}
|
|
1182
1186
|
|
|
1183
|
-
.e-gantt
|
|
1187
|
+
.e-gantt-dialog > .e-dlg-content {
|
|
1184
1188
|
padding: 0 !important;
|
|
1185
1189
|
}
|
|
1186
1190
|
|
|
1187
|
-
.e-gantt
|
|
1191
|
+
.e-gantt-dialog .e-dlg-header-content {
|
|
1188
1192
|
border-bottom: 0 !important;
|
|
1189
1193
|
}
|
|
1190
1194
|
|
|
1191
|
-
.e-gantt
|
|
1195
|
+
.e-gantt-dialog .e-dlg-header-content {
|
|
1192
1196
|
border-radius: 0px;
|
|
1193
1197
|
padding-bottom: 4px;
|
|
1194
1198
|
}
|
|
1195
1199
|
|
|
1196
|
-
.e-gantt
|
|
1200
|
+
.e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
1197
1201
|
border-radius: 50%;
|
|
1198
1202
|
}
|
|
1199
1203
|
|
|
@@ -1349,10 +1353,6 @@
|
|
|
1349
1353
|
border-radius: 0px;
|
|
1350
1354
|
}
|
|
1351
1355
|
|
|
1352
|
-
.e-gantt .e-gantt-splitter-height {
|
|
1353
|
-
height: calc(100% - 40px) !important;
|
|
1354
|
-
}
|
|
1355
|
-
|
|
1356
1356
|
.e-gantt .e-cloneproperties.e-draganddrop {
|
|
1357
1357
|
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
|
|
1358
1358
|
opacity: .95;
|
|
@@ -1384,62 +1384,6 @@
|
|
|
1384
1384
|
box-shadow: 0 0 0 1px #ffff inset !important;
|
|
1385
1385
|
}
|
|
1386
1386
|
|
|
1387
|
-
.e-gantt .e-gantt-dialog .e-dlg-header {
|
|
1388
|
-
color: #000;
|
|
1389
|
-
}
|
|
1390
|
-
|
|
1391
|
-
.e-gantt .e-gantt-dialog .e-dlg-header-content {
|
|
1392
|
-
background: #ffd939;
|
|
1393
|
-
}
|
|
1394
|
-
|
|
1395
|
-
.e-gantt .e-gantt-dialog .e-icon-dlg-close {
|
|
1396
|
-
color: #000;
|
|
1397
|
-
}
|
|
1398
|
-
|
|
1399
|
-
.e-gantt .e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover {
|
|
1400
|
-
background-color: rgba(104, 87, 8, 0.4);
|
|
1401
|
-
}
|
|
1402
|
-
|
|
1403
|
-
.e-gantt .e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover .e-icon-dlg-close {
|
|
1404
|
-
color: #000;
|
|
1405
|
-
}
|
|
1406
|
-
|
|
1407
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header {
|
|
1408
|
-
background: #ffd939;
|
|
1409
|
-
}
|
|
1410
|
-
|
|
1411
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-indicator {
|
|
1412
|
-
background: #000;
|
|
1413
|
-
}
|
|
1414
|
-
|
|
1415
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
1416
|
-
background-color: transparent;
|
|
1417
|
-
}
|
|
1418
|
-
|
|
1419
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active .e-tab-wrap .e-tab-text {
|
|
1420
|
-
color: #000;
|
|
1421
|
-
}
|
|
1422
|
-
|
|
1423
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
1424
|
-
border-color: transparent;
|
|
1425
|
-
}
|
|
1426
|
-
|
|
1427
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap .e-tab-text {
|
|
1428
|
-
color: rgba(0, 0, 0, 0.7);
|
|
1429
|
-
}
|
|
1430
|
-
|
|
1431
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item:not(.e-active) .e-tab-wrap:hover {
|
|
1432
|
-
background: transparent;
|
|
1433
|
-
border-bottom: 0px;
|
|
1434
|
-
border-bottom-left-radius: 0px;
|
|
1435
|
-
border-bottom-right-radius: 0px;
|
|
1436
|
-
border-color: transparent;
|
|
1437
|
-
}
|
|
1438
|
-
|
|
1439
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item:not(.e-active) .e-tab-wrap:hover .e-tab-text {
|
|
1440
|
-
color: black;
|
|
1441
|
-
}
|
|
1442
|
-
|
|
1443
1387
|
.e-gantt .e-temp-content {
|
|
1444
1388
|
border-color: #969696;
|
|
1445
1389
|
}
|
|
@@ -1944,6 +1888,62 @@
|
|
|
1944
1888
|
color: #fff !important;
|
|
1945
1889
|
}
|
|
1946
1890
|
|
|
1891
|
+
.e-gantt-dialog .e-dlg-header {
|
|
1892
|
+
color: #000;
|
|
1893
|
+
}
|
|
1894
|
+
|
|
1895
|
+
.e-gantt-dialog .e-dlg-header-content {
|
|
1896
|
+
background: #ffd939;
|
|
1897
|
+
}
|
|
1898
|
+
|
|
1899
|
+
.e-gantt-dialog .e-icon-dlg-close {
|
|
1900
|
+
color: #000;
|
|
1901
|
+
}
|
|
1902
|
+
|
|
1903
|
+
.e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover {
|
|
1904
|
+
background-color: rgba(104, 87, 8, 0.4);
|
|
1905
|
+
}
|
|
1906
|
+
|
|
1907
|
+
.e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover .e-icon-dlg-close {
|
|
1908
|
+
color: #000;
|
|
1909
|
+
}
|
|
1910
|
+
|
|
1911
|
+
.e-gantt-dialog .e-tab .e-tab-header {
|
|
1912
|
+
background: #ffd939;
|
|
1913
|
+
}
|
|
1914
|
+
|
|
1915
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-indicator {
|
|
1916
|
+
background: #000;
|
|
1917
|
+
}
|
|
1918
|
+
|
|
1919
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
1920
|
+
background-color: transparent;
|
|
1921
|
+
}
|
|
1922
|
+
|
|
1923
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active .e-tab-wrap .e-tab-text {
|
|
1924
|
+
color: #000;
|
|
1925
|
+
}
|
|
1926
|
+
|
|
1927
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
1928
|
+
border-color: transparent;
|
|
1929
|
+
}
|
|
1930
|
+
|
|
1931
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap .e-tab-text {
|
|
1932
|
+
color: rgba(0, 0, 0, 0.7);
|
|
1933
|
+
}
|
|
1934
|
+
|
|
1935
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item:not(.e-active) .e-tab-wrap:hover {
|
|
1936
|
+
background: transparent;
|
|
1937
|
+
border-bottom: 0px;
|
|
1938
|
+
border-bottom-left-radius: 0px;
|
|
1939
|
+
border-bottom-right-radius: 0px;
|
|
1940
|
+
border-color: transparent;
|
|
1941
|
+
}
|
|
1942
|
+
|
|
1943
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item:not(.e-active) .e-tab-wrap:hover .e-tab-text {
|
|
1944
|
+
color: black;
|
|
1945
|
+
}
|
|
1946
|
+
|
|
1947
1947
|
.e-gantt.e-device .e-left-resize-gripper,
|
|
1948
1948
|
.e-gantt.e-device .e-right-resize-gripper {
|
|
1949
1949
|
border-color: #9e9e9e;
|
package/styles/material-dark.css
CHANGED
|
@@ -374,23 +374,6 @@
|
|
|
374
374
|
border-color: transparent;
|
|
375
375
|
}
|
|
376
376
|
|
|
377
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header {
|
|
378
|
-
padding-left: 0px;
|
|
379
|
-
}
|
|
380
|
-
|
|
381
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-indicator {
|
|
382
|
-
display: block;
|
|
383
|
-
}
|
|
384
|
-
|
|
385
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
386
|
-
border-style: solid;
|
|
387
|
-
border-width: 0px;
|
|
388
|
-
}
|
|
389
|
-
|
|
390
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header:not(.e-vertical)::before {
|
|
391
|
-
border: 0;
|
|
392
|
-
}
|
|
393
|
-
|
|
394
377
|
.e-gantt .e-gantt-tree-grid-pane .e-grid {
|
|
395
378
|
border-width: 0;
|
|
396
379
|
}
|
|
@@ -729,6 +712,10 @@
|
|
|
729
712
|
user-select: none;
|
|
730
713
|
}
|
|
731
714
|
|
|
715
|
+
.e-gantt .e-gantt-chart .e-chart-rows-container {
|
|
716
|
+
line-height: initial;
|
|
717
|
+
}
|
|
718
|
+
|
|
732
719
|
.e-gantt .e-gantt-chart .e-taskbar-left-resizer,
|
|
733
720
|
.e-gantt .e-gantt-chart .e-taskbar-right-resizer {
|
|
734
721
|
display: inline-block;
|
|
@@ -1021,101 +1008,118 @@
|
|
|
1021
1008
|
outline-offset: 2px;
|
|
1022
1009
|
}
|
|
1023
1010
|
|
|
1024
|
-
.e-gantt .e-
|
|
1011
|
+
.e-gantt-dialog .e-tab .e-tab-header {
|
|
1012
|
+
padding-left: 0px;
|
|
1013
|
+
}
|
|
1014
|
+
|
|
1015
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-indicator {
|
|
1016
|
+
display: block;
|
|
1017
|
+
}
|
|
1018
|
+
|
|
1019
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
1020
|
+
border-style: solid;
|
|
1021
|
+
border-width: 0px;
|
|
1022
|
+
}
|
|
1023
|
+
|
|
1024
|
+
.e-gantt-dialog .e-tab .e-tab-header:not(.e-vertical)::before {
|
|
1025
1025
|
border: 0;
|
|
1026
1026
|
}
|
|
1027
1027
|
|
|
1028
|
-
.e-gantt
|
|
1028
|
+
.e-gantt-dialog {
|
|
1029
|
+
border: 0;
|
|
1030
|
+
}
|
|
1031
|
+
|
|
1032
|
+
.e-gantt-dialog .e-gridform .e-table {
|
|
1029
1033
|
border-spacing: 0;
|
|
1030
1034
|
}
|
|
1031
1035
|
|
|
1032
|
-
.e-gantt
|
|
1036
|
+
.e-gantt-dialog .e-item {
|
|
1033
1037
|
height: 241px;
|
|
1034
1038
|
}
|
|
1035
1039
|
|
|
1036
|
-
.e-gantt
|
|
1040
|
+
.e-gantt-dialog .e-dependent-div {
|
|
1037
1041
|
border-bottom-width: 1px;
|
|
1038
1042
|
}
|
|
1039
1043
|
|
|
1040
|
-
.e-gantt
|
|
1044
|
+
.e-gantt-dialog .e-icon-dlg-close {
|
|
1041
1045
|
opacity: initial;
|
|
1042
1046
|
}
|
|
1043
1047
|
|
|
1044
|
-
.e-gantt
|
|
1048
|
+
.e-gantt-dialog .e-toolbar {
|
|
1045
1049
|
border-top-width: 0;
|
|
1046
1050
|
}
|
|
1047
1051
|
|
|
1048
|
-
.e-gantt
|
|
1052
|
+
.e-gantt-dialog .e-resource-div {
|
|
1049
1053
|
border-bottom-width: 1px;
|
|
1050
1054
|
}
|
|
1051
1055
|
|
|
1052
|
-
.e-gantt
|
|
1056
|
+
.e-gantt-dialog .e-resource-div .e-gridheader {
|
|
1053
1057
|
border-top-width: 0;
|
|
1054
1058
|
}
|
|
1055
1059
|
|
|
1056
|
-
.e-gantt
|
|
1060
|
+
.e-gantt-dialog .e-edit-form-row {
|
|
1057
1061
|
height: 241px;
|
|
1058
1062
|
overflow-y: auto;
|
|
1059
1063
|
padding-bottom: 16px;
|
|
1060
1064
|
}
|
|
1061
1065
|
|
|
1062
|
-
.e-gantt
|
|
1066
|
+
.e-gantt-dialog .e-edit-form-column:nth-child(odd) {
|
|
1063
1067
|
float: left;
|
|
1064
1068
|
padding: 16px 18px 0 18px;
|
|
1065
1069
|
width: 50%;
|
|
1066
1070
|
}
|
|
1067
1071
|
|
|
1068
|
-
.e-gantt
|
|
1072
|
+
.e-gantt-dialog .e-edit-form-column:nth-child(even) {
|
|
1069
1073
|
float: left;
|
|
1070
1074
|
padding: 16px 16px 0 0;
|
|
1071
1075
|
width: 50%;
|
|
1072
1076
|
}
|
|
1073
1077
|
|
|
1074
|
-
.e-gantt
|
|
1078
|
+
.e-gantt-dialog .e-edit-form-row.e-scroll .e-edit-form-column:nth-child(even) {
|
|
1075
1079
|
padding: 16px 16px 0 0;
|
|
1076
1080
|
}
|
|
1077
1081
|
|
|
1078
|
-
.e-gantt
|
|
1082
|
+
.e-gantt-dialog .e-edit-form-column {
|
|
1079
1083
|
height: 75px;
|
|
1080
1084
|
}
|
|
1081
1085
|
|
|
1082
|
-
.e-gantt
|
|
1086
|
+
.e-gantt-dialog .e-dependent-div .e-content {
|
|
1083
1087
|
height: 153px;
|
|
1084
1088
|
}
|
|
1085
1089
|
|
|
1086
|
-
.e-gantt
|
|
1090
|
+
.e-gantt-dialog .e-resource-div .e-content {
|
|
1087
1091
|
height: 196px;
|
|
1088
1092
|
}
|
|
1089
1093
|
|
|
1090
|
-
.e-gantt
|
|
1094
|
+
.e-gantt-dialog .e-richtexteditor {
|
|
1091
1095
|
border-bottom-width: 1px;
|
|
1092
1096
|
height: 241px !important;
|
|
1093
1097
|
overflow: hidden;
|
|
1094
1098
|
}
|
|
1095
1099
|
|
|
1096
|
-
.e-gantt
|
|
1100
|
+
.e-gantt-dialog .e-richtexteditor.e-rte-tb-expand {
|
|
1097
1101
|
border-top: 0;
|
|
1098
1102
|
}
|
|
1099
1103
|
|
|
1100
|
-
.e-gantt
|
|
1104
|
+
.e-gantt-dialog .e-richtexteditor .e-rte-content {
|
|
1101
1105
|
border-bottom-width: 0px;
|
|
1102
1106
|
height: 198px;
|
|
1103
1107
|
}
|
|
1104
1108
|
|
|
1105
|
-
.e-gantt
|
|
1109
|
+
.e-gantt-dialog > .e-dlg-content {
|
|
1106
1110
|
padding: 0 !important;
|
|
1107
1111
|
}
|
|
1108
1112
|
|
|
1109
|
-
.e-gantt
|
|
1113
|
+
.e-gantt-dialog .e-dlg-header-content {
|
|
1110
1114
|
border-bottom: 0 !important;
|
|
1111
1115
|
}
|
|
1112
1116
|
|
|
1113
|
-
.e-gantt
|
|
1117
|
+
.e-gantt-dialog .e-dlg-header-content {
|
|
1114
1118
|
border-radius: 0px;
|
|
1115
1119
|
padding-bottom: 4px;
|
|
1116
1120
|
}
|
|
1117
1121
|
|
|
1118
|
-
.e-gantt
|
|
1122
|
+
.e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
1119
1123
|
border-radius: 50%;
|
|
1120
1124
|
}
|
|
1121
1125
|
|
|
@@ -1271,10 +1275,6 @@
|
|
|
1271
1275
|
border-radius: 0px;
|
|
1272
1276
|
}
|
|
1273
1277
|
|
|
1274
|
-
.e-gantt .e-gantt-splitter-height {
|
|
1275
|
-
height: calc(100% - 42px) !important;
|
|
1276
|
-
}
|
|
1277
|
-
|
|
1278
1278
|
.e-gantt .e-cloneproperties.e-draganddrop {
|
|
1279
1279
|
box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.26);
|
|
1280
1280
|
opacity: .95;
|
|
@@ -1306,62 +1306,6 @@
|
|
|
1306
1306
|
box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5) inset !important;
|
|
1307
1307
|
}
|
|
1308
1308
|
|
|
1309
|
-
.e-gantt .e-gantt-dialog .e-dlg-header {
|
|
1310
|
-
color: #fff;
|
|
1311
|
-
}
|
|
1312
|
-
|
|
1313
|
-
.e-gantt .e-gantt-dialog .e-dlg-header-content {
|
|
1314
|
-
background: #3f51b5;
|
|
1315
|
-
}
|
|
1316
|
-
|
|
1317
|
-
.e-gantt .e-gantt-dialog .e-icon-dlg-close {
|
|
1318
|
-
color: #fff;
|
|
1319
|
-
}
|
|
1320
|
-
|
|
1321
|
-
.e-gantt .e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover {
|
|
1322
|
-
background-color: rgba(255, 255, 255, 0.15);
|
|
1323
|
-
}
|
|
1324
|
-
|
|
1325
|
-
.e-gantt .e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover .e-icon-dlg-close {
|
|
1326
|
-
color: #fff;
|
|
1327
|
-
}
|
|
1328
|
-
|
|
1329
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header {
|
|
1330
|
-
background: #3f51b5;
|
|
1331
|
-
}
|
|
1332
|
-
|
|
1333
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-indicator {
|
|
1334
|
-
background: #00b0ff;
|
|
1335
|
-
}
|
|
1336
|
-
|
|
1337
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
1338
|
-
background-color: transparent;
|
|
1339
|
-
}
|
|
1340
|
-
|
|
1341
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active .e-tab-wrap .e-tab-text {
|
|
1342
|
-
color: #fff;
|
|
1343
|
-
}
|
|
1344
|
-
|
|
1345
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
1346
|
-
border-color: transparent;
|
|
1347
|
-
}
|
|
1348
|
-
|
|
1349
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap .e-tab-text {
|
|
1350
|
-
color: rgba(255, 255, 255, 0.64);
|
|
1351
|
-
}
|
|
1352
|
-
|
|
1353
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item:not(.e-active) .e-tab-wrap:hover {
|
|
1354
|
-
background: transparent;
|
|
1355
|
-
border-bottom: 0px;
|
|
1356
|
-
border-bottom-left-radius: 0px;
|
|
1357
|
-
border-bottom-right-radius: 0px;
|
|
1358
|
-
border-color: transparent;
|
|
1359
|
-
}
|
|
1360
|
-
|
|
1361
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item:not(.e-active) .e-tab-wrap:hover .e-tab-text {
|
|
1362
|
-
color: rgba(0, 0, 0, 0.87);
|
|
1363
|
-
}
|
|
1364
|
-
|
|
1365
1309
|
.e-gantt .e-temp-content {
|
|
1366
1310
|
border-color: #616161;
|
|
1367
1311
|
}
|
|
@@ -1866,6 +1810,62 @@
|
|
|
1866
1810
|
color: rgba(255, 255, 255, 0.7) !important;
|
|
1867
1811
|
}
|
|
1868
1812
|
|
|
1813
|
+
.e-gantt-dialog .e-dlg-header {
|
|
1814
|
+
color: #fff;
|
|
1815
|
+
}
|
|
1816
|
+
|
|
1817
|
+
.e-gantt-dialog .e-dlg-header-content {
|
|
1818
|
+
background: #3f51b5;
|
|
1819
|
+
}
|
|
1820
|
+
|
|
1821
|
+
.e-gantt-dialog .e-icon-dlg-close {
|
|
1822
|
+
color: #fff;
|
|
1823
|
+
}
|
|
1824
|
+
|
|
1825
|
+
.e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover {
|
|
1826
|
+
background-color: rgba(255, 255, 255, 0.15);
|
|
1827
|
+
}
|
|
1828
|
+
|
|
1829
|
+
.e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover .e-icon-dlg-close {
|
|
1830
|
+
color: #fff;
|
|
1831
|
+
}
|
|
1832
|
+
|
|
1833
|
+
.e-gantt-dialog .e-tab .e-tab-header {
|
|
1834
|
+
background: #3f51b5;
|
|
1835
|
+
}
|
|
1836
|
+
|
|
1837
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-indicator {
|
|
1838
|
+
background: #00b0ff;
|
|
1839
|
+
}
|
|
1840
|
+
|
|
1841
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
1842
|
+
background-color: transparent;
|
|
1843
|
+
}
|
|
1844
|
+
|
|
1845
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active .e-tab-wrap .e-tab-text {
|
|
1846
|
+
color: #fff;
|
|
1847
|
+
}
|
|
1848
|
+
|
|
1849
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
1850
|
+
border-color: transparent;
|
|
1851
|
+
}
|
|
1852
|
+
|
|
1853
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap .e-tab-text {
|
|
1854
|
+
color: rgba(255, 255, 255, 0.64);
|
|
1855
|
+
}
|
|
1856
|
+
|
|
1857
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item:not(.e-active) .e-tab-wrap:hover {
|
|
1858
|
+
background: transparent;
|
|
1859
|
+
border-bottom: 0px;
|
|
1860
|
+
border-bottom-left-radius: 0px;
|
|
1861
|
+
border-bottom-right-radius: 0px;
|
|
1862
|
+
border-color: transparent;
|
|
1863
|
+
}
|
|
1864
|
+
|
|
1865
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item:not(.e-active) .e-tab-wrap:hover .e-tab-text {
|
|
1866
|
+
color: rgba(0, 0, 0, 0.87);
|
|
1867
|
+
}
|
|
1868
|
+
|
|
1869
1869
|
.e-gantt.e-device .e-left-resize-gripper,
|
|
1870
1870
|
.e-gantt.e-device .e-right-resize-gripper {
|
|
1871
1871
|
border-color: #9e9e9e;
|