@syncfusion/ej2-gantt 19.3.45 → 19.3.53

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.
Files changed (59) hide show
  1. package/CHANGELOG.md +43 -0
  2. package/dist/ej2-gantt.umd.min.js +2 -2
  3. package/dist/ej2-gantt.umd.min.js.map +1 -1
  4. package/dist/es6/ej2-gantt.es2015.js +76 -13
  5. package/dist/es6/ej2-gantt.es2015.js.map +1 -1
  6. package/dist/es6/ej2-gantt.es5.js +129 -56
  7. package/dist/es6/ej2-gantt.es5.js.map +1 -1
  8. package/dist/global/ej2-gantt.min.js +2 -2
  9. package/dist/global/ej2-gantt.min.js.map +1 -1
  10. package/dist/global/index.d.ts +1 -1
  11. package/package.json +18 -18
  12. package/src/gantt/actions/context-menu.js +5 -0
  13. package/src/gantt/actions/dialog-edit.js +6 -6
  14. package/src/gantt/actions/edit.js +3 -2
  15. package/src/gantt/actions/rowdragdrop.js +74 -41
  16. package/src/gantt/actions/taskbar-edit.js +3 -1
  17. package/src/gantt/base/date-processor.js +4 -1
  18. package/src/gantt/base/gantt.js +20 -0
  19. package/src/gantt/base/task-processor.js +11 -2
  20. package/src/gantt/base/utils.js +3 -3
  21. package/styles/bootstrap-dark.css +95 -99
  22. package/styles/bootstrap.css +95 -99
  23. package/styles/bootstrap4.css +100 -99
  24. package/styles/bootstrap5-dark.css +101 -99
  25. package/styles/bootstrap5.css +101 -99
  26. package/styles/fabric-dark.css +95 -99
  27. package/styles/fabric.css +95 -99
  28. package/styles/gantt/_bootstrap-dark-definition.scss +0 -1
  29. package/styles/gantt/_bootstrap-definition.scss +0 -1
  30. package/styles/gantt/_bootstrap4-definition.scss +0 -1
  31. package/styles/gantt/_bootstrap5-definition.scss +0 -1
  32. package/styles/gantt/_fabric-dark-definition.scss +0 -1
  33. package/styles/gantt/_fabric-definition.scss +0 -1
  34. package/styles/gantt/_highcontrast-definition.scss +0 -1
  35. package/styles/gantt/_highcontrast-light-definition.scss +0 -1
  36. package/styles/gantt/_layout.scss +94 -93
  37. package/styles/gantt/_material-dark-definition.scss +0 -1
  38. package/styles/gantt/_material-definition.scss +0 -1
  39. package/styles/gantt/_tailwind-definition.scss +0 -1
  40. package/styles/gantt/_theme.scss +76 -81
  41. package/styles/gantt/bootstrap-dark.css +95 -99
  42. package/styles/gantt/bootstrap.css +95 -99
  43. package/styles/gantt/bootstrap4.css +100 -99
  44. package/styles/gantt/bootstrap5-dark.css +101 -99
  45. package/styles/gantt/bootstrap5.css +101 -99
  46. package/styles/gantt/fabric-dark.css +95 -99
  47. package/styles/gantt/fabric.css +95 -99
  48. package/styles/gantt/highcontrast-light.css +95 -99
  49. package/styles/gantt/highcontrast.css +95 -99
  50. package/styles/gantt/material-dark.css +95 -99
  51. package/styles/gantt/material.css +95 -99
  52. package/styles/gantt/tailwind-dark.css +95 -99
  53. package/styles/gantt/tailwind.css +95 -99
  54. package/styles/highcontrast-light.css +95 -99
  55. package/styles/highcontrast.css +95 -99
  56. package/styles/material-dark.css +95 -99
  57. package/styles/material.css +95 -99
  58. package/styles/tailwind-dark.css +95 -99
  59. package/styles/tailwind.css +95 -99
package/styles/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
  }
@@ -986,101 +969,118 @@
986
969
  outline-offset: 2px;
987
970
  }
988
971
 
989
- .e-gantt .e-gantt-dialog {
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
+ border: 0;
987
+ }
988
+
989
+ .e-gantt-dialog {
990
990
  border: 0;
991
991
  }
992
992
 
