@syncfusion/ej2-gantt 19.3.46 → 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 +15 -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 +18 -10
- package/dist/es6/ej2-gantt.es2015.js.map +1 -1
- package/dist/es6/ej2-gantt.es5.js +18 -10
- 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 +13 -13
- package/src/gantt/actions/dialog-edit.js +6 -6
- package/src/gantt/actions/edit.js +3 -2
- package/src/gantt/base/date-processor.js +4 -1
- package/src/gantt/base/gantt.js +3 -0
- package/src/gantt/base/task-processor.js +1 -0
- package/src/gantt/base/utils.js +1 -1
- package/styles/bootstrap-dark.css +95 -99
- package/styles/bootstrap.css +95 -99
- package/styles/bootstrap4.css +95 -99
- package/styles/bootstrap5-dark.css +95 -99
- package/styles/bootstrap5.css +95 -99
- package/styles/fabric-dark.css +95 -99
- package/styles/fabric.css +95 -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 +94 -93
- 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 +95 -99
- package/styles/gantt/bootstrap.css +95 -99
- package/styles/gantt/bootstrap4.css +95 -99
- package/styles/gantt/bootstrap5-dark.css +95 -99
- package/styles/gantt/bootstrap5.css +95 -99
- package/styles/gantt/fabric-dark.css +95 -99
- package/styles/gantt/fabric.css +95 -99
- package/styles/gantt/highcontrast-light.css +95 -99
- package/styles/gantt/highcontrast.css +95 -99
- package/styles/gantt/material-dark.css +95 -99
- package/styles/gantt/material.css +95 -99
- package/styles/gantt/tailwind-dark.css +95 -99
- package/styles/gantt/tailwind.css +95 -99
- package/styles/highcontrast-light.css +95 -99
- package/styles/highcontrast.css +95 -99
- package/styles/material-dark.css +95 -99
- package/styles/material.css +95 -99
- package/styles/tailwind-dark.css +95 -99
- package/styles/tailwind.css +95 -99
|
@@ -750,23 +750,6 @@
|
|
|
750
750
|
border-color: transparent;
|
|
751
751
|
}
|
|
752
752
|
|
|
753
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header {
|
|
754
|
-
padding-left: 12px;
|
|
755
|
-
}
|
|
756
|
-
|
|
757
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-indicator {
|
|
758
|
-
display: block;
|
|
759
|
-
}
|
|
760
|
-
|
|
761
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
762
|
-
border-style: solid;
|
|
763
|
-
border-width: 1px;
|
|
764
|
-
}
|
|
765
|
-
|
|
766
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header:not(.e-vertical)::before {
|
|
767
|
-
border: 0;
|
|
768
|
-
}
|
|
769
|
-
|
|
770
753
|
.e-gantt .e-gantt-tree-grid-pane .e-grid {
|
|
771
754
|
border-width: 0;
|
|
772
755
|
}
|
|
@@ -1401,101 +1384,118 @@
|
|
|
1401
1384
|
outline-offset: 2px;
|
|
1402
1385
|
}
|
|
1403
1386
|
|
|
1404
|
-
.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 {
|
|
1405
1405
|
border: 0;
|
|
1406
1406
|
}
|
|
1407
1407
|
|
|
1408
|
-
.e-gantt
|
|
1408
|
+
.e-gantt-dialog .e-gridform .e-table {
|
|
1409
1409
|
border-spacing: 0;
|
|
1410
1410
|
}
|
|
1411
1411
|
|
|
1412
|
-
.e-gantt
|
|
1412
|
+
.e-gantt-dialog .e-item {
|
|
1413
1413
|
height: 241px;
|
|
1414
1414
|
}
|
|
1415
1415
|
|
|
1416
|
-
.e-gantt
|
|
1416
|
+
.e-gantt-dialog .e-dependent-div {
|
|
1417
1417
|
border-bottom-width: 0px;
|
|
1418
1418
|
}
|
|
1419
1419
|
|
|
1420
|
-
.e-gantt
|
|
1420
|
+
.e-gantt-dialog .e-icon-dlg-close {
|
|
1421
1421
|
opacity: initial;
|
|
1422
1422
|
}
|
|
1423
1423
|
|
|
1424
|
-
.e-gantt
|
|
1424
|
+
.e-gantt-dialog .e-toolbar {
|
|
1425
1425
|
border-top-width: 0;
|
|
1426
1426
|
}
|
|
1427
1427
|
|
|
1428
|
-
.e-gantt
|
|
1428
|
+
.e-gantt-dialog .e-resource-div {
|
|
1429
1429
|
border-bottom-width: 0px;
|
|
1430
1430
|
}
|
|
1431
1431
|
|
|
1432
|
-
.e-gantt
|
|
1432
|
+
.e-gantt-dialog .e-resource-div .e-gridheader {
|
|
1433
1433
|
border-top-width: 0;
|
|
1434
1434
|
}
|
|
1435
1435
|
|
|
1436
|
-
.e-gantt
|
|
1436
|
+
.e-gantt-dialog .e-edit-form-row {
|
|
1437
1437
|
height: 241px;
|
|
1438
1438
|
overflow-y: auto;
|
|
1439
1439
|
padding-bottom: 12px;
|
|
1440
1440
|
}
|
|
1441
1441
|
|
|
1442
|
-
.e-gantt
|
|
1442
|
+
.e-gantt-dialog .e-edit-form-column:nth-child(odd) {
|
|
1443
1443
|
float: left;
|
|
1444
1444
|
padding: 16px 18px 0 18px;
|
|
1445
1445
|
width: 50%;
|
|
1446
1446
|
}
|
|
1447
1447
|
|
|
1448
|
-
.e-gantt
|
|
1448
|
+
.e-gantt-dialog .e-edit-form-column:nth-child(even) {
|
|
1449
1449
|
float: left;
|
|
1450
1450
|
padding: 16px 16px 0 0;
|
|
1451
1451
|
width: 50%;
|
|
1452
1452
|
}
|
|
1453
1453
|
|
|
1454
|
-
.e-gantt
|
|
1454
|
+
.e-gantt-dialog .e-edit-form-row.e-scroll .e-edit-form-column:nth-child(even) {
|
|
1455
1455
|
padding: 16px 16px 0 0;
|
|
1456
1456
|
}
|
|
1457
1457
|
|
|
1458
|
-
.e-gantt
|
|
1458
|
+
.e-gantt-dialog .e-edit-form-column {
|
|
1459
1459
|
height: 75px;
|
|
1460
1460
|
}
|
|
1461
1461
|
|
|
1462
|
-
.e-gantt
|
|
1462
|
+
.e-gantt-dialog .e-dependent-div .e-content {
|
|
1463
1463
|
height: 161px;
|
|
1464
1464
|
}
|
|
1465
1465
|
|
|
1466
|
-
.e-gantt
|
|
1466
|
+
.e-gantt-dialog .e-resource-div .e-content {
|
|
1467
1467
|
height: 202px;
|
|
1468
1468
|
}
|
|
1469
1469
|
|
|
1470
|
-
.e-gantt
|
|
1470
|
+
.e-gantt-dialog .e-richtexteditor {
|
|
1471
1471
|
border-bottom-width: 0px;
|
|
1472
1472
|
height: 241px !important;
|
|
1473
1473
|
overflow: hidden;
|
|
1474
1474
|
}
|
|
1475
1475
|
|
|
1476
|
-
.e-gantt
|
|
1476
|
+
.e-gantt-dialog .e-richtexteditor.e-rte-tb-expand {
|
|
1477
1477
|
border-top: 0;
|
|
1478
1478
|
}
|
|
1479
1479
|
|
|
1480
|
-
.e-gantt
|
|
1480
|
+
.e-gantt-dialog .e-richtexteditor .e-rte-content {
|
|
1481
1481
|
border-bottom-width: 0px;
|
|
1482
1482
|
height: 200px;
|
|
1483
1483
|
}
|
|
1484
1484
|
|
|
1485
|
-
.e-gantt
|
|
1485
|
+
.e-gantt-dialog > .e-dlg-content {
|
|
1486
1486
|
padding: 0 !important;
|
|
1487
1487
|
}
|
|
1488
1488
|
|
|
1489
|
-
.e-gantt
|
|
1489
|
+
.e-gantt-dialog .e-dlg-header-content {
|
|
1490
1490
|
border-bottom: 0 !important;
|
|
1491
1491
|
}
|
|
1492
1492
|
|
|
1493
|
-
.e-gantt
|
|
1493
|
+
.e-gantt-dialog .e-dlg-header-content {
|
|
1494
1494
|
border-radius: 3px 3px 0px 0px;
|
|
1495
1495
|
padding-bottom: 20px;
|
|
1496
1496
|
}
|
|
1497
1497
|
|
|
1498
|
-
.e-gantt
|
|
1498
|
+
.e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
1499
1499
|
border-radius: 50%;
|
|
1500
1500
|
}
|
|
1501
1501
|
|
|
@@ -1651,10 +1651,6 @@
|
|
|
1651
1651
|
border-radius: 0px;
|
|
1652
1652
|
}
|
|
1653
1653
|
|
|
1654
|
-
.e-gantt .e-gantt-splitter-height {
|
|
1655
|
-
height: calc(100% - 38px) !important;
|
|
1656
|
-
}
|
|
1657
|
-
|
|
1658
1654
|
.e-gantt .e-cloneproperties.e-draganddrop {
|
|
1659
1655
|
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
|
1660
1656
|
opacity: .95;
|
|
@@ -1686,62 +1682,6 @@
|
|
|
1686
1682
|
box-shadow: 0 0 0 1px #66afe9 inset !important;
|
|
1687
1683
|
}
|
|
1688
1684
|
|
|
1689
|
-
.e-gantt .e-gantt-dialog .e-dlg-header {
|
|
1690
|
-
color: #fff;
|
|
1691
|
-
}
|
|
1692
|
-
|
|
1693
|
-
.e-gantt .e-gantt-dialog .e-dlg-header-content {
|
|
1694
|
-
background: #007bff;
|
|
1695
|
-
}
|
|
1696
|
-
|
|
1697
|
-
.e-gantt .e-gantt-dialog .e-icon-dlg-close {
|
|
1698
|
-
color: rgba(255, 255, 255, 0.75);
|
|
1699
|
-
}
|
|
1700
|
-
|
|
1701
|
-
.e-gantt .e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover {
|
|
1702
|
-
background-color: transparent;
|
|
1703
|
-
}
|
|
1704
|
-
|
|
1705
|
-
.e-gantt .e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover .e-icon-dlg-close {
|
|
1706
|
-
color: white;
|
|
1707
|
-
}
|
|
1708
|
-
|
|
1709
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header {
|
|
1710
|
-
background: #007bff;
|
|
1711
|
-
}
|
|
1712
|
-
|
|
1713
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-indicator {
|
|
1714
|
-
background: transparent;
|
|
1715
|
-
}
|
|
1716
|
-
|
|
1717
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
1718
|
-
background-color: #fff;
|
|
1719
|
-
}
|
|
1720
|
-
|
|
1721
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active .e-tab-wrap .e-tab-text {
|
|
1722
|
-
color: #495057;
|
|
1723
|
-
}
|
|
1724
|
-
|
|
1725
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
1726
|
-
border-color: transparent;
|
|
1727
|
-
}
|
|
1728
|
-
|
|
1729
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap .e-tab-text {
|
|
1730
|
-
color: #fff;
|
|
1731
|
-
}
|
|
1732
|
-
|
|
1733
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item:not(.e-active) .e-tab-wrap:hover {
|
|
1734
|
-
background: transparent;
|
|
1735
|
-
border-bottom: 0px;
|
|
1736
|
-
border-bottom-left-radius: 0px;
|
|
1737
|
-
border-bottom-right-radius: 0px;
|
|
1738
|
-
border-color: #dee2e6;
|
|
1739
|
-
}
|
|
1740
|
-
|
|
1741
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item:not(.e-active) .e-tab-wrap:hover .e-tab-text {
|
|
1742
|
-
color: #fff;
|
|
1743
|
-
}
|
|
1744
|
-
|
|
1745
1685
|
.e-gantt .e-temp-content {
|
|
1746
1686
|
border-color: #dee2e6;
|
|
1747
1687
|
}
|
|
@@ -2246,6 +2186,62 @@
|
|
|
2246
2186
|
color: #212529 !important;
|
|
2247
2187
|
}
|
|
2248
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
|
+
|
|
2249
2245
|
.e-gantt.e-device .e-left-resize-gripper,
|
|
2250
2246
|
.e-gantt.e-device .e-right-resize-gripper {
|
|
2251
2247
|
border-color: #9e9e9e;
|
|
@@ -415,23 +415,6 @@
|
|
|
415
415
|
border-color: transparent;
|
|
416
416
|
}
|
|
417
417
|
|
|
418
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header {
|
|
419
|
-
padding-left: 12px;
|
|
420
|
-
}
|
|
421
|
-
|
|
422
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-indicator {
|
|
423
|
-
display: block;
|
|
424
|
-
}
|
|
425
|
-
|
|
426
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
427
|
-
border-style: solid;
|
|
428
|
-
border-width: 1px;
|
|
429
|
-
}
|
|
430
|
-
|
|
431
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header:not(.e-vertical)::before {
|
|
432
|
-
border: 0;
|
|
433
|
-
}
|
|
434
|
-
|
|
435
418
|
.e-gantt .e-gantt-tree-grid-pane .e-grid {
|
|
436
419
|
border-width: 0;
|
|
437
420
|
}
|
|
@@ -1066,101 +1049,118 @@
|
|
|
1066
1049
|
outline-offset: 2px;
|
|
1067
1050
|
}
|
|
1068
1051
|
|
|
1069
|
-
.e-gantt .e-
|
|
1052
|
+
.e-gantt-dialog .e-tab .e-tab-header {
|
|
1053
|
+
padding-left: 12px;
|
|
1054
|
+
}
|
|
1055
|
+
|
|
1056
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-indicator {
|
|
1057
|
+
display: block;
|
|
1058
|
+
}
|
|
1059
|
+
|
|
1060
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
1061
|
+
border-style: solid;
|
|
1062
|
+
border-width: 1px;
|
|
1063
|
+
}
|
|
1064
|
+
|
|
1065
|
+
.e-gantt-dialog .e-tab .e-tab-header:not(.e-vertical)::before {
|
|
1066
|
+
border: 0;
|
|
1067
|
+
}
|
|
1068
|
+
|
|
1069
|
+
.e-gantt-dialog {
|
|
1070
1070
|
border: 0;
|
|
1071
1071
|
}
|
|
1072
1072
|
|
|
1073
|
-
.e-gantt
|
|
1073
|
+
.e-gantt-dialog .e-gridform .e-table {
|
|
1074
1074
|
border-spacing: 0;
|
|
1075
1075
|
}
|
|
1076
1076
|
|
|
1077
|
-
.e-gantt
|
|
1077
|
+
.e-gantt-dialog .e-item {
|
|
1078
1078
|
height: 241px;
|
|
1079
1079
|
}
|
|
1080
1080
|
|
|
1081
|
-
.e-gantt
|
|
1081
|
+
.e-gantt-dialog .e-dependent-div {
|
|
1082
1082
|
border-bottom-width: 0px;
|
|
1083
1083
|
}
|
|
1084
1084
|
|
|
1085
|
-
.e-gantt
|
|
1085
|
+
.e-gantt-dialog .e-icon-dlg-close {
|
|
1086
1086
|
opacity: initial;
|
|
1087
1087
|
}
|
|
1088
1088
|
|
|
1089
|
-
.e-gantt
|
|
1089
|
+
.e-gantt-dialog .e-toolbar {
|
|
1090
1090
|
border-top-width: 0;
|
|
1091
1091
|
}
|
|
1092
1092
|
|
|
1093
|
-
.e-gantt
|
|
1093
|
+
.e-gantt-dialog .e-resource-div {
|
|
1094
1094
|
border-bottom-width: 0px;
|
|
1095
1095
|
}
|
|
1096
1096
|
|
|
1097
|
-
.e-gantt
|
|
1097
|
+
.e-gantt-dialog .e-resource-div .e-gridheader {
|
|
1098
1098
|
border-top-width: 0;
|
|
1099
1099
|
}
|
|
1100
1100
|
|
|
1101
|
-
.e-gantt
|
|
1101
|
+
.e-gantt-dialog .e-edit-form-row {
|
|
1102
1102
|
height: 241px;
|
|
1103
1103
|
overflow-y: auto;
|
|
1104
1104
|
padding-bottom: 12px;
|
|
1105
1105
|
}
|
|
1106
1106
|
|
|
1107
|
-
.e-gantt
|
|
1107
|
+
.e-gantt-dialog .e-edit-form-column:nth-child(odd) {
|
|
1108
1108
|
float: left;
|
|
1109
1109
|
padding: 16px 18px 0 18px;
|
|
1110
1110
|
width: 50%;
|
|
1111
1111
|
}
|
|
1112
1112
|
|
|
1113
|
-
.e-gantt
|
|
1113
|
+
.e-gantt-dialog .e-edit-form-column:nth-child(even) {
|
|
1114
1114
|
float: left;
|
|
1115
1115
|
padding: 16px 16px 0 0;
|
|
1116
1116
|
width: 50%;
|
|
1117
1117
|
}
|
|
1118
1118
|
|
|
1119
|
-
.e-gantt
|
|
1119
|
+
.e-gantt-dialog .e-edit-form-row.e-scroll .e-edit-form-column:nth-child(even) {
|
|
1120
1120
|
padding: 16px 16px 0 0;
|
|
1121
1121
|
}
|
|
1122
1122
|
|
|
1123
|
-
.e-gantt
|
|
1123
|
+
.e-gantt-dialog .e-edit-form-column {
|
|
1124
1124
|
height: 75px;
|
|
1125
1125
|
}
|
|
1126
1126
|
|
|
1127
|
-
.e-gantt
|
|
1127
|
+
.e-gantt-dialog .e-dependent-div .e-content {
|
|
1128
1128
|
height: 161px;
|
|
1129
1129
|
}
|
|
1130
1130
|
|
|
1131
|
-
.e-gantt
|
|
1131
|
+
.e-gantt-dialog .e-resource-div .e-content {
|
|
1132
1132
|
height: 202px;
|
|
1133
1133
|
}
|
|
1134
1134
|
|
|
1135
|
-
.e-gantt
|
|
1135
|
+
.e-gantt-dialog .e-richtexteditor {
|
|
1136
1136
|
border-bottom-width: 0px;
|
|
1137
1137
|
height: 241px !important;
|
|
1138
1138
|
overflow: hidden;
|
|
1139
1139
|
}
|
|
1140
1140
|
|
|
1141
|
-
.e-gantt
|
|
1141
|
+
.e-gantt-dialog .e-richtexteditor.e-rte-tb-expand {
|
|
1142
1142
|
border-top: 0;
|
|
1143
1143
|
}
|
|
1144
1144
|
|
|
1145
|
-
.e-gantt
|
|
1145
|
+
.e-gantt-dialog .e-richtexteditor .e-rte-content {
|
|
1146
1146
|
border-bottom-width: 0px;
|
|
1147
1147
|
height: 200px;
|
|
1148
1148
|
}
|
|
1149
1149
|
|
|
1150
|
-
.e-gantt
|
|
1150
|
+
.e-gantt-dialog > .e-dlg-content {
|
|
1151
1151
|
padding: 0 !important;
|
|
1152
1152
|
}
|
|
1153
1153
|
|
|
1154
|
-
.e-gantt
|
|
1154
|
+
.e-gantt-dialog .e-dlg-header-content {
|
|
1155
1155
|
border-bottom: 0 !important;
|
|
1156
1156
|
}
|
|
1157
1157
|
|
|
1158
|
-
.e-gantt
|
|
1158
|
+
.e-gantt-dialog .e-dlg-header-content {
|
|
1159
1159
|
border-radius: 3px 3px 0px 0px;
|
|
1160
1160
|
padding-bottom: 20px;
|
|
1161
1161
|
}
|
|
1162
1162
|
|
|
1163
|
-
.e-gantt
|
|
1163
|
+
.e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
1164
1164
|
border-radius: 50%;
|
|
1165
1165
|
}
|
|
1166
1166
|
|
|
@@ -1316,10 +1316,6 @@
|
|
|
1316
1316
|
border-radius: 0px;
|
|
1317
1317
|
}
|
|
1318
1318
|
|
|
1319
|
-
.e-gantt .e-gantt-splitter-height {
|
|
1320
|
-
height: calc(100% - 37px) !important;
|
|
1321
|
-
}
|
|
1322
|
-
|
|
1323
1319
|
.e-gantt .e-cloneproperties.e-draganddrop {
|
|
1324
1320
|
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
|
1325
1321
|
opacity: .95;
|
|
@@ -1351,62 +1347,6 @@
|
|
|
1351
1347
|
box-shadow: 0 0 0 1px #6c757d inset !important;
|
|
1352
1348
|
}
|
|
1353
1349
|
|
|
1354
|
-
.e-gantt .e-gantt-dialog .e-dlg-header {
|
|
1355
|
-
color: #fff;
|
|
1356
|
-
}
|
|
1357
|
-
|
|
1358
|
-
.e-gantt .e-gantt-dialog .e-dlg-header-content {
|
|
1359
|
-
background: #282d31;
|
|
1360
|
-
}
|
|
1361
|
-
|
|
1362
|
-
.e-gantt .e-gantt-dialog .e-icon-dlg-close {
|
|
1363
|
-
color: #adb5bd;
|
|
1364
|
-
}
|
|
1365
|
-
|
|
1366
|
-
.e-gantt .e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover {
|
|
1367
|
-
background-color: #282d31;
|
|
1368
|
-
}
|
|
1369
|
-
|
|
1370
|
-
.e-gantt .e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover .e-icon-dlg-close {
|
|
1371
|
-
color: #adb5bd;
|
|
1372
|
-
}
|
|
1373
|
-
|
|
1374
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header {
|
|
1375
|
-
background: #282d31;
|
|
1376
|
-
}
|
|
1377
|
-
|
|
1378
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-indicator {
|
|
1379
|
-
background: #0d6efd;
|
|
1380
|
-
}
|
|
1381
|
-
|
|
1382
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
1383
|
-
background-color: transparent;
|
|
1384
|
-
}
|
|
1385
|
-
|
|
1386
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active .e-tab-wrap .e-tab-text {
|
|
1387
|
-
color: #0d6efd;
|
|
1388
|
-
}
|
|
1389
|
-
|
|
1390
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
1391
|
-
border-color: transparent;
|
|
1392
|
-
}
|
|
1393
|
-
|
|
1394
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap .e-tab-text {
|
|
1395
|
-
color: #ced4da;
|
|
1396
|
-
}
|
|
1397
|
-
|
|
1398
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item:not(.e-active) .e-tab-wrap:hover {
|
|
1399
|
-
background: transparent;
|
|
1400
|
-
border-bottom: 0px;
|
|
1401
|
-
border-bottom-left-radius: 0px;
|
|
1402
|
-
border-bottom-right-radius: 0px;
|
|
1403
|
-
border-color: transparent;
|
|
1404
|
-
}
|
|
1405
|
-
|
|
1406
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item:not(.e-active) .e-tab-wrap:hover .e-tab-text {
|
|
1407
|
-
color: #ced4da;
|
|
1408
|
-
}
|
|
1409
|
-
|
|
1410
1350
|
.e-gantt .e-temp-content {
|
|
1411
1351
|
border-color: #444c54;
|
|
1412
1352
|
}
|
|
@@ -1911,6 +1851,62 @@
|
|
|
1911
1851
|
color: #6c757d !important;
|
|
1912
1852
|
}
|
|
1913
1853
|
|
|
1854
|
+
.e-gantt-dialog .e-dlg-header {
|
|
1855
|
+
color: #fff;
|
|
1856
|
+
}
|
|
1857
|
+
|
|
1858
|
+
.e-gantt-dialog .e-dlg-header-content {
|
|
1859
|
+
background: #282d31;
|
|
1860
|
+
}
|
|
1861
|
+
|
|
1862
|
+
.e-gantt-dialog .e-icon-dlg-close {
|
|
1863
|
+
color: #adb5bd;
|
|
1864
|
+
}
|
|
1865
|
+
|
|
1866
|
+
.e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover {
|
|
1867
|
+
background-color: #282d31;
|
|
1868
|
+
}
|
|
1869
|
+
|
|
1870
|
+
.e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover .e-icon-dlg-close {
|
|
1871
|
+
color: #adb5bd;
|
|
1872
|
+
}
|
|
1873
|
+
|
|
1874
|
+
.e-gantt-dialog .e-tab .e-tab-header {
|
|
1875
|
+
background: #282d31;
|
|
1876
|
+
}
|
|
1877
|
+
|
|
1878
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-indicator {
|
|
1879
|
+
background: #0d6efd;
|
|
1880
|
+
}
|
|
1881
|
+
|
|
1882
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
1883
|
+
background-color: transparent;
|
|
1884
|
+
}
|
|
1885
|
+
|
|
1886
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active .e-tab-wrap .e-tab-text {
|
|
1887
|
+
color: #0d6efd;
|
|
1888
|
+
}
|
|
1889
|
+
|
|
1890
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
1891
|
+
border-color: transparent;
|
|
1892
|
+
}
|
|
1893
|
+
|
|
1894
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap .e-tab-text {
|
|
1895
|
+
color: #ced4da;
|
|
1896
|
+
}
|
|
1897
|
+
|
|
1898
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item:not(.e-active) .e-tab-wrap:hover {
|
|
1899
|
+
background: transparent;
|
|
1900
|
+
border-bottom: 0px;
|
|
1901
|
+
border-bottom-left-radius: 0px;
|
|
1902
|
+
border-bottom-right-radius: 0px;
|
|
1903
|
+
border-color: transparent;
|
|
1904
|
+
}
|
|
1905
|
+
|
|
1906
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item:not(.e-active) .e-tab-wrap:hover .e-tab-text {
|
|
1907
|
+
color: #ced4da;
|
|
1908
|
+
}
|
|
1909
|
+
|
|
1914
1910
|
.e-gantt.e-device .e-left-resize-gripper,
|
|
1915
1911
|
.e-gantt.e-device .e-right-resize-gripper {
|
|
1916
1912
|
border-color: #6c757d;
|