@syncfusion/ej2-gantt 19.2.62 → 19.3.46

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 (83) hide show
  1. package/.eslintrc.json +1 -1
  2. package/CHANGELOG.md +38 -0
  3. package/dist/ej2-gantt.umd.min.js +2 -2
  4. package/dist/ej2-gantt.umd.min.js.map +1 -1
  5. package/dist/es6/ej2-gantt.es2015.js +124 -105
  6. package/dist/es6/ej2-gantt.es2015.js.map +1 -1
  7. package/dist/es6/ej2-gantt.es5.js +127 -107
  8. package/dist/es6/ej2-gantt.es5.js.map +1 -1
  9. package/dist/global/ej2-gantt.min.js +2 -2
  10. package/dist/global/ej2-gantt.min.js.map +1 -1
  11. package/dist/global/index.d.ts +1 -1
  12. package/package.json +18 -18
  13. package/src/gantt/actions/cell-edit.js +1 -0
  14. package/src/gantt/actions/dialog-edit.js +6 -1
  15. package/src/gantt/actions/edit.js +12 -5
  16. package/src/gantt/actions/filter.js +1 -1
  17. package/src/gantt/actions/taskbar-edit.js +3 -3
  18. package/src/gantt/base/gantt-chart.js +1 -1
  19. package/src/gantt/base/gantt-model.d.ts +3 -30
  20. package/src/gantt/base/gantt.d.ts +2 -30
  21. package/src/gantt/base/gantt.js +59 -4
  22. package/src/gantt/base/interface.d.ts +4 -22
  23. package/src/gantt/base/splitter.js +7 -2
  24. package/src/gantt/base/task-processor.js +11 -3
  25. package/src/gantt/base/tree-grid.js +8 -2
  26. package/src/gantt/base/utils.js +2 -2
  27. package/src/gantt/export/export-helper.js +12 -14
  28. package/src/gantt/models/column.d.ts +11 -6
  29. package/src/gantt/models/day-working-time-model.d.ts +0 -4
  30. package/src/gantt/models/day-working-time.d.ts +0 -4
  31. package/src/gantt/models/selection-settings-model.d.ts +0 -4
  32. package/src/gantt/models/selection-settings.d.ts +0 -4
  33. package/src/gantt/renderer/chart-rows.d.ts +0 -1
  34. package/src/gantt/renderer/chart-rows.js +3 -71
  35. package/src/gantt/renderer/nonworking-day.js +1 -1
  36. package/styles/bootstrap-dark.css +17 -0
  37. package/styles/bootstrap.css +17 -0
  38. package/styles/bootstrap4.css +22 -0
  39. package/styles/bootstrap5-dark.css +1922 -0
  40. package/styles/bootstrap5-dark.scss +1 -0
  41. package/styles/bootstrap5.css +1922 -0
  42. package/styles/bootstrap5.scss +1 -0
  43. package/styles/fabric-dark.css +17 -0
  44. package/styles/fabric.css +17 -0
  45. package/styles/gantt/_bootstrap-dark-definition.scss +3 -0
  46. package/styles/gantt/_bootstrap-definition.scss +3 -0
  47. package/styles/gantt/_bootstrap4-definition.scss +3 -0
  48. package/styles/gantt/_bootstrap5-dark-definition.scss +1 -0
  49. package/styles/gantt/_bootstrap5-definition.scss +164 -0
  50. package/styles/gantt/_fabric-dark-definition.scss +3 -0
  51. package/styles/gantt/_fabric-definition.scss +3 -0
  52. package/styles/gantt/_highcontrast-definition.scss +3 -0
  53. package/styles/gantt/_highcontrast-light-definition.scss +3 -0
  54. package/styles/gantt/_layout.scss +15 -3
  55. package/styles/gantt/_material-dark-definition.scss +3 -0
  56. package/styles/gantt/_material-definition.scss +3 -0
  57. package/styles/gantt/_tailwind-dark-definition.scss +1 -156
  58. package/styles/gantt/_tailwind-definition.scss +67 -60
  59. package/styles/gantt/_theme.scss +8 -1
  60. package/styles/gantt/bootstrap-dark.css +17 -0
  61. package/styles/gantt/bootstrap.css +17 -0
  62. package/styles/gantt/bootstrap4.css +22 -0
  63. package/styles/gantt/bootstrap5-dark.css +1922 -0
  64. package/styles/gantt/bootstrap5-dark.scss +22 -0
  65. package/styles/gantt/bootstrap5.css +1922 -0
  66. package/styles/gantt/bootstrap5.scss +22 -0
  67. package/styles/gantt/fabric-dark.css +17 -0
  68. package/styles/gantt/fabric.css +17 -0
  69. package/styles/gantt/highcontrast-light.css +17 -0
  70. package/styles/gantt/highcontrast.css +17 -0
  71. package/styles/gantt/icons/_bootstrap5-dark.scss +1 -0
  72. package/styles/gantt/icons/_bootstrap5.scss +112 -0
  73. package/styles/gantt/icons/_tailwind-dark.scss +112 -112
  74. package/styles/gantt/material-dark.css +19 -2
  75. package/styles/gantt/material.css +17 -0
  76. package/styles/gantt/tailwind-dark.css +41 -25
  77. package/styles/gantt/tailwind.css +39 -23
  78. package/styles/highcontrast-light.css +17 -0
  79. package/styles/highcontrast.css +17 -0
  80. package/styles/material-dark.css +19 -2
  81. package/styles/material.css +17 -0
  82. package/styles/tailwind-dark.css +41 -25
  83. package/styles/tailwind.css +39 -23