993
- .e-gantt .e-gantt-dialog .e-gridform .e-table {
993
+ .e-gantt-dialog .e-gridform .e-table {
994
994
  border-spacing: 0;
995
995
  }
996
996
 
997
- .e-gantt .e-gantt-dialog .e-item {
997
+ .e-gantt-dialog .e-item {
998
998
  height: 241px;
999
999
  }
1000
1000
 
1001
- .e-gantt .e-gantt-dialog .e-dependent-div {
1001
+ .e-gantt-dialog .e-dependent-div {
1002
1002
  border-bottom-width: 1px;
1003
1003
  }
1004
1004
 
1005
- .e-gantt .e-gantt-dialog .e-icon-dlg-close {
1005
+ .e-gantt-dialog .e-icon-dlg-close {
1006
1006
  opacity: initial;
1007
1007
  }
1008
1008
 
1009
- .e-gantt .e-gantt-dialog .e-toolbar {
1009
+ .e-gantt-dialog .e-toolbar {
1010
1010
  border-top-width: 0;
1011
1011
  }
1012
1012
 
1013
- .e-gantt .e-gantt-dialog .e-resource-div {
1013
+ .e-gantt-dialog .e-resource-div {
1014
1014
  border-bottom-width: 1px;
1015
1015
  }
1016
1016
 
1017
- .e-gantt .e-gantt-dialog .e-resource-div .e-gridheader {
1017
+ .e-gantt-dialog .e-resource-div .e-gridheader {
1018
1018
  border-top-width: 0;
1019
1019
  }
1020
1020
 
1021
- .e-gantt .e-gantt-dialog .e-edit-form-row {
1021
+ .e-gantt-dialog .e-edit-form-row {
1022
1022
  height: 241px;
1023
1023
  overflow-y: auto;
1024
1024
  padding-bottom: 16px;
1025
1025
  }
1026
1026
 
1027
- .e-gantt .e-gantt-dialog .e-edit-form-column:nth-child(odd) {
1027
+ .e-gantt-dialog .e-edit-form-column:nth-child(odd) {
1028
1028
  float: left;
1029
1029
  padding: 15px 20px 0 18px;
1030
1030
  width: 50%;
1031
1031
  }
1032
1032
 
1033
- .e-gantt .e-gantt-dialog .e-edit-form-column:nth-child(even) {
1033
+ .e-gantt-dialog .e-edit-form-column:nth-child(even) {
1034
1034
  float: left;
1035
1035
  padding: 16px 16px 0 0;
1036
1036
  width: 50%;
1037
1037
  }
1038
1038
 
1039
- .e-gantt .e-gantt-dialog .e-edit-form-row.e-scroll .e-edit-form-column:nth-child(even) {
1039
+ .e-gantt-dialog .e-edit-form-row.e-scroll .e-edit-form-column:nth-child(even) {
1040
1040
  padding: 16px 16px 0 0;
1041
1041
  }
1042
1042
 
1043
- .e-gantt .e-gantt-dialog .e-edit-form-column {
1043
+ .e-gantt-dialog .e-edit-form-column {
1044
1044
  height: 75px;
1045
1045
  }
1046
1046
 
1047
- .e-gantt .e-gantt-dialog .e-dependent-div .e-content {
1047
+ .e-gantt-dialog .e-dependent-div .e-content {
1048
1048
  height: 161px;
1049
1049
  }
1050
1050
 
1051
- .e-gantt .e-gantt-dialog .e-resource-div .e-content {
1051
+ .e-gantt-dialog .e-resource-div .e-content {
1052
1052
  height: 202px;
1053
1053
  }
1054
1054
 
1055
- .e-gantt .e-gantt-dialog .e-richtexteditor {
1055
+ .e-gantt-dialog .e-richtexteditor {
1056
1056
  border-bottom-width: 1px;
1057
1057
  height: 241px !important;
1058
1058
  overflow: hidden;
1059
1059
  }
1060
1060
 
1061
- .e-gantt .e-gantt-dialog .e-richtexteditor.e-rte-tb-expand {
1061
+ .e-gantt-dialog .e-richtexteditor.e-rte-tb-expand {
1062
1062
  border-top: 0;
1063
1063
  }
1064
1064
 
1065
- .e-gantt .e-gantt-dialog .e-richtexteditor .e-rte-content {
1065
+ .e-gantt-dialog .e-richtexteditor .e-rte-content {
1066
1066
  border-bottom-width: 0px;
1067
1067
  height: 200px;
1068
1068
  }
1069
1069
 
1070
- .e-gantt .e-gantt-dialog > .e-dlg-content {
1070
+ .e-gantt-dialog > .e-dlg-content {
1071
1071
  padding: 0 !important;
1072
1072
  }
1073
1073
 
1074
- .e-gantt .e-gantt-dialog .e-dlg-header-content {
1074
+ .e-gantt-dialog .e-dlg-header-content {
1075
1075
  border-bottom: 0 !important;
1076
1076
  }
1077
1077
 
1078
- .e-gantt .e-gantt-dialog .e-dlg-header-content {
1078
+ .e-gantt-dialog .e-dlg-header-content {
1079
1079
  border-radius: 0px;
1080
1080
  padding-bottom: 4px;
1081
1081
  }
1082
1082
 
1083
- .e-gantt .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
1083
+ .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
1084
1084
  border-radius: 50%;
1085
1085
  }
1086
1086
 
@@ -1236,10 +1236,6 @@
1236
1236
  border-radius: 0px;
1237
1237
  }
1238
1238
 
1239
- .e-gantt .e-gantt-splitter-height {
1240
- height: calc(100% - 40px) !important;
1241
- }
1242
-
1243
1239
  .e-gantt .e-cloneproperties.e-draganddrop {
1244
1240
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
1245
1241
  opacity: .95;
@@ -1271,62 +1267,6 @@
1271
1267
  box-shadow: 0 0 0 1px #666 inset !important;
1272
1268
  }
1273
1269
 
1274
- .e-gantt .e-gantt-dialog .e-dlg-header {
1275
- color: #fff;
1276
- }
1277
-
1278
- .e-gantt .e-gantt-dialog .e-dlg-header-content {
1279
- background: #0078d6;
1280
- }
1281
-
1282
- .e-gantt .e-gantt-dialog .e-icon-dlg-close {
1283
- color: #fff;
1284
- }
1285
-
1286
- .e-gantt .e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover {
1287
- background-color: #eaeaea;
1288
- }
1289
-
1290
- .e-gantt .e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover .e-icon-dlg-close {
1291
- color: #0078d6;
1292
- }
1293
-
1294
- .e-gantt .e-gantt-dialog .e-tab .e-tab-header {
1295
- background: #0078d6;
1296
- }
1297
-
1298
- .e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-indicator {
1299
- background: #fff;
1300
- }
1301
-
1302
- .e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
1303
- background-color: transparent;
1304
- }
1305
-
1306
- .e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active .e-tab-wrap .e-tab-text {
1307
- color: #fff;
1308
- }
1309
-
1310
- .e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
1311
- border-color: transparent;
1312
- }
1313
-
1314
- .e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap .e-tab-text {
1315
- color: rgba(255, 255, 255, 0.8);
1316
- }
1317
-
1318
- .e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item:not(.e-active) .e-tab-wrap:hover {
1319
- background: transparent;
1320
- border-bottom: 0px;
1321
- border-bottom-left-radius: 0px;
1322
- border-bottom-right-radius: 0px;
1323
- border-color: transparent;
1324
- }
1325
-
1326
- .e-gantt .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item:not(.e-active) .e-tab-wrap:hover .e-tab-text {
1327
- color: white;
1328
- }
1329
-
1330
1270
  .e-gantt .e-temp-content {
1331
1271
  border-color: #eaeaea;
1332
1272
  }
@@ -1831,6 +1771,62 @@
1831
1771
  color: #666 !important;
1832
1772
  }
1833
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
+
1834
1830
  .e-gantt.e-device .e-left-resize-gripper,
1835
1831
  .e-gantt.e-device .e-right-resize-gripper {
1836
1832
  border-color: #9e9e9e;
@@ -118,7 +118,6 @@ $gantt-timeline-top-header-cell-height: 33px !default;
118
118
  $gantt-header-border-radius: 4px !default;
119
119
  $gantt-splitter-border-top-right-radius: 0px !default;
120
120
  $gantt-splitter-border-top-left-radius: 0px !default;
121
- $gantt-splitter-height: calc(100% - 41px) !important;
122
121
  $gantt-dialog-general-padding-bottom: 16px !default;
123
122
  $gantt-filter-menu-value-div-padding: 24px !default;
124
123
  $gantt-dialog-tab-hover-border-bottom: 0px !default;
@@ -118,7 +118,6 @@ $gantt-timeline-top-header-cell-height: 33px !default;
118
118
  $gantt-header-border-radius: 4px !default;
119
119
  $gantt-splitter-border-top-right-radius: 0px !default;
120
120
  $gantt-splitter-border-top-left-radius: 0px !default;
121
- $gantt-splitter-height: calc(100% - 41px) !important;
122
121
  $gantt-dialog-general-padding-bottom: 16px !default;
123
122
  $gantt-filter-menu-value-div-padding: 24px !default;
124
123
  $gantt-dialog-tab-hover-border-bottom: 0px !default;
@@ -118,7 +118,6 @@ $gantt-timeline-top-header-cell-height: 33px !default;
118
118
  $gantt-header-border-radius: 0px !default;
119
119
  $gantt-splitter-border-top-right-radius: 0px !default;
120
120
  $gantt-splitter-border-top-left-radius: 0px !default;
121
- $gantt-splitter-height: calc(100% - 38px) !important;
122
121
  $gantt-dialog-general-padding-bottom: 12px !default;
123
122
  $gantt-filter-menu-value-div-padding: 16px !default;
124
123
  $gantt-dialog-tab-hover-border-bottom: 0px !default;
@@ -142,7 +142,6 @@ $gantt-timeline-top-header-cell-height: 33px !default;
142
142
  $gantt-header-border-radius: 0px !default;
143
143
  $gantt-splitter-border-top-right-radius: 0px !default;
144
144
  $gantt-splitter-border-top-left-radius: 0px !default;
145
- $gantt-splitter-height: calc(100% - 37px) !important;
146
145
  $gantt-dialog-general-padding-bottom: 12px !default;
147
146
  $gantt-filter-menu-value-div-padding: 16px !default;
148
147
  $gantt-dialog-tab-hover-border-bottom: 0px !default;
@@ -118,7 +118,6 @@ $gantt-header-border-bottom-width: 1px !default;
118
118
  $gantt-header-border-radius: 0px !default;
119
119
  $gantt-splitter-border-top-right-radius: 0px !default;
120
120
  $gantt-splitter-border-top-left-radius: 0px !default;
121
- $gantt-splitter-height: calc(100% - 40px) !important;
122
121
  $gantt-dialog-general-padding-bottom: 16px !default;
123
122
  $gantt-filter-menu-value-div-padding: 24px !default;
124
123
  $gantt-dialog-tab-hover-border-bottom: 0px !default;
@@ -118,7 +118,6 @@ $gantt-header-border-bottom-width: 1px !default;
118
118
  $gantt-header-border-radius: 0px !default;
119
119
  $gantt-splitter-border-top-right-radius: 0px !default;
120
120
  $gantt-splitter-border-top-left-radius: 0px !default;
121
- $gantt-splitter-height: calc(100% - 40px) !important;
122
121
  $gantt-dialog-general-padding-bottom: 16px !default;
123
122
  $gantt-filter-menu-value-div-padding: 24px !default;
124
123
  $gantt-dialog-tab-hover-border-bottom: 0px !default;
@@ -118,7 +118,6 @@ $progress-handler-outline: #fff !default;
118
118
  $gantt-header-border-radius: 0px !default;
119
119
  $gantt-splitter-border-top-right-radius: 0px !default;
120
120
  $gantt-splitter-border-top-left-radius: 0px !default;
121
- $gantt-splitter-height: calc(100% - 40px) !important;
122
121
  $gantt-dialog-general-padding-bottom: 16px !default;
123
122
  $gantt-filter-menu-value-div-padding: 24px !default;
124
123
  $gantt-dialog-tab-hover-border-bottom: 0px !default;
@@ -118,7 +118,6 @@ $gantt-timeline-top-header-cell-height: 32px !default;
118
118
  $gantt-header-border-radius: 0px !default;
119
119
  $gantt-splitter-border-top-right-radius: 0px !default;
120
120
  $gantt-splitter-border-top-left-radius: 0px !default;
121
- $gantt-splitter-height: calc(100% - 42px) !important;
122
121
  $gantt-dialog-general-padding-bottom: 16px !default;
123
122
  $gantt-filter-menu-value-div-padding: 24px !default;
124
123
  $gantt-dialog-tab-hover-border-bottom: 0px !default;
@@ -105,24 +105,6 @@
105
105
  }
106
106
  }
107
107
 
108
- .e-gantt-dialog .e-tab .e-tab-header {
109
- padding-left: $gantt-dialog-tab-padding-left;
110
-
111
- .e-indicator {
112
- display: block;
113
- }
114
-
115
- .e-toolbar-item .e-tab-wrap {
116
- border-style: solid;
117
- border-width: $gantt-tab-header-border-width;
118
- }
119
-
120
- }
121
-
122
- .e-gantt-dialog .e-tab .e-tab-header:not(.e-vertical)::before {
123
- border: 0;
124
- }
125
-
126
108
  .e-gantt-tree-grid-pane {
127
109
  .e-grid {
128
110
  border-width: 0;
@@ -760,107 +742,126 @@
760
742
 
761
743
  }
762
744
 
763
- .e-gantt-dialog {
745
+ }
764
746
 
765
- border: 0;
747
+ .e-gantt-dialog .e-tab .e-tab-header {
748
+ padding-left: $gantt-dialog-tab-padding-left;
766
749
 
767
- .e-gridform .e-table {
768
- border-spacing: 0;
769
- }
750
+ .e-indicator {
751
+ display: block;
752
+ }
770
753
 
771
- .e-item {
772
- height: $gantt-dialog-general-height;
773
- }
754
+ .e-toolbar-item .e-tab-wrap {
755
+ border-style: solid;
756
+ border-width: $gantt-tab-header-border-width;
757
+ }
774
758
 
775
- .e-dependent-div {
776
- border-bottom-width: $gantt-depedent-div-border-bottom;
777
- }
759
+ }
778
760
 
779
- .e-icon-dlg-close {
780
- opacity: initial;
781
- }
761
+ .e-gantt-dialog .e-tab .e-tab-header:not(.e-vertical)::before {
762
+ border: 0;
763
+ }
782
764
 
783
- .e-toolbar {
784
- border-top-width: 0;
785
- }
765
+ .e-gantt-dialog {
766
+ border: 0;
786
767
 
787
- .e-resource-div {
788
- border-bottom-width: $gantt-resource-div-border-bottom;
768
+ .e-gridform .e-table {
769
+ border-spacing: 0;
770
+ }
789
771
 
790
- .e-gridheader {
791
- border-top-width: 0;
792
- }
772
+ .e-item {
773
+ height: $gantt-dialog-general-height;
774
+ }
793
775
 
794
- }
776
+ .e-dependent-div {
777
+ border-bottom-width: $gantt-depedent-div-border-bottom;
778
+ }
795
779
 
796
- .e-edit-form-row {
797
- height: $gantt-dialog-general-height;
798
- overflow-y: auto;
799
- padding-bottom: $gantt-dialog-general-padding-bottom;
800
- }
780
+ .e-icon-dlg-close {
781
+ opacity: initial;
782
+ }
801
783
 
802
- .e-edit-form-column:nth-child(odd) {
803
- float: left;
804
- padding: $gantt-dialog-edit-form-odd-padding;
805
- width: 50%;
806
- }
784
+ .e-toolbar {
785
+ border-top-width: 0;
786
+ }
807
787
 
808
- .e-edit-form-column:nth-child(even) {
809
- float: left;
810
- padding: $gantt-dialog-edit-form-even-padding;
811
- width: 50%;
812
- }
788
+ .e-resource-div {
789
+ border-bottom-width: $gantt-resource-div-border-bottom;
813
790
 
814
- .e-edit-form-row.e-scroll .e-edit-form-column:nth-child(even) {
815
- padding: $gantt-dialog-edit-form-scroll-padding;
791
+ .e-gridheader {
792
+ border-top-width: 0;
816
793
  }
817
794
 
818
- .e-edit-form-column {
819
- height: 75px;
820
- }
795
+ }
821
796
 
822
- .e-dependent-div .e-content {
823
- height: $gantt-dialog-dependent-height;
824
- }
797
+ .e-edit-form-row {
798
+ height: $gantt-dialog-general-height;
799
+ overflow-y: auto;
800
+ padding-bottom: $gantt-dialog-general-padding-bottom;
801
+ }
825
802
 
826
- .e-resource-div .e-content {
827
- height: $gantt-dialog-resource-height;
828
- }
803
+ .e-edit-form-column:nth-child(odd) {
804
+ float: left;
805
+ padding: $gantt-dialog-edit-form-odd-padding;
806
+ width: 50%;
807
+ }
829
808
 
830
- .e-richtexteditor {
831
- border-bottom-width: $gantt-richtext-border-bottom;
832
- height: $gantt-dialog-rte-height !important; // sass-lint:disable-line no-important
833
- overflow: hidden;
834
- }
809
+ .e-edit-form-column:nth-child(even) {
810
+ float: left;
811
+ padding: $gantt-dialog-edit-form-even-padding;
812
+ width: 50%;
813
+ }
835
814
 
836
- .e-richtexteditor.e-rte-tb-expand {
837
- border-top: 0;
838
- }
815
+ .e-edit-form-row.e-scroll .e-edit-form-column:nth-child(even) {
816
+ padding: $gantt-dialog-edit-form-scroll-padding;
817
+ }
839
818
 
840
- .e-richtexteditor .e-rte-content {
841
- border-bottom-width: $gantt-richtext-content-border-bottom;
842
- height: $gantt-dialog-rte-content-height;
843
- }
819
+ .e-edit-form-column {
820
+ height: 75px;
821
+ }
844
822
 
845
- > .e-dlg-content {
846
- padding: 0 !important; // sass-lint:disable-line no-important
847
- @if $skin-name == 'tailwind' or $skin-name == 'tailwind-dark' {
848
- height: 291px;
849
- }
850
- }
823
+ .e-dependent-div .e-content {
824
+ height: $gantt-dialog-dependent-height;
825
+ }
826
+
827
+ .e-resource-div .e-content {
828
+ height: $gantt-dialog-resource-height;
829
+ }
830
+
831
+ .e-richtexteditor {
832
+ border-bottom-width: $gantt-richtext-border-bottom;
833
+ height: $gantt-dialog-rte-height !important; // sass-lint:disable-line no-important
834
+ overflow: hidden;
835
+ }
851
836
 
852
- .e-dlg-header-content {
853
- border-bottom: 0 !important; // sass-lint:disable-line no-important
837
+ .e-richtexteditor.e-rte-tb-expand {
838
+ border-top: 0;
839
+ }
840
+
841
+ .e-richtexteditor .e-rte-content {
842
+ border-bottom-width: $gantt-richtext-content-border-bottom;
843
+ height: $gantt-dialog-rte-content-height;
844
+ }
845
+
846
+ > .e-dlg-content {
847
+ padding: 0 !important; // sass-lint:disable-line no-important
848
+ @if $skin-name == 'tailwind' or $skin-name == 'tailwind-dark' {
849
+ height: 291px;
854
850
  }
851
+ }
855
852
 
856
- .e-dlg-header-content {
857
- border-radius: $gantt-dialog-border-radius;
858
- padding-bottom: $gantt-dialog-padding-bottom;
853
+ .e-dlg-header-content {
854
+ border-bottom: 0 !important; // sass-lint:disable-line no-important
855
+ }
859
856
 
860
- .e-btn.e-dlg-closeicon-btn {
861
- border-radius: 50%;
862
- }
857
+ .e-dlg-header-content {
858
+ border-radius: $gantt-dialog-border-radius;
859
+ padding-bottom: $gantt-dialog-padding-bottom;
860
+
861
+ .e-btn.e-dlg-closeicon-btn {
862
+ border-radius: 50%;
863
863
  }
864
+
864
865
  }
865
866
  }
866
867
 
@@ -118,7 +118,6 @@ $gantt-timeline-top-header-cell-height: 32px !default;
118
118
  $gantt-header-border-radius: 0px !default;
119
119
  $gantt-splitter-border-top-right-radius: 0px !default;
120
120
  $gantt-splitter-border-top-left-radius: 0px !default;
121
- $gantt-splitter-height: calc(100% - 42px) !important;
122
121
  $gantt-dialog-general-padding-bottom: 16px !default;
123
122
  $gantt-filter-menu-value-div-padding: 24px !default;
124
123
  $gantt-dialog-tab-hover-border-bottom: 0px !default;
@@ -118,7 +118,6 @@ $gantt-timeline-top-header-cell-height: 32px !default;
118
118
  $gantt-header-border-radius: 0px !default;
119
119
  $gantt-splitter-border-top-right-radius: 0px !default;
120
120
  $gantt-splitter-border-top-left-radius: 0px !default;
121
- $gantt-splitter-height: calc(100% - 42px) !important;
122
121
  $gantt-dialog-general-padding-bottom: 16px !default;
123
122
  $gantt-filter-menu-value-div-padding: 24px !default;
124
123
  $gantt-dialog-tab-hover-border-bottom: 0px !default;
@@ -140,7 +140,6 @@ $gantt-timeline-top-header-cell-height: 24px !default;
140
140
  $gantt-header-border-radius: 0px !default;
141
141
  $gantt-splitter-border-top-right-radius: 0px !default;
142
142
  $gantt-splitter-border-top-left-radius: 0px !default;
143
- $gantt-splitter-height: calc(100% - 38px) !important;
144
143
  $gantt-dialog-general-padding-bottom: 12px !default;
145
144
  $gantt-filter-menu-value-div-padding: 18px !default;
146
145
  $gantt-dialog-tab-hover-border-bottom: 0px !default;