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