@@ -0,0 +1,22 @@
1
+ @import 'ej2-base/styles/bootstrap5-definition.scss';
2
+ @import 'ej2-grids/styles/grid/bootstrap5-definition.scss';
3
+ @import 'ej2-treegrid/styles/treegrid/bootstrap5-definition.scss';
4
+ @import 'ej2-richtexteditor/styles/rich-text-editor/bootstrap5-definition.scss';
5
+ @import 'ej2-calendars/styles/datepicker/bootstrap5-definition.scss';
6
+ @import 'ej2-calendars/styles/datetimepicker/bootstrap5-definition.scss';
7
+ @import 'ej2-buttons/styles/button/bootstrap5-definition.scss';
8
+ @import 'ej2-dropdowns/styles/drop-down-list/bootstrap5-definition.scss';
9
+ @import 'ej2-dropdowns/styles/combo-box/bootstrap5-definition.scss';
10
+ @import 'ej2-dropdowns/styles/multi-select/bootstrap5-definition.scss';
11
+ @import 'ej2-navigations/styles/toolbar/bootstrap5-definition.scss';
12
+ @import 'ej2-navigations/styles/tab/bootstrap5-definition.scss';
13
+ @import 'ej2-navigations/styles/context-menu/bootstrap5-definition.scss';
14
+ @import 'ej2-inputs/styles/input/bootstrap5-definition.scss';
15
+ @import 'ej2-inputs/styles/numerictextbox/bootstrap5-definition.scss';
16
+ @import 'ej2-popups/styles/dialog/bootstrap5-definition.scss';
17
+ @import 'ej2-popups/styles/spinner/bootstrap5-definition.scss';
18
+ @import 'ej2-popups/styles/tooltip/bootstrap5-definition.scss';
19
+ @import 'ej2-layouts/styles/splitter/bootstrap5-definition.scss';
20
+ @import 'bootstrap5-definition.scss';
21
+ @import 'icons/bootstrap5.scss';
22
+ @import 'all.scss';
@@ -692,6 +692,10 @@
692
692
  user-select: none;
693
693
  }
694
694
 
695
+ .e-gantt .e-gantt-chart .e-chart-rows-container {
696
+ line-height: initial;
697
+ }
698
+
695
699
  .e-gantt .e-gantt-chart .e-taskbar-left-resizer,
