@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
|
@@ -337,23 +337,6 @@
|
|
|
337
337
|
border-color: transparent;
|
|
338
338
|
}
|
|
339
339
|
|
|
340
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header {
|
|
341
|
-
padding-left: 13px;
|
|
342
|
-
}
|
|
343
|
-
|
|
344
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-indicator {
|
|
345
|
-
display: block;
|
|
346
|
-
}
|
|
347
|
-
|
|
348
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
349
|
-
border-style: solid;
|
|
350
|
-
border-width: 0px;
|
|
351
|
-
}
|
|
352
|
-
|
|
353
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header:not(.e-vertical)::before {
|
|
354
|
-
border: 0;
|
|
355
|
-
}
|
|
356
|
-
|
|
357
340
|
.e-gantt .e-gantt-tree-grid-pane .e-grid {
|
|
358
341
|
border-width: 0;
|
|
359
342
|
}
|
|
@@ -692,6 +675,10 @@
|
|
|
692
675
|
user-select: none;
|
|
693
676
|
}
|
|
694
677
|
|
|
678
|
+
.e-gantt .e-gantt-chart .e-chart-rows-container {
|
|
679
|
+
line-height: initial;
|
|
680
|
+
}
|
|
681
|
+
|
|
695
682
|
.e-gantt .e-gantt-chart .e-taskbar-left-resizer,
|
|
696
683
|
.e-gantt .e-gantt-chart .e-taskbar-right-resizer {
|
|
697
684
|
display: inline-block;
|
|
@@ -984,101 +971,118 @@
|
|
|
984
971
|
outline-offset: 2px;
|
|
985
972
|
}
|
|
986
973
|
|
|
987
|
-
.e-gantt .e-
|
|
974
|
+
.e-gantt-dialog .e-tab .e-tab-header {
|
|
975
|
+
padding-left: 13px;
|
|
976
|
+
}
|
|
977
|
+
|
|
978
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-indicator {
|
|
979
|
+
display: block;
|
|
980
|
+
}
|
|
981
|
+
|
|
982
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
983
|
+
border-style: solid;
|
|
984
|
+
border-width: 0px;
|
|
985
|
+
}
|
|
986
|
+
|
|
987
|
+
.e-gantt-dialog .e-tab .e-tab-header:not(.e-vertical)::before {
|
|
988
988
|
border: 0;
|
|
989
989
|
}
|
|
990
990
|
|
|
991
|
-
.e-gantt
|
|
991
|
+
.e-gantt-dialog {
|
|
992
|
+
border: 0;
|
|
993
|
+
}
|
|
994
|
+
|
|
995
|
+
.e-gantt-dialog .e-gridform .e-table {
|
|
992
996
|
border-spacing: 0;
|
|
993
997
|
}
|
|
994
998
|
|
|
995
|
-
.e-gantt
|
|
999
|
+
.e-gantt-dialog .e-item {
|
|
996
1000
|
height: 241px;
|
|
997
1001
|
}
|
|
998
1002
|
|
|
999
|
-
.e-gantt
|
|
1003
|
+
.e-gantt-dialog .e-dependent-div {
|
|
1000
1004
|
border-bottom-width: 1px;
|
|
1001
1005
|
}
|
|
1002
1006
|
|
|
1003
|
-
.e-gantt
|
|
1007
|
+
.e-gantt-dialog .e-icon-dlg-close {
|
|
1004
1008
|
opacity: initial;
|
|
1005
1009
|
}
|
|
1006
1010
|
|
|
1007
|
-
.e-gantt
|
|
1011
|
+
.e-gantt-dialog .e-toolbar {
|
|
1008
1012
|
border-top-width: 0;
|
|
1009
1013
|
}
|
|
1010
1014
|
|
|
1011
|
-
.e-gantt
|
|
1015
|
+
.e-gantt-dialog .e-resource-div {
|
|
1012
1016
|
border-bottom-width: 1px;
|
|
1013
1017
|
}
|
|
1014
1018
|
|
|
1015
|
-
.e-gantt
|
|
1019
|
+
.e-gantt-dialog .e-resource-div .e-gridheader {
|
|
1016
1020
|
border-top-width: 0;
|
|
1017
1021
|
}
|
|
1018
1022
|
|
|
1019
|
-
.e-gantt
|
|
1023
|
+
.e-gantt-dialog .e-edit-form-row {
|
|
1020
1024
|
height: 241px;
|
|
1021
1025
|
overflow-y: auto;
|
|
1022
1026
|
padding-bottom: 16px;
|
|
1023
1027
|
}
|
|
1024
1028
|
|
|
1025
|
-
.e-gantt
|
|
1029
|
+
.e-gantt-dialog .e-edit-form-column:nth-child(odd) {
|
|
1026
1030
|
float: left;
|
|
1027
1031
|
padding: 15px 20px 0 18px;
|
|
1028
1032
|
width: 50%;
|
|
1029
1033
|
}
|
|
1030
1034
|
|
|
1031
|
-
.e-gantt
|
|
1035
|
+
.e-gantt-dialog .e-edit-form-column:nth-child(even) {
|
|
1032
1036
|
float: left;
|
|
1033
1037
|
padding: 16px 16px 0 0;
|
|
1034
1038
|
width: 50%;
|
|
1035
1039
|
}
|
|
1036
1040
|
|
|
1037
|
-
.e-gantt
|
|
1041
|
+
.e-gantt-dialog .e-edit-form-row.e-scroll .e-edit-form-column:nth-child(even) {
|
|
1038
1042
|
padding: 16px 16px 0 0;
|
|
1039
1043
|
}
|
|
1040
1044
|
|
|
1041
|
-
.e-gantt
|
|
1045
|
+
.e-gantt-dialog .e-edit-form-column {
|
|
1042
1046
|
height: 75px;
|
|
1043
1047
|
}
|
|
1044
1048
|
|
|
1045
|
-
.e-gantt
|
|
1049
|
+
.e-gantt-dialog .e-dependent-div .e-content {
|
|
1046
1050
|
height: 161px;
|
|
1047
1051
|
}
|
|
1048
1052
|
|
|
1049
|
-
.e-gantt
|
|
1053
|
+
.e-gantt-dialog .e-resource-div .e-content {
|
|
1050
1054
|
height: 202px;
|
|
1051
1055
|
}
|
|
1052
1056
|
|
|
1053
|
-
.e-gantt
|
|
1057
|
+
.e-gantt-dialog .e-richtexteditor {
|
|
1054
1058
|
border-bottom-width: 1px;
|
|
1055
1059
|
height: 241px !important;
|
|
1056
1060
|
overflow: hidden;
|
|
1057
1061
|
}
|
|
1058
1062
|
|
|
1059
|
-
.e-gantt
|
|
1063
|
+
.e-gantt-dialog .e-richtexteditor.e-rte-tb-expand {
|
|
1060
1064
|
border-top: 0;
|
|
1061
1065
|
}
|
|
1062
1066
|
|
|
1063
|
-
.e-gantt
|
|
1067
|
+
.e-gantt-dialog .e-richtexteditor .e-rte-content {
|
|
1064
1068
|
border-bottom-width: 0px;
|
|
1065
1069
|
height: 200px;
|
|
1066
1070
|
}
|
|
1067
1071
|
|
|
1068
|
-
.e-gantt
|
|
1072
|
+
.e-gantt-dialog > .e-dlg-content {
|
|
1069
1073
|
padding: 0 !important;
|
|
1070
1074
|
}
|
|
1071
1075
|
|
|
1072
|
-
.e-gantt
|
|
1076
|
+
.e-gantt-dialog .e-dlg-header-content {
|
|
1073
1077
|
border-bottom: 0 !important;
|
|
1074
1078
|
}
|
|
1075
1079
|
|
|
1076
|
-
.e-gantt
|
|
1080
|
+
.e-gantt-dialog .e-dlg-header-content {
|
|
1077
1081
|
border-radius: 0px;
|
|
1078
1082
|
padding-bottom: 4px;
|
|
1079
1083
|
}
|
|
1080
1084
|
|
|
1081
|
-
.e-gantt
|
|
1085
|
+
.e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
1082
1086
|
border-radius: 50%;
|
|
1083
1087
|
}
|
|
1084
1088
|
|
|
@@ -1234,10 +1238,6 @@
|
|
|
1234
1238
|
border-radius: 0px;
|
|
1235
1239
|
}
|
|
1236
1240
|
|
|
1237
|
-
.e-gantt .e-gantt-splitter-height {
|
|
1238
|
-
height: calc(100% - 40px) !important;
|
|
1239
|
-
}
|
|
1240
|
-
|
|
1241
1241
|
.e-gantt .e-cloneproperties.e-draganddrop {
|
|
1242
1242
|
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.26);
|
|
1243
1243
|
opacity: .95;
|
|
@@ -1269,62 +1269,6 @@
|
|
|
1269
1269
|
box-shadow: 0 0 0 1px #dadada inset !important;
|
|
1270
1270
|
}
|
|
1271
1271
|
|
|
1272
|
-
.e-gantt .e-gantt-dialog .e-dlg-header {
|
|
1273
|
-
color: #fff;
|
|
1274
|
-
}
|
|
1275
|
-
|
|
1276
|
-
.e-gantt .e-gantt-dialog .e-dlg-header-content {
|
|
1277
|
-
background: #0074cc;
|
|
1278
|
-
}
|
|
1279
|
-
|
|
1280
|
-
.e-gantt .e-gantt-dialog .e-icon-dlg-close {
|
|
1281
|
-
color: #fff;
|
|
1282
|
-
}
|
|
1283
|
-
|
|
1284
|
-
.e-gantt .e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover {
|
|
1285
|
-
background-color: #eaeaea;
|
|
1286
|
-
}
|
|
1287
|
-
|
|
1288
|
-
.e-gantt .e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover .e-icon-dlg-close {
|
|
1289
|
-
color: #0074cc;
|
|
1290
|
-
}
|
|
1291
|
-
|
|
1292
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header {
|
|
1293
|
-
background: #0074cc;
|
|
1294
|
-
}
|
|
1295
|
-
|
|
1296
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-indicator {
|
|
1297
|
-
background: #fff;
|
|
1298
|
-
}
|
|
1299
|
-
|
|
1300
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
1301
|
-
background-color: transparent;
|
|
1302
|
-
}
|
|
1303
|
-
|
|
1304
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active .e-tab-wrap .e-tab-text {
|
|
1305
|
-
color: #fff;
|
|
1306
|
-
}
|
|
1307
|
-
|
|
1308
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
1309
|
-
border-color: transparent;
|
|
1310
|
-
}
|
|
1311
|
-
|
|
1312
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap .e-tab-text {
|
|
1313
|
-
color: #fff;
|
|
1314
|
-
}
|
|
1315
|
-
|
|
1316
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item:not(.e-active) .e-tab-wrap:hover {
|
|
1317
|
-
background: transparent;
|
|
1318
|
-
border-bottom: 0px;
|
|
1319
|
-
border-bottom-left-radius: 0px;
|
|
1320
|
-
border-bottom-right-radius: 0px;
|
|
1321
|
-
border-color: transparent;
|
|
1322
|
-
}
|
|
1323
|
-
|
|
1324
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item:not(.e-active) .e-tab-wrap:hover .e-tab-text {
|
|
1325
|
-
color: #f0f0f0;
|
|
1326
|
-
}
|
|
1327
|
-
|
|
1328
1272
|
.e-gantt .e-temp-content {
|
|
1329
1273
|
border-color: #414040;
|
|
1330
1274
|
}
|
|
@@ -1829,6 +1773,62 @@
|
|
|
1829
1773
|
color: #dadada !important;
|
|
1830
1774
|
}
|
|
1831
1775
|
|
|
1776
|
+
.e-gantt-dialog .e-dlg-header {
|
|
1777
|
+
color: #fff;
|
|
1778
|
+
}
|
|
1779
|
+
|
|
1780
|
+
.e-gantt-dialog .e-dlg-header-content {
|
|
1781
|
+
background: #0074cc;
|
|
1782
|
+
}
|
|
1783
|
+
|
|
1784
|
+
.e-gantt-dialog .e-icon-dlg-close {
|
|
1785
|
+
color: #fff;
|
|
1786
|
+
}
|
|
1787
|
+
|
|
1788
|
+
.e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover {
|
|
1789
|
+
background-color: #eaeaea;
|
|
1790
|
+
}
|
|
1791
|
+
|
|
1792
|
+
.e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover .e-icon-dlg-close {
|
|
1793
|
+
color: #0074cc;
|
|
1794
|
+
}
|
|
1795
|
+
|
|
1796
|
+
.e-gantt-dialog .e-tab .e-tab-header {
|
|
1797
|
+
background: #0074cc;
|
|
1798
|
+
}
|
|
1799
|
+
|
|
1800
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-indicator {
|
|
1801
|
+
background: #fff;
|
|
1802
|
+
}
|
|
1803
|
+
|
|
1804
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
1805
|
+
background-color: transparent;
|
|
1806
|
+
}
|
|
1807
|
+
|
|
1808
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active .e-tab-wrap .e-tab-text {
|
|
1809
|
+
color: #fff;
|
|
1810
|
+
}
|
|
1811
|
+
|
|
1812
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
1813
|
+
border-color: transparent;
|
|
1814
|
+
}
|
|
1815
|
+
|
|
1816
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap .e-tab-text {
|
|
1817
|
+
color: #fff;
|
|
1818
|
+
}
|
|
1819
|
+
|
|
1820
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item:not(.e-active) .e-tab-wrap:hover {
|
|
1821
|
+
background: transparent;
|
|
1822
|
+
border-bottom: 0px;
|
|
1823
|
+
border-bottom-left-radius: 0px;
|
|
1824
|
+
border-bottom-right-radius: 0px;
|
|
1825
|
+
border-color: transparent;
|
|
1826
|
+
}
|
|
1827
|
+
|
|
1828
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item:not(.e-active) .e-tab-wrap:hover .e-tab-text {
|
|
1829
|
+
color: #f0f0f0;
|
|
1830
|
+
}
|
|
1831
|
+
|
|
1832
1832
|
.e-gantt.e-device .e-left-resize-gripper,
|
|
1833
1833
|
.e-gantt.e-device .e-right-resize-gripper {
|
|
1834
1834
|
border-color: #9e9e9e;
|
package/styles/gantt/fabric.css
CHANGED
|
@@ -335,23 +335,6 @@
|
|
|
335
335
|
border-color: transparent;
|
|
336
336
|
}
|
|
337
337
|
|
|
338
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header {
|
|
339
|
-
padding-left: 13px;
|
|
340
|
-
}
|
|
341
|
-
|
|
342
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-indicator {
|
|
343
|
-
display: block;
|
|
344
|
-
}
|
|
345
|
-
|
|
346
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
347
|
-
border-style: solid;
|
|
348
|
-
border-width: 0px;
|
|
349
|
-
}
|
|
350
|
-
|
|
351
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header:not(.e-vertical)::before {
|
|
352
|
-
border: 0;
|
|
353
|
-
}
|
|
354
|
-
|
|
355
338
|
.e-gantt .e-gantt-tree-grid-pane .e-grid {
|
|
356
339
|
border-width: 0;
|
|
357
340
|
}
|
|
@@ -690,6 +673,10 @@
|
|
|
690
673
|
user-select: none;
|
|
691
674
|
}
|
|
692
675
|
|
|
676
|
+
.e-gantt .e-gantt-chart .e-chart-rows-container {
|
|
677
|
+
line-height: initial;
|
|
678
|
+
}
|
|
679
|
+
|
|
693
680
|
.e-gantt .e-gantt-chart .e-taskbar-left-resizer,
|
|
694
681
|
.e-gantt .e-gantt-chart .e-taskbar-right-resizer {
|
|
695
682
|
display: inline-block;
|
|
@@ -982,101 +969,118 @@
|
|
|
982
969
|
outline-offset: 2px;
|
|
983
970
|
}
|
|
984
971
|
|
|
985
|
-
.e-gantt .e-
|
|
972
|
+
.e-gantt-dialog .e-tab .e-tab-header {
|
|
973
|
+
padding-left: 13px;
|
|
974
|
+
}
|
|
975
|
+
|
|
976
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-indicator {
|
|
977
|
+
display: block;
|
|
978
|
+
}
|
|
979
|
+
|
|
980
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
981
|
+
border-style: solid;
|
|
982
|
+
border-width: 0px;
|
|
983
|
+
}
|
|
984
|
+
|
|
985
|
+
.e-gantt-dialog .e-tab .e-tab-header:not(.e-vertical)::before {
|
|
986
986
|
border: 0;
|
|
987
987
|
}
|
|
988
988
|
|
|
989
|
-
.e-gantt
|
|
989
|
+
.e-gantt-dialog {
|
|
990
|
+
border: 0;
|
|
991
|
+
}
|
|
992
|
+
|
|
993
|
+
.e-gantt-dialog .e-gridform .e-table {
|
|
990
994
|
border-spacing: 0;
|
|
991
995
|
}
|
|
992
996
|
|
|
993
|
-
.e-gantt
|
|
997
|
+
.e-gantt-dialog .e-item {
|
|
994
998
|
height: 241px;
|
|
995
999
|
}
|
|
996
1000
|
|
|
997
|
-
.e-gantt
|
|
1001
|
+
.e-gantt-dialog .e-dependent-div {
|
|
998
1002
|
border-bottom-width: 1px;
|
|
999
1003
|
}
|
|
1000
1004
|
|
|
1001
|
-
.e-gantt
|
|
1005
|
+
.e-gantt-dialog .e-icon-dlg-close {
|
|
1002
1006
|
opacity: initial;
|
|
1003
1007
|
}
|
|
1004
1008
|
|
|
1005
|
-
.e-gantt
|
|
1009
|
+
.e-gantt-dialog .e-toolbar {
|
|
1006
1010
|
border-top-width: 0;
|
|
1007
1011
|
}
|
|
1008
1012
|
|
|
1009
|
-
.e-gantt
|
|
1013
|
+
.e-gantt-dialog .e-resource-div {
|
|
1010
1014
|
border-bottom-width: 1px;
|
|
1011
1015
|
}
|
|
1012
1016
|
|
|
1013
|
-
.e-gantt
|
|
1017
|
+
.e-gantt-dialog .e-resource-div .e-gridheader {
|
|
1014
1018
|
border-top-width: 0;
|
|
1015
1019
|
}
|
|
1016
1020
|
|
|
1017
|
-
.e-gantt
|
|
1021
|
+
.e-gantt-dialog .e-edit-form-row {
|
|
1018
1022
|
height: 241px;
|
|
1019
1023
|
overflow-y: auto;
|
|
1020
1024
|
padding-bottom: 16px;
|
|
1021
1025
|
}
|
|
1022
1026
|
|
|
1023
|
-
.e-gantt
|
|
1027
|
+
.e-gantt-dialog .e-edit-form-column:nth-child(odd) {
|
|
1024
1028
|
float: left;
|
|
1025
1029
|
padding: 15px 20px 0 18px;
|
|
1026
1030
|
width: 50%;
|
|
1027
1031
|
}
|
|
1028
1032
|
|
|
1029
|
-
.e-gantt
|
|
1033
|
+
.e-gantt-dialog .e-edit-form-column:nth-child(even) {
|
|
1030
1034
|
float: left;
|
|
1031
1035
|
padding: 16px 16px 0 0;
|
|
1032
1036
|
width: 50%;
|
|
1033
1037
|
}
|
|
1034
1038
|
|
|
1035
|
-
.e-gantt
|
|
1039
|
+
.e-gantt-dialog .e-edit-form-row.e-scroll .e-edit-form-column:nth-child(even) {
|
|
1036
1040
|
padding: 16px 16px 0 0;
|
|
1037
1041
|
}
|
|
1038
1042
|
|
|
1039
|
-
.e-gantt
|
|
1043
|
+
.e-gantt-dialog .e-edit-form-column {
|
|
1040
1044
|
height: 75px;
|
|
1041
1045
|
}
|
|
1042
1046
|
|
|
1043
|
-
.e-gantt
|
|
1047
|
+
.e-gantt-dialog .e-dependent-div .e-content {
|
|
1044
1048
|
height: 161px;
|
|
1045
1049
|
}
|
|
1046
1050
|
|
|
1047
|
-
.e-gantt
|
|
1051
|
+
.e-gantt-dialog .e-resource-div .e-content {
|
|
1048
1052
|
height: 202px;
|
|
1049
1053
|
}
|
|
1050
1054
|
|
|
1051
|
-
.e-gantt
|
|
1055
|
+
.e-gantt-dialog .e-richtexteditor {
|
|
1052
1056
|
border-bottom-width: 1px;
|
|
1053
1057
|
height: 241px !important;
|
|
1054
1058
|
overflow: hidden;
|
|
1055
1059
|
}
|
|
1056
1060
|
|
|
1057
|
-
.e-gantt
|
|
1061
|
+
.e-gantt-dialog .e-richtexteditor.e-rte-tb-expand {
|
|
1058
1062
|
border-top: 0;
|
|
1059
1063
|
}
|
|
1060
1064
|
|
|
1061
|
-
.e-gantt
|
|
1065
|
+
.e-gantt-dialog .e-richtexteditor .e-rte-content {
|
|
1062
1066
|
border-bottom-width: 0px;
|
|
1063
1067
|
height: 200px;
|
|
1064
1068
|
}
|
|
1065
1069
|
|
|
1066
|
-
.e-gantt
|
|
1070
|
+
.e-gantt-dialog > .e-dlg-content {
|
|
1067
1071
|
padding: 0 !important;
|
|
1068
1072
|
}
|
|
1069
1073
|
|
|
1070
|
-
.e-gantt
|
|
1074
|
+
.e-gantt-dialog .e-dlg-header-content {
|
|
1071
1075
|
border-bottom: 0 !important;
|
|
1072
1076
|
}
|
|
1073
1077
|
|
|
1074
|
-
.e-gantt
|
|
1078
|
+
.e-gantt-dialog .e-dlg-header-content {
|
|
1075
1079
|
border-radius: 0px;
|
|
1076
1080
|
padding-bottom: 4px;
|
|
1077
1081
|
}
|
|
1078
1082
|
|
|
1079
|
-
.e-gantt
|
|
1083
|
+
.e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
1080
1084
|
border-radius: 50%;
|
|
1081
1085
|
}
|
|
1082
1086
|
|
|
@@ -1232,10 +1236,6 @@
|
|
|
1232
1236
|
border-radius: 0px;
|
|
1233
1237
|
}
|
|
1234
1238
|
|
|
1235
|
-
.e-gantt .e-gantt-splitter-height {
|
|
1236
|
-
height: calc(100% - 40px) !important;
|
|
1237
|
-
}
|
|
1238
|
-
|
|
1239
1239
|
.e-gantt .e-cloneproperties.e-draganddrop {
|
|
1240
1240
|
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
|
|
1241
1241
|
opacity: .95;
|
|
@@ -1267,62 +1267,6 @@
|
|
|
1267
1267
|
box-shadow: 0 0 0 1px #666 inset !important;
|
|
1268
1268
|
}
|
|
1269
1269
|
|
|
1270
|
-
.e-gantt .e-gantt-dialog .e-dlg-header {
|
|
1271
|
-
color: #fff;
|
|
1272
|
-
}
|
|
1273
|
-
|
|
1274
|
-
.e-gantt .e-gantt-dialog .e-dlg-header-content {
|
|
1275
|
-
background: #0078d6;
|
|
1276
|
-
}
|
|
1277
|
-
|
|
1278
|
-
.e-gantt .e-gantt-dialog .e-icon-dlg-close {
|
|
1279
|
-
color: #fff;
|
|
1280
|
-
}
|
|
1281
|
-
|
|
1282
|
-
.e-gantt .e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover {
|
|
1283
|
-
background-color: #eaeaea;
|
|
1284
|
-
}
|
|
1285
|
-
|
|
1286
|
-
.e-gantt .e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover .e-icon-dlg-close {
|
|
1287
|
-
color: #0078d6;
|
|
1288
|
-
}
|
|
1289
|
-
|
|
1290
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header {
|
|
1291
|
-
background: #0078d6;
|
|
1292
|
-
}
|
|
1293
|
-
|
|
1294
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-indicator {
|
|
1295
|
-
background: #fff;
|
|
1296
|
-
}
|
|
1297
|
-
|
|
1298
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
1299
|
-
background-color: transparent;
|
|
1300
|
-
}
|
|
1301
|
-
|
|
1302
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active .e-tab-wrap .e-tab-text {
|
|
1303
|
-
color: #fff;
|
|
1304
|
-
}
|
|
1305
|
-
|
|
1306
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
1307
|
-
border-color: transparent;
|
|
1308
|
-
}
|
|
1309
|
-
|
|
1310
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap .e-tab-text {
|
|
1311
|
-
color: rgba(255, 255, 255, 0.8);
|
|
1312
|
-
}
|
|
1313
|
-
|
|
1314
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item:not(.e-active) .e-tab-wrap:hover {
|
|
1315
|
-
background: transparent;
|
|
1316
|
-
border-bottom: 0px;
|
|
1317
|
-
border-bottom-left-radius: 0px;
|
|
1318
|
-
border-bottom-right-radius: 0px;
|
|
1319
|
-
border-color: transparent;
|
|
1320
|
-
}
|
|
1321
|
-
|
|
1322
|
-
.e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item:not(.e-active) .e-tab-wrap:hover .e-tab-text {
|
|
1323
|
-
color: white;
|
|
1324
|
-
}
|
|
1325
|
-
|
|
1326
1270
|
.e-gantt .e-temp-content {
|
|
1327
1271
|
border-color: #eaeaea;
|
|
1328
1272
|
}
|
|
@@ -1827,6 +1771,62 @@
|
|
|
1827
1771
|
color: #666 !important;
|
|
1828
1772
|
}
|
|
1829
1773
|
|
|
1774
|
+
.e-gantt-dialog .e-dlg-header {
|
|
1775
|
+
color: #fff;
|
|
1776
|
+
}
|
|
1777
|
+
|
|
1778
|
+
.e-gantt-dialog .e-dlg-header-content {
|
|
1779
|
+
background: #0078d6;
|
|
1780
|
+
}
|
|
1781
|
+
|
|
1782
|
+
.e-gantt-dialog .e-icon-dlg-close {
|
|
1783
|
+
color: #fff;
|
|
1784
|
+
}
|
|
1785
|
+
|
|
1786
|
+
.e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover {
|
|
1787
|
+
background-color: #eaeaea;
|
|
1788
|
+
}
|
|
1789
|
+
|
|
1790
|
+
.e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover .e-icon-dlg-close {
|
|
1791
|
+
color: #0078d6;
|
|
1792
|
+
}
|
|
1793
|
+
|
|
1794
|
+
.e-gantt-dialog .e-tab .e-tab-header {
|
|
1795
|
+
background: #0078d6;
|
|
1796
|
+
}
|
|
1797
|
+
|
|
1798
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-indicator {
|
|
1799
|
+
background: #fff;
|
|
1800
|
+
}
|
|
1801
|
+
|
|
1802
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
1803
|
+
background-color: transparent;
|
|
1804
|
+
}
|
|
1805
|
+
|
|
1806
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active .e-tab-wrap .e-tab-text {
|
|
1807
|
+
color: #fff;
|
|
1808
|
+
}
|
|
1809
|
+
|
|
1810
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
1811
|
+
border-color: transparent;
|
|
1812
|
+
}
|
|
1813
|
+
|
|
1814
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap .e-tab-text {
|
|
1815
|
+
color: rgba(255, 255, 255, 0.8);
|
|
1816
|
+
}
|
|
1817
|
+
|
|
1818
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item:not(.e-active) .e-tab-wrap:hover {
|
|
1819
|
+
background: transparent;
|
|
1820
|
+
border-bottom: 0px;
|
|
1821
|
+
border-bottom-left-radius: 0px;
|
|
1822
|
+
border-bottom-right-radius: 0px;
|
|
1823
|
+
border-color: transparent;
|
|
1824
|
+
}
|
|
1825
|
+
|
|
1826
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item:not(.e-active) .e-tab-wrap:hover .e-tab-text {
|
|
1827
|
+
color: white;
|
|
1828
|
+
}
|
|
1829
|
+
|
|
1830
1830
|
.e-gantt.e-device .e-left-resize-gripper,
|
|
1831
1831
|
.e-gantt.e-device .e-right-resize-gripper {
|
|
1832
1832
|
border-color: #9e9e9e;
|