@syncfusion/ej2-gantt 19.4.55 → 20.1.47-1460716

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 (212) hide show
  1. package/CHANGELOG.md +1072 -1047
  2. package/README.md +75 -75
  3. package/dist/ej2-gantt.umd.min.js +1 -10
  4. package/dist/ej2-gantt.umd.min.js.map +1 -1
  5. package/dist/es6/ej2-gantt.es2015.js +341 -240
  6. package/dist/es6/ej2-gantt.es2015.js.map +1 -1
  7. package/dist/es6/ej2-gantt.es5.js +713 -598
  8. package/dist/es6/ej2-gantt.es5.js.map +1 -1
  9. package/dist/global/ej2-gantt.min.js +1 -10
  10. package/dist/global/ej2-gantt.min.js.map +1 -1
  11. package/dist/global/index.d.ts +0 -9
  12. package/dist/ts/components.ts +4 -0
  13. package/dist/ts/gantt/actions/actions.ts +18 -0
  14. package/dist/ts/gantt/actions/cell-edit.ts +606 -0
  15. package/dist/ts/gantt/actions/chart-scroll.ts +167 -0
  16. package/dist/ts/gantt/actions/column-menu.ts +35 -0
  17. package/dist/ts/gantt/actions/column-reorder.ts +52 -0
  18. package/dist/ts/gantt/actions/column-resize.ts +52 -0
  19. package/dist/ts/gantt/actions/connector-line-edit.ts +829 -0
  20. package/dist/ts/gantt/actions/context-menu.ts +754 -0
  21. package/dist/ts/gantt/actions/day-markers.ts +80 -0
  22. package/dist/ts/gantt/actions/dependency.ts +692 -0
  23. package/dist/ts/gantt/actions/dialog-edit.ts +2208 -0
  24. package/dist/ts/gantt/actions/edit.ts +3499 -0
  25. package/dist/ts/gantt/actions/excel-export.ts +61 -0
  26. package/dist/ts/gantt/actions/filter.ts +302 -0
  27. package/dist/ts/gantt/actions/keyboard.ts +306 -0
  28. package/dist/ts/gantt/actions/pdf-export.ts +214 -0
  29. package/dist/ts/gantt/actions/rowdragdrop.ts +839 -0
  30. package/dist/ts/gantt/actions/selection.ts +536 -0
  31. package/dist/ts/gantt/actions/sort.ts +98 -0
  32. package/dist/ts/gantt/actions/taskbar-edit.ts +1940 -0
  33. package/dist/ts/gantt/actions/toolbar.ts +489 -0
  34. package/dist/ts/gantt/actions/virtual-scroll.ts +60 -0
  35. package/dist/ts/gantt/base/common.ts +9 -0
  36. package/dist/ts/gantt/base/constant.ts +13 -0
  37. package/dist/ts/gantt/base/css-constants.ts +148 -0
  38. package/dist/ts/gantt/base/date-processor.ts +1257 -0
  39. package/dist/ts/gantt/base/enum.ts +372 -0
  40. package/dist/ts/gantt/base/gantt-chart.ts +1248 -0
  41. package/dist/ts/gantt/base/gantt.ts +4069 -0
  42. package/dist/ts/gantt/base/interface.ts +955 -0
  43. package/dist/ts/gantt/base/splitter.ts +174 -0
  44. package/dist/ts/gantt/base/task-processor.ts +2217 -0
  45. package/dist/ts/gantt/base/tree-grid.ts +694 -0
  46. package/dist/ts/gantt/base/utils.ts +208 -0
  47. package/dist/ts/gantt/export/export-helper.ts +552 -0
  48. package/dist/ts/gantt/export/pdf-base/dictionary.ts +152 -0
  49. package/dist/ts/gantt/export/pdf-base/pdf-borders.ts +277 -0
  50. package/dist/ts/gantt/export/pdf-base/pdf-grid-table.ts +901 -0
  51. package/dist/ts/gantt/export/pdf-base/pdf-style/gantt-theme.ts +131 -0
  52. package/dist/ts/gantt/export/pdf-base/pdf-style/style.ts +91 -0
  53. package/dist/ts/gantt/export/pdf-base/treegrid-layouter.ts +414 -0
  54. package/dist/ts/gantt/export/pdf-connector-line.ts +422 -0
  55. package/dist/ts/gantt/export/pdf-gantt.ts +282 -0
  56. package/dist/ts/gantt/export/pdf-taskbar.ts +395 -0
  57. package/dist/ts/gantt/export/pdf-timeline.ts +202 -0
  58. package/dist/ts/gantt/export/pdf-treegrid.ts +406 -0
  59. package/dist/ts/gantt/models/add-dialog-field-settings.ts +33 -0
  60. package/dist/ts/gantt/models/column.ts +464 -0
  61. package/dist/ts/gantt/models/day-working-time.ts +22 -0
  62. package/dist/ts/gantt/models/edit-dialog-field-settings.ts +33 -0
  63. package/dist/ts/gantt/models/edit-settings.ts +79 -0
  64. package/dist/ts/gantt/models/event-marker.ts +27 -0
  65. package/dist/ts/gantt/models/filter-settings.ts +53 -0
  66. package/dist/ts/gantt/models/holiday.ts +34 -0
  67. package/dist/ts/gantt/models/label-settings.ts +30 -0
  68. package/dist/ts/gantt/models/models.ts +36 -0
  69. package/dist/ts/gantt/models/resource-fields.ts +38 -0
  70. package/dist/ts/gantt/models/search-settings.ts +77 -0
  71. package/dist/ts/gantt/models/selection-settings.ts +56 -0
  72. package/dist/ts/gantt/models/sort-settings.ts +50 -0
  73. package/dist/ts/gantt/models/splitter-settings.ts +47 -0
  74. package/dist/ts/gantt/models/task-fields.ts +171 -0
  75. package/dist/ts/gantt/models/timeline-settings.ts +112 -0
  76. package/dist/ts/gantt/models/tooltip-settings.ts +46 -0
  77. package/dist/ts/gantt/renderer/chart-rows.ts +1838 -0
  78. package/dist/ts/gantt/renderer/connector-line.ts +1025 -0
  79. package/dist/ts/gantt/renderer/edit-tooltip.ts +228 -0
  80. package/dist/ts/gantt/renderer/event-marker.ts +96 -0
  81. package/dist/ts/gantt/renderer/nonworking-day.ts +205 -0
  82. package/dist/ts/gantt/renderer/render.ts +5 -0
  83. package/dist/ts/gantt/renderer/timeline.ts +1397 -0
  84. package/dist/ts/gantt/renderer/tooltip.ts +450 -0
  85. package/dist/ts/gantt/renderer/virtual-content-render.ts +50 -0
  86. package/license +9 -9
  87. package/package.json +80 -80
  88. package/src/gantt/actions/cell-edit.js +2 -1
  89. package/src/gantt/actions/dialog-edit.js +2 -1
  90. package/src/gantt/actions/edit.js +36 -9
  91. package/src/gantt/actions/rowdragdrop.js +37 -15
  92. package/src/gantt/actions/selection.js +3 -2
  93. package/src/gantt/actions/taskbar-edit.js +24 -24
  94. package/src/gantt/base/date-processor.js +0 -1
  95. package/src/gantt/base/gantt-chart.js +36 -5
  96. package/src/gantt/base/gantt-model.d.ts +779 -779
  97. package/src/gantt/base/gantt.d.ts +27 -27
  98. package/src/gantt/base/gantt.js +35 -76
  99. package/src/gantt/base/splitter.js +1 -0
  100. package/src/gantt/base/task-processor.js +13 -13
  101. package/src/gantt/base/tree-grid.js +3 -1
  102. package/src/gantt/export/pdf-base/treegrid-layouter.js +13 -13
  103. package/src/gantt/export/pdf-connector-line.js +11 -11
  104. package/src/gantt/export/pdf-gantt.js +24 -24
  105. package/src/gantt/export/pdf-taskbar.js +11 -11
  106. package/src/gantt/export/pdf-treegrid.js +13 -13
  107. package/src/gantt/models/add-dialog-field-settings-model.d.ts +21 -21
  108. package/src/gantt/models/add-dialog-field-settings.js +19 -19
  109. package/src/gantt/models/day-working-time-model.d.ts +11 -11
  110. package/src/gantt/models/day-working-time.js +19 -19
  111. package/src/gantt/models/edit-dialog-field-settings-model.d.ts +21 -21
  112. package/src/gantt/models/edit-dialog-field-settings.js +19 -19
  113. package/src/gantt/models/edit-settings-model.d.ts +50 -50
  114. package/src/gantt/models/edit-settings.js +19 -19
  115. package/src/gantt/models/event-marker-model.d.ts +16 -16
  116. package/src/gantt/models/event-marker.js +19 -19
  117. package/src/gantt/models/filter-settings-model.d.ts +34 -34
  118. package/src/gantt/models/filter-settings.js +19 -19
  119. package/src/gantt/models/holiday-model.d.ts +21 -21
  120. package/src/gantt/models/holiday.js +19 -19
  121. package/src/gantt/models/label-settings-model.d.ts +16 -16
  122. package/src/gantt/models/label-settings.js +19 -19
  123. package/src/gantt/models/resource-fields-model.d.ts +21 -21
  124. package/src/gantt/models/resource-fields.js +19 -19
  125. package/src/gantt/models/search-settings-model.d.ts +56 -56
  126. package/src/gantt/models/search-settings.js +19 -19
  127. package/src/gantt/models/selection-settings-model.d.ts +35 -35
  128. package/src/gantt/models/selection-settings.js +19 -19
  129. package/src/gantt/models/sort-settings-model.d.ts +24 -24
  130. package/src/gantt/models/sort-settings.js +19 -19
  131. package/src/gantt/models/splitter-settings-model.d.ts +30 -30
  132. package/src/gantt/models/splitter-settings.js +19 -19
  133. package/src/gantt/models/task-fields-model.d.ts +110 -110
  134. package/src/gantt/models/task-fields.js +19 -19
  135. package/src/gantt/models/timeline-settings-model.d.ts +71 -71
  136. package/src/gantt/models/timeline-settings.js +19 -19
  137. package/src/gantt/models/tooltip-settings-model.d.ts +26 -26
  138. package/src/gantt/models/tooltip-settings.js +19 -19
  139. package/src/gantt/renderer/chart-rows.js +49 -37
  140. package/src/gantt/renderer/connector-line.js +22 -18
  141. package/src/gantt/renderer/event-marker.js +1 -0
  142. package/src/gantt/renderer/nonworking-day.js +13 -6
  143. package/src/gantt/renderer/timeline.d.ts +1 -0
  144. package/src/gantt/renderer/timeline.js +51 -12
  145. package/src/gantt/renderer/tooltip.js +11 -3
  146. package/styles/bootstrap-dark.css +442 -427
  147. package/styles/bootstrap.css +442 -433
  148. package/styles/bootstrap4.css +454 -479
  149. package/styles/bootstrap5-dark.css +457 -433
  150. package/styles/bootstrap5.css +457 -433
  151. package/styles/fabric-dark.css +438 -421
  152. package/styles/fabric.css +445 -428
  153. package/styles/fluent-dark.css +1938 -0
  154. package/styles/fluent-dark.scss +1 -0
  155. package/styles/fluent.css +1938 -0
  156. package/styles/fluent.scss +1 -0
  157. package/styles/gantt/_all.scss +2 -2
  158. package/styles/gantt/_bootstrap-dark-definition.scss +210 -156
  159. package/styles/gantt/_bootstrap-definition.scss +211 -157
  160. package/styles/gantt/_bootstrap4-definition.scss +213 -158
  161. package/styles/gantt/_bootstrap5-definition.scss +215 -162
  162. package/styles/gantt/_fabric-dark-definition.scss +211 -157
  163. package/styles/gantt/_fabric-definition.scss +211 -157
  164. package/styles/gantt/_fluent-dark-definition.scss +1 -0
  165. package/styles/gantt/_fluent-definition.scss +215 -162
  166. package/styles/gantt/_fusionnew-definition.scss +214 -0
  167. package/styles/gantt/_highcontrast-definition.scss +211 -157
  168. package/styles/gantt/_highcontrast-light-definition.scss +211 -157
  169. package/styles/gantt/_layout.scss +1446 -1027
  170. package/styles/gantt/_material-dark-definition.scss +212 -157
  171. package/styles/gantt/_material-definition.scss +212 -157
  172. package/styles/gantt/_material3-definition.scss +215 -0
  173. package/styles/gantt/_tailwind-definition.scss +215 -161
  174. package/styles/gantt/_theme.scss +702 -668
  175. package/styles/gantt/bootstrap-dark.css +442 -427
  176. package/styles/gantt/bootstrap.css +442 -433
  177. package/styles/gantt/bootstrap4.css +454 -479
  178. package/styles/gantt/bootstrap5-dark.css +457 -433
  179. package/styles/gantt/bootstrap5.css +457 -433
  180. package/styles/gantt/fabric-dark.css +438 -421
  181. package/styles/gantt/fabric.css +445 -428
  182. package/styles/gantt/fluent-dark.css +1938 -0
  183. package/styles/gantt/fluent-dark.scss +22 -0
  184. package/styles/gantt/fluent.css +1938 -0
  185. package/styles/gantt/fluent.scss +22 -0
  186. package/styles/gantt/highcontrast-light.css +405 -405
  187. package/styles/gantt/highcontrast.css +444 -456
  188. package/styles/gantt/icons/_bootstrap-dark.scss +124 -113
  189. package/styles/gantt/icons/_bootstrap.scss +124 -113
  190. package/styles/gantt/icons/_bootstrap4.scss +124 -113
  191. package/styles/gantt/icons/_bootstrap5.scss +124 -112
  192. package/styles/gantt/icons/_fabric-dark.scss +124 -112
  193. package/styles/gantt/icons/_fabric.scss +124 -112
  194. package/styles/gantt/icons/_fluent-dark.scss +1 -0
  195. package/styles/gantt/icons/_fluent.scss +124 -112
  196. package/styles/gantt/icons/_fusionnew.scss +120 -0
  197. package/styles/gantt/icons/_highcontrast.scss +124 -112
  198. package/styles/gantt/icons/_material-dark.scss +124 -112
  199. package/styles/gantt/icons/_material.scss +124 -112
  200. package/styles/gantt/icons/_material3.scss +124 -0
  201. package/styles/gantt/icons/_tailwind-dark.scss +124 -113
  202. package/styles/gantt/icons/_tailwind.scss +124 -113
  203. package/styles/gantt/material-dark.css +446 -417
  204. package/styles/gantt/material.css +445 -419
  205. package/styles/gantt/tailwind-dark.css +452 -482
  206. package/styles/gantt/tailwind.css +449 -479
  207. package/styles/highcontrast-light.css +405 -405
  208. package/styles/highcontrast.css +444 -456
  209. package/styles/material-dark.css +446 -417
  210. package/styles/material.css +445 -419
  211. package/styles/tailwind-dark.css +452 -482
  212. package/styles/tailwind.css +449 -479