696
700
  .e-gantt .e-gantt-chart .e-taskbar-right-resizer {
697
701
  display: inline-block;
@@ -1137,6 +1141,14 @@
1137
1141
  opacity: 1;
1138
1142
  }
1139
1143
 
1144
+ .e-gantt .e-cloneproperties.e-draganddrop .e-row .e-rowcell .e-treecolumn-container .e-icons.e-none::before {
1145
+ content: '';
1146
+ }
1147
+
1148
+ .e-bigger .e-gantt .e-gantt-chart .e-label {
1149
+ font-size: 14px;
1150
+ }
1151
+
1140
1152
  .e-gantt-tooltip-label {
1141
1153
  padding-bottom: 2px;
1142
1154
  padding-right: 2px;
@@ -1226,6 +1238,10 @@
1226
1238
  border-radius: 0px;
1227
1239
  }
1228
1240
 
1241
+ .e-gantt .e-gantt-splitter-height {
1242
+ height: calc(100% - 40px) !important;
1243
+ }
1244
+
1229
1245
  .e-gantt .e-cloneproperties.e-draganddrop {
1230
1246
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.26);
1231
1247
  opacity: .95;
@@ -1335,6 +1351,7 @@
1335
1351
 
1336
1352
  .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active {
1337
1353
  background: #514f4f;
1354
+ opacity: 1;
1338
1355
  }
1339
1356
 
1340
1357
  .e-gantt .e-gantt-chart .e-timeline-header-container {
@@ -690,6 +690,10 @@
690
690
  user-select: none;
691
691
  }
692
692
 
693
+ .e-gantt .e-gantt-chart .e-chart-rows-container {
694
+ line-height: initial;
695
+ }
696
+
693
697
  .e-gantt .e-gantt-chart .e-taskbar-left-resizer,
694
698
  .e-gantt .e-gantt-chart .e-taskbar-right-resizer {
695
699
  display: inline-block;
@@ -1135,6 +1139,14 @@
1135
1139
  opacity: 1;
1136
1140
  }
1137
1141
 
1142
+ .e-gantt .e-cloneproperties.e-draganddrop .e-row .e-rowcell .e-treecolumn-container .e-icons.e-none::before {
1143
+ content: '';
1144
+ }
1145
+
1146
+ .e-bigger .e-gantt .e-gantt-chart .e-label {
1147
+ font-size: 14px;
1148
+ }
1149
+
1138
1150
  .e-gantt-tooltip-label {
1139
1151
  padding-bottom: 2px;
1140
1152
  padding-right: 2px;
@@ -1224,6 +1236,10 @@
1224
1236
  border-radius: 0px;
1225
1237
  }
1226
1238
 
