@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
|
@@ -437,23 +437,6 @@
|
|
|
437
437
|
border-color: transparent;
|
|
438
438
|
}
|
|
439
439
|
|
|
440
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header {
|
|
441
|
-
padding-left: 19px;
|
|
442
|
-
}
|
|
443
|
-
|
|
444
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-indicator {
|
|
445
|
-
display: block;
|
|
446
|
-
}
|
|
447
|
-
|
|
448
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
449
|
-
border-style: solid;
|
|
450
|
-
border-width: 0px;
|
|
451
|
-
}
|
|
452
|
-
|
|
453
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header:not(.e-vertical)::before {
|
|
454
|
-
border: 0;
|
|
455
|
-
}
|
|
456
|
-
|
|
457
440
|
.e-gantt .e-gantt-tree-grid-pane .e-grid {
|
|
458
441
|
border-width: 0;
|
|
459
442
|
}
|
|
@@ -796,6 +779,10 @@
|
|
|
796
779
|
user-select: none;
|
|
797
780
|
}
|
|
798
781
|
|
|
782
|
+
.e-gantt .e-gantt-chart .e-chart-rows-container {
|
|
783
|
+
line-height: initial;
|
|
784
|
+
}
|
|
785
|
+
|
|
799
786
|
.e-gantt .e-gantt-chart .e-taskbar-left-resizer,
|
|
800
787
|
.e-gantt .e-gantt-chart .e-taskbar-right-resizer {
|
|
801
788
|
display: inline-block;
|
|
@@ -1088,102 +1075,119 @@
|
|
|
1088
1075
|
outline-offset: 2px;
|
|
1089
1076
|
}
|
|
1090
1077
|
|
|
1091
|
-
.e-gantt .e-
|
|
1078
|
+
.e-gantt-dialog .e-tab .e-tab-header {
|
|
1079
|
+
padding-left: 19px;
|
|
1080
|
+
}
|
|
1081
|
+
|
|
1082
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-indicator {
|
|
1083
|
+
display: block;
|
|
1084
|
+
}
|
|
1085
|
+
|
|
1086
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
1087
|
+
border-style: solid;
|
|
1088
|
+
border-width: 0px;
|
|
1089
|
+
}
|
|
1090
|
+
|
|
1091
|
+
.e-gantt-dialog .e-tab .e-tab-header:not(.e-vertical)::before {
|
|
1092
1092
|
border: 0;
|
|
1093
1093
|
}
|
|
1094
1094
|
|
|
1095
|
-
.e-gantt
|
|
1095
|
+
.e-gantt-dialog {
|
|
1096
|
+
border: 0;
|
|
1097
|
+
}
|
|
1098
|
+
|
|
1099
|
+
.e-gantt-dialog .e-gridform .e-table {
|
|
1096
1100
|
border-spacing: 0;
|
|
1097
1101
|
}
|
|
1098
1102
|
|
|
1099
|
-
.e-gantt
|
|
1103
|
+
.e-gantt-dialog .e-item {
|
|
1100
1104
|
height: 240px;
|
|
1101
1105
|
}
|
|
1102
1106
|
|
|
1103
|
-
.e-gantt
|
|
1107
|
+
.e-gantt-dialog .e-dependent-div {
|
|
1104
1108
|
border-bottom-width: 1px;
|
|
1105
1109
|
}
|
|
1106
1110
|
|
|
1107
|
-
.e-gantt
|
|
1111
|
+
.e-gantt-dialog .e-icon-dlg-close {
|
|
1108
1112
|
opacity: initial;
|
|
1109
1113
|
}
|
|
1110
1114
|
|
|
1111
|
-
.e-gantt
|
|
1115
|
+
.e-gantt-dialog .e-toolbar {
|
|
1112
1116
|
border-top-width: 0;
|
|
1113
1117
|
}
|
|
1114
1118
|
|
|
1115
|
-
.e-gantt
|
|
1119
|
+
.e-gantt-dialog .e-resource-div {
|
|
1116
1120
|
border-bottom-width: 1px;
|
|
1117
1121
|
}
|
|
1118
1122
|
|
|
1119
|
-
.e-gantt
|
|
1123
|
+
.e-gantt-dialog .e-resource-div .e-gridheader {
|
|
1120
1124
|
border-top-width: 0;
|
|
1121
1125
|
}
|
|
1122
1126
|
|
|
1123
|
-
.e-gantt
|
|
1127
|
+
.e-gantt-dialog .e-edit-form-row {
|
|
1124
1128
|
height: 240px;
|
|
1125
1129
|
overflow-y: auto;
|
|
1126
1130
|
padding-bottom: 12px;
|
|
1127
1131
|
}
|
|
1128
1132
|
|
|
1129
|
-
.e-gantt
|
|
1133
|
+
.e-gantt-dialog .e-edit-form-column:nth-child(odd) {
|
|
1130
1134
|
float: left;
|
|
1131
1135
|
padding: 12px 12px 0 19px;
|
|
1132
1136
|
width: 50%;
|
|
1133
1137
|
}
|
|
1134
1138
|
|
|
1135
|
-
.e-gantt
|
|
1139
|
+
.e-gantt-dialog .e-edit-form-column:nth-child(even) {
|
|
1136
1140
|
float: left;
|
|
1137
1141
|
padding: 12px 19px 0 0;
|
|
1138
1142
|
width: 50%;
|
|
1139
1143
|
}
|
|
1140
1144
|
|
|
1141
|
-
.e-gantt
|
|
1145
|
+
.e-gantt-dialog .e-edit-form-row.e-scroll .e-edit-form-column:nth-child(even) {
|
|
1142
1146
|
padding: 12px 15px 0 0;
|
|
1143
1147
|
}
|
|
1144
1148
|
|
|
1145
|
-
.e-gantt
|
|
1149
|
+
.e-gantt-dialog .e-edit-form-column {
|
|
1146
1150
|
height: 75px;
|
|
1147
1151
|
}
|
|
1148
1152
|
|
|
1149
|
-
.e-gantt
|
|
1153
|
+
.e-gantt-dialog .e-dependent-div .e-content {
|
|
1150
1154
|
height: 157px;
|
|
1151
1155
|
}
|
|
1152
1156
|
|
|
1153
|
-
.e-gantt
|
|
1157
|
+
.e-gantt-dialog .e-resource-div .e-content {
|
|
1154
1158
|
height: 200px;
|
|
1155
1159
|
}
|
|
1156
1160
|
|
|
1157
|
-
.e-gantt
|
|
1161
|
+
.e-gantt-dialog .e-richtexteditor {
|
|
1158
1162
|
border-bottom-width: 1px;
|
|
1159
1163
|
height: 259px !important;
|
|
1160
1164
|
overflow: hidden;
|
|
1161
1165
|
}
|
|
1162
1166
|
|
|
1163
|
-
.e-gantt
|
|
1167
|
+
.e-gantt-dialog .e-richtexteditor.e-rte-tb-expand {
|
|
1164
1168
|
border-top: 0;
|
|
1165
1169
|
}
|
|
1166
1170
|
|
|
1167
|
-
.e-gantt
|
|
1171
|
+
.e-gantt-dialog .e-richtexteditor .e-rte-content {
|
|
1168
1172
|
border-bottom-width: 0px;
|
|
1169
1173
|
height: 210px;
|
|
1170
1174
|
}
|
|
1171
1175
|
|
|
1172
|
-
.e-gantt
|
|
1176
|
+
.e-gantt-dialog > .e-dlg-content {
|
|
1173
1177
|
padding: 0 !important;
|
|
1174
1178
|
height: 291px;
|
|
1175
1179
|
}
|
|
1176
1180
|
|
|
1177
|
-
.e-gantt
|
|
1181
|
+
.e-gantt-dialog .e-dlg-header-content {
|
|
1178
1182
|
border-bottom: 0 !important;
|
|
1179
1183
|
}
|
|
1180
1184
|
|
|
1181
|
-
.e-gantt
|
|
1185
|
+
.e-gantt-dialog .e-dlg-header-content {
|
|
1182
1186
|
border-radius: 6px;
|
|
1183
1187
|
padding-bottom: 12px;
|
|
1184
1188
|
}
|
|
1185
1189
|
|
|
1186
|
-
.e-gantt
|
|
1190
|
+
.e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
1187
1191
|
border-radius: 50%;
|
|
1188
1192
|
}
|
|
1189
1193
|
|
|
@@ -1339,10 +1343,6 @@
|
|
|
1339
1343
|
border-radius: 0px;
|
|
1340
1344
|
}
|
|
1341
1345
|
|
|
1342
|
-
.e-gantt .e-gantt-splitter-height {
|
|
1343
|
-
height: calc(100% - 38px) !important;
|
|
1344
|
-
}
|
|
1345
|
-
|
|
1346
1346
|
.e-gantt .e-cloneproperties.e-draganddrop {
|
|
1347
1347
|
box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.26);
|
|
1348
1348
|
opacity: .95;
|
|
@@ -1374,62 +1374,6 @@
|
|
|
1374
1374
|
box-shadow: 0 0 0 1px #d1d5db inset !important;
|
|
1375
1375
|
}
|
|
1376
1376
|
|
|
1377
|
-
.e-gantt .e-gantt-dialog .e-dlg-header {
|
|
1378
|
-
color: #111827;
|
|
1379
|
-
}
|
|
1380
|
-
|
|
1381
|
-
.e-gantt .e-gantt-dialog .e-dlg-header-content {
|
|
1382
|
-
background: #f9fafb;
|
|
1383
|
-
}
|
|
1384
|
-
|
|
1385
|
-
.e-gantt .e-gantt-dialog .e-icon-dlg-close {
|
|
1386
|
-
color: #6b7280;
|
|
1387
|
-
}
|
|
1388
|
-
|
|
1389
|
-
.e-gantt .e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover {
|
|
1390
|
-
background-color: #f9fafb;
|
|
1391
|
-
}
|
|
1392
|
-
|
|
1393
|
-
.e-gantt .e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover .e-icon-dlg-close {
|
|
1394
|
-
color: #6b7280;
|
|
1395
|
-
}
|
|
1396
|
-
|
|
1397
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header {
|
|
1398
|
-
background: #f9fafb;
|
|
1399
|
-
}
|
|
1400
|
-
|
|
1401
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-indicator {
|
|
1402
|
-
background: #4f46e5;
|
|
1403
|
-
}
|
|
1404
|
-
|
|
1405
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
1406
|
-
background-color: transparent;
|
|
1407
|
-
}
|
|
1408
|
-
|
|
1409
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active .e-tab-wrap .e-tab-text {
|
|
1410
|
-
color: #4f46e5;
|
|
1411
|
-
}
|
|
1412
|
-
|
|
1413
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
1414
|
-
border-color: transparent;
|
|
1415
|
-
}
|
|
1416
|
-
|
|
1417
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap .e-tab-text {
|
|
1418
|
-
color: #6b7280;
|
|
1419
|
-
}
|
|
1420
|
-
|
|
1421
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item:not(.e-active) .e-tab-wrap:hover {
|
|
1422
|
-
background: transparent;
|
|
1423
|
-
border-bottom: 0px;
|
|
1424
|
-
border-bottom-left-radius: 0px;
|
|
1425
|
-
border-bottom-right-radius: 0px;
|
|
1426
|
-
border-color: transparent;
|
|
1427
|
-
}
|
|
1428
|
-
|
|
1429
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item:not(.e-active) .e-tab-wrap:hover .e-tab-text {
|
|
1430
|
-
color: #6b7280;
|
|
1431
|
-
}
|
|
1432
|
-
|
|
1433
1377
|
.e-gantt .e-temp-content {
|
|
1434
1378
|
border-color: #e5e7eb;
|
|
1435
1379
|
}
|
|
@@ -1934,6 +1878,62 @@
|
|
|
1934
1878
|
color: #6b7280 !important;
|
|
1935
1879
|
}
|
|
1936
1880
|
|
|
1881
|
+
.e-gantt-dialog .e-dlg-header {
|
|
1882
|
+
color: #111827;
|
|
1883
|
+
}
|
|
1884
|
+
|
|
1885
|
+
.e-gantt-dialog .e-dlg-header-content {
|
|
1886
|
+
background: #f9fafb;
|
|
1887
|
+
}
|
|
1888
|
+
|
|
1889
|
+
.e-gantt-dialog .e-icon-dlg-close {
|
|
1890
|
+
color: #6b7280;
|
|
1891
|
+
}
|
|
1892
|
+
|
|
1893
|
+
.e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover {
|
|
1894
|
+
background-color: #f9fafb;
|
|
1895
|
+
}
|
|
1896
|
+
|
|
1897
|
+
.e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover .e-icon-dlg-close {
|
|
1898
|
+
color: #6b7280;
|
|
1899
|
+
}
|
|
1900
|
+
|
|
1901
|
+
.e-gantt-dialog .e-tab .e-tab-header {
|
|
1902
|
+
background: #f9fafb;
|
|
1903
|
+
}
|
|
1904
|
+
|
|
1905
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-indicator {
|
|
1906
|
+
background: #4f46e5;
|
|
1907
|
+
}
|
|
1908
|
+
|
|
1909
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
1910
|
+
background-color: transparent;
|
|
1911
|
+
}
|
|
1912
|
+
|
|
1913
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active .e-tab-wrap .e-tab-text {
|
|
1914
|
+
color: #4f46e5;
|
|
1915
|
+
}
|
|
1916
|
+
|
|
1917
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
1918
|
+
border-color: transparent;
|
|
1919
|
+
}
|
|
1920
|
+
|
|
1921
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap .e-tab-text {
|
|
1922
|
+
color: #6b7280;
|
|
1923
|
+
}
|
|
1924
|
+
|
|
1925
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item:not(.e-active) .e-tab-wrap:hover {
|
|
1926
|
+
background: transparent;
|
|
1927
|
+
border-bottom: 0px;
|
|
1928
|
+
border-bottom-left-radius: 0px;
|
|
1929
|
+
border-bottom-right-radius: 0px;
|
|
1930
|
+
border-color: transparent;
|
|
1931
|
+
}
|
|
1932
|
+
|
|
1933
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item:not(.e-active) .e-tab-wrap:hover .e-tab-text {
|
|
1934
|
+
color: #6b7280;
|
|
1935
|
+
}
|
|
1936
|
+
|
|
1937
1937
|
.e-gantt.e-device .e-left-resize-gripper,
|
|
1938
1938
|
.e-gantt.e-device .e-right-resize-gripper {
|
|
1939
1939
|
border-color: #d1d5db;
|
|
@@ -338,23 +338,6 @@
|
|
|
338
338
|
border-color: transparent;
|
|
339
339
|
}
|
|
340
340
|
|
|
341
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header {
|
|
342
|
-
padding-left: 0px;
|
|
343
|
-
}
|
|
344
|
-
|
|
345
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-indicator {
|
|
346
|
-
display: block;
|
|
347
|
-
}
|
|
348
|
-
|
|
349
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
350
|
-
border-style: solid;
|
|
351
|
-
border-width: 0px;
|
|
352
|
-
}
|
|
353
|
-
|
|
354
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header:not(.e-vertical)::before {
|
|
355
|
-
border: 0;
|
|
356
|
-
}
|
|
357
|
-
|
|
358
341
|
.e-gantt .e-gantt-tree-grid-pane .e-grid {
|
|
359
342
|
border-width: 0;
|
|
360
343
|
}
|
|
@@ -693,6 +676,10 @@
|
|
|
693
676
|
user-select: none;
|
|
694
677
|
}
|
|
695
678
|
|
|
679
|
+
.e-gantt .e-gantt-chart .e-chart-rows-container {
|
|
680
|
+
line-height: initial;
|
|
681
|
+
}
|
|
682
|
+
|
|
696
683
|
.e-gantt .e-gantt-chart .e-taskbar-left-resizer,
|
|
697
684
|
.e-gantt .e-gantt-chart .e-taskbar-right-resizer {
|
|
698
685
|
display: inline-block;
|
|
@@ -985,101 +972,118 @@
|
|
|
985
972
|
outline-offset: 2px;
|
|
986
973
|
}
|
|
987
974
|
|
|
988
|
-
.e-gantt .e-
|
|
975
|
+
.e-gantt-dialog .e-tab .e-tab-header {
|
|
976
|
+
padding-left: 0px;
|
|
977
|
+
}
|
|
978
|
+
|
|
979
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-indicator {
|
|
980
|
+
display: block;
|
|
981
|
+
}
|
|
982
|
+
|
|
983
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
984
|
+
border-style: solid;
|
|
985
|
+
border-width: 0px;
|
|
986
|
+
}
|
|
987
|
+
|
|
988
|
+
.e-gantt-dialog .e-tab .e-tab-header:not(.e-vertical)::before {
|
|
989
989
|
border: 0;
|
|
990
990
|
}
|
|
991
991
|
|
|
992
|
-
.e-gantt
|
|
992
|
+
.e-gantt-dialog {
|
|
993
|
+
border: 0;
|
|
994
|
+
}
|
|
995
|
+
|
|
996
|
+
.e-gantt-dialog .e-gridform .e-table {
|
|
993
997
|
border-spacing: 0;
|
|
994
998
|
}
|
|
995
999
|
|
|
996
|
-
.e-gantt
|
|
1000
|
+
.e-gantt-dialog .e-item {
|
|
997
1001
|
height: 241px;
|
|
998
1002
|
}
|
|
999
1003
|
|
|
1000
|
-
.e-gantt
|
|
1004
|
+
.e-gantt-dialog .e-dependent-div {
|
|
1001
1005
|
border-bottom-width: 1px;
|
|
1002
1006
|
}
|
|
1003
1007
|
|
|
1004
|
-
.e-gantt
|
|
1008
|
+
.e-gantt-dialog .e-icon-dlg-close {
|
|
1005
1009
|
opacity: initial;
|
|
1006
1010
|
}
|
|
1007
1011
|
|
|
1008
|
-
.e-gantt
|
|
1012
|
+
.e-gantt-dialog .e-toolbar {
|
|
1009
1013
|
border-top-width: 0;
|
|
1010
1014
|
}
|
|
1011
1015
|
|
|
1012
|
-
.e-gantt
|
|
1016
|
+
.e-gantt-dialog .e-resource-div {
|
|
1013
1017
|
border-bottom-width: 1px;
|
|
1014
1018
|
}
|
|
1015
1019
|
|
|
1016
|
-
.e-gantt
|
|
1020
|
+
.e-gantt-dialog .e-resource-div .e-gridheader {
|
|
1017
1021
|
border-top-width: 0;
|
|
1018
1022
|
}
|
|
1019
1023
|
|
|
1020
|
-
.e-gantt
|
|
1024
|
+
.e-gantt-dialog .e-edit-form-row {
|
|
1021
1025
|
height: 241px;
|
|
1022
1026
|
overflow-y: auto;
|
|
1023
1027
|
padding-bottom: 16px;
|
|
1024
1028
|
}
|
|
1025
1029
|
|
|
1026
|
-
.e-gantt
|
|
1030
|
+
.e-gantt-dialog .e-edit-form-column:nth-child(odd) {
|
|
1027
1031
|
float: left;
|
|
1028
1032
|
padding: 16px 18px 0 18px;
|
|
1029
1033
|
width: 50%;
|
|
1030
1034
|
}
|
|
1031
1035
|
|
|
1032
|
-
.e-gantt
|
|
1036
|
+
.e-gantt-dialog .e-edit-form-column:nth-child(even) {
|
|
1033
1037
|
float: left;
|
|
1034
1038
|
padding: 16px 16px 0 0;
|
|
1035
1039
|
width: 50%;
|
|
1036
1040
|
}
|
|
1037
1041
|
|
|
1038
|
-
.e-gantt
|
|
1042
|
+
.e-gantt-dialog .e-edit-form-row.e-scroll .e-edit-form-column:nth-child(even) {
|
|
1039
1043
|
padding: 16px 16px 0 0;
|
|
1040
1044
|
}
|
|
1041
1045
|
|
|
1042
|
-
.e-gantt
|
|
1046
|
+
.e-gantt-dialog .e-edit-form-column {
|
|
1043
1047
|
height: 75px;
|
|
1044
1048
|
}
|
|
1045
1049
|
|
|
1046
|
-
.e-gantt
|
|
1050
|
+
.e-gantt-dialog .e-dependent-div .e-content {
|
|
1047
1051
|
height: 161px;
|
|
1048
1052
|
}
|
|
1049
1053
|
|
|
1050
|
-
.e-gantt
|
|
1054
|
+
.e-gantt-dialog .e-resource-div .e-content {
|
|
1051
1055
|
height: 202px;
|
|
1052
1056
|
}
|
|
1053
1057
|
|
|
1054
|
-
.e-gantt
|
|
1058
|
+
.e-gantt-dialog .e-richtexteditor {
|
|
1055
1059
|
border-bottom-width: 1px;
|
|
1056
1060
|
height: 241px !important;
|
|
1057
1061
|
overflow: hidden;
|
|
1058
1062
|
}
|
|
1059
1063
|
|
|
1060
|
-
.e-gantt
|
|
1064
|
+
.e-gantt-dialog .e-richtexteditor.e-rte-tb-expand {
|
|
1061
1065
|
border-top: 0;
|
|
1062
1066
|
}
|
|
1063
1067
|
|
|
1064
|
-
.e-gantt
|
|
1068
|
+
.e-gantt-dialog .e-richtexteditor .e-rte-content {
|
|
1065
1069
|
border-bottom-width: 0px;
|
|
1066
1070
|
height: 200px;
|
|
1067
1071
|
}
|
|
1068
1072
|
|
|
1069
|
-
.e-gantt
|
|
1073
|
+
.e-gantt-dialog > .e-dlg-content {
|
|
1070
1074
|
padding: 0 !important;
|
|
1071
1075
|
}
|
|
1072
1076
|
|
|
1073
|
-
.e-gantt
|
|
1077
|
+
.e-gantt-dialog .e-dlg-header-content {
|
|
1074
1078
|
border-bottom: 0 !important;
|
|
1075
1079
|
}
|
|
1076
1080
|
|
|
1077
|
-
.e-gantt
|
|
1081
|
+
.e-gantt-dialog .e-dlg-header-content {
|
|
1078
1082
|
border-radius: 3px 3px 0px 0px;
|
|
1079
1083
|
padding-bottom: 4px;
|
|
1080
1084
|
}
|
|
1081
1085
|
|
|
1082
|
-
.e-gantt
|
|
1086
|
+
.e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
1083
1087
|
border-radius: 50%;
|
|
1084
1088
|
}
|
|
1085
1089
|
|
|
@@ -1235,10 +1239,6 @@
|
|
|
1235
1239
|
border-radius: 0px;
|
|
1236
1240
|
}
|
|
1237
1241
|
|
|
1238
|
-
.e-gantt .e-gantt-splitter-height {
|
|
1239
|
-
height: calc(100% - 42px) !important;
|
|
1240
|
-
}
|
|
1241
|
-
|
|
1242
1242
|
.e-gantt .e-cloneproperties.e-draganddrop {
|
|
1243
1243
|
box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.2);
|
|
1244
1244
|
opacity: .95;
|
|
@@ -1270,62 +1270,6 @@
|
|
|
1270
1270
|
box-shadow: 0 0 0 1px #ffff inset !important;
|
|
1271
1271
|
}
|
|
1272
1272
|
|
|
1273
|
-
.e-gantt .e-gantt-dialog .e-dlg-header {
|
|
1274
|
-
color: #000;
|
|
1275
|
-
}
|
|
1276
|
-
|
|
1277
|
-
.e-gantt .e-gantt-dialog .e-dlg-header-content {
|
|
1278
|
-
background: #6e06f1;
|
|
1279
|
-
}
|
|
1280
|
-
|
|
1281
|
-
.e-gantt .e-gantt-dialog .e-icon-dlg-close {
|
|
1282
|
-
color: #000;
|
|
1283
|
-
}
|
|
1284
|
-
|
|
1285
|
-
.e-gantt .e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover {
|
|
1286
|
-
background-color: rgba(255, 255, 255, 0.15);
|
|
1287
|
-
}
|
|
1288
|
-
|
|
1289
|
-
.e-gantt .e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover .e-icon-dlg-close {
|
|
1290
|
-
color: black;
|
|
1291
|
-
}
|
|
1292
|
-
|
|
1293
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header {
|
|
1294
|
-
background: #6e06f1;
|
|
1295
|
-
}
|
|
1296
|
-
|
|
1297
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-indicator {
|
|
1298
|
-
background: #000;
|
|
1299
|
-
}
|
|
1300
|
-
|
|
1301
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
1302
|
-
background-color: transparent;
|
|
1303
|
-
}
|
|
1304
|
-
|
|
1305
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active .e-tab-wrap .e-tab-text {
|
|
1306
|
-
color: #000;
|
|
1307
|
-
}
|
|
1308
|
-
|
|
1309
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
1310
|
-
border-color: transparent;
|
|
1311
|
-
}
|
|
1312
|
-
|
|
1313
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap .e-tab-text {
|
|
1314
|
-
color: #000;
|
|
1315
|
-
}
|
|
1316
|
-
|
|
1317
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item:not(.e-active) .e-tab-wrap:hover {
|
|
1318
|
-
background: transparent;
|
|
1319
|
-
border-bottom: 0px;
|
|
1320
|
-
border-bottom-left-radius: 0px;
|
|
1321
|
-
border-bottom-right-radius: 0px;
|
|
1322
|
-
border-color: transparent;
|
|
1323
|
-
}
|
|
1324
|
-
|
|
1325
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item:not(.e-active) .e-tab-wrap:hover .e-tab-text {
|
|
1326
|
-
color: #f0f0f0;
|
|
1327
|
-
}
|
|
1328
|
-
|
|
1329
1273
|
.e-gantt .e-temp-content {
|
|
1330
1274
|
border-color: #757575;
|
|
1331
1275
|
}
|
|
@@ -1830,6 +1774,62 @@
|
|
|
1830
1774
|
color: #000 !important;
|
|
1831
1775
|
}
|
|
1832
1776
|
|
|
1777
|
+
.e-gantt-dialog .e-dlg-header {
|
|
1778
|
+
color: #000;
|
|
1779
|
+
}
|
|
1780
|
+
|
|
1781
|
+
.e-gantt-dialog .e-dlg-header-content {
|
|
1782
|
+
background: #6e06f1;
|
|
1783
|
+
}
|
|
1784
|
+
|
|
1785
|
+
.e-gantt-dialog .e-icon-dlg-close {
|
|
1786
|
+
color: #000;
|
|
1787
|
+
}
|
|
1788
|
+
|
|
1789
|
+
.e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover {
|
|
1790
|
+
background-color: rgba(255, 255, 255, 0.15);
|
|
1791
|
+
}
|
|
1792
|
+
|
|
1793
|
+
.e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover .e-icon-dlg-close {
|
|
1794
|
+
color: black;
|
|
1795
|
+
}
|
|
1796
|
+
|
|
1797
|
+
.e-gantt-dialog .e-tab .e-tab-header {
|
|
1798
|
+
background: #6e06f1;
|
|
1799
|
+
}
|
|
1800
|
+
|
|
1801
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-indicator {
|
|
1802
|
+
background: #000;
|
|
1803
|
+
}
|
|
1804
|
+
|
|
1805
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
1806
|
+
background-color: transparent;
|
|
1807
|
+
}
|
|
1808
|
+
|
|
1809
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active .e-tab-wrap .e-tab-text {
|
|
1810
|
+
color: #000;
|
|
1811
|
+
}
|
|
1812
|
+
|
|
1813
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
1814
|
+
border-color: transparent;
|
|
1815
|
+
}
|
|
1816
|
+
|
|
1817
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap .e-tab-text {
|
|
1818
|
+
color: #000;
|
|
1819
|
+
}
|
|
1820
|
+
|
|
1821
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item:not(.e-active) .e-tab-wrap:hover {
|
|
1822
|
+
background: transparent;
|
|
1823
|
+
border-bottom: 0px;
|
|
1824
|
+
border-bottom-left-radius: 0px;
|
|
1825
|
+
border-bottom-right-radius: 0px;
|
|
1826
|
+
border-color: transparent;
|
|
1827
|
+
}
|
|
1828
|
+
|
|
1829
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item:not(.e-active) .e-tab-wrap:hover .e-tab-text {
|
|
1830
|
+
color: #f0f0f0;
|
|
1831
|
+
}
|
|
1832
|
+
|
|
1833
1833
|
.e-gantt.e-device .e-left-resize-gripper,
|
|
1834
1834
|
.e-gantt.e-device .e-right-resize-gripper {
|
|
1835
1835
|
border-color: #9e9e9e;
|