@syncfusion/ej2-gantt 19.3.43 → 19.3.47
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +35 -0
- package/dist/ej2-gantt.umd.min.js +2 -2
- package/dist/ej2-gantt.umd.min.js.map +1 -1
- package/dist/es6/ej2-gantt.es2015.js +61 -27
- package/dist/es6/ej2-gantt.es2015.js.map +1 -1
- package/dist/es6/ej2-gantt.es5.js +64 -29
- package/dist/es6/ej2-gantt.es5.js.map +1 -1
- package/dist/global/ej2-gantt.min.js +2 -2
- package/dist/global/ej2-gantt.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +18 -18
- package/src/gantt/actions/cell-edit.js +1 -0
- package/src/gantt/actions/dialog-edit.js +6 -6
- package/src/gantt/actions/edit.js +7 -3
- package/src/gantt/base/date-processor.js +4 -1
- package/src/gantt/base/gantt.js +20 -0
- package/src/gantt/base/task-processor.js +11 -2
- package/src/gantt/base/utils.js +3 -3
- package/src/gantt/export/export-helper.js +12 -14
- package/styles/bootstrap-dark.css +99 -99
- package/styles/bootstrap.css +99 -99
- package/styles/bootstrap4.css +104 -99
- package/styles/bootstrap5-dark.css +104 -99
- package/styles/bootstrap5.css +104 -99
- package/styles/fabric-dark.css +99 -99
- package/styles/fabric.css +99 -99
- package/styles/gantt/_bootstrap-dark-definition.scss +0 -1
- package/styles/gantt/_bootstrap-definition.scss +0 -1
- package/styles/gantt/_bootstrap4-definition.scss +0 -1
- package/styles/gantt/_bootstrap5-definition.scss +0 -1
- package/styles/gantt/_fabric-dark-definition.scss +0 -1
- package/styles/gantt/_fabric-definition.scss +0 -1
- package/styles/gantt/_highcontrast-definition.scss +0 -1
- package/styles/gantt/_highcontrast-light-definition.scss +0 -1
- package/styles/gantt/_layout.scss +100 -95
- package/styles/gantt/_material-dark-definition.scss +0 -1
- package/styles/gantt/_material-definition.scss +0 -1
- package/styles/gantt/_tailwind-definition.scss +0 -1
- package/styles/gantt/_theme.scss +76 -81
- package/styles/gantt/bootstrap-dark.css +99 -99
- package/styles/gantt/bootstrap.css +99 -99
- package/styles/gantt/bootstrap4.css +104 -99
- package/styles/gantt/bootstrap5-dark.css +104 -99
- package/styles/gantt/bootstrap5.css +104 -99
- package/styles/gantt/fabric-dark.css +99 -99
- package/styles/gantt/fabric.css +99 -99
- package/styles/gantt/highcontrast-light.css +99 -99
- package/styles/gantt/highcontrast.css +99 -99
- package/styles/gantt/material-dark.css +99 -99
- package/styles/gantt/material.css +99 -99
- package/styles/gantt/tailwind-dark.css +99 -99
- package/styles/gantt/tailwind.css +99 -99
- package/styles/highcontrast-light.css +99 -99
- package/styles/highcontrast.css +99 -99
- package/styles/material-dark.css +99 -99
- package/styles/material.css +99 -99
- package/styles/tailwind-dark.css +99 -99
- package/styles/tailwind.css +99 -99
package/styles/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;
|
|
@@ -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;
|