1239
+ .e-gantt .e-gantt-splitter-height {
1240
+ height: calc(100% - 40px) !important;
1241
+ }
1242
+
1227
1243
  .e-gantt .e-cloneproperties.e-draganddrop {
1228
1244
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
1229
1245
  opacity: .95;
@@ -1333,6 +1349,7 @@
1333
1349
 
1334
1350
  .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active {
1335
1351
  background: #d1ebff;
1352
+ opacity: 1;
1336
1353
  }
1337
1354
 
1338
1355
  .e-gantt .e-gantt-chart .e-timeline-header-container {
@@ -693,6 +693,10 @@
693
693
  user-select: none;
694
694
  }
695
695
 
696
+ .e-gantt .e-gantt-chart .e-chart-rows-container {
697
+ line-height: initial;
698
+ }
699
+
696
700
  .e-gantt .e-gantt-chart .e-taskbar-left-resizer,
697
701
  .e-gantt .e-gantt-chart .e-taskbar-right-resizer {
698
702
  display: inline-block;
@@ -1138,6 +1142,14 @@
1138
1142
  opacity: 1;
1139
1143
  }
1140
1144
 
1145
+ .e-gantt .e-cloneproperties.e-draganddrop .e-row .e-rowcell .e-treecolumn-container .e-icons.e-none::before {
1146
+ content: '';
1147
+ }
1148
+
1149
+ .e-bigger .e-gantt .e-gantt-chart .e-label {
1150
+ font-size: 13px;
1151
+ }
1152
+
1141
1153
  .e-gantt-tooltip-label {
1142
1154
  padding-bottom: 2px;
1143
1155
  padding-right: 2px;
@@ -1227,6 +1239,10 @@
1227
1239
  border-radius: 0px;
1228
1240
  }
1229
1241
 
1242
+ .e-gantt .e-gantt-splitter-height {
1243
+ height: calc(100% - 42px) !important;
1244
+ }
1245
+
1230
1246
  .e-gantt .e-cloneproperties.e-draganddrop {
1231
1247
  box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.2);
1232
1248
  opacity: .95;
@@ -1336,6 +1352,7 @@
1336
1352
 
1337
1353
  .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active {
1338
1354
  background: #400074;
1355
+ opacity: 1;
1339
1356
  }
1340
1357
 
1341
1358
  .e-gantt .e-gantt-chart .e-timeline-header-container {
@@ -807,6 +807,10 @@
807
807
  user-select: none;
808
808
  }
809
809
 
810
+ .e-gantt .e-gantt-chart .e-chart-rows-container {
811
+ line-height: initial;
812
+ }
813
+
810
814
  .e-gantt .e-gantt-chart .e-taskbar-left-resizer,
811
815
  .e-gantt .e-gantt-chart .e-taskbar-right-resizer {
812
816
  display: inline-block;
@@ -1252,6 +1256,14 @@
1252
1256
  opacity: 1;
1253
1257
  }
1254
1258
 
1259
+ .e-gantt .e-cloneproperties.e-draganddrop .e-row .e-rowcell .e-treecolumn-container .e-icons.e-none::before {
1260
+ content: '';
1261
+ }
1262
+
1263
+ .e-bigger .e-gantt .e-gantt-chart .e-label {
1264
+ font-size: 13px;
1265
+ }
1266
+
1255
1267
  .e-gantt-tooltip-label {
1256
1268
  padding-bottom: 2px;
1257
1269
  padding-right: 2px;
@@ -1341,6 +1353,10 @@
1341
1353
  border-radius: 0px;
1342
1354
  }
1343
1355
 
1356
+ .e-gantt .e-gantt-splitter-height {
1357
+ height: calc(100% - 40px) !important;
1358
+ }
1359
+
1344
1360
  .e-gantt .e-cloneproperties.e-draganddrop {
1345
1361
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
1346
1362
  opacity: .95;
@@ -1450,6 +1466,7 @@
1450
1466
 
1451
1467
  .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active {
1452
1468
  background: rgba(255, 217, 57, 0.7);
1469
+ opacity: 1;
1453
1470
  }
1454
1471
 
1455
1472
  .e-gantt .e-gantt-chart .e-timeline-header-container {
@@ -0,0 +1 @@
1
+ @import './bootstrap5.scss';
@@ -0,0 +1,112 @@
1
+ @include export-module('gantt-tailwind-icons') {
2
+ #{&}.e-gantt {
3
+ .e-add::before {
4
+ content: '\e805';
5
+ }
6
+
7
+ .e-edit::before {
8
+ content: '\e730';
9
+ }
10
+
11
+ .e-delete::before {
12
+ content: '\e820';
13
+ }
14
+
15
+ .e-cancel::before {
16
+ content: '\e7e7';
17
+ }
18
+
19
+ .e-save::before {
20
+ content: '\e7c8';
21
+ }
22
+
23
+ .e-update::before {
24
+ content: '\e7c8';
25
+ }
26
+
27
+ .e-search-icon::before {
28
+ content: '\e754';
29
+ }
30
+
31
+ .e-cancel-icon::before {
32
+ content: '\e7e7';
33
+ }
34
+
35
+ .e-notes-info::before {
36
+ content: '\e72d';
37
+ }
38
+
39
+ .e-left-resize-gripper::before,
40
+ .e-right-resize-gripper::before {
41
+ content: '\e770';
42
+ }
43
+
44
+ .e-expandall::before {
45
+ content: '\e7c9';
46
+ }
47
+
48
+ .e-collapseall::before {
49
+ content: '\e80f';
50
+ }
51
+
52
+ .e-prevtimespan::before {
53
+ content: '\e773';
54
+ }
55
+
56
+ .e-nexttimespan::before {
57
+ content: '\e7f9';
58
+ }
59
+
60
+ .e-zoomin::before {
61
+ content: '\e795';
62
+ }
63
+
64
+ .e-zoomout::before {
65
+ content: '\e825';
66
+ }
67
+
68
+ .e-zoomtofit::before {
69
+ content: '\e838';
70
+ }
71
+
72
+ .e-csvexport::before {
73
+ content: '\e7ba';
74
+ }
75
+
76
+ .e-excelexport::before {
77
+ content: '\e7c1';
78
+ }
79
+
80
+ .e-pdfexport::before {
81
+ content: '\e700';
82
+ }
83
+
84
+ .e-indent::before {
85
+ content: '\e810';
86
+ }
87
+
88
+ .e-outdent::before {
89
+ content: '\e72a';
90
+ }
91
+
92
+ .e-add-above::before {
93
+ content: '\e836';
94
+ }
95
+
96
+ .e-add-below::before {
97
+ content: '\e801';
98
+ }
99
+ }
100
+
101
+ #{&}.e-gantt.e-device {
102
+ .e-backarrowspan::before,
103
+ .e-icon-dlg-close::before {
104
+ content: '\e773';
105
+ }
106
+
107
+ .e-left-resize-gripper::before,
108
+ .e-right-resize-gripper::before {
109
+ content: '\e770';
110
+ }
111
+ }
112
+ }
@@ -1,113 +1,113 @@
1
- @include export-module('gantt-tailwind-dark-icons') {
2
- #{&}.e-gantt {
3
- .e-add::before {
4
- content: '\e78a';
5
- }
6
-
7
- .e-edit::before {
8
- content: '\e7d2';
9
- }
10
-
11
- .e-delete::before {
12
- content: '\e78d';
13
- }
14
-
15
- .e-cancel::before {
16
- content: '\e771';
17
- }
18
-
19
- .e-save::before {
20
- content: '\e704';
21
- }
22
-
23
- .e-update::before {
24
- content: '\e704';
25
- }
26
-
27
- .e-search-icon::before {
28
- content: '\e737';
29
- }
30
-
31
- .e-cancel-icon::before {
32
- content: '\e771';
33
- }
34
-
35
- .e-notes-info::before {
36
- content: '\e7a6';
37
- }
38
-
39
- .e-left-resize-gripper::before,
40
- .e-right-resize-gripper::before {
41
- content: '\e75b';
42
- }
43
-
44
- .e-expandall::before {
45
- content: '\e762';
46
- }
47
-
48
- .e-collapseall::before {
49
- content: '\e750';
50
- }
51
-
52
- .e-prevtimespan::before {
53
- content: '\e7a5';
54
- }
55
-
56
- .e-nexttimespan::before {
57
- content: '\e7a8';
58
- }
59
-
60
- .e-zoomin::before {
61
- content: '\e70a';
62
- }
63
-
64
- .e-zoomout::before {
65
- content: '\e779';
66
- }
67
-
68
- .e-zoomtofit::before {
69
- content: '\e808';
70
- }
71
-
72
- .e-csvexport::before {
73
- content: '\e73d';
74
- }
75
-
76
- .e-excelexport::before {
77
- content: '\e780';
78
- }
79
-
80
- .e-pdfexport::before {
81
- content: '\e741';
82
- }
83
-
84
- .e-indent::before {
85
- content: '\e7ac';
86
- }
87
-
88
- .e-outdent::before {
89
- content: '\e735';
90
- }
91
-
92
- .e-add-above::before {
93
- content: '\e7dd';
94
- }
95
-
96
- .e-add-below::before {
97
- content: '\e757';
98
- }
99
- }
100
-
101
- #{&}.e-gantt.e-device {
102
- .e-backarrowspan::before,
103
- .e-icon-dlg-close::before {
104
- content: '\e7a5';
105
- }
106
-
107
- .e-left-resize-gripper::before,
108
- .e-right-resize-gripper::before {
109
- content: '\e781';
110
- }
111
- }
112
- }
1
+ @include export-module('gantt-tailwind-dark-icons') {
2
+ #{&}.e-gantt {
3
+ .e-add::before {
4
+ content: '\e78a';
5
+ }
6
+
7
+ .e-edit::before {
8
+ content: '\e7d2';
9
+ }
10
+
11
+ .e-delete::before {
12
+ content: '\e78d';
13
+ }
14
+
15
+ .e-cancel::before {
16
+ content: '\e771';
17
+ }
18
+
19
+ .e-save::before {
20
+ content: '\e704';
21
+ }
22
+
23
+ .e-update::before {
24
+ content: '\e704';
25
+ }
26
+
27
+ .e-search-icon::before {
28
+ content: '\e737';
29
+ }
30
+
31
+ .e-cancel-icon::before {
32
+ content: '\e771';
33
+ }
34
+
35
+ .e-notes-info::before {
36
+ content: '\e7a6';
37
+ }
38
+
39
+ .e-left-resize-gripper::before,
40
+ .e-right-resize-gripper::before {
41
+ content: '\e75b';
42
+ }
43
+
44
+ .e-expandall::before {
45
+ content: '\e762';
46
+ }
47
+
48
+ .e-collapseall::before {
49
+ content: '\e750';
50
+ }
51
+
52
+ .e-prevtimespan::before {
53
+ content: '\e7a5';
54
+ }
55
+
56
+ .e-nexttimespan::before {
57
+ content: '\e7a8';
58
+ }
59
+
60
+ .e-zoomin::before {
61
+ content: '\e70a';
62
+ }
63
+
64
+ .e-zoomout::before {
65
+ content: '\e779';
66
+ }
67
+
68
+ .e-zoomtofit::before {
69
+ content: '\e808';
70
+ }
71
+
72
+ .e-csvexport::before {
73
+ content: '\e73d';
74
+ }
75
+
76
+ .e-excelexport::before {
77
+ content: '\e780';
78
+ }
79
+
80
+ .e-pdfexport::before {
81
+ content: '\e741';
82
+ }
83
+
84
+ .e-indent::before {
85
+ content: '\e7ac';
86
+ }
87
+
88
+ .e-outdent::before {
89
+ content: '\e735';
90
+ }
91
+
92
+ .e-add-above::before {
93
+ content: '\e7dd';
94
+ }
95
+
96
+ .e-add-below::before {
97
+ content: '\e757';
98
+ }
99
+ }
100
+
101
+ #{&}.e-gantt.e-device {
102
+ .e-backarrowspan::before,
103
+ .e-icon-dlg-close::before {
104
+ content: '\e7a5';
105
+ }
106
+
107
+ .e-left-resize-gripper::before,
108
+ .e-right-resize-gripper::before {
109
+ content: '\e781';
110
+ }
111
+ }
112
+ }
113
113
 
