@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/bootstrap.css
CHANGED
|
@@ -533,23 +533,6 @@
|
|
|
533
533
|
border-color: transparent;
|
|
534
534
|
}
|
|
535
535
|
|
|
536
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header {
|
|
537
|
-
padding-left: 12px;
|
|
538
|
-
}
|
|
539
|
-
|
|
540
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-indicator {
|
|
541
|
-
display: block;
|
|
542
|
-
}
|
|
543
|
-
|
|
544
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
545
|
-
border-style: solid;
|
|
546
|
-
border-width: 0px;
|
|
547
|
-
}
|
|
548
|
-
|
|
549
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header:not(.e-vertical)::before {
|
|
550
|
-
border: 0;
|
|
551
|
-
}
|
|
552
|
-
|
|
553
536
|
.e-gantt .e-gantt-tree-grid-pane .e-grid {
|
|
554
537
|
border-width: 0;
|
|
555
538
|
}
|
|
@@ -888,6 +871,10 @@
|
|
|
888
871
|
user-select: none;
|
|
889
872
|
}
|
|
890
873
|
|
|
874
|
+
.e-gantt .e-gantt-chart .e-chart-rows-container {
|
|
875
|
+
line-height: initial;
|
|
876
|
+
}
|
|
877
|
+
|
|
891
878
|
.e-gantt .e-gantt-chart .e-taskbar-left-resizer,
|
|
892
879
|
.e-gantt .e-gantt-chart .e-taskbar-right-resizer {
|
|
893
880
|
display: inline-block;
|
|
@@ -1180,101 +1167,118 @@
|
|
|
1180
1167
|
outline-offset: 2px;
|
|
1181
1168
|
}
|
|
1182
1169
|
|
|
1183
|
-
.e-gantt .e-
|
|
1170
|
+
.e-gantt-dialog .e-tab .e-tab-header {
|
|
1171
|
+
padding-left: 12px;
|
|
1172
|
+
}
|
|
1173
|
+
|
|
1174
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-indicator {
|
|
1175
|
+
display: block;
|
|
1176
|
+
}
|
|
1177
|
+
|
|
1178
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
1179
|
+
border-style: solid;
|
|
1180
|
+
border-width: 0px;
|
|
1181
|
+
}
|
|
1182
|
+
|
|
1183
|
+
.e-gantt-dialog .e-tab .e-tab-header:not(.e-vertical)::before {
|
|
1184
1184
|
border: 0;
|
|
1185
1185
|
}
|
|
1186
1186
|
|
|
1187
|
-
.e-gantt
|
|
1187
|
+
.e-gantt-dialog {
|
|
1188
|
+
border: 0;
|
|
1189
|
+
}
|
|
1190
|
+
|
|
1191
|
+
.e-gantt-dialog .e-gridform .e-table {
|
|
1188
1192
|
border-spacing: 0;
|
|
1189
1193
|
}
|
|
1190
1194
|
|
|
1191
|
-
.e-gantt
|
|
1195
|
+
.e-gantt-dialog .e-item {
|
|
1192
1196
|
height: 241px;
|
|
1193
1197
|
}
|
|
1194
1198
|
|
|
1195
|
-
.e-gantt
|
|
1199
|
+
.e-gantt-dialog .e-dependent-div {
|
|
1196
1200
|
border-bottom-width: 0px;
|
|
1197
1201
|
}
|
|
1198
1202
|
|
|
1199
|
-
.e-gantt
|
|
1203
|
+
.e-gantt-dialog .e-icon-dlg-close {
|
|
1200
1204
|
opacity: initial;
|
|
1201
1205
|
}
|
|
1202
1206
|
|
|
1203
|
-
.e-gantt
|
|
1207
|
+
.e-gantt-dialog .e-toolbar {
|
|
1204
1208
|
border-top-width: 0;
|
|
1205
1209
|
}
|
|
1206
1210
|
|
|
1207
|
-
.e-gantt
|
|
1211
|
+
.e-gantt-dialog .e-resource-div {
|
|
1208
1212
|
border-bottom-width: 0px;
|
|
1209
1213
|
}
|
|
1210
1214
|
|
|
1211
|
-
.e-gantt
|
|
1215
|
+
.e-gantt-dialog .e-resource-div .e-gridheader {
|
|
1212
1216
|
border-top-width: 0;
|
|
1213
1217
|
}
|
|
1214
1218
|
|
|
1215
|
-
.e-gantt
|
|
1219
|
+
.e-gantt-dialog .e-edit-form-row {
|
|
1216
1220
|
height: 241px;
|
|
1217
1221
|
overflow-y: auto;
|
|
1218
1222
|
padding-bottom: 16px;
|
|
1219
1223
|
}
|
|
1220
1224
|
|
|
1221
|
-
.e-gantt
|
|
1225
|
+
.e-gantt-dialog .e-edit-form-column:nth-child(odd) {
|
|
1222
1226
|
float: left;
|
|
1223
1227
|
padding: 16px 18px 0 18px;
|
|
1224
1228
|
width: 50%;
|
|
1225
1229
|
}
|
|
1226
1230
|
|
|
1227
|
-
.e-gantt
|
|
1231
|
+
.e-gantt-dialog .e-edit-form-column:nth-child(even) {
|
|
1228
1232
|
float: left;
|
|
1229
1233
|
padding: 16px 16px 0 0;
|
|
1230
1234
|
width: 50%;
|
|
1231
1235
|
}
|
|
1232
1236
|
|
|
1233
|
-
.e-gantt
|
|
1237
|
+
.e-gantt-dialog .e-edit-form-row.e-scroll .e-edit-form-column:nth-child(even) {
|
|
1234
1238
|
padding: 16px 16px 0 0;
|
|
1235
1239
|
}
|
|
1236
1240
|
|
|
1237
|
-
.e-gantt
|
|
1241
|
+
.e-gantt-dialog .e-edit-form-column {
|
|
1238
1242
|
height: 75px;
|
|
1239
1243
|
}
|
|
1240
1244
|
|
|
1241
|
-
.e-gantt
|
|
1245
|
+
.e-gantt-dialog .e-dependent-div .e-content {
|
|
1242
1246
|
height: 161px;
|
|
1243
1247
|
}
|
|
1244
1248
|
|
|
1245
|
-
.e-gantt
|
|
1249
|
+
.e-gantt-dialog .e-resource-div .e-content {
|
|
1246
1250
|
height: 202px;
|
|
1247
1251
|
}
|
|
1248
1252
|
|
|
1249
|
-
.e-gantt
|
|
1253
|
+
.e-gantt-dialog .e-richtexteditor {
|
|
1250
1254
|
border-bottom-width: 0px;
|
|
1251
1255
|
height: 241px !important;
|
|
1252
1256
|
overflow: hidden;
|
|
1253
1257
|
}
|
|
1254
1258
|
|
|
1255
|
-
.e-gantt
|
|
1259
|
+
.e-gantt-dialog .e-richtexteditor.e-rte-tb-expand {
|
|
1256
1260
|
border-top: 0;
|
|
1257
1261
|
}
|
|
1258
1262
|
|
|
1259
|
-
.e-gantt
|
|
1263
|
+
.e-gantt-dialog .e-richtexteditor .e-rte-content {
|
|
1260
1264
|
border-bottom-width: 0px;
|
|
1261
1265
|
height: 200px;
|
|
1262
1266
|
}
|
|
1263
1267
|
|
|
1264
|
-
.e-gantt
|
|
1268
|
+
.e-gantt-dialog > .e-dlg-content {
|
|
1265
1269
|
padding: 0 !important;
|
|
1266
1270
|
}
|
|
1267
1271
|
|
|
1268
|
-
.e-gantt
|
|
1272
|
+
.e-gantt-dialog .e-dlg-header-content {
|
|
1269
1273
|
border-bottom: 0 !important;
|
|
1270
1274
|
}
|
|
1271
1275
|
|
|
1272
|
-
.e-gantt
|
|
1276
|
+
.e-gantt-dialog .e-dlg-header-content {
|
|
1273
1277
|
border-radius: 6px 6px 0px 0px;
|
|
1274
1278
|
padding-bottom: 20px;
|
|
1275
1279
|
}
|
|
1276
1280
|
|
|
1277
|
-
.e-gantt
|
|
1281
|
+
.e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
1278
1282
|
border-radius: 50%;
|
|
1279
1283
|
}
|
|
1280
1284
|
|
|
@@ -1430,10 +1434,6 @@
|
|
|
1430
1434
|
border-radius: 4px;
|
|
1431
1435
|
}
|
|
1432
1436
|
|
|
1433
|
-
.e-gantt .e-gantt-splitter-height {
|
|
1434
|
-
height: calc(100% - 41px) !important;
|
|
1435
|
-
}
|
|
1436
|
-
|
|
1437
1437
|
.e-gantt .e-cloneproperties.e-draganddrop {
|
|
1438
1438
|
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
|
1439
1439
|
opacity: .95;
|
|
@@ -1465,62 +1465,6 @@
|
|
|
1465
1465
|
box-shadow: 0 0 0 1px #66afe9 inset !important;
|
|
1466
1466
|
}
|
|
1467
1467
|
|
|
1468
|
-
.e-gantt .e-gantt-dialog .e-dlg-header {
|
|
1469
|
-
color: #fff;
|
|
1470
|
-
}
|
|
1471
|
-
|
|
1472
|
-
.e-gantt .e-gantt-dialog .e-dlg-header-content {
|
|
1473
|
-
background: #317ab9;
|
|
1474
|
-
}
|
|
1475
|
-
|
|
1476
|
-
.e-gantt .e-gantt-dialog .e-icon-dlg-close {
|
|
1477
|
-
color: #fff;
|
|
1478
|
-
}
|
|
1479
|
-
|
|
1480
|
-
.e-gantt .e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover {
|
|
1481
|
-
background-color: transparent;
|
|
1482
|
-
}
|
|
1483
|
-
|
|
1484
|
-
.e-gantt .e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover .e-icon-dlg-close {
|
|
1485
|
-
color: rgba(0, 0, 0, 0.8);
|
|
1486
|
-
}
|
|
1487
|
-
|
|
1488
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header {
|
|
1489
|
-
background: #317ab9;
|
|
1490
|
-
}
|
|
1491
|
-
|
|
1492
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-indicator {
|
|
1493
|
-
background: transparent;
|
|
1494
|
-
}
|
|
1495
|
-
|
|
1496
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
1497
|
-
background-color: #fff;
|
|
1498
|
-
}
|
|
1499
|
-
|
|
1500
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active .e-tab-wrap .e-tab-text {
|
|
1501
|
-
color: #333;
|
|
1502
|
-
}
|
|
1503
|
-
|
|
1504
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
1505
|
-
border-color: transparent;
|
|
1506
|
-
}
|
|
1507
|
-
|
|
1508
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap .e-tab-text {
|
|
1509
|
-
color: #fff;
|
|
1510
|
-
}
|
|
1511
|
-
|
|
1512
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item:not(.e-active) .e-tab-wrap:hover {
|
|
1513
|
-
background: #8ab8e0;
|
|
1514
|
-
border-bottom: 0px;
|
|
1515
|
-
border-bottom-left-radius: 0px;
|
|
1516
|
-
border-bottom-right-radius: 0px;
|
|
1517
|
-
border-color: transparent;
|
|
1518
|
-
}
|
|
1519
|
-
|
|
1520
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item:not(.e-active) .e-tab-wrap:hover .e-tab-text {
|
|
1521
|
-
color: #fff;
|
|
1522
|
-
}
|
|
1523
|
-
|
|
1524
1468
|
.e-gantt .e-temp-content {
|
|
1525
1469
|
border-color: #ddd;
|
|
1526
1470
|
}
|
|
@@ -2025,6 +1969,62 @@
|
|
|
2025
1969
|
color: #333 !important;
|
|
2026
1970
|
}
|
|
2027
1971
|
|
|
1972
|
+
.e-gantt-dialog .e-dlg-header {
|
|
1973
|
+
color: #fff;
|
|
1974
|
+
}
|
|
1975
|
+
|
|
1976
|
+
.e-gantt-dialog .e-dlg-header-content {
|
|
1977
|
+
background: #317ab9;
|
|
1978
|
+
}
|
|
1979
|
+
|
|
1980
|
+
.e-gantt-dialog .e-icon-dlg-close {
|
|
1981
|
+
color: #fff;
|
|
1982
|
+
}
|
|
1983
|
+
|
|
1984
|
+
.e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover {
|
|
1985
|
+
background-color: transparent;
|
|
1986
|
+
}
|
|
1987
|
+
|
|
1988
|
+
.e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover .e-icon-dlg-close {
|
|
1989
|
+
color: rgba(0, 0, 0, 0.8);
|
|
1990
|
+
}
|
|
1991
|
+
|
|
1992
|
+
.e-gantt-dialog .e-tab .e-tab-header {
|
|
1993
|
+
background: #317ab9;
|
|
1994
|
+
}
|
|
1995
|
+
|
|
1996
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-indicator {
|
|
1997
|
+
background: transparent;
|
|
1998
|
+
}
|
|
1999
|
+
|
|
2000
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
2001
|
+
background-color: #fff;
|
|
2002
|
+
}
|
|
2003
|
+
|
|
2004
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active .e-tab-wrap .e-tab-text {
|
|
2005
|
+
color: #333;
|
|
2006
|
+
}
|
|
2007
|
+
|
|
2008
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
2009
|
+
border-color: transparent;
|
|
2010
|
+
}
|
|
2011
|
+
|
|
2012
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap .e-tab-text {
|
|
2013
|
+
color: #fff;
|
|
2014
|
+
}
|
|
2015
|
+
|
|
2016
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item:not(.e-active) .e-tab-wrap:hover {
|
|
2017
|
+
background: #8ab8e0;
|
|
2018
|
+
border-bottom: 0px;
|
|
2019
|
+
border-bottom-left-radius: 0px;
|
|
2020
|
+
border-bottom-right-radius: 0px;
|
|
2021
|
+
border-color: transparent;
|
|
2022
|
+
}
|
|
2023
|
+
|
|
2024
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item:not(.e-active) .e-tab-wrap:hover .e-tab-text {
|
|
2025
|
+
color: #fff;
|
|
2026
|
+
}
|
|
2027
|
+
|
|
2028
2028
|
.e-gantt.e-device .e-left-resize-gripper,
|
|
2029
2029
|
.e-gantt.e-device .e-right-resize-gripper {
|
|
2030
2030
|
border-color: #9e9e9e;
|
package/styles/bootstrap4.css
CHANGED
|
@@ -358,6 +358,11 @@
|
|
|
358
358
|
background: transparent;
|
|
359
359
|
}
|
|
360
360
|
|
|
361
|
+
.e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
|
|
362
|
+
.e-float-input.e-control-wrapper.e-ddl.e-readonly input[readonly] {
|
|
363
|
+
background: #e9ecef;
|
|
364
|
+
}
|
|
365
|
+
|
|
361
366
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:active,
|
|
362
367
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:hover,
|
|
363
368
|
.e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:active,
|
|
@@ -745,23 +750,6 @@
|
|
|
745
750
|
border-color: transparent;
|
|
746
751
|
}
|
|
747
752
|
|
|
748
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header {
|
|
749
|
-
padding-left: 12px;
|
|
750
|
-
}
|
|
751
|
-
|
|
752
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-indicator {
|
|
753
|
-
display: block;
|
|
754
|
-
}
|
|
755
|
-
|
|
756
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
757
|
-
border-style: solid;
|
|
758
|
-
border-width: 1px;
|
|
759
|
-
}
|
|
760
|
-
|
|
761
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header:not(.e-vertical)::before {
|
|
762
|
-
border: 0;
|
|
763
|
-
}
|
|
764
|
-
|
|
765
753
|
.e-gantt .e-gantt-tree-grid-pane .e-grid {
|
|
766
754
|
border-width: 0;
|
|
767
755
|
}
|
|
@@ -1100,6 +1088,10 @@
|
|
|
1100
1088
|
user-select: none;
|
|
1101
1089
|
}
|
|
1102
1090
|
|
|
1091
|
+
.e-gantt .e-gantt-chart .e-chart-rows-container {
|
|
1092
|
+
line-height: initial;
|
|
1093
|
+
}
|
|
1094
|
+
|
|
1103
1095
|
.e-gantt .e-gantt-chart .e-taskbar-left-resizer,
|
|
1104
1096
|
.e-gantt .e-gantt-chart .e-taskbar-right-resizer {
|
|
1105
1097
|
display: inline-block;
|
|
@@ -1392,101 +1384,118 @@
|
|
|
1392
1384
|
outline-offset: 2px;
|
|
1393
1385
|
}
|
|
1394
1386
|
|
|
1395
|
-
.e-gantt .e-
|
|
1387
|
+
.e-gantt-dialog .e-tab .e-tab-header {
|
|
1388
|
+
padding-left: 12px;
|
|
1389
|
+
}
|
|
1390
|
+
|
|
1391
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-indicator {
|
|
1392
|
+
display: block;
|
|
1393
|
+
}
|
|
1394
|
+
|
|
1395
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
1396
|
+
border-style: solid;
|
|
1397
|
+
border-width: 1px;
|
|
1398
|
+
}
|
|
1399
|
+
|
|
1400
|
+
.e-gantt-dialog .e-tab .e-tab-header:not(.e-vertical)::before {
|
|
1401
|
+
border: 0;
|
|
1402
|
+
}
|
|
1403
|
+
|
|
1404
|
+
.e-gantt-dialog {
|
|
1396
1405
|
border: 0;
|
|
1397
1406
|
}
|
|
1398
1407
|
|
|
1399
|
-
.e-gantt
|
|
1408
|
+
.e-gantt-dialog .e-gridform .e-table {
|
|
1400
1409
|
border-spacing: 0;
|
|
1401
1410
|
}
|
|
1402
1411
|
|
|
1403
|
-
.e-gantt
|
|
1412
|
+
.e-gantt-dialog .e-item {
|
|
1404
1413
|
height: 241px;
|
|
1405
1414
|
}
|
|
1406
1415
|
|
|
1407
|
-
.e-gantt
|
|
1416
|
+
.e-gantt-dialog .e-dependent-div {
|
|
1408
1417
|
border-bottom-width: 0px;
|
|
1409
1418
|
}
|
|
1410
1419
|
|
|
1411
|
-
.e-gantt
|
|
1420
|
+
.e-gantt-dialog .e-icon-dlg-close {
|
|
1412
1421
|
opacity: initial;
|
|
1413
1422
|
}
|
|
1414
1423
|
|
|
1415
|
-
.e-gantt
|
|
1424
|
+
.e-gantt-dialog .e-toolbar {
|
|
1416
1425
|
border-top-width: 0;
|
|
1417
1426
|
}
|
|
1418
1427
|
|
|
1419
|
-
.e-gantt
|
|
1428
|
+
.e-gantt-dialog .e-resource-div {
|
|
1420
1429
|
border-bottom-width: 0px;
|
|
1421
1430
|
}
|
|
1422
1431
|
|
|
1423
|
-
.e-gantt
|
|
1432
|
+
.e-gantt-dialog .e-resource-div .e-gridheader {
|
|
1424
1433
|
border-top-width: 0;
|
|
1425
1434
|
}
|
|
1426
1435
|
|
|
1427
|
-
.e-gantt
|
|
1436
|
+
.e-gantt-dialog .e-edit-form-row {
|
|
1428
1437
|
height: 241px;
|
|
1429
1438
|
overflow-y: auto;
|
|
1430
1439
|
padding-bottom: 12px;
|
|
1431
1440
|
}
|
|
1432
1441
|
|
|
1433
|
-
.e-gantt
|
|
1442
|
+
.e-gantt-dialog .e-edit-form-column:nth-child(odd) {
|
|
1434
1443
|
float: left;
|
|
1435
1444
|
padding: 16px 18px 0 18px;
|
|
1436
1445
|
width: 50%;
|
|
1437
1446
|
}
|
|
1438
1447
|
|
|
1439
|
-
.e-gantt
|
|
1448
|
+
.e-gantt-dialog .e-edit-form-column:nth-child(even) {
|
|
1440
1449
|
float: left;
|
|
1441
1450
|
padding: 16px 16px 0 0;
|
|
1442
1451
|
width: 50%;
|
|
1443
1452
|
}
|
|
1444
1453
|
|
|
1445
|
-
.e-gantt
|
|
1454
|
+
.e-gantt-dialog .e-edit-form-row.e-scroll .e-edit-form-column:nth-child(even) {
|
|
1446
1455
|
padding: 16px 16px 0 0;
|
|
1447
1456
|
}
|
|
1448
1457
|
|
|
1449
|
-
.e-gantt
|
|
1458
|
+
.e-gantt-dialog .e-edit-form-column {
|
|
1450
1459
|
height: 75px;
|
|
1451
1460
|
}
|
|
1452
1461
|
|
|
1453
|
-
.e-gantt
|
|
1462
|
+
.e-gantt-dialog .e-dependent-div .e-content {
|
|
1454
1463
|
height: 161px;
|
|
1455
1464
|
}
|
|
1456
1465
|
|
|
1457
|
-
.e-gantt
|
|
1466
|
+
.e-gantt-dialog .e-resource-div .e-content {
|
|
1458
1467
|
height: 202px;
|
|
1459
1468
|
}
|
|
1460
1469
|
|
|
1461
|
-
.e-gantt
|
|
1470
|
+
.e-gantt-dialog .e-richtexteditor {
|
|
1462
1471
|
border-bottom-width: 0px;
|
|
1463
1472
|
height: 241px !important;
|
|
1464
1473
|
overflow: hidden;
|
|
1465
1474
|
}
|
|
1466
1475
|
|
|
1467
|
-
.e-gantt
|
|
1476
|
+
.e-gantt-dialog .e-richtexteditor.e-rte-tb-expand {
|
|
1468
1477
|
border-top: 0;
|
|
1469
1478
|
}
|
|
1470
1479
|
|
|
1471
|
-
.e-gantt
|
|
1480
|
+
.e-gantt-dialog .e-richtexteditor .e-rte-content {
|
|
1472
1481
|
border-bottom-width: 0px;
|
|
1473
1482
|
height: 200px;
|
|
1474
1483
|
}
|
|
1475
1484
|
|
|
1476
|
-
.e-gantt
|
|
1485
|
+
.e-gantt-dialog > .e-dlg-content {
|
|
1477
1486
|
padding: 0 !important;
|
|
1478
1487
|
}
|
|
1479
1488
|
|
|
1480
|
-
.e-gantt
|
|
1489
|
+
.e-gantt-dialog .e-dlg-header-content {
|
|
1481
1490
|
border-bottom: 0 !important;
|
|
1482
1491
|
}
|
|
1483
1492
|
|
|
1484
|
-
.e-gantt
|
|
1493
|
+
.e-gantt-dialog .e-dlg-header-content {
|
|
1485
1494
|
border-radius: 3px 3px 0px 0px;
|
|
1486
1495
|
padding-bottom: 20px;
|
|
1487
1496
|
}
|
|
1488
1497
|
|
|
1489
|
-
.e-gantt
|
|
1498
|
+
.e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
1490
1499
|
border-radius: 50%;
|
|
1491
1500
|
}
|
|
1492
1501
|
|
|
@@ -1642,10 +1651,6 @@
|
|
|
1642
1651
|
border-radius: 0px;
|
|
1643
1652
|
}
|
|
1644
1653
|
|
|
1645
|
-
.e-gantt .e-gantt-splitter-height {
|
|
1646
|
-
height: calc(100% - 38px) !important;
|
|
1647
|
-
}
|
|
1648
|
-
|
|
1649
1654
|
.e-gantt .e-cloneproperties.e-draganddrop {
|
|
1650
1655
|
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
|
1651
1656
|
opacity: .95;
|
|
@@ -1677,62 +1682,6 @@
|
|
|
1677
1682
|
box-shadow: 0 0 0 1px #66afe9 inset !important;
|
|
1678
1683
|
}
|
|
1679
1684
|
|
|
1680
|
-
.e-gantt .e-gantt-dialog .e-dlg-header {
|
|
1681
|
-
color: #fff;
|
|
1682
|
-
}
|
|
1683
|
-
|
|
1684
|
-
.e-gantt .e-gantt-dialog .e-dlg-header-content {
|
|
1685
|
-
background: #007bff;
|
|
1686
|
-
}
|
|
1687
|
-
|
|
1688
|
-
.e-gantt .e-gantt-dialog .e-icon-dlg-close {
|
|
1689
|
-
color: rgba(255, 255, 255, 0.75);
|
|
1690
|
-
}
|
|
1691
|
-
|
|
1692
|
-
.e-gantt .e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover {
|
|
1693
|
-
background-color: transparent;
|
|
1694
|
-
}
|
|
1695
|
-
|
|
1696
|
-
.e-gantt .e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover .e-icon-dlg-close {
|
|
1697
|
-
color: white;
|
|
1698
|
-
}
|
|
1699
|
-
|
|
1700
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header {
|
|
1701
|
-
background: #007bff;
|
|
1702
|
-
}
|
|
1703
|
-
|
|
1704
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-indicator {
|
|
1705
|
-
background: transparent;
|
|
1706
|
-
}
|
|
1707
|
-
|
|
1708
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
1709
|
-
background-color: #fff;
|
|
1710
|
-
}
|
|
1711
|
-
|
|
1712
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active .e-tab-wrap .e-tab-text {
|
|
1713
|
-
color: #495057;
|
|
1714
|
-
}
|
|
1715
|
-
|
|
1716
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
1717
|
-
border-color: transparent;
|
|
1718
|
-
}
|
|
1719
|
-
|
|
1720
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap .e-tab-text {
|
|
1721
|
-
color: #fff;
|
|
1722
|
-
}
|
|
1723
|
-
|
|
1724
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item:not(.e-active) .e-tab-wrap:hover {
|
|
1725
|
-
background: transparent;
|
|
1726
|
-
border-bottom: 0px;
|
|
1727
|
-
border-bottom-left-radius: 0px;
|
|
1728
|
-
border-bottom-right-radius: 0px;
|
|
1729
|
-
border-color: #dee2e6;
|
|
1730
|
-
}
|
|
1731
|
-
|
|
1732
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item:not(.e-active) .e-tab-wrap:hover .e-tab-text {
|
|
1733
|
-
color: #fff;
|
|
1734
|
-
}
|
|
1735
|
-
|
|
1736
1685
|
.e-gantt .e-temp-content {
|
|
1737
1686
|
border-color: #dee2e6;
|
|
1738
1687
|
}
|
|
@@ -2237,6 +2186,62 @@
|
|
|
2237
2186
|
color: #212529 !important;
|
|
2238
2187
|
}
|
|
2239
2188
|
|
|
2189
|
+
.e-gantt-dialog .e-dlg-header {
|
|
2190
|
+
color: #fff;
|
|
2191
|
+
}
|
|
2192
|
+
|
|
2193
|
+
.e-gantt-dialog .e-dlg-header-content {
|
|
2194
|
+
background: #007bff;
|
|
2195
|
+
}
|
|
2196
|
+
|
|
2197
|
+
.e-gantt-dialog .e-icon-dlg-close {
|
|
2198
|
+
color: rgba(255, 255, 255, 0.75);
|
|
2199
|
+
}
|
|
2200
|
+
|
|
2201
|
+
.e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover {
|
|
2202
|
+
background-color: transparent;
|
|
2203
|
+
}
|
|
2204
|
+
|
|
2205
|
+
.e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover .e-icon-dlg-close {
|
|
2206
|
+
color: white;
|
|
2207
|
+
}
|
|
2208
|
+
|
|
2209
|
+
.e-gantt-dialog .e-tab .e-tab-header {
|
|
2210
|
+
background: #007bff;
|
|
2211
|
+
}
|
|
2212
|
+
|
|
2213
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-indicator {
|
|
2214
|
+
background: transparent;
|
|
2215
|
+
}
|
|
2216
|
+
|
|
2217
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
2218
|
+
background-color: #fff;
|
|
2219
|
+
}
|
|
2220
|
+
|
|
2221
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active .e-tab-wrap .e-tab-text {
|
|
2222
|
+
color: #495057;
|
|
2223
|
+
}
|
|
2224
|
+
|
|
2225
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
2226
|
+
border-color: transparent;
|
|
2227
|
+
}
|
|
2228
|
+
|
|
2229
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap .e-tab-text {
|
|
2230
|
+
color: #fff;
|
|
2231
|
+
}
|
|
2232
|
+
|
|
2233
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item:not(.e-active) .e-tab-wrap:hover {
|
|
2234
|
+
background: transparent;
|
|
2235
|
+
border-bottom: 0px;
|
|
2236
|
+
border-bottom-left-radius: 0px;
|
|
2237
|
+
border-bottom-right-radius: 0px;
|
|
2238
|
+
border-color: #dee2e6;
|
|
2239
|
+
}
|
|
2240
|
+
|
|
2241
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item:not(.e-active) .e-tab-wrap:hover .e-tab-text {
|
|
2242
|
+
color: #fff;
|
|
2243
|
+
}
|
|
2244
|
+
|
|
2240
2245
|
.e-gantt.e-device .e-left-resize-gripper,
|
|
2241
2246
|
.e-gantt.e-device .e-right-resize-gripper {
|
|
2242
2247
|
border-color: #9e9e9e;
|