@@ -11,21 +11,17 @@
11
11
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
12
12
  margin-top: 1px;
13
13
  }
14
-
15
14
  .e-ddl.e-popup .e-content.e-nodata {
16
15
  background-color: #fff;
17
16
  }
18
-
19
17
  .e-ddl.e-popup .e-dropdownbase .e-list-item .e-highlight {
20
18
  color: #23726c;
21
19
  }
22
-
23
20
  .e-ddl.e-popup .e-input-group {
24
21
  display: -ms-flexbox;
25
22
  display: flex;
26
23
  width: auto;
27
24
  }
28
-
29
25
  .e-ddl.e-popup .e-input-group input {
30
26
  line-height: 15px;
31
27
  }
@@ -36,62 +32,46 @@
36
32
  margin: 5px;
37
33
  min-width: 20px;
38
34
  }
39
-
40
35
  .e-ddl.e-popup .e-input-group .e-clear-icon::before {
41
36
  font-size: 10px;
42
37
  }
43
-
44
38
  .e-ddl.e-popup .e-filter-parent {
45
39
  border-left-width: 0;
46
40
  border-right-width: 0;
47
41
  }
48
-
49
42
  .e-ddl.e-popup .e-filter-parent .e-input-group.e-control-wrapper:hover:active {
50
43
  border-color: #000;
51
44
  }
52
-
53
45
  .e-bigger .e-ddl.e-popup.e-ddl-device.e-ddl-device-filter {
54
46
  margin-top: 0;
55
47
  }
56
-
57
- .e-bigger .e-ddl.e-popup .e-list-item,
58
- .e-bigger .e-ddl.e-popup .e-list-group-item,
59
- .e-bigger .e-ddl.e-popup .e-fixed-head {
48
+ .e-bigger .e-ddl.e-popup .e-list-item, .e-bigger .e-ddl.e-popup .e-list-group-item, .e-bigger .e-ddl.e-popup .e-fixed-head {
60
49
  font-size: 15px;
61
50
  line-height: 45px;
62
51
  padding-left: 0;
63
52
  text-indent: 16px;
64
53
  }
65
-
66
54
  .e-bigger .e-ddl.e-popup .e-dd-group .e-list-item {
67
55
  padding-left: 4px;
68
56
  }
69
-
70
57
  .e-bigger .e-ddl.e-popup .e-input-group {
71
58
  padding: 4px 0;
72
59
  }
73
-
74
60
  .e-bigger .e-ddl.e-popup .e-input-group input {
75
61
  height: 30px;
76
62
  }
77
-
78
- .e-bigger.e-small .e-ddl.e-popup .e-list-item,
79
- .e-bigger.e-small .e-ddl.e-popup .e-list-group-item,
80
- .e-bigger.e-small .e-ddl.e-popup .e-fixed-head {
63
+ .e-bigger.e-small .e-ddl.e-popup .e-list-item, .e-bigger.e-small .e-ddl.e-popup .e-list-group-item, .e-bigger.e-small .e-ddl.e-popup .e-fixed-head {
81
64
  font-size: 14px;
82
65
  line-height: 40px;
83
66
  padding-left: 0;
84
67
  text-indent: 16px;
85
68
  }
86
-
87
69
  .e-bigger.e-small .e-ddl.e-popup .e-dd-group .e-list-item {
88
70
  padding-left: 4px;
89
71
  }
90
-
91
72
  .e-bigger.e-small .e-ddl.e-popup .e-input-group {
92
73
  padding: 0;
93
74
  }
94
-
95
75
  .e-bigger.e-small .e-ddl.e-popup .e-input-group input {
96
76
  height: 34px;
97
77
  }
@@ -100,94 +80,79 @@
100
80
  color: #000;
101
81
  top: 12px;
102
82
  }
103
-
83
+ .e-multiselect .e-multi-select-wrapper input {
84
+ /* stylelint-disable property-no-vendor-prefix */
85
+ }
104
86
  .e-multiselect .e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
105
87
  color: #4f4f4f;
106
88
  font-family: inherit;
107
89
  font-size: 14px;
108
90
  font-style: italic;
109
91
  }
110
-
111
92
  .e-multiselect .e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {
112
93
  color: #4f4f4f;
113
94
  font-family: inherit;
114
95
  font-size: 14px;
115
96
  font-style: italic;
116
97
  }
117
-
118
98
  .e-multiselect .e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {
119
99
  color: #4f4f4f;
120
100
  font-family: inherit;
121
101
  font-size: 14px;
122
102
  font-style: italic;
123
103
  }
124
-
125
104
  .e-multiselect .e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {
126
105
  color: #4f4f4f;
127
106
  font-family: inherit;
128
107
  font-size: 14px;
129
108
  font-style: italic;
130
109
  }
131
-
132
110
  .e-multi-select-wrapper .e-chips-collection .e-chips:hover .e-chipcontent {
133
111
  color: #000;
134
112
  }
135
-
136
113
  .e-multi-select-wrapper .e-chips-collection .e-chips:hover .e-chips-close.e-icon::before {
137
114
  color: #000;
138
115
  }
139
-
140
116
  .e-multi-select-wrapper .e-chips-collection .e-chips .e-chips-close.e-icon::before {
141
117
  line-height: 26px;
142
118
  top: 0;
143
119
  }
144
-
145
120
  .e-multi-select-wrapper .e-delim-values.e-delim-view {
146
121
  color: #000;
147
122
  }
148
-
149
123
  .e-multi-select-wrapper.e-delimiter .e-delim-values {
150
124
  color: #000;
151
125
  }
