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