@@ -14,7 +14,7 @@
14
14
  }
15
15
 
16
16
  .e-dropdownbase .e-list-item.e-active.e-hover {
17
- color: #ff80ab;
17
+ color: #00b0ff;
18
18
  }
19
19
 
20
20
  .e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:active,
@@ -729,6 +729,10 @@
729
729
  user-select: none;
730
730
  }
731
731
 
732
+ .e-gantt .e-gantt-chart .e-chart-rows-container {
733
+ line-height: initial;
734
+ }
735
+
732
736
  .e-gantt .e-gantt-chart .e-taskbar-left-resizer,
733
737
  .e-gantt .e-gantt-chart .e-taskbar-right-resizer {
734
738
  display: inline-block;
@@ -1174,6 +1178,14 @@
1174
1178
  opacity: 1;
1175
1179
  }
1176
1180
 
1181
+ .e-gantt .e-cloneproperties.e-draganddrop .e-row .e-rowcell .e-treecolumn-container .e-icons.e-none::before {
1182
+ content: '';
1183
+ }
1184
+
1185
+ .e-bigger .e-gantt .e-gantt-chart .e-label {
1186
+ font-size: 14px;
1187
+ }
1188
+
1177
1189
  .e-gantt-tooltip-label {
1178
1190
  padding-bottom: 2px;
1179
1191
  padding-right: 2px;
@@ -1263,6 +1275,10 @@
1263
1275
  border-radius: 0px;
1264
1276
  }