152
-
153
- .e-multi-select-wrapper .e-searcher input[type='text'] {
126
+ .e-multi-select-wrapper .e-searcher input[type=text] {
154
127
  color: #000;
155
128
  height: 100%;
156
129
  min-height: 28px;
157
130
  }
158
-
159
- .e-multi-select-wrapper .e-searcher input[type='text']::selection {
131
+ .e-multi-select-wrapper .e-searcher input[type=text]::selection {
160
132
  background-color: #400074;
161
133
  }
162
134
 
163
- .e-popup.e-multi-select-list-wrapper.e-ddl.e-checkbox .e-filter-parent .e-clear-icon,
164
- .e-bigger .e-popup.e-multi-select-list-wrapper.e-ddl.e-checkbox .e-filter-parent .e-clear-icon {
135
+ .e-popup.e-multi-select-list-wrapper.e-ddl.e-checkbox .e-filter-parent .e-clear-icon, .e-bigger .e-popup.e-multi-select-list-wrapper.e-ddl.e-checkbox .e-filter-parent .e-clear-icon {
165
136
  padding-left: 0;
166
137
  }
167
-
168
138
  .e-popup.e-multi-select-list-wrapper.e-checkbox .e-selectall-parent {
169
139
  border-bottom: 1px solid #000;
170
140
  }
171
-
172
141
  .e-popup.e-multi-select-list-wrapper.e-checkbox .e-list-parent .e-list-item.e-item-focus.e-active.e-hover {
173
142
  background-color: #400074;
174
143
  }
175
-
176
144
  .e-popup.e-multi-select-list-wrapper.e-checkbox .e-list-parent .e-list-item.e-item-focus.e-active {
177
145
  border: 2px solid #400074;
178
146
  }
179
-
180
147
  .e-popup.e-multi-select-list-wrapper.e-checkbox .e-list-parent .e-list-item.e-active.e-hover:not(.e-item-focus) {
181
148
  border-bottom: 2px solid #000;
182
149
  border-left: 2px solid #000;
183
150
  border-right: 2px solid #000;
184
151
  border-top: 2px solid #000;
185
152
  }
186
-
187
153
  .e-popup.e-multi-select-list-wrapper .e-list-parent .e-list-item.e-item-focus {
188
154
  border: 2px solid #ecf;
189
155
  }
190
-
191
156
  .e-popup.e-multi-select-list-wrapper .e-list-parent .e-list-item.e-active.e-hover {
192
157
  background-color: #000;
193
158
  border-bottom: 1px solid #000;
@@ -195,15 +160,12 @@
195
160
  border-right: 1px solid #000;
196
161
  border-top: 1px solid #000;
197
162
  }
198
-
199
163
  .e-popup.e-multi-select-list-wrapper .e-list-parent .e-list-item.e-hover:not(.e-active) {
200
164
  border: 2px solid #000;
201
165
  }
202
-
203
166
  .e-popup.e-multi-select-list-wrapper .e-list-parent .e-list-item:not(.e-hover):not(.e-item-focus) {
204
167
  border: 2px solid #fff;
205
168
  }
206
-
207
169
  .e-popup.e-multi-select-list-wrapper .e-list-parent .e-list-item.e-active {
208
170
  border: 2px solid #400074;
209
171
  }
@@ -213,6 +175,8 @@
213
175
  width: 30px;
214
176
  }
215
177
 
178
+ /* stylelint-disable property-no-vendor-prefix */
179
+ /* stylelint-disable property-no-vendor-prefix */
216
180
  @keyframes material-spinner-rotate {
217
181
  0% {
218
182
  transform: rotate(0);
@@ -221,7 +185,6 @@
221
185
  transform: rotate(360deg);
222
186
  }
223
187
  }
224
-
225
188
  @keyframes fabric-spinner-rotate {
226
189
  0% {
227
190
  transform: rotate(0);
@@ -230,21 +193,232 @@
230
193
  transform: rotate(360deg);
231
194
  }
232
195
  }
196
+ /* stylelint-disable */
197
+ .e-bigger .e-gantt .e-gantt-chart .e-timeline-header-container {
198
+ height: 64px;
199
+ }
200
+ .e-bigger .e-gantt .e-gantt-chart .e-timeline-top-header-cell {
201
+ height: 32px;
202
+ }
203
+ .e-bigger .e-gantt .e-gantt-chart .e-event-markers .e-span-label {
204
+ border-radius: 4px !important;
205
+ font-size: 12px !important;
206
+ height: 26px !important;
207
+ padding: 4px 11px 4px 8px !important;
208
+ top: 36px !important;
209
+ }
210
+ .e-bigger .e-gantt .e-gantt-chart .e-event-markers .e-gantt-right-arrow {
211
+ border-bottom: 6px solid transparent;
212
+ border-right: 6px solid transparent;
213
+ border-right-color: #fff;
214
+ border-top: 6px solid transparent;
215
+ top: 43px !important;
216
+ }
217
+ .e-bigger .e-gantt .e-gantt-chart .e-left-resize-gripper::before,
218
+ .e-bigger .e-gantt .e-gantt-chart .e-right-resize-gripper::before {
219
+ content: "\e92c";
220
+ }
221
+ .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right,
222
+ .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left,
223
+ .e-bigger .e-gantt .e-gantt-chart .e-right-connectorpoint-outer-div,
224
+ .e-bigger .e-gantt .e-gantt-chart .e-left-connectorpoint-outer-div {
225
+ border-radius: 50%;
226
+ display: inline-block;
227
+ position: absolute;
228
+ }
229
+ .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover,
230
+ .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
231
+ border-style: solid;
232
+ border-width: 1px;
233
+ box-sizing: content-box;
234
+ cursor: pointer;
235
+ display: inline-block;
236
+ }
237
+ .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover,
238
+ .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
239
+ background-color: #ffd939;
240
+ border-color: #000;
241
+ }
242
+ .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover:hover,
243
+ .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover:hover {
244
+ background-color: #ffd939;
245
+ border-color: #000;
246
+ outline: 2px solid #e7f1ff;
247
+ }
248
+ .e-bigger .e-gantt .e-tab .e-content {
249
+ height: 241px !important;
250
+ }
251
+ .e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
252
+ height: 63px !important; /* stylelint-disable-line declaration-no-important */
253
+ }
254
+ .e-bigger .e-gantt .e-dialog .e-dlg-header-content {
255
+ padding: 16px 4px 12px 18px !important; /* stylelint-disable-line declaration-no-important */
256
+ }
257
+ .e-bigger .e-gantt .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
258
+ left: 2px !important;
259
+ }
260
+ .e-bigger .e-gantt .e-dialog .e-btn .e-btn-icon.e-icon-dlg-close {
261
+ font-size: 12px !important;
262
+ }
263
+ .e-bigger .e-gantt .e-dialog .e-footer-content {
264
+ height: 76px !important;
265
+ padding: 19px 18px 19px 16px !important;
266
+ }
267
+ .e-bigger .e-gantt .e-dialog .e-footer-content .e-btn {
268
+ margin-left: 12px;
269
+ }
270
+ .e-bigger .e-gantt .e-dialog .e-dlg-header {
271
+ line-height: 28px;
272
+ }
273
+ .e-bigger .e-gantt .e-filter-popup.e-popup {
274
+ width: 307px !important;
275
+ }
276
+ .e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
277
+ padding: 20px 0 0 !important;
278
+ }
279
+ .e-bigger .e-gantt .e-filter-popup .e-dlg-content {
280
+ border-radius: 0px !important;
281
+ padding: 20px 18px 0px 18px !important;
282
+ }
283
+ .e-bigger .e-columnmenu {
284
+ top: 45px;
285
+ }
286
+ .e-bigger .e-gantt-dialog .e-dialog {
287
+ border-radius: 6px;
288
+ width: 554px !important;
289
+ }
290
+ .e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
291
+ padding: 0 16px !important; /* stylelint-disable-line declaration-no-important */
292
+ }
293
+ .e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(odd) {
294
+ padding: 16px 9px 0 18px;
295
+ }
296
+ .e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(even) {
297
+ padding: 16px 18px 0 9px;
298
+ }
299
+ .e-bigger .e-gantt-dialog .e-edit-form-row.e-scroll .e-edit-form-column:nth-child(even) {
300
+ padding: 16px 18px 0 9px;
301
+ }
302
+ .e-bigger .e-gantt-dialog .e-edit-form-row {
303
+ height: 241px !important;
304
+ }
305
+ .e-bigger .e-gantt-dialog .e-edit-form-column {
306
+ height: 78px !important;
307
+ }
308
+ .e-bigger .e-gantt-dialog .e-dlg-header-content {
309
+ border-bottom: 0 !important; /* stylelint-disable-line declaration-no-important */
310
+ }
311
+ .e-bigger .e-gantt-dialog > .e-dlg-content {
312
+ border-radius: 0 !important; /* stylelint-disable-line declaration-no-important */
313
+ }
314
+ .e-bigger .e-gantt-dialog .e-dlg-header-content {
315
+ border-radius: 6px 6px 0px 0px;
316
+ padding-bottom: 4px;
317
+ }
318
+ .e-bigger .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
319
+ border-radius: 50%;
320
+ height: auto !important; /* stylelint-disable-line declaration-no-important */
321
+ width: auto;
322
+ }
323
+ .e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
324
+ margin-left: 6px !important;
325
+ }
326
+ .e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
327
+ font-size: 16px !important; /* stylelint-disable-line declaration-no-important */
328
+ }
329
+ .e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
330
+ min-height: 38px !important;
331
+ min-width: 35.82px !important; /* stylelint-disable-line declaration-no-important */
332
+ }
333
+ .e-bigger .e-gantt-dialog .e-btn.e-flat {
334
+ line-height: 24px;
335
+ padding: 6px 16px 6px 15px !important; /* stylelint-disable-line declaration-no-important */
336
+ }
337
+ .e-bigger .e-gantt-dialog .e-btn.e-primary {
338
+ padding: 6px 21px 6px 23px !important; /* stylelint-disable-line declaration-no-important */
339
+ }
340
+ .e-bigger .e-gantt-dialog .e-datetime-wrapper .e-time-icon.e-icons::before {
341
+ font-size: 16px !important; /* stylelint-disable-line declaration-no-important */
342
+ }
343
+ .e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text {
344
+ font-size: 14px;
345
+ line-height: 22px;
346
+ }
347
+ .e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input[disabled] ~ label.e-label-top.e-float-text {
348
+ font-size: 14px;
349
+ line-height: 22px;
350
+ }
351
+ .e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input {
352
+ height: 38px !important;
353
+ }
354
+ .e-bigger .e-gantt-dialog .e-numeric.e-control-wrapper.e-input-group .e-input-group-icon {
355
+ min-height: 38px !important;
356
+ min-width: 35.82px !important; /* stylelint-disable-line declaration-no-important */
357
+ }
358
+ .e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-time-icon {
359
+ min-height: 38px !important;
360
+ min-width: 35.82px !important; /* stylelint-disable-line declaration-no-important */
361
+ }
362
+ .e-bigger .e-gantt-dialog .e-input-group.e-control-wrapper {
363
+ height: 40px;
364
+ }
365
+ .e-bigger .e-gantt-dialog .e-input-group-icon.e-date-icon {
366
+ min-width: 36px !important; /* stylelint-disable-line declaration-no-important */
367
+ }
368
+ .e-bigger .e-predecessor-tooltip .e-arrow-tip-outer.e-tip-bottom {
369
+ border-top: 8px solid #000;
370
+ border-top: 7px solid #000;
371
+ }
372
+ .e-bigger .e-predecessor-tooltip .e-arrow-tip-inner.e-tip-bottom {
373
+ color: #000;
374
+ }
375
+ .e-bigger .e-predecessor-tooltip .e-left-btn:disabled {
376
+ color: #757575 !important;
377
+ }
378
+ .e-bigger .e-predecessor-tooltip .e-right-btn:disabled {
379
+ color: #757575 !important;
380
+ }
381
+ .e-bigger .e-predecessor-tooltip .e-tip-content {
382
+ padding: 3px !important; /* stylelint-disable-line declaration-no-important */
383
+ }
384
+ .e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type {
385
+ background-color: #000;
386
+ border-color: #000;
387
+ color: #F9FAFB;
388
+ font-size: 12px;
389
+ line-height: 18px;
390
+ padding: 0 8px 0 0;
391
+ }
392
+ .e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:last-of-type {
393
+ background-color: #000;
394
+ border-color: #000;
395
+ color: #F9FAFB;
396
+ font-size: 12px;
397
+ line-height: 18px;
398
+ padding: 0 0 0 8px;
399
+ }
400
+ .e-bigger .e-predecessor-dialog {
401
+ background-color: #1a1a1a;
402
+ }
403
+ .e-bigger .e-predecessor-dialog .e-dlg-content {
404
+ background-color: #1a1a1a;
405
+ padding: 10px 9px 9px 14px !important;
406
+ font-size: 12px;
407
+ font-weight: 400;
408
+ line-height: 1.8;
409
+ }
233
410
 
234
411
  .e-gantt {
235
412
  display: block;
236
413
  width: 100%;
237
414
  }
238
-
239
415
  .e-gantt .e-cloneproperties {
240
416
  padding: 4px 5px;
241
417
  }
242
-
243
418
  .e-gantt .e-cloneproperties.e-draganddrop .e-row .e-icon-rowdragicon::before {
244
419
  left: -5px;
245
420
  position: relative;
246
421
  }
247
-
248
422
  .e-gantt .e-cloneproperties {
249
423
  border-style: solid;
250
424
  border-width: 1px;
@@ -262,127 +436,101 @@
262
436
  white-space: nowrap;
263
437
  z-index: 100;
264
438
  }
265
-
266
439
  .e-gantt .e-cloneproperties.e-draganddrop {
267
440
  border-spacing: 0;
268
441
  font-size: 12px;
269
442
  font-weight: normal;
270
443
  overflow: visible;
271
444
  }
272
-
273
445
  .e-gantt .e-cloneproperties .e-bothganttlines {
274
446
  border-width: 1px 0 0 1px;
275
447
  }
276
-
277
448
  .e-gantt .e-draganddrop {
278
449
  border-width: 0 1px 1px;
279
450
  font-weight: normal;
280
451
  padding: 0;
281
452
  }
282
-
283
453
  .e-gantt .e-draganddrop .e-rowcell {
284
- opacity: .95;
454
+ opacity: 0.95;
285
455
  }
286
-
287
456
  .e-gantt .e-cloneproperties.e-draganddrop table {
288
457
  border-spacing: 0;
289
458
  }
290
-
291
459
  .e-gantt .e-icons.e-errorelem {
292
460
  display: inline-block;
293
461
  padding-left: 10px;
294
462
  vertical-align: middle;
295
463
  }
296
-
297
464
  .e-gantt .e-errorelem::before {
298
465
  color: #e3165b;
299
- content: '\e22a';
466
+ content: "\e22a";
300
467
  transform: rotate(180deg);
301
468
  }
