@syncfusion/ej2-gantt 19.3.44 → 19.3.48
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 +45 -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 +93 -28
- package/dist/es6/ej2-gantt.es2015.js.map +1 -1
- package/dist/es6/ej2-gantt.es5.js +146 -71
- 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 +17 -17
- package/src/gantt/actions/cell-edit.js +1 -0
- package/src/gantt/actions/context-menu.js +5 -0
- package/src/gantt/actions/dialog-edit.js +6 -6
- package/src/gantt/actions/edit.js +7 -3
- package/src/gantt/actions/rowdragdrop.js +74 -41
- package/src/gantt/actions/taskbar-edit.js +3 -1
- 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-dark.scss +1 -0
- package/styles/gantt/bootstrap5.css +104 -99
- package/styles/gantt/bootstrap5.scss +1 -0
- 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
|
@@ -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;
|
|
@@ -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: 0px;
|
|
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: 0px;
|
|
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
|
}
|
|
@@ -770,6 +753,10 @@
|
|
|
770
753
|
user-select: none;
|
|
771
754
|
}
|
|
772
755
|
|
|
756
|
+
.e-gantt .e-gantt-chart .e-chart-rows-container {
|
|
757
|
+
line-height: initial;
|
|
758
|
+
}
|
|
759
|
+
|
|
773
760
|
.e-gantt .e-gantt-chart .e-taskbar-left-resizer,
|
|
774
761
|
.e-gantt .e-gantt-chart .e-taskbar-right-resizer {
|
|
775
762
|
display: inline-block;
|
|
@@ -1062,101 +1049,118 @@
|
|
|
1062
1049
|
outline-offset: 2px;
|
|
1063
1050
|
}
|
|
1064
1051
|
|
|
1065
|
-
.e-gantt .e-
|
|
1052
|
+
.e-gantt-dialog .e-tab .e-tab-header {
|
|
1053
|
+
padding-left: 0px;
|
|
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: 0px;
|
|
1063
|
+
}
|
|
1064
|
+
|
|
1065
|
+
.e-gantt-dialog .e-tab .e-tab-header:not(.e-vertical)::before {
|
|
1066
1066
|
border: 0;
|
|
1067
1067
|
}
|
|
1068
1068
|
|
|
1069
|
-
.e-gantt
|
|
1069
|
+
.e-gantt-dialog {
|
|
1070
|
+
border: 0;
|
|
1071
|
+
}
|
|
1072
|
+
|
|
1073
|
+
.e-gantt-dialog .e-gridform .e-table {
|
|
1070
1074
|
border-spacing: 0;
|
|
1071
1075
|
}
|
|
1072
1076
|
|
|
1073
|
-
.e-gantt
|
|
1077
|
+
.e-gantt-dialog .e-item {
|
|
1074
1078
|
height: 241px;
|
|
1075
1079
|
}
|
|
1076
1080
|
|
|
1077
|
-
.e-gantt
|
|
1081
|
+
.e-gantt-dialog .e-dependent-div {
|
|
1078
1082
|
border-bottom-width: 1px;
|
|
1079
1083
|
}
|
|
1080
1084
|
|
|
1081
|
-
.e-gantt
|
|
1085
|
+
.e-gantt-dialog .e-icon-dlg-close {
|
|
1082
1086
|
opacity: initial;
|
|
1083
1087
|
}
|
|
1084
1088
|
|
|
1085
|
-
.e-gantt
|
|
1089
|
+
.e-gantt-dialog .e-toolbar {
|
|
1086
1090
|
border-top-width: 0;
|
|
1087
1091
|
}
|
|
1088
1092
|
|
|
1089
|
-
.e-gantt
|
|
1093
|
+
.e-gantt-dialog .e-resource-div {
|
|
1090
1094
|
border-bottom-width: 1px;
|
|
1091
1095
|
}
|
|
1092
1096
|
|
|
1093
|
-
.e-gantt
|
|
1097
|
+
.e-gantt-dialog .e-resource-div .e-gridheader {
|
|
1094
1098
|
border-top-width: 0;
|
|
1095
1099
|
}
|
|
1096
1100
|
|
|
1097
|
-
.e-gantt
|
|
1101
|
+
.e-gantt-dialog .e-edit-form-row {
|
|
1098
1102
|
height: 241px;
|
|
1099
1103
|
overflow-y: auto;
|
|
1100
1104
|
padding-bottom: 16px;
|
|
1101
1105
|
}
|
|
1102
1106
|
|
|
1103
|
-
.e-gantt
|
|
1107
|
+
.e-gantt-dialog .e-edit-form-column:nth-child(odd) {
|
|
1104
1108
|
float: left;
|
|
1105
1109
|
padding: 16px 18px 0 18px;
|
|
1106
1110
|
width: 50%;
|
|
1107
1111
|
}
|
|
1108
1112
|
|
|
1109
|
-
.e-gantt
|
|
1113
|
+
.e-gantt-dialog .e-edit-form-column:nth-child(even) {
|
|
1110
1114
|
float: left;
|
|
1111
1115
|
padding: 16px 16px 0 0;
|
|
1112
1116
|
width: 50%;
|
|
1113
1117
|
}
|
|
1114
1118
|
|
|
1115
|
-
.e-gantt
|
|
1119
|
+
.e-gantt-dialog .e-edit-form-row.e-scroll .e-edit-form-column:nth-child(even) {
|
|
1116
1120
|
padding: 16px 16px 0 0;
|
|
1117
1121
|
}
|
|
1118
1122
|
|
|
1119
|
-
.e-gantt
|
|
1123
|
+
.e-gantt-dialog .e-edit-form-column {
|
|
1120
1124
|
height: 75px;
|
|
1121
1125
|
}
|
|
1122
1126
|
|
|
1123
|
-
.e-gantt
|
|
1127
|
+
.e-gantt-dialog .e-dependent-div .e-content {
|
|
1124
1128
|
height: 153px;
|
|
1125
1129
|
}
|
|
1126
1130
|
|
|
1127
|
-
.e-gantt
|
|
1131
|
+
.e-gantt-dialog .e-resource-div .e-content {
|
|
1128
1132
|
height: 196px;
|
|
1129
1133
|
}
|
|
1130
1134
|
|
|
1131
|
-
.e-gantt
|
|
1135
|
+
.e-gantt-dialog .e-richtexteditor {
|
|
1132
1136
|
border-bottom-width: 1px;
|
|
1133
1137
|
height: 241px !important;
|
|
1134
1138
|
overflow: hidden;
|
|
1135
1139
|
}
|
|
1136
1140
|
|
|
1137
|
-
.e-gantt
|
|
1141
|
+
.e-gantt-dialog .e-richtexteditor.e-rte-tb-expand {
|
|
1138
1142
|
border-top: 0;
|
|
1139
1143
|
}
|
|
1140
1144
|
|
|
1141
|
-
.e-gantt
|
|
1145
|
+
.e-gantt-dialog .e-richtexteditor .e-rte-content {
|
|
1142
1146
|
border-bottom-width: 0px;
|
|
1143
1147
|
height: 198px;
|
|
1144
1148
|
}
|
|
1145
1149
|
|
|
1146
|
-
.e-gantt
|
|
1150
|
+
.e-gantt-dialog > .e-dlg-content {
|
|
1147
1151
|
padding: 0 !important;
|
|
1148
1152
|
}
|
|
1149
1153
|
|
|
1150
|
-
.e-gantt
|
|
1154
|
+
.e-gantt-dialog .e-dlg-header-content {
|
|
1151
1155
|
border-bottom: 0 !important;
|
|
1152
1156
|
}
|
|
1153
1157
|
|
|
1154
|
-
.e-gantt
|
|
1158
|
+
.e-gantt-dialog .e-dlg-header-content {
|
|
1155
1159
|
border-radius: 0px;
|
|
1156
1160
|
padding-bottom: 4px;
|
|
1157
1161
|
}
|
|
1158
1162
|
|
|
1159
|
-
.e-gantt
|
|
1163
|
+
.e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
1160
1164
|
border-radius: 50%;
|
|
1161
1165
|
}
|
|
1162
1166
|
|
|
@@ -1312,10 +1316,6 @@
|
|
|
1312
1316
|
border-radius: 0px;
|
|
1313
1317
|
}
|
|
1314
1318
|
|
|
1315
|
-
.e-gantt .e-gantt-splitter-height {
|
|
1316
|
-
height: calc(100% - 42px) !important;
|
|
1317
|
-
}
|
|
1318
|
-
|
|
1319
1319
|
.e-gantt .e-cloneproperties.e-draganddrop {
|
|
1320
1320
|
box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.26);
|
|
1321
1321
|
opacity: .95;
|
|
@@ -1347,62 +1347,6 @@
|
|
|
1347
1347
|
box-shadow: 0 0 0 1px #9e9e9e inset !important;
|
|
1348
1348
|
}
|
|
1349
1349
|
|
|
1350
|
-
.e-gantt .e-gantt-dialog .e-dlg-header {
|
|
1351
|
-
color: #fff;
|
|
1352
|
-
}
|
|
1353
|
-
|
|
1354
|
-
.e-gantt .e-gantt-dialog .e-dlg-header-content {
|
|
1355
|
-
background: #3f51b5;
|
|
1356
|
-
}
|
|
1357
|
-
|
|
1358
|
-
.e-gantt .e-gantt-dialog .e-icon-dlg-close {
|
|
1359
|
-
color: #fff;
|
|
1360
|
-
}
|
|
1361
|
-
|
|
1362
|
-
.e-gantt .e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover {
|
|
1363
|
-
background-color: rgba(255, 255, 255, 0.15);
|
|
1364
|
-
}
|
|
1365
|
-
|
|
1366
|
-
.e-gantt .e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover .e-icon-dlg-close {
|
|
1367
|
-
color: black;
|
|
1368
|
-
}
|
|
1369
|
-
|
|
1370
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header {
|
|
1371
|
-
background: #3f51b5;
|
|
1372
|
-
}
|
|
1373
|
-
|
|
1374
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-indicator {
|
|
1375
|
-
background: #e3165b;
|
|
1376
|
-
}
|
|
1377
|
-
|
|
1378
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
1379
|
-
background-color: transparent;
|
|
1380
|
-
}
|
|
1381
|
-
|
|
1382
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active .e-tab-wrap .e-tab-text {
|
|
1383
|
-
color: #fff;
|
|
1384
|
-
}
|
|
1385
|
-
|
|
1386
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
1387
|
-
border-color: transparent;
|
|
1388
|
-
}
|
|
1389
|
-
|
|
1390
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap .e-tab-text {
|
|
1391
|
-
color: rgba(255, 255, 255, 0.64);
|
|
1392
|
-
}
|
|
1393
|
-
|
|
1394
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item:not(.e-active) .e-tab-wrap:hover {
|
|
1395
|
-
background: transparent;
|
|
1396
|
-
border-bottom: 0px;
|
|
1397
|
-
border-bottom-left-radius: 0px;
|
|
1398
|
-
border-bottom-right-radius: 0px;
|
|
1399
|
-
border-color: transparent;
|
|
1400
|
-
}
|
|
1401
|
-
|
|
1402
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item:not(.e-active) .e-tab-wrap:hover .e-tab-text {
|
|
1403
|
-
color: #e3165b;
|
|
1404
|
-
}
|
|
1405
|
-
|
|
1406
1350
|
.e-gantt .e-temp-content {
|
|
1407
1351
|
border-color: #e0e0e0;
|
|
1408
1352
|
}
|
|
@@ -1907,6 +1851,62 @@
|
|
|
1907
1851
|
color: rgba(0, 0, 0, 0.54) !important;
|
|
1908
1852
|
}
|
|
1909
1853
|
|
|
1854
|
+
.e-gantt-dialog .e-dlg-header {
|
|
1855
|
+
color: #fff;
|
|
1856
|
+
}
|
|
1857
|
+
|
|
1858
|
+
.e-gantt-dialog .e-dlg-header-content {
|
|
1859
|
+
background: #3f51b5;
|
|
1860
|
+
}
|
|
1861
|
+
|
|
1862
|
+
.e-gantt-dialog .e-icon-dlg-close {
|
|
1863
|
+
color: #fff;
|
|
1864
|
+
}
|
|
1865
|
+
|
|
1866
|
+
.e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover {
|
|
1867
|
+
background-color: rgba(255, 255, 255, 0.15);
|
|
1868
|
+
}
|
|
1869
|
+
|
|
1870
|
+
.e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover .e-icon-dlg-close {
|
|
1871
|
+
color: black;
|
|
1872
|
+
}
|
|
1873
|
+
|
|
1874
|
+
.e-gantt-dialog .e-tab .e-tab-header {
|
|
1875
|
+
background: #3f51b5;
|
|
1876
|
+
}
|
|
1877
|
+
|
|
1878
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-indicator {
|
|
1879
|
+
background: #e3165b;
|
|
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: #fff;
|
|
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: rgba(255, 255, 255, 0.64);
|
|
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: #e3165b;
|
|
1908
|
+
}
|
|
1909
|
+
|
|
1910
1910
|
.e-gantt.e-device .e-left-resize-gripper,
|
|
1911
1911
|
.e-gantt.e-device .e-right-resize-gripper {
|
|
1912
1912
|
border-color: #9e9e9e;
|