1265
1277
 
1278
+ .e-gantt .e-gantt-splitter-height {
1279
+ height: calc(100% - 42px) !important;
1280
+ }
1281
+
1266
1282
  .e-gantt .e-cloneproperties.e-draganddrop {
1267
1283
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.26);
1268
1284
  opacity: .95;
@@ -1372,6 +1388,7 @@
1372
1388
 
1373
1389
  .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active {
1374
1390
  background: rgba(255, 255, 255, 0.28);
1391
+ opacity: 0.87;
1375
1392
  }
1376
1393
 
1377
1394
  .e-gantt .e-gantt-chart .e-timeline-header-container {
@@ -1513,7 +1530,7 @@
1513
1530
  }
1514
1531
 
1515
1532
  .e-gantt .e-gantt-chart .e-event-markers {
1516
- border-left-color: #ff80ab;
1533
+ border-left-color: #00b0ff;
1517
1534
  }
1518
1535
 
1519
1536
  .e-gantt .e-gantt-chart .e-event-markers .e-span-label {
@@ -770,6 +770,10 @@
770
770
  user-select: none;
771
771
  }
772
772
 
773
+ .e-gantt .e-gantt-chart .e-chart-rows-container {
774
+ line-height: initial;
775
+ }
776
+
773
777
  .e-gantt .e-gantt-chart .e-taskbar-left-resizer,