302
-
303
- .e-gantt .e-verticallines .e-cloneproperties.e-draganddrop .e-rowdragdrop,
304
- .e-gantt .e-bothlines .e-cloneproperties.e-draganddrop .e-rowdragdrop {
469
+ .e-gantt .e-verticallines .e-cloneproperties.e-draganddrop .e-rowdragdrop, .e-gantt .e-bothlines .e-cloneproperties.e-draganddrop .e-rowdragdrop {
305
470
  border-bottom: 0;
306
471
  border-right: 1px solid #757575;
307
472
  border-top: 1px solid #757575;
308
473
  }
309
-
310
474
  .e-gantt .e-gantt-toolbar {
311
475
  border-bottom-left-radius: 0;
312
476
  border-bottom-right-radius: 0;
313
477
  border-style: solid;
314
478
  border-width: 1px 1px 0;
315
479
  }
316
-
317
480
  .e-gantt .e-flmenu-valuediv {
318
481
  padding-top: 24px;
319
482
  }
320
-
321
483
  .e-gantt .e-gantt-splitter .e-split-bar.e-split-bar-horizontal.e-resizable-split-bar {
322
484
  margin: 0;
323
485
  }
324
-
325
486
  .e-gantt .e-gantt-splitter .e-pane {
326
- overflow: hidden !important;
487
+ overflow: hidden !important; /* stylelint-disable-line declaration-no-important */
327
488
  }
328
-
329
489
  .e-gantt .e-temp-content {
330
490
  border-left: 1px solid;
331
491
  }
332
-
333
492
  .e-gantt .e-tab {
334
493
  border: 0;
335
494
  }
336
-
337
495
  .e-gantt .e-tab .e-tab-header .e-toolbar-item.e-active {
338
496
  border-color: transparent;
339
497
  }
340
-
341
498
  .e-gantt .e-gantt-tree-grid-pane .e-grid {
342
499
  border-width: 0;
343
500
  }
344
-
345
- .e-gantt .e-gantt-tree-grid-pane .e-grid.e-gridhover tr[role='row']:not(.e-editedrow):hover .e-rowcell:not(.e-cellselectionbackground):not(.e-active):not(.e-updatedtd):not(.e-indentcell),
346
- .e-gantt .e-gantt-tree-grid-pane .e-grid.e-gridhover tr[role='row']:hover .e-detailrowcollapse:not(.e-cellselectionbackground):not(.e-active):not(.e-updatedtd):not(.e-indentcell),
347
- .e-gantt .e-gantt-tree-grid-pane .e-grid.e-gridhover tr[role='row']:hover .e-rowdragdrop:not(.e-cellselectionbackground):not(.e-active):not(.e-updatedtd):not(.e-indentcell),
348
- .e-gantt .e-gantt-tree-grid-pane .e-grid.e-rtl .e-gridhover tr[role='row']:hover .e-rowdragdrop:not(.e-cellselectionbackground):not(.e-active):not(.e-updatedtd):not(.e-indentcell),
349
- .e-gantt .e-gantt-tree-grid-pane .e-grid.e-gridhover tr[role='row']:hover .e-detailrowexpand:not(.e-cellselectionbackground):not(.e-active):not(.e-updatedtd):not(.e-indentcell) {
501
+ .e-gantt .e-gantt-tree-grid-pane .e-grid.e-gridhover tr[role=row]:not(.e-editedrow):hover .e-rowcell:not(.e-cellselectionbackground):not(.e-active):not(.e-updatedtd):not(.e-indentcell),
502
+ .e-gantt .e-gantt-tree-grid-pane .e-grid.e-gridhover tr[role=row]:hover .e-detailrowcollapse:not(.e-cellselectionbackground):not(.e-active):not(.e-updatedtd):not(.e-indentcell),
503
+ .e-gantt .e-gantt-tree-grid-pane .e-grid.e-gridhover tr[role=row]:hover .e-rowdragdrop:not(.e-cellselectionbackground):not(.e-active):not(.e-updatedtd):not(.e-indentcell),
504
+ .e-gantt .e-gantt-tree-grid-pane .e-grid.e-rtl .e-gridhover tr[role=row]:hover .e-rowdragdrop:not(.e-cellselectionbackground):not(.e-active):not(.e-updatedtd):not(.e-indentcell),
505
+ .e-gantt .e-gantt-tree-grid-pane .e-grid.e-gridhover tr[role=row]:hover .e-detailrowexpand:not(.e-cellselectionbackground):not(.e-active):not(.e-updatedtd):not(.e-indentcell) {
350
506
  background-color: transparent;
351
507
  }
352
-
353
508
  .e-gantt .e-gantt-tree-grid-pane .e-gantt-temp-header {
354
509
  border-bottom-style: solid;
355
510
  border-bottom-width: 1px;
356
511
  height: 45px;
357
512
  }
358
-
359
513
  .e-gantt .e-gantt-tree-grid-pane .e-headercontent {
360
- border-right-width: 0 !important;
514
+ border-right-width: 0 !important; /* stylelint-disable-line declaration-no-important */
361
515
  }
362
-
363
516
  .e-gantt .e-gantt-tree-grid-pane .e-gridheader {
364
517
  border-top-style: none;
365
518
  border-top-width: 0;
366
- padding-right: 0 !important;
519
+ padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
367
520
  }
368
-
369
521
  .e-gantt .e-gantt-tree-grid-pane .e-columnheader,
370
522
  .e-gantt .e-gantt-tree-grid-pane .e-headercell {
371
- height: 63px !important;
523
+ height: 63px !important; /* stylelint-disable-line declaration-no-important */
372
524
  }
373
-
374
525
  .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content {
375
- overflow-x: scroll !important;
526
+ overflow-x: scroll !important; /* stylelint-disable-line declaration-no-important */
376
527
  }
377
-
378
528
  .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content.e-gantt-scroll-padding {
379
529
  width: calc(100% + 17px);
380
530
  }
381
-
382
531
  .e-gantt .e-gantt-tree-grid-pane .e-ganttnotes-info {
383
532
  text-align: center;
384
533
  }
385
-
386
534
  .e-gantt .e-gantt-tree-grid-pane .e-icons.e-notes-info {
387
535
  display: inline-block;
388
536
  font-size: 18px;
@@ -390,54 +538,45 @@
390
538
  line-height: 10px;
391
539
  vertical-align: middle;
392
540
  }
393
-
394
541
  .e-gantt .e-gantt-chart {
395
542
  height: 100%;
396
543
  overflow: hidden;
397
544
  position: relative;
398
545
  width: 100%;
399
546
  }
400
-
401
547
  .e-gantt .e-gantt-chart .e-chart-root-container {
402
548
  border-right: 0 solid;
403
549
  }
404
-
405
550
  .e-gantt .e-gantt-chart .e-chart-root-container .e-content {
406
- -webkit-overflow-scrolling: touch;
551
+ -webkit-overflow-scrolling: touch; /* stylelint-disable-line property-no-vendor-prefix */
407
552
  overflow-x: scroll;
408
553
  overflow-y: auto;
409
554
  position: relative;
410
555
  }
411
-
412
556
  .e-gantt .e-gantt-chart .e-chart-root-container .e-nonworking-day-container {
413
557
  position: absolute;
414
558
  }
415
-
416
559
  .e-gantt .e-gantt-chart .e-chart-root-container .e-event-markers-container {
417
560
  position: absolute;
418
561
  }
419
-
420
562
  .e-gantt .e-gantt-chart .e-chart-root-container .e-holiday-container {
563
+ height: 100%;
421
564
  position: absolute;
422
565
  }
423
-
424
566
  .e-gantt .e-gantt-chart .e-chart-root-container .e-weekend-container {
567
+ height: 100%;
425
568
  position: absolute;
426
569
  }
427
-
428
570
  .e-gantt .e-gantt-chart .e-timeline-header-container {
429
571
  border-bottom-style: solid;
430
- border-right-width: 0;
572
+ border-right: 1px solid;
431
573
  overflow: hidden;
432
574
  position: relative;
433
575
  z-index: 6;
434
576
  }
435
-
436
577
  .e-gantt .e-gantt-chart .e-timeline-header-table-container > thead > tr > th {
437
578
  border-left: 0;
438
- padding: 0 3px;
439
579
  }
440
-
441
580
  .e-gantt .e-gantt-chart .e-timeline-header-table-container {
442
581
  border-collapse: collapse;
443
582
  border-spacing: 0;
@@ -446,7 +585,6 @@
446
585
  margin: 0;
447
586
  padding: 0;
448
587
  }
449
-
450
588
  .e-gantt .e-gantt-chart .e-timeline-header-table-body {
451
589
  border-collapse: collapse;
452
590
  box-sizing: border-box;
@@ -454,12 +592,10 @@
454
592
  transform: scale(1);
455
593
  white-space: nowrap;
456
594
  }
457
-
458
595
  .e-gantt .e-gantt-chart .e-timeline-header-table-body > tr {
459
596
  display: -ms-inline-flexbox;
460
597
  display: inline-flex;
461
598
  }
462
-
463
599
  .e-gantt .e-gantt-chart .e-timeline-top-header-cell,
464
600
  .e-gantt .e-gantt-chart .e-timeline-single-header-cell {
465
601
  border-spacing: 0;
@@ -480,7 +616,6 @@
480
616
  user-select: none;
481
617
  white-space: nowrap;
482
618
  }
483
-
484
619
  .e-gantt .e-gantt-chart .e-timeline-top-header-cell .e-header-cell-label,
485
620
  .e-gantt .e-gantt-chart .e-timeline-single-header-cell .e-header-cell-label {
486
621
  box-sizing: border-box;
@@ -490,13 +625,11 @@
490
625
  text-overflow: ellipsis;
491
626
  white-space: nowrap;
492
627
  }
493
-
494
628
  .e-gantt .e-gantt-chart .e-timeline-top-header-cell .e-gantt-top-cell-text,
495
629
  .e-gantt .e-gantt-chart .e-timeline-single-header-cell .e-gantt-top-cell-text {
496
- padding-left: 8px;
630
+ padding-left: 11px;
497
631
  text-align: left;
498
632
  }
499
-
500
633
  .e-gantt .e-gantt-chart .e-gantt-grid-lines {
501
634
  border-bottom-style: solid;
502
635
  border-bottom-width: 1px;
@@ -504,37 +637,30 @@
504
637
  border-spacing: 0;
505
638
  box-sizing: border-box;
506
639
  }
507
-
508
640
  .e-gantt .e-gantt-chart .e-zero-spacing {
509
641
  border-spacing: 0;
510
642
  }
511
-
512
643
  .e-gantt .e-gantt-chart .e-chart-row:first-child .e-chart-row-border {
513
644
  border-top-color: transparent;
514
645
  }
515
-
516
646
  .e-gantt .e-gantt-chart .e-chart-row .e-chart-row-border {
517
647
  border-collapse: separate;
518
648
  border-style: solid;
519
649
  border-width: 1px 0 0;
520
650
  }
521
-
522
651
  .e-gantt .e-gantt-chart .e-chart-row .e-chart-row-cell {
523
652
  font-size: 0;
524
653
  padding: 0;
525
654
  }
526
-
527
655
  .e-gantt .e-gantt-chart .e-chart-row .e-chart-row-border.e-lastrow {
528
656
  border-bottom-width: 1px;
529
657
  }
530
-
531
658
  .e-gantt .e-gantt-chart .e-line-container-cell {
532
659
  border-right-style: solid;
533
660
  border-right-width: 1px;
534
661
  height: 100%;
535
662
  position: absolute;
536
663
  }
537
-
538
664
  .e-gantt .e-gantt-chart .e-taskbar-main-container {
539
665
  cursor: move;
540
666
  display: inline-block;
@@ -542,7 +668,6 @@
542
668
  vertical-align: middle;
543
669
  z-index: 3;
544
670
  }
545
-
546
671
  .e-gantt .e-gantt-chart .e-left-label-container.e-left-label-temp-container {
547
672
  -ms-flex-align: center;
548
673
  align-items: center;
@@ -554,7 +679,6 @@
554
679
  text-overflow: ellipsis;
555
680
  white-space: nowrap;
556
681
  }
557
-
558
682
  .e-gantt .e-gantt-chart .e-right-label-container.e-right-label-temp-container {
559
683
  -ms-flex-align: center;
560
684
  align-items: center;
@@ -567,16 +691,13 @@
567
691
  text-overflow: ellipsis;
568
692
  white-space: nowrap;
569
693
  }
570
-
571
694
  .e-gantt .e-gantt-chart .e-left-label-container {
572
695
  display: inline-block;
573
696
  }
574
-
575
697
  .e-gantt .e-gantt-chart .e-left-label-inner-div,
576
698
  .e-gantt .e-gantt-chart .e-right-label-container {
577
699
  overflow: hidden;
578
700
  }
579
-
580
701
  .e-gantt .e-gantt-chart .e-left-label-inner-div {
581
702
  -ms-flex-align: center;
582
703
  align-items: center;
@@ -586,21 +707,18 @@
586
707
  justify-content: flex-end;
587
708
  width: 100%;
588
709
  }
589
-
590
710
  .e-gantt .e-gantt-chart .e-label {
591
711
  margin: 3px;
592
712
  overflow: hidden;
593
713
  text-overflow: ellipsis;
594
714
  white-space: nowrap;
595
715
  }
596
-
597
716
  .e-gantt .e-gantt-chart .e-right-label-container {
598
717
  background-color: transparent;
599
718
  display: inline-block;
600
719
  margin: 0;
601
720
  position: absolute;
602
721
  }
603
-
604
722
  .e-gantt .e-gantt-chart .e-right-label-inner-div {
605
723
  -ms-flex-align: center;
606
724
  align-items: center;
@@ -610,16 +728,14 @@
610
728
  outline: none;
611
729
  overflow: hidden;
612
730
  }
613
-
614
731
  .e-gantt .e-gantt-chart .e-indicator-span {
615
732
  display: inline-block;
616
733
  font-size: 13px;
617
- font-weight: 400;
734
+ font-weight: normal;
618
735
  overflow: hidden;
619
736
  position: absolute;
620
737
  text-overflow: ellipsis;
621
738
  }
622
-
623
739
  .e-gantt .e-gantt-chart .e-gantt-child-taskbar,
624
740
  .e-gantt .e-gantt-chart .e-gantt-parent-taskbar,
625
741
  .e-gantt .e-gantt-chart .e-gantt-child-progressbar,
@@ -630,18 +746,15 @@
630
746
  display: inline-block;
631
747
  width: 100%;
632
748
  }
633
-
634
749
  .e-gantt .e-gantt-chart .e-manualparent-main-container {
635
750
  background-color: transparent;
636
751
  cursor: move;
637
752
  margin-top: -5px;
638
753
  position: absolute;
639
754
  }
640
-
641
755
  .e-gantt .e-gantt-chart .e-gantt-manualparent-taskbar {
642
756
  margin-top: 3px;
643
757
  }
644
-
645
758
  .e-gantt .e-gantt-chart .e-gantt-split-container-line {
646
759
  border-color: inherit;
647
760
  border-top-style: dotted;
@@ -653,7 +766,6 @@
653
766
  top: 50%;
654
767
  width: 98%;
655
768
  }
656
-
657
769
  .e-gantt .e-gantt-chart .e-gantt-child-taskbar-inner-div,
658
770
  .e-gantt .e-gantt-chart .e-gantt-parent-taskbar-inner-div {
659
771
  border-spacing: 0;
@@ -663,28 +775,23 @@
663
775
  padding: 0;
664
776
  z-index: 3;
665
777
  }
666
-
667
778
  .e-gantt .e-gantt-chart .e-gantt-parent-progressbar-inner-div {
668
779
  z-index: 3;
669
780
  }
670
-
671
781
  .e-gantt .e-gantt-chart .e-gantt-child-progressbar-inner-div,
672
782
  .e-gantt .e-gantt-chart .e-gantt-parent-progressbar-inner-div {
673
783
  box-sizing: border-box;
674
784
  text-align: right;
675
785
  }
676
-
677
786
  .e-gantt .e-gantt-chart .e-chart-scroll-container,
678
787
  .e-gantt .e-gantt-chart .e-chart-rows-container {
679
788
  -webkit-user-select: none;
680
789
  -ms-user-select: none;
681
790
  user-select: none;
682
791
  }
683
-
684
792
  .e-gantt .e-gantt-chart .e-chart-rows-container {
685
793
  line-height: initial;
686
794
  }
687
-
688
795
  .e-gantt .e-gantt-chart .e-taskbar-left-resizer,
689
796
  .e-gantt .e-gantt-chart .e-taskbar-right-resizer {
690
797
  display: inline-block;
@@ -693,7 +800,6 @@
693
800
  width: 10px;
694
801
  z-index: 4;
695
802
  }
696
-
697
803
  .e-gantt .e-gantt-chart .e-child-progress-resizer {
698
804
  display: inline-block;
699
805
  height: 15px;
@@ -702,61 +808,53 @@
702
808
  width: 20px;
703
809
  z-index: 5;
704
810
  }
705
-
706
811
  .e-gantt .e-gantt-chart .e-progress-resize-gripper {
707
812
  cursor: col-resize;
708
813
  }
709
-
710
814
  .e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler {
711
- border-style: solid;
712
815
  border-width: 1px;
713
816
  box-sizing: content-box;
714
817
  cursor: col-resize;
715
818
  height: 2px;
716
819
  position: absolute;
717
820
  top: 7px;
718
- width: 12px;
719
821
  }
720
-
721
822
  .e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-element {
722
823
  border-bottom-style: solid;
723
- border-bottom-width: 6px;
824
+ border-bottom-width: 8px;
724
825
  border-left: 7px solid transparent;
725
826
  border-right: 7px solid transparent;
726
827
  cursor: col-resize;
727
828
  height: 0;
728
- left: -1px;
829
+ left: 0;
729
830
  position: absolute;
730
831
  top: -7px;
731
832
  width: 0;
732
833
  }
733
-
734
834
  .e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-after {
735
835
  border-bottom-style: solid;
736
- border-bottom-width: 6px;
836
+ border-bottom-width: 8px;
737
837
  border-left: 6px solid transparent;
738
838
  border-right: 6px solid transparent;
739
839
  cursor: col-resize;
740
840
  height: 0;
741
- left: -1px;
841
+ left: 1px;
742
842
  position: absolute;
743
- top: -6px;
843
+ top: -7px;
744
844
  width: 0;
745
845
  }
746
-
747
846
  .e-gantt .e-gantt-chart .e-baseline-bar {
847
+ border-radius: 2px;
748
848
  box-sizing: border-box;
749
849
  position: absolute;
750
- z-index: 3;
850
+ z-index: 2;
751
851
  }
752
-
753
852
  .e-gantt .e-gantt-chart .e-milestone-top,
754
853
  .e-gantt .e-gantt-chart .e-parent-milestone-top,
755
854
  .e-gantt .e-gantt-chart .e-manualparent-milestone-top {
756
855
  border-style: none solid solid;
757
856
  border-top: 0;
758
857
  }
759
-
760
858
  .e-gantt .e-gantt-chart .e-milestone-top,
761
859
  .e-gantt .e-gantt-chart .e-milestone-bottom,
762
860
  .e-gantt .e-gantt-chart .e-parent-milestone-top,
@@ -766,19 +864,16 @@
766
864
  border-left-color: transparent;
767
865
  border-right-color: transparent;
768
866
  }
