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