774
778
  .e-gantt .e-gantt-chart .e-taskbar-right-resizer {
775
779
  display: inline-block;
@@ -1215,6 +1219,14 @@
1215
1219
  opacity: 1;
1216
1220
  }
1217
1221
 
1222
+ .e-gantt .e-cloneproperties.e-draganddrop .e-row .e-rowcell .e-treecolumn-container .e-icons.e-none::before {
1223
+ content: '';
1224
+ }
1225
+
1226
+ .e-bigger .e-gantt .e-gantt-chart .e-label {
1227
+ font-size: 14px;
1228
+ }
1229
+
1218
1230
  .e-gantt-tooltip-label {
1219
1231
  padding-bottom: 2px;
1220
1232
  padding-right: 2px;
@@ -1304,6 +1316,10 @@
1304
1316
  border-radius: 0px;
1305
1317
  }
1306
1318
 
1319
+ .e-gantt .e-gantt-splitter-height {
1320
+ height: calc(100% - 42px) !important;
1321
+ }
1322
+
1307
1323
  .e-gantt .e-cloneproperties.e-draganddrop {
1308
1324
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.26);
1309
1325
  opacity: .95;
@@ -1413,6 +1429,7 @@
1413
1429
 
1414
1430
  .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active {
1415
1431
  background: rgba(63, 81, 181, 0.15);
1432
+ opacity: 1;
1416
1433
  }
1417
1434
 
1418
1435
  .e-gantt .e-gantt-chart .e-timeline-header-container {