769
-
770
867
  .e-gantt .e-gantt-chart .e-milestone-bottom,
771
868
  .e-gantt .e-gantt-chart .e-parent-milestone-bottom,
772
869
  .e-gantt .e-gantt-chart .e-manualparent-milestone-bottom {
773
870
  border-bottom: 0;
774
871
  border-style: solid solid none;
775
872
  }
776
-
777
873
  .e-gantt .e-gantt-chart .e-baseline-gantt-milestone-container {
778
874
  position: absolute;
779
875
  z-index: 2;
780
876
  }
781
-
782
877
  .e-gantt .e-gantt-chart .e-task-label {
783
878
  display: inline;
784
879
  font-weight: normal;
@@ -789,11 +884,9 @@
789
884
  vertical-align: middle;
790
885
  white-space: nowrap;
791
886
  }
792
-
793
887
  .e-gantt .e-gantt-chart .e-task-table {
794
888
  overflow: hidden;
795
889
  }
796
-
797
890
  .e-gantt .e-gantt-chart .e-left-resize-gripper,
798
891
  .e-gantt .e-gantt-chart .e-right-resize-gripper {
799
892
  -ms-flex-align: center;
@@ -802,45 +895,37 @@
802
895
  display: -ms-inline-flexbox;
803
896
  display: inline-flex;
804
897
  }
805
-
806
898
  .e-gantt .e-gantt-chart .e-holiday {
807
899
  display: inline-block;
808
900
  position: absolute;
809
901
  }
810
-
811
902
  .e-gantt .e-gantt-chart .e-holiday .e-span {
812
- font-size: 13px;
813
903
  position: absolute;
814
904
  transform: rotate(-90deg);
815
905
  white-space: nowrap;
816
906
  width: 0;
817
907
  }
818
-
819
908
  .e-gantt .e-gantt-chart .e-weekend {
820
909
  display: inline-block;
821
910
  position: absolute;
822
911
  z-index: 0;
823
912
  }
824
-
825
913
  .e-gantt .e-gantt-chart .e-rangecontainer .e-leftarc {
826
914
  border-bottom-left-radius: 0px;
827
915
  border-top-left-radius: 0px;
828
916
  position: absolute;
829
917
  }
830
-
831
918
  .e-gantt .e-gantt-chart .e-rangecontainer .e-rightarc {
832
919
  border-bottom-right-radius: 0px;
833
920
  border-top-right-radius: 0px;
834
921
  position: absolute;
835
922
  }
836
-
837
923
  .e-gantt .e-gantt-chart .e-event-markers {
838
924
  border-left: 1px dashed;
839
925
  position: absolute;
840
926
  width: 1px;
841
927
  z-index: 2;
842
928
  }
843
-
844
929
  .e-gantt .e-gantt-chart .e-event-markers .e-span-label {
845
930
  border-radius: 3px;
846
931
  font-weight: 500;
@@ -854,7 +939,6 @@
854
939
  width: auto;
855
940
  z-index: 2;
856
941
  }
857
-
858
942
  .e-gantt .e-gantt-chart .e-event-markers .e-gantt-right-arrow {
859
943
  border-bottom: 5px solid transparent;
860
944
  border-right: 5px solid;
@@ -864,52 +948,45 @@
864
948
  top: 60px;
865
949
  width: 0;
866
950
  }
867
-
868
951
  .e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar {
869
952
  border-radius: 0;
870
953
  border-style: none;
871
954
  display: inline-block;
872
955
  }
873
-
874
956
  .e-gantt .e-gantt-chart .e-connector-line-right-arrow {
875
957
  border-left-style: solid;
876
958
  border-left-width: 10px;
877
959
  }
878
-
879
960
  .e-gantt .e-gantt-chart .e-connector-line-left-arrow {
880
961
  border-right-style: solid;
881
962
  border-right-width: 10px;
882
963
  }
883
-
884
964
  .e-gantt .e-gantt-chart .e-connector-line-right-arrow,
885
965
  .e-gantt .e-gantt-chart .e-connector-line-left-arrow {
886
966
  border-bottom: 5px solid transparent;
887
967
  border-top: 5px solid transparent;
888
968
  }
889
-
890
969
  .e-gantt .e-gantt-chart .e-connector-line-container {
891
970
  z-index: 5;
892
971
  }
893
-
894
972
  .e-gantt .e-gantt-chart .e-connector-line-z-index {
895
973
  z-index: 1;
896
974
  }
897
-
898
975
  .e-gantt .e-gantt-chart .e-connector-line-hover {
899
976
  outline: 1px solid;
900
977
  }
901
-
978
+ .e-gantt .e-gantt-chart .e-critical-connector-line-hover {
979
+ outline: 1px solid;
980
+ }
902
981
  .e-gantt .e-gantt-chart .e-connector-line-hover-z-index {
903
982
  z-index: 100;
904
983
  }
905
-
906
984
  .e-gantt .e-gantt-chart .e-connectortouchpoint {
907
985
  background-color: transparent;
908
986
  display: block;
909
987
  position: absolute;
910
988
  z-index: 5;
911
989
  }
912
-
913
990
  .e-gantt .e-gantt-chart .e-connectorpoint-right,
914
991
  .e-gantt .e-gantt-chart .e-connectorpoint-left,
915
992
  .e-gantt .e-gantt-chart .e-right-connectorpoint-outer-div,
@@ -918,7 +995,6 @@
918
995
  display: inline-block;
919
996
  position: absolute;
920
997
  }
921
-
922
998
  .e-gantt .e-gantt-chart .e-connectorpoint-left-hover,
923
999
  .e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
924
1000
  border-style: solid;
@@ -927,11 +1003,9 @@
927
1003
  cursor: pointer;
928
1004
  display: inline-block;
929
1005
  }
930
-
931
1006
  .e-gantt .e-gantt-chart .e-connectorpoint-allow-block {
932
1007
  cursor: no-drop;
933
1008
  }
934
-
935
1009
  .e-gantt .e-gantt-chart .e-gantt-manualparenttaskbar-left,
936
1010
  .e-gantt .e-gantt-chart .e-gantt-manualparenttaskbar-right {
937
1011
  background-color: #989A9C;
@@ -943,29 +1017,24 @@
943
1017
  position: absolute;
944
1018
  width: 10px;
945
1019
  }
946
-
947
1020
  .e-gantt .e-gantt-chart .e-manualparent-milestone-top,
948
1021
  .e-gantt .e-gantt-chart .e-manualparent-milestone-bottom {
949
1022
  border-bottom-color: #989A9C;
950
1023
  }
951
-
952
1024
  .e-gantt .e-gantt-chart .e-gantt-manualparenttaskbar-right {
953
1025
  cursor: e-resize;
954
1026
  margin-left: -8px;
955
1027
  }
956
-
957
1028
  .e-gantt .e-gantt-chart .e-gantt-manualparenttaskbar-left {
958
1029
  margin-left: 0;
959
1030
  }
960
-
961
1031
  .e-gantt .e-gantt-chart .e-gantt-manualparenttaskbar {
962
1032
  background: #989A9C;
963
1033
  margin-top: 3px;
964
1034
  position: absolute;
965
1035
  }
966
-
967
1036
  .e-gantt .e-gantt-chart .e-icon {
968
- font-family: 'e-icons';
1037
+ font-family: "e-icons";
969
1038
  font-size: 13px;
970
1039
  font-style: normal;
971
1040
  font-variant: normal;
@@ -974,7 +1043,6 @@
974
1043
  text-transform: none;
975
1044
  vertical-align: middle;
976
1045
  }
977
-
978
1046
  .e-gantt .e-gantt-chart .e-active-container {
979
1047
  outline: 1px solid;
980
1048
  outline-offset: 2px;
@@ -983,11 +1051,9 @@
983
1051
  .e-gantt-dialog .e-tab .e-tab-header {
984
1052
  padding-left: 0px;
985
1053
  }
986
-
987
1054
  .e-gantt-dialog .e-tab .e-tab-header .e-indicator {
988
1055
  display: block;
989
1056
  }
990
-
991
1057
  .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
992
1058
  border-style: solid;
993
1059
  border-width: 0px;
@@ -1000,119 +1066,99 @@
1000
1066
  .e-gantt-dialog {
1001
1067
  border: 0;
1002
1068
  }
1003
-
1004
1069
  .e-gantt-dialog .e-gridform .e-table {
1005
1070
  border-spacing: 0;
1006
1071
  }
1007
-
1008
1072
  .e-gantt-dialog .e-item {
1009
1073
  height: 241px;
1010
1074
  }
1011
-
1012
1075
  .e-gantt-dialog .e-dependent-div {
1013
1076
  border-bottom-width: 1px;
1014
1077
  }
1015
-
1016
1078
  .e-gantt-dialog .e-icon-dlg-close {
1017
1079
  opacity: initial;
1018
1080
  }
1019
-
1020
1081
  .e-gantt-dialog .e-toolbar {
1021
1082
  border-top-width: 0;
1022
1083
  }
1023
-
1024
1084
  .e-gantt-dialog .e-resource-div {
1025
1085
  border-bottom-width: 1px;
1026
1086
  }
1027
-
1028
1087
  .e-gantt-dialog .e-resource-div .e-gridheader {
1029
1088
  border-top-width: 0;
1030
1089
  }
1031
-
1032
1090
  .e-gantt-dialog .e-edit-form-row {
1033
1091
  height: 241px;
1034
1092
  overflow-y: auto;
1035
1093
  }
1036
-
1037
1094
  .e-gantt-dialog .e-edit-form-column:nth-child(odd) {
1038
1095
  float: left;
1039
1096
  padding: 16px 18px 0 18px;
1040
1097
  width: 50%;
1041
1098
  }
1042
-
1043
1099
  .e-gantt-dialog .e-edit-form-column:nth-child(even) {
1044
1100
  float: left;
1045
1101
  padding: 16px 16px 0 0;
1046
1102
  width: 50%;
1047
1103
  }
1048
-
1049
1104
  .e-gantt-dialog .e-edit-form-row.e-scroll .e-edit-form-column:nth-child(even) {
1050
1105
  padding: 16px 16px 0 0;
1051
1106
  }
1052
-
1053
1107
  .e-gantt-dialog .e-edit-form-column {
1054
1108
  height: 75px;
1055
1109
  }
1056
-
1057
1110
  .e-gantt-dialog .e-dependent-div .e-content {
1058
1111
  height: 161px;
1059
1112
  }
1060
-
1061
1113
  .e-gantt-dialog .e-resource-div .e-content {
1062
1114
  height: 202px;
1063
1115
  }
1064
-
1065
1116
  .e-gantt-dialog .e-richtexteditor {
1066
1117
  border-bottom-width: 1px;
1067
- height: 241px !important;
1118
+ height: 241px !important; /* stylelint-disable-line declaration-no-important */
1068
1119
  overflow: hidden;
1069
1120
  }
1070
-
1071
1121
  .e-gantt-dialog .e-richtexteditor.e-rte-tb-expand {
1072
1122
  border-top: 0;
1073
1123
  }
1074
-
1075
1124
  .e-gantt-dialog .e-richtexteditor .e-rte-content {
1076
1125
  border-bottom-width: 0px;
1077
1126
  height: 200px;
1127
+ overflow: hidden;
1078
1128
  }
1079
-
1080
1129
  .e-gantt-dialog > .e-dlg-content {
1081
- padding: 0 !important;
1130
+ padding: 0 !important; /* stylelint-disable-line declaration-no-important */
1082
1131
  }
1083
-
1084
1132
  .e-gantt-dialog .e-dlg-header-content {
1085
- border-bottom: 0 !important;
1133
+ border-bottom: 0 !important; /* stylelint-disable-line declaration-no-important */
1086
1134
  }
1087
-
1088
1135
  .e-gantt-dialog .e-dlg-header-content {
1089
1136
  border-radius: 3px 3px 0px 0px;
1090
1137
  padding-bottom: 4px;
1091
1138
  }
1092
-
1093
1139
  .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
1094
1140
  border-radius: 50%;
1141
+ height: auto !important; /* stylelint-disable-line declaration-no-important */
1142
+ width: auto !important; /* stylelint-disable-line declaration-no-important */
1095
1143
  }
1096
1144
 
1097
1145
  .e-icon-rowselect::before {
1098
- content: '\e930';
1146
+ content: "\e930";
1099
1147
  }
1100
1148
 
1101
1149
  .e-ganttpopup {
1102
- -moz-user-select: none;
1103
- -ms-user-select: none;
1104
- -webkit-user-select: none;
1150
+ -moz-user-select: none; /* stylelint-disable-line property-no-vendor-prefix */
1151
+ -ms-user-select: none; /* stylelint-disable-line property-no-vendor-prefix */
1152
+ -webkit-user-select: none; /* stylelint-disable-line property-no-vendor-prefix */
1105
1153
  font-weight: normal;
1106
1154
  position: absolute;
1107
1155
  user-select: none;
1108
1156
  z-index: 99999;
1109
1157
  }
1110
-
1111
1158
  .e-ganttpopup .e-rowselect {
1112
1159
  line-height: 18px;
1113
1160
  text-indent: 7%;
1114
1161
  }
1115
-
1116
1162
  .e-ganttpopup span {
1117
1163
  border: 1px solid transparent;
1118
1164
  cursor: pointer;
@@ -1121,7 +1167,6 @@
1121
1167
  padding: 4px;
1122
1168
  width: 26px;
1123
1169
  }
1124
-
1125
1170
  .e-ganttpopup .e-content {
1126
1171
  border-radius: 4px;
1127
1172
  border-style: solid;
@@ -1129,18 +1174,16 @@
1129
1174
  font-size: 14px;
1130
1175
  padding: 4px;
1131
1176
  }
1132
-
1133
1177
  .e-ganttpopup .e-tail::after,
1134
1178
  .e-ganttpopup .e-tail::before,
1135
1179
  .e-ganttpopup .e-ganttpopup {
1136
1180
  border: 10px solid transparent;
1137
- content: '';
1181
+ content: "";
1138
1182
  height: 0;
1139
1183
  left: 8px;
1140
1184
  position: absolute;
1141
1185
  width: 0;
1142
1186
  }
1143
-
1144
1187
  .e-ganttpopup .e-downtail::after {
1145
1188
  top: 34px;
1146
1189
  }
@@ -1154,7 +1197,7 @@
1154
1197
  }
1155
1198
 
1156
1199
  .e-gantt .e-cloneproperties.e-draganddrop .e-row .e-rowcell .e-treecolumn-container .e-icons.e-none::before {
1157
- content: '';
1200
+ content: "";
1158
1201
  }
1159
1202
 
1160
1203
  .e-bigger .e-gantt .e-gantt-chart .e-label {
@@ -1172,140 +1215,160 @@
1172
1215
  padding: 16px 18px 0 18px;
1173
1216
  width: 100%;
1174
1217
  }
1175
-
1176
1218
  .e-gantt.e-device .e-edit-form-row {
1177
1219
  height: auto;
1178
1220
  }
1179
-
1180
1221
  .e-gantt.e-device .e-adaptive-searchbar {
1181
1222
  padding: 5px 10px;
1182
1223
  width: 90%;
1183
1224
  }
1184
-
1185
1225
  .e-gantt.e-device .e-backarrowspan {
1186
1226
  font-size: 16px;
1187
1227
  padding: 5px 10px;
1188
1228
  }
1189
-
1190
1229
  .e-gantt.e-device .e-gantt-dialog {
1191
1230
  max-height: none;
1192
1231
  }
1193
-
1194
1232
  .e-gantt.e-device .e-gantt-dialog .e-dlg-closeicon-btn {
1195
1233
  float: left;
1196
1234
  left: -4px;
1197
1235
  }
1198
-
1199
1236
  .e-gantt.e-device .e-gantt-dialog .e-icon-dlg-close {
1200
1237
  font-size: 16px;
1201
1238
  }
1202
-
1203
1239
  .e-gantt.e-device .e-gantt-dialog .e-dlg-header {
1204
1240
  display: inline-block;
1205
1241
  }
1206
-
1207
1242
  .e-gantt.e-device .e-toolbar-item {
1208
1243
  padding: 7px;
1209
1244
  }
1210
-
1211
1245
  .e-gantt.e-device .e-toolbar .e-icons {
1212
1246
  font-size: 18px;
1213
1247
  }
1214
-
1215
1248
  .e-gantt.e-device .e-gridheader .e-icons {
1216
1249
  font-size: 12px;
1217
1250
  }
1218
-
1219
1251
  .e-gantt.e-device .e-right-resize-gripper,
1220
1252
  .e-gantt.e-device .e-left-resize-gripper {
1221
1253
  border: 7px solid;
1222
1254
  z-index: -1;
1223
1255
  }
1224
-
1225
1256
  .e-gantt.e-device .e-right-resize-gripper::before,
1226
1257
  .e-gantt.e-device .e-left-resize-gripper::before {
1227
1258
  font-size: 14px;
1228
1259
  margin-left: -7px;
1229
1260
  }
1230
-
1231
1261
  .e-gantt.e-device .e-dependent-div .e-content {
1232
1262
  height: 100%;
1233
1263
  }
1234
-
1235
1264
  .e-gantt.e-device .e-resource-div .e-content {
1236
1265
  height: 100%;
1237
1266
  }
1238
-
1239
1267
  .e-gantt.e-device .e-richtexteditor {
1240
1268
  height: 100%;
1241
1269
  }
1242
-
1243
1270
  .e-gantt.e-device .e-richtexteditor .e-rte-content {
1244
1271
  height: 100%;
1245
1272
  }
1246
1273
 
1274
+ .e-predecessor-tooltip {
1275
+ background-color: #000 !important; /* stylelint-disable-line declaration-no-important */
1276
+ border-color: #000 !important; /* stylelint-disable-line declaration-no-important */
1277
+ visibility: hidden;
1278
+ }
1279
+ .e-predecessor-tooltip .e-arrow-tip-outer.e-tip-bottom {
1280
+ border-top: 8px solid #000;
1281
+ border-top: 7px solid #000;
1282
+ }
1283
+ .e-predecessor-tooltip .e-arrow-tip-inner.e-tip-bottom {
1284
+ color: #000;
1285
+ }
1286
+ .e-predecessor-tooltip .e-left-btn:disabled {
1287
+ color: #757575 !important;
1288
+ }
1289
+ .e-predecessor-tooltip .e-right-btn:disabled {
1290
+ color: #757575 !important;
1291
+ }
1292
+ .e-predecessor-tooltip .e-tip-content {
1293
+ padding: 3px !important; /* stylelint-disable-line declaration-no-important */
1294
+ }
1295
+ .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type {
1296
+ background-color: #000;
1297
+ border-color: #000;
1298
+ color: #F9FAFB;
1299
+ font-size: 12px;
1300
+ line-height: 18px;
1301
+ padding: 0 8px 0 0;
1302
+ }
1303
+ .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:last-of-type {
1304
+ background-color: #000;
1305
+ border-color: #000;
1306
+ color: #F9FAFB;
1307
+ font-size: 12px;
1308
+ line-height: 18px;
1309
+ padding: 0 0 0 8px;
1310
+ }
1311
+
1312
+ .e-predecessor-dialog {
1313
+ background-color: #1a1a1a;
1314
+ }
1315
+ .e-predecessor-dialog .e-dlg-content {
1316
+ background-color: #1a1a1a;
1317
+ padding: 10px 9px 9px 14px !important;
1318
+ font-size: 12px;
1319
+ font-weight: 400;
1320
+ line-height: 1.8;
1321
+ }
1322
+
1247
1323
  /*! Gantt theme */
1248
1324
  .e-gantt .e-gantt-splitter {
1249
1325
  border-color: #757575;
1250
1326
  border-radius: 0px;
1251
1327
  }
1252
-
1253
1328
  .e-gantt .e-cloneproperties.e-draganddrop {
1254
1329
  box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.2);
1255
- opacity: .95;
1330
+ opacity: 0.95;
1256
1331
  overflow: visible;
1257
1332
  }
1258
-
1259
1333
  .e-gantt .e-cloneproperties {
1260
1334
  background-color: #400074;
1261
1335
  border-color: #757575;
1262
1336
  color: #fff;
1263
1337
  }
1264
-
1265
1338
  .e-gantt .e-cloneproperties.e-draganddrop .e-rowcell {
1266
1339
  color: #000;
1267
1340
  }
1268
-
1269
1341
  .e-gantt .e-cloneproperties.e-draganddrop table,
1270
1342
  .e-gantt .e-cloneproperties.e-draganddrop table .e-selectionbackground {
1271
1343
  background-color: #fff;
1272
1344
  height: 30px;
1273
1345
  }
1274
-
1275
1346
  .e-gantt .e-gantt-toolbar + .e-gantt-splitter {
1276
1347
  border-top-left-radius: 0px;
1277
1348
  border-top-right-radius: 0px;
1278
1349
  }
1279
-
1280
1350
  .e-gantt .e-grid .e-focused:not(.e-menu-item) {
1281
- box-shadow: 0 0 0 1px #ffff inset !important;
1351
+ box-shadow: 0 0 0 1px white inset !important; /* stylelint-disable-line declaration-no-important */
1282
1352
  }
1283
-
1284
1353
  .e-gantt .e-temp-content {
1285
1354
  border-color: #757575;
1286
1355
  }
1287
-
1288
1356
  .e-gantt .e-splitter-box {
1289
1357
  border-color: #757575;
1290
1358
  }
1291
-
1292
1359
  .e-gantt .e-gantt-temp-header {
1293
1360
  border-color: #757575;
1294
1361
  }
1295
-
1296
1362
  .e-gantt .e-gantt-chart-pane {
1297
1363
  border-color: #757575;
1298
1364
  }
1299
-
1300
1365
  .e-gantt .e-gantt-tree-grid-pane .e-timeline-single-header-outer-div {
1301
- height: 45px !important;
1366
+ height: 45px !important; /* stylelint-disable-line declaration-no-important */
1302
1367
  }
1303
-
1304
1368
  .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active {
1305
1369
  background: #400074;
1306
1370
  opacity: 1;
1307
1371
  }
1308
-
1309
1372
  .e-gantt .e-gantt-chart .e-timeline-header-container {
1310
1373
  background: #fff;
1311
1374
  border-bottom-color: #757575;
@@ -1314,521 +1377,408 @@
1314
1377
  color: #000;
1315
1378
  height: 64px;
1316
1379
  }
1317
-
1318
1380
  .e-gantt .e-gantt-chart .e-timeline-top-header-cell,
1319
1381
  .e-gantt .e-gantt-chart .e-timeline-single-header-cell {
1320
1382
  border-color: #757575;
1321
1383
  color: #000;
1322
1384
  }
1323
-
1324
1385
  .e-gantt .e-gantt-chart .e-timeline-single-header-cell {
1325
1386
  height: 46px;
1326
1387
  line-height: 46px;
1327
1388
  }
1328
-
1329
1389
  .e-gantt .e-gantt-chart .e-timeline-single-header-outer-div {
1330
- height: 46px !important;
1390
+ height: 46px !important; /* stylelint-disable-line declaration-no-important */
1331
1391
  }
1332
-
1333
1392
  .e-gantt .e-gantt-chart .e-timeline-top-header-cell {
1334
1393
  height: 32px;
1335
1394
  }
1336
-
1337
1395
  .e-gantt .e-gantt-chart .e-chart-root-container {
1338
1396
  background-color: #000;
1339
1397
  border-color: #757575;
1340
1398
  }
1341
-
1342
1399
  .e-gantt .e-gantt-chart .e-timeline-header-table-body {
1343
1400
  border-spacing: 0;
1344
1401
  }
1345
-
1346
1402
  .e-gantt .e-gantt-chart .e-chart-row-border {
1347
1403
  border-top-color: #757575;
1348
1404
  }
1349
-
1350
1405
  .e-gantt .e-gantt-chart .e-chart-row-cell {
1351
- color: black;
1406
+ color: #000;
1352
1407
  }
1353
-
1354
1408
  .e-gantt .e-gantt-chart .e-chart-row-border.e-lastrow {
1355
1409
  border-bottom-color: #757575;
1356
1410
  }
1357
-
1358
1411
  .e-gantt .e-gantt-chart .e-line-container-cell {
1359
1412
  border-color: #e0e0e0;
1360
1413
  }
1361
-
1362
1414
  .e-gantt .e-gantt-chart .e-active-container {
1363
1415
  outline-color: #757575;
1364
1416
  }
1365
-
1366
1417
  .e-gantt .e-gantt-chart .e-gantt-child-taskbar-inner-div {
1367
1418
  background-color: #3e047d;
1368
1419
  border: 1px solid #000;
1369
1420
  border-radius: 0px;
1370
1421
  }
1371
-
1372
1422
  .e-gantt .e-gantt-chart .e-collapse-parent .e-gantt-child-taskbar-inner-div {
1373
1423
  border: 1px solid #000;
1374
1424
  border-bottom: 0;
1375
1425
  border-top: 0;
1376
1426
  }
1377
-
1378
1427
  .e-gantt .e-gantt-chart .e-collapse-parent .e-gantt-child-progressbar {
1379
1428
  width: 0px !important;
1380
1429
  }
1381
-
1382
1430
  .e-gantt .e-gantt-chart .e-collapse-parent .e-collapsed-taskbar-drag {
1383
1431
  background-color: #6e06f1;
1384
1432
  }
1385
-
1386
1433
  .e-gantt .e-gantt-chart .e-collapse-parent .e-left-connectorpoint-outer-div {
1387
1434
  display: none;
1388
1435
  }
1389
-
1390
1436
  .e-gantt .e-gantt-chart .e-collapse-parent .e-right-connectorpoint-outer-div {
1391
1437
  display: none;
1392
1438
  }
1393
-
1394
1439
  .e-gantt .e-gantt-chart .e-gantt-parent-taskbar-inner-div {
1395
1440
  background-color: #007d01;
1396
1441
  border: 1px solid #000;
1397
1442
  border-radius: 0px;
1398
1443
  }
1399
-
1400
1444
  .e-gantt .e-gantt-chart .e-gantt-parent-progressbar-inner-div {
1401
1445
  background-color: #005201;
1402
1446
  border: 0px;
1447
+ border-radius: 0px;
1403
1448
  }
1404
-
1405
1449
  .e-gantt .e-gantt-chart .e-gantt-child-progressbar-inner-div {
1406
1450
  background-color: #6e06f1;
1407
1451
  border: 0px;
1452
+ border-radius: 4px;
1408
1453
  }
1409
-
1410
1454
  .e-gantt .e-gantt-chart .e-gantt-child-manualtaskbar {
1411
1455
  background-color: #8dd1c4;
1412
1456
  border: #4fb29f;
1413
1457
  }
1414
-
1415
1458
  .e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar.e-gantt-child-manualtaskbar {
1416
1459
  background: linear-gradient(to right, rgba(63, 81, 181, 0.2), #8dd1c4 30%, #8dd1c4 70%, #8dd1c4 70%, rgba(63, 81, 181, 0.2) 100%);
1417
1460
  }
1418
-
1419
1461
  .e-gantt .e-gantt-chart .e-gantt-child-manualprogressbar {
1420
1462
  background-color: #67c1b2;
1421
1463
  border: #4fb29f;
1422
1464
  }
1423
-
1465
+ .e-gantt .e-gantt-chart .e-gantt-critical-child-manualprogressbar {
1466
+ background-color: #67c1b2;
1467
+ border: #4fb29f;
1468
+ }
1424
1469
  .e-gantt .e-gantt-chart .e-holiday {
1425
1470
  background: #ccc;
1426
1471
  }
1427
-
1428
1472
  .e-gantt .e-gantt-chart .e-holiday .e-span {
1429
1473
  color: #000;
1430
1474
  font-size: 13px;
1431
1475
  }
1432
-
1433
1476
  .e-gantt .e-gantt-chart .e-weekend {
1434
1477
  background: #e4e4e4;
1435
1478
  }
1436
-
1437
1479
  .e-gantt .e-gantt-chart .e-weekend-header-cell {
1438
1480
  background: #e4e4e4;
1439
1481
  }
1440
-
1441
1482
  .e-gantt .e-gantt-chart .e-rangecontainer .e-rg-rangdiv {
1442
1483
  border: 2px solid #FC7A05;
1443
1484
  width: 5px;
1444
1485
  z-index: 6;
1445
1486
  }
1446
-
1447
1487
  .e-gantt .e-gantt-chart .e-event-markers {
1448
1488
  border-left-color: #29c400;
1449
1489
  }
1450
-
1451
1490
  .e-gantt .e-gantt-chart .e-event-markers .e-span-label {
1452
1491
  background-color: #000;
1453
1492
  color: #fff;
1454
1493
  font-size: 12px;
1455
1494
  }
1456
-
1457
1495
  .e-gantt .e-gantt-chart .e-event-markers .e-gantt-right-arrow {
1458
1496
  border-right-color: #000;
1459
1497
  }
1460
-
1461
1498
  .e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar {
1462
1499
  background: linear-gradient(to right, rgba(62, 4, 125, 0.2), #3e047d 30%, #3e047d 70%, #3e047d 70%, rgba(62, 4, 125, 0.2) 100%);
1463
- background-color: rgba(36, 0, 65, 0.2);
1464
1500
  border: 0px;
1465
1501
  border-radius: 0px;
1466
1502
  }
1467
-
1468
1503
  .e-gantt .e-gantt-chart .e-unscheduled-milestone-top {
1469
1504
  border-bottom-color: rgba(51, 51, 51, 0.6);
1470
1505
  }
1471
-
1472
1506
  .e-gantt .e-gantt-chart .e-unscheduled-milestone-bottom {
1473
1507
  border-top-color: rgba(51, 51, 51, 0.6);
1474
1508
  }
1475
-
1476
1509
  .e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler {
1477
1510
  background: #222;
1478
- border-color: #fff;
1479
1511
  }
1480
-
1481
- .e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-element {
1482
- border-bottom-color: #fff;
1483
- }
1484
-
1485
1512
  .e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-after {
1486
1513
  border-bottom-color: #222;
1487
1514
  }
1488
-
1489
1515
  .e-gantt .e-gantt-chart .e-gantt-dependency-view-container {
1490
1516
  display: block;
1491
1517
  z-index: 5;
1492
1518
  }
1493
-
1494
1519
  .e-gantt .e-gantt-chart .e-line {
1495
1520
  border-color: #29c400;
1496
1521
  }
1497
-
1498
1522
  .e-gantt .e-gantt-chart .e-connector-line-right-arrow {
1499
1523
  border-left-color: #29c400;
1500
1524
  }
1501
-
1502
1525
  .e-gantt .e-gantt-chart .e-connector-line-left-arrow {
1503
1526
  border-right-color: #29c400;
1504
1527
  }
1505
-
1506
1528
  .e-gantt .e-gantt-chart .e-connector-line-right-arrow-hover {
1507
1529
  border-left-color: #29c400;
1508
1530
  }
1509
-
1510
1531
  .e-gantt .e-gantt-chart .e-connector-line-left-arrow-hover {
1511
1532
  border-right-color: #29c400;
1512
1533
  }
1513
-
1514
1534
  .e-gantt .e-gantt-chart .e-connector-line-hover {
1515
1535
  border-color: #29c400;
1516
1536
  outline-color: #29c400;
1517
1537
  }
1518
-
1519
1538
  .e-gantt .e-gantt-chart .e-gantt-false-line {
1520
1539
  border-top-color: #29c400;
1521
1540
  }
1522
-
1523
1541
  .e-gantt .e-gantt-chart .e-connectorpoint-left-hover,
1524
1542
  .e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
1525
- background-color: #3d3d3d;
1543
+ background-color: #ffd939;
1526
1544
  border-color: #000;
1527
1545
  }
1528
-
1529
1546
  .e-gantt .e-gantt-chart .e-connectorpoint-left-hover:hover,
1530
1547
  .e-gantt .e-gantt-chart .e-connectorpoint-right-hover:hover {
1531
1548
  background-color: #fff;
1532
1549
  border-color: #400074;
1533
1550
  }
1534
-
1535
1551
  .e-gantt .e-gantt-chart .e-left-label-inner-div,
1536
1552
  .e-gantt .e-gantt-chart .e-right-label-inner-div {
1537
1553
  color: rgba(0, 0, 0, 0.87);
1538
1554
  font-size: 13px;
1539
1555
  }
1540
-
1541
1556
  .e-gantt .e-gantt-chart .e-left-label-temp-container {
1542
1557
  color: #000;
1543
1558
  font-size: 13px;
1544
1559
  padding-right: 25px;
1545
1560
  }
1546
-
1547
1561
  .e-gantt .e-gantt-chart .e-right-label-temp-container {
1548
1562
  color: #000;
1549
1563
  font-size: 13px;
1550
1564
  margin-left: 25px;
1551
1565
  }
1552
-
1553
1566
  .e-gantt .e-gantt-chart .e-right-label-container {
1554
1567
  margin-left: 25px;
1555
1568
  }
1556
-
1557
1569
  .e-gantt .e-gantt-chart .e-left-label-container {
1558
1570
  padding-right: 25px;
1559
1571
  }
1560
-
1561
1572
  .e-gantt .e-gantt-chart .e-connectorpoint-right {
1562
1573
  margin-left: 2px;
1563
1574
  }
1564
-
1565
1575
  .e-gantt .e-gantt-chart .e-right-connectorpoint-outer-div,
1566
1576
  .e-gantt .e-gantt-chart .e-left-connectorpoint-outer-div {
1567
1577
  height: 8px;
1568
1578
  width: 12px;
1569
1579
  }
1570
-
1571
1580
  .e-gantt .e-gantt-chart .e-left-connectorpoint-outer-div {
1572
1581
  left: -12px;
1573
1582
  }
1574
-
1575
1583
  .e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar-left,
1576
1584
  .e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar-right {
1577
1585
  border-right: transparent;
1578
1586
  border-width: 3px;
1579
1587
  }
1580
-
1581
1588
  .e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar-right {
1582
1589
  border-bottom-left-radius: 0px;
1583
1590
  border-bottom-right-radius: 2px;
1584
1591
  border-top-left-radius: 0px;
1585
1592
  border-top-right-radius: 2px;
1586
1593
  }
1587
-
1588
1594
  .e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar-left {
1589
1595
  border-bottom-left-radius: 2px;
1590
1596
  border-top-left-radius: 2px;
1591
1597
  }
1592
-
1593
1598
  .e-gantt .e-gantt-chart .e-task-label {
1594
1599
  color: #000;
1595
1600
  font-size: 12px;
1596
1601
  }
1597
-
1598
1602
  .e-gantt .e-gantt-chart .e-icon {
1599
1603
  color: #000;
1600
1604
  }
1601
-
1602
1605
  .e-gantt .e-gantt-chart .e-milestone-top {
1603
1606
  border-bottom-color: #000;
1604
1607
  }
1605
-
1606
1608
  .e-gantt .e-gantt-chart .e-milestone-bottom {
1607
1609
  border-top-color: #000;
1608
1610
  }
1609
-
1610
1611
  .e-gantt .e-gantt-chart .e-parent-milestone-top {
1611
1612
  border-bottom-color: #005201;
1612
1613
  }
1613
-
1614
1614
  .e-gantt .e-gantt-chart .e-parent-milestone-bottom {
1615
1615
  border-top-color: #005201;
1616
1616
  }
1617
-
1618
1617
  .e-gantt .e-gantt-chart .e-manualparent-milestone-top {
1619
1618
  border-bottom-color: #989A9C;
1620
1619
  }
1621
-
1622
1620
  .e-gantt .e-gantt-chart .e-manualparent-milestone-bottom {
1623
1621
  border-top-color: #989A9C;
1624
1622
  }
1625
-
1626
1623
  .e-gantt .e-gantt-chart .e-gantt-unscheduled-manualtask {
1627
1624
  background: linear-gradient(to right, rgba(63, 81, 181, 0.2), #989A9C 30%, #989A9C 70%, #989A9C 70%, rgba(63, 81, 181, 0.2) 100%);
1628
1625
  }
1629
-
1630
1626
  .e-gantt .e-gantt-chart .e-label {
1631
1627
  color: #000;
1632
1628
  font-size: 13px;
1633
1629
  }
1634
-
1635
1630
  .e-gantt .e-gantt-chart .e-active {
1636
1631
  background: #400074;
1637
1632
  color: #000;
1638
1633
  opacity: 1;
1639
1634
  }
1640
-
1641
1635
  .e-gantt .e-gantt-chart .e-active .e-label {
1642
1636
  color: #000;
1643
1637
  }
1644
-
1645
1638
  .e-gantt .e-gantt-chart .e-baseline-bar {
1646
1639
  background-color: #ff7d1a;
1647
1640
  }
1648
-
1649
1641
  .e-gantt .e-gantt-chart .e-baseline-milestone-top {
1650
1642
  border-bottom-color: #ff7d1a;
1651
1643
  }
1652
-
1653
1644
  .e-gantt .e-gantt-chart .e-baseline-milestone-bottom {
1654
1645
  border-top-color: #ff7d1a;
1655
1646
  }
1656
-
1657
1647
  .e-gantt .e-gantt-chart .e-uptail::before {
1658
1648
  border-bottom-color: #e0e0e0;
1659
1649
  }
1660
-
1661
1650
  .e-gantt .e-gantt-chart .e-downtail::after {
1662
1651
  border-top-color: #fff;
1663
1652
  }
1664
-
1665
1653
  .e-gantt .e-gantt-chart .e-downtail::before {
1666
1654
  border-top-color: #e0e0e0;
1667
1655
  }
1668
-
1669
1656
  .e-gantt .e-gantt-chart .e-ganttpopup .e-content {
1670
1657
  background-color: #fff;
1671
1658
  border-color: #e0e0e0;
1672
1659
  }
1673
-
1674
1660
  .e-gantt .e-gantt-chart .e-spanclicked,
1675
1661
  .e-gantt .e-gantt-chart .e-grid .e-gridpopup .e-spanclicked {
1676
1662
  border-color: #000;
1677
1663
  }
1678
-
1679
1664
  .e-gantt .e-gantt-chart .e-active-parent-task {
1680
1665
  border-radius: 4px;
1681
1666
  box-shadow: 4px 4px 3px 0 rgba(0, 0, 0, 0.5);
1682
1667
  }
1683
-
1684
1668
  .e-gantt .e-gantt-chart .e-active-parent-task .e-gantt-parent-taskbar-inner-div {
1685
1669
  background: #1a1a1a;
1686
1670
  border: #1a1a1a;
1687
1671
  }
1688
-
1689
1672
  .e-gantt .e-gantt-chart .e-active-parent-task .e-gantt-parent-progressbar-inner-div {
1690
1673
  background-color: transparent;
1691
1674
  border: transparent;
1692
1675
  }
1693
-
1694
1676
  .e-gantt .e-gantt-chart .e-active-parent-task .e-task-label {
1695
1677
  color: transparent;
1696
1678
  }
1697
-
1698
1679
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-task-label {
1699
- color: transparent !important;
1680
+ color: transparent !important; /* stylelint-disable-line declaration-no-important */
1700
1681
  }
1701
-
1702
1682
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-line {
1703
- border-color: #8A8A8A !important;
1683
+ border-color: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
1704
1684
  }
1705
-
1706
1685
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-connector-line-right-arrow {
1707
- border-left-color: #8A8A8A !important;
1686
+ border-left-color: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
1708
1687
  }
1709
-
1710
1688
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-connector-line-left-arrow {
1711
- border-right-color: #8A8A8A !important;
1689
+ border-right-color: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
1712
1690
  }
1713
-
1714
1691
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-child-taskbar-inner-div {
1715
- background: #D5D5D5 !important;
1716
- border: #D5D5D5 !important;
1692
+ background: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
1693
+ border: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
1717
1694
  }
1718
-
1719
1695
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-child-progressbar-inner-div {
1720
- background-color: transparent !important;
1721
- border: transparent !important;
1696
+ background-color: transparent !important; /* stylelint-disable-line declaration-no-important */
1697
+ border: transparent !important; /* stylelint-disable-line declaration-no-important */
1722
1698
  }
1723
-
1724
1699
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-milestone-top {
1725
- border-bottom-color: #D5D5D5 !important;
1700
+ border-bottom-color: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
1726
1701
  }
1727
-
1728
1702
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-milestone-bottom {
1729
- border-top-color: #D5D5D5 !important;
1703
+ border-top-color: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
1730
1704
  }
1731
-
1732
1705
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-parent-taskbar-inner-div {
1733
- background-color: #8A8A8A !important;
1734
- border: #8A8A8A !important;
1706
+ background-color: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
1707
+ border: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
1735
1708
  }
1736
-
1737
1709
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-parent-progressbar-inner-div {
1738
- background-color: transparent !important;
1739
- border: transparent !important;
1710
+ background-color: transparent !important; /* stylelint-disable-line declaration-no-important */
1711
+ border: transparent !important; /* stylelint-disable-line declaration-no-important */
1740
1712
  }
1741
-
1742
1713
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-gantt-child-taskbar-inner-div {
1743
- background: #6e06f1 !important;
1744
- border: #6e06f1 !important;
1714
+ background: #6e06f1 !important; /* stylelint-disable-line declaration-no-important */
1715
+ border: #6e06f1 !important; /* stylelint-disable-line declaration-no-important */
1745
1716
  }
1746
-
1747
1717
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-milestone-top {
1748
- border-bottom-color: #6e06f1 !important;
1718
+ border-bottom-color: #6e06f1 !important; /* stylelint-disable-line declaration-no-important */
1749
1719
  }
1750
-
1751
1720
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-milestone-bottom {
1752
- border-top-color: #6e06f1 !important;
1721
+ border-top-color: #6e06f1 !important; /* stylelint-disable-line declaration-no-important */
1753
1722
  }
1754
-
1755
1723
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-gantt-child-taskbar-inner-div {
1756
- background: #6f07e0 !important;
1757
- border: #6f07e0 !important;
1724
+ background: #6f07e0 !important; /* stylelint-disable-line declaration-no-important */
1725
+ border: #6f07e0 !important; /* stylelint-disable-line declaration-no-important */
1758
1726
  }
1759
-
1760
1727
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-milestone-top {
1761
- border-bottom-color: #6f07e0 !important;
1728
+ border-bottom-color: #6f07e0 !important; /* stylelint-disable-line declaration-no-important */
1762
1729
  }
1763
-
1764
1730
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-milestone-bottom {
1765
- border-top-color: #6f07e0 !important;
1731
+ border-top-color: #6f07e0 !important; /* stylelint-disable-line declaration-no-important */
1766
1732
  }
1767
-
1768
1733
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-line {
1769
- border-color: #6e06f1 !important;
1734
+ border-color: #6e06f1 !important; /* stylelint-disable-line declaration-no-important */
1770
1735
  }
1771
-
1772
1736
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-connector-line-right-arrow {
1773
- border-left-color: #6e06f1 !important;
1737
+ border-left-color: #6e06f1 !important; /* stylelint-disable-line declaration-no-important */
1774
1738
  }
1775
-
1776
1739
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-connector-line-left-arrow {
1777
- border-right-color: #6e06f1 !important;
1740
+ border-right-color: #6e06f1 !important; /* stylelint-disable-line declaration-no-important */
1778
1741
  }
1779
-
1780
1742
  .e-gantt .e-icons {
1781
1743
  color: rgba(0, 0, 0, 0.87);
1782
1744
  }
1783
-
1784
1745
  .e-gantt .e-grid .e-icons:not(.e-stop):not(.e-check):not(.e-icon-left):not(.e-date-icon) {
1785
- color: #000 !important;
1746
+ color: #000 !important; /* stylelint-disable-line declaration-no-important */
1786
1747
  }
1787
1748
 
1788
1749
  .e-gantt-dialog .e-dlg-header {
1789
1750
  color: #000;
1790
1751
  }
1791
-
1792
1752
  .e-gantt-dialog .e-dlg-header-content {
1793
1753
  background: #6e06f1;
1794
1754
  }
1795
-
1796
1755
  .e-gantt-dialog .e-icon-dlg-close {
1797
1756
  color: #000;
1798
1757
  }
1799
-
1800
1758
  .e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover {
1801
1759
  background-color: rgba(255, 255, 255, 0.15);
1802
1760
  }
1803
-
1804
1761
  .e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover .e-icon-dlg-close {
1805
1762
  color: black;
1806
1763
  }
1807
-
1808
1764
  .e-gantt-dialog .e-tab .e-tab-header {
1809
1765
  background: #6e06f1;
1810
1766
  }
1811
-
1812
1767
  .e-gantt-dialog .e-tab .e-tab-header .e-indicator {
1813
1768
  background: #000;
1814
1769
  }
1815
-
1816
1770
  .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
1817
1771
  background-color: transparent;
1818
1772
  }
1819
-
1820
1773
  .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active .e-tab-wrap .e-tab-text {
1821
1774
  color: #000;
1822
1775
  }
1823
-
1824
1776
  .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
1825
1777
  border-color: transparent;
1826
1778
  }
1827
-
1828
1779
  .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap .e-tab-text {
1829
1780
  color: #000;
1830
1781
  }
1831
-
1832
1782
  .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item:not(.e-active) .e-tab-wrap:hover {
1833
1783
  background: transparent;
1834
1784
  border-bottom: 0px;
@@ -1836,7 +1786,6 @@
1836
1786
  border-bottom-right-radius: 0px;
1837
1787
  border-color: transparent;
1838
1788
  }
1839
-
1840
1789
  .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item:not(.e-active) .e-tab-wrap:hover .e-tab-text {
1841
1790
  color: #f0f0f0;
1842
1791
  }
@@ -1846,7 +1795,58 @@
1846
1795
  border-color: #9e9e9e;
1847
1796
  color: #eee;
1848
1797
  }
1849
-
1850
1798
  .e-gantt.e-device .e-backarrowspan {
1851
1799
  color: #000;
1852
1800
  }
1801
+
1802
+ .e-gantt .e-gantt-chart .e-criticalconnector-line {
1803
+ border-color: #d13438;
1804
+ }
1805
+
1806
+ .e-gantt .e-gantt-chart .e-criticalconnector-line-right-arrow {
1807
+ border-left-color: #d13438;
1808
+ }
1809
+
1810
+ .e-gantt .e-gantt-chart .e-criticalconnector-line-left-arrow {
1811
+ border-right-color: #d13438;
1812
+ }
1813
+
1814
+ .e-gantt .e-gantt-chart .e-critical-connector-line-hover {
1815
+ border-color: #f3d8da;
1816
+ outline-color: #f3d8da;
1817
+ }
1818
+
1819
+ .e-gantt .e-gantt-chart .e-critical-connector-line-right-arrow-hover {
1820
+ border-left-color: #f3d8da;
1821
+ }
1822
+
1823
+ .e-gantt .e-gantt-chart .e-critical-connector-line-left-arrow-hover {
1824
+ border-right-color: #f3d8da;
1825
+ }
1826
+
1827
+ .e-gantt .e-gantt-chart .e-gantt-child-critical-taskbar-inner-div {
1828
+ background-color: #F3D8DA;
1829
+ border: 1px solid #F3D8DA;
1830
+ border-radius: 0px;
1831
+ }
1832
+
1833
+ .e-gantt .e-gantt-chart .e-gantt-child-critical-progressbar-inner-div {
1834
+ background-color: #D13438;
1835
+ border: 0px;
1836
+ border-radius: 4px;
1837
+ }
1838
+
1839
+ .e-gantt .e-gantt-chart .e-gantt-critical-unscheduled-taskbar {
1840
+ background: linear-gradient(to right, rgba(255, 85, 85, 0.2), #D13438 30%, #D13438 70%, #D13438 70%, rgba(255, 85, 85, 0.2) 100%);
1841
+ background-color: rgba(255, 85, 85, 0.2);
1842
+ border: 0px;
1843
+ border-radius: 0px;
1844
+ }
1845
+
1846
+ .e-gantt .e-gantt-chart .e-critical-milestone-top {
1847
+ border-bottom-color: #D13438;
1848
+ }
1849
+
1850
+ .e-gantt .e-gantt-chart .e-critical-milestone-bottom {
1851
+ border-top-color: #D13438;
1852
+ }