@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,115 +1,77 @@
1
1
  .e-richtexteditor {
2
2
  border-radius: 4px;
3
3
  }
4
-
5
4
  .e-richtexteditor .e-rte-toolbar {
6
5
  border-top-left-radius: 4px;
7
6
  border-top-right-radius: 4px;
8
7
  }
9
-
10
- .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item.e-active .e-tbar-btn .e-icons,
11
- .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item.e-active .e-tbar-btn .e-icons,
12
- .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:active .e-icons,
13
- .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:focus .e-icons,
14
- .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:hover .e-icons {
8
+ .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item.e-active .e-tbar-btn .e-icons, .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item.e-active .e-tbar-btn .e-icons, .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:active .e-icons, .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:focus .e-icons, .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:hover .e-icons {
15
9
  color: #fff;
16
10
  }
17
-
18
11
  .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item.e-active .e-tbar-btn {
19
12
  border-radius: 4px;
20
13
  }
21
-
22
- .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-control.e-tbar-btn.e-btn:active,
23
- .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item.e-active .e-control.e-tbar-btn.e-btn,
24
- .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item.e-active .e-tbar-btn,
25
- .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:active {
14
+ .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-control.e-tbar-btn.e-btn:active, .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item.e-active .e-control.e-tbar-btn.e-btn, .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item.e-active .e-tbar-btn, .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:active {
26
15
  border: 1px solid #4e555b;
27
16
  }
28
-
29
- .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-control.e-tbar-btn.e-btn:hover,
30
- .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-control.e-tbar-btn.e-btn:hover {
17
+ .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-control.e-tbar-btn.e-btn:hover, .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-control.e-tbar-btn.e-btn:hover {
31
18
  border: 1px solid #545b62;
32
19
  }
33
-
34
- .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-control.e-tbar-btn.e-btn:focus,
35
- .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-control.e-tbar-btn.e-btn:focus {
20
+ .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-control.e-tbar-btn.e-btn:focus, .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-control.e-tbar-btn.e-btn:focus {
36
21
  border: 1px solid #6c757d;
37
22
  }
38
-
39
- .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-control.e-tbar-btn.e-btn,
40
- .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-control.e-tbar-btn.e-dropdown-btn {
23
+ .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-control.e-tbar-btn.e-btn, .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-control.e-tbar-btn.e-dropdown-btn {
41
24
  border: 1px solid transparent;
42
25
  }
43
-
44
26
  .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-control.e-tbar-btn.e-dropdown-btn.e-active {
45
27
  border-radius: 4px;
46
28
  }
47
-
48
29
  .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-control.e-tbar-btn.e-dropdown-btn.e-active .e-icons {
49
30
  color: #fff;
50
31
  }
51
-
52
32
  .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-control.e-tbar-btn.e-btn.e-icon-btn {
53
33
  padding: 0 2px;
54
34
  }
55
-
56
- .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn:active,
57
- .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn:focus,
58
- .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn:hover {
35
+ .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn:active, .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn:focus, .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn:hover {
59
36
  border: 1px solid transparent;
60
37
  padding: 0 2px;
61
38
  }
62
-
63
- .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-inline-dropdown.e-control.e-tbar-btn.e-btn,
64
- .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-inline-dropdown.e-control.e-tbar-btn.e-btn {
39
+ .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-inline-dropdown.e-control.e-tbar-btn.e-btn, .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-inline-dropdown.e-control.e-tbar-btn.e-btn {
65
40
  border: 1px solid transparent;
66
41
  padding-bottom: 1px;
67
42
  padding-top: 1px;
68
43
  }
69
-
70
44
  .e-richtexteditor .e-rte-content {
71
45
  border-bottom-left-radius: 4px;
72
46
  border-bottom-right-radius: 4px;
73
47
  }
74
-
75
48
  .e-richtexteditor .e-rte-table-popup.e-popup.e-popup-open {
76
49
  border: 1px solid rgba(0, 0, 0, 0.2);
77
50
  border-radius: 4px;
78
51
  }
79
-
80
52
  .e-richtexteditor .e-rte-table-popup.e-popup.e-popup-open .e-insert-table-btn .e-btn-icon.e-icons {
81
53
  color: #fff;
82
54
  }
83
-
84
- .e-richtexteditor .e-rte-content .e-content,
85
- .e-richtexteditor .e-source-content .e-content {
55
+ .e-richtexteditor .e-rte-content .e-content, .e-richtexteditor .e-source-content .e-content {
86
56
  font-size: 14px;
87
57
  }
88
58
 
89
59
  .e-bigger .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item.e-toolbar-popup .e-tbar-btn {
90
60
  padding: 0 5px;
91
61
  }
92
-
93
- .e-bigger .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-dropdown-btn.e-rte-dropdown-btn.e-rte-dropdown-items.e-active,
94
- .e-bigger .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-dropdown-btn.e-rte-dropdown-items.e-rte-dropdown-btn:hover {
62
+ .e-bigger .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-dropdown-btn.e-rte-dropdown-btn.e-rte-dropdown-items.e-active, .e-bigger .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-dropdown-btn.e-rte-dropdown-items.e-rte-dropdown-btn:hover {
95
63
  padding-left: 5px;
96
64
  padding-right: 5px;
97
65
  }
98
-
99
66
  .e-bigger .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-dropdown-btn.e-rte-dropdown-btn.e-rte-dropdown-items {
100
67
  border: 1px solid transparent;
101
68
  padding-left: 5px;
102
69
  padding-right: 5px;
103
70
  }
104
-
105
- .e-bigger .e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn,
106
- .e-bigger .e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control,
107
- .e-bigger .e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-control.e-tbar-btn.e-btn.e-icon-btn {
71
+ .e-bigger .e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn, .e-bigger .e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control, .e-bigger .e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-control.e-tbar-btn.e-btn.e-icon-btn {
108
72
  padding: 0 5px;
109
73
  }
110
-
111
- .e-bigger .e-richtexteditor .e-rte-content .e-content,
112
- .e-bigger .e-richtexteditor .e-source-content .e-content {
74
+ .e-bigger .e-richtexteditor .e-rte-content .e-content, .e-bigger .e-richtexteditor .e-source-content .e-content {
113
75
  font-size: 16px;
114
76
  }
115
77
 
@@ -122,7 +84,6 @@
122
84
  min-height: 26px;
123
85
  min-width: 26px;
124
86
  }
125
-
126
87
  .e-rte-quick-popup .e-rte-quick-toolbar .e-tbar-btn.e-rte-inline-dropdown .e-btn-icon.e-caret {
127
88
  font-size: 8px;
128
89
  }
@@ -132,7 +93,6 @@
132
93
  min-height: 26px;
133
94
  min-width: 32px;
134
95
  }
135
-
136
96
  .e-bigger .e-rte-quick-popup .e-rte-quick-toolbar .e-tbar-btn.e-rte-inline-dropdown .e-btn-icon.e-caret {
137
97
  font-size: 10px;
138
98
  }
@@ -145,7 +105,6 @@
145
105
  padding-left: 1px;
146
106
  padding-right: 1px;
147
107
  }
148
-
149
108
  .e-bigger .e-rte-toolbar .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-dropdown-btn.e-rte-backgroundcolor-dropdown:hover, .e-bigger .e-rte-toolbar .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-dropdown-btn.e-rte-backgroundcolor-dropdown.e-active:hover, .e-bigger .e-rte-toolbar .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-dropdown-btn.e-rte-fontcolor-dropdown:hover, .e-bigger .e-rte-toolbar .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-dropdown-btn.e-rte-fontcolor-dropdown.e-active:hover, .e-bigger .e-rte-toolbar .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-dropdown-btn.e-rte-numberformatlist-dropdown:hover, .e-bigger .e-rte-toolbar .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-dropdown-btn.e-rte-numberformatlist-dropdown.e-active:hover, .e-bigger .e-rte-toolbar .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-dropdown-btn.e-rte-bulletformatlist-dropdown:hover, .e-bigger .e-rte-toolbar .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-dropdown-btn.e-rte-bulletformatlist-dropdown.e-active:hover,
150
109
  .e-bigger .e-rte-toolbar.e-extended-toolbar .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-dropdown-btn.e-rte-backgroundcolor-dropdown:hover,
151
110
  .e-bigger .e-rte-toolbar.e-extended-toolbar .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-dropdown-btn.e-rte-backgroundcolor-dropdown.e-active:hover,
@@ -186,7 +145,6 @@
186
145
  padding-bottom: 0;
187
146
  padding-top: 0;
188
147
  }
189
-
190
148
  .e-rte-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown.e-tbar-btn.e-btn:hover, .e-rte-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown.e-tbar-btn.e-btn.e-active, .e-rte-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown.e-tbar-btn.e-btn.e-active:hover,
191
149
  .e-rte-toolbar .e-toolbar-items .e-rte-fontcolor-dropdown.e-tbar-btn.e-btn:hover,
192
150
  .e-rte-toolbar .e-toolbar-items .e-rte-fontcolor-dropdown.e-tbar-btn.e-btn.e-active,
@@ -260,7 +218,6 @@
260
218
  padding-bottom: 0;
261
219
  padding-top: 0;
262
220
  }
263
-
264
221
  .e-rte-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown.e-active,
265
222
  .e-rte-toolbar .e-toolbar-items .e-rte-fontcolor-dropdown.e-active,
266
223
  .e-rte-toolbar .e-toolbar-items .e-rte-numberformatlist-dropdown.e-active,
@@ -293,11 +250,9 @@
293
250
  box-shadow: none;
294
251
  margin-top: 3px;
295
252
  }
296
-
297
253
  .e-popup.e-ddl .e-input-group {
298
254
  width: auto;
299
255
  }
300
-
301
256
  .e-popup.e-ddl .e-input-group input {
302
257
  line-height: 15px;
303
258
  }
@@ -311,7 +266,6 @@
311
266
  display: flex;
312
267
  width: auto;
313
268
  }
314
-
315
269
  .e-popup.e-ddl .e-filter-parent .e-input-group .e-back-icon {
316
270
  border: 0;
317
271
  }
@@ -327,8 +281,7 @@
327
281
  text-indent: 24px;
328
282
  }
329
283
 
330
- .e-bigger .e-popup.e-ddl .e-list-group-item,
331
- .e-bigger .e-popup.e-ddl .e-fixed-head {
284
+ .e-bigger .e-popup.e-ddl .e-list-group-item, .e-bigger .e-popup.e-ddl .e-fixed-head {
332
285
  font-size: 14px;
333
286
  line-height: 32px;
334
287
  padding-left: 0;
@@ -343,8 +296,7 @@
343
296
  padding: 4px 0;
344
297
  }
345
298
 
346
- .e-bigger .e-popup.e-ddl .e-input-group input,
347
- .e-bigger .e-popup.e-ddl .e-input-group input.e-input {
299
+ .e-bigger .e-popup.e-ddl .e-input-group input, .e-bigger .e-popup.e-ddl .e-input-group input.e-input {
348
300
  font-size: 16px;
349
301
  height: 36px;
350
302
  }
@@ -409,9 +361,7 @@
409
361
  font-size: 10px;
410
362
  }
411
363
 
412
- .e-bigger.e-small .e-ddl.e-popup .e-list-item,
413
- .e-bigger.e-small .e-ddl.e-popup .e-list-group-item,
414
- .e-bigger.e-small .e-ddl.e-popup .e-fixed-head {
364
+ .e-bigger.e-small .e-ddl.e-popup .e-list-item, .e-bigger.e-small .e-ddl.e-popup .e-list-group-item, .e-bigger.e-small .e-ddl.e-popup .e-fixed-head {
415
365
  font-size: 14px;
416
366
  line-height: 34px;
417
367
  padding-left: 0;
@@ -426,8 +376,7 @@
426
376
  padding: 4px 0;
427
377
  }
428
378
 
429
- .e-bigger.e-small .e-ddl.e-popup .e-input-group input,
430
- .e-bigger.e-small .e-ddl.e-popup .e-input-group input.e-input {
379
+ .e-bigger.e-small .e-ddl.e-popup .e-input-group input, .e-bigger.e-small .e-ddl.e-popup .e-input-group input.e-input {
431
380
  height: 30px;
432
381
  }
433
382
 
@@ -518,6 +467,8 @@
518
467
  /*! Horizontal Tab */
519
468
  /*! Bootstrap specific themes definition's */
520
469
  /*! Vertical Tab */
470
+ /* stylelint-disable property-no-vendor-prefix */
471
+ /* stylelint-disable property-no-vendor-prefix */
521
472
  @keyframes material-spinner-rotate {
522
473
  0% {
523
474
  transform: rotate(0);
@@ -526,7 +477,6 @@
526
477
  transform: rotate(360deg);
527
478
  }
528
479
  }
529
-
530
480
  @keyframes fabric-spinner-rotate {
531
481
  0% {
532
482
  transform: rotate(0);
@@ -535,128 +485,328 @@
535
485
  transform: rotate(360deg);
536
486
  }
537
487
  }
538
-
488
+ /* stylelint-disable */
539
489
  .e-gantt .e-add::before {
540
- content: '\e759';
490
+ content: "\e759";
491
+ }
492
+ .e-gantt .e-critical-path::before {
493
+ content: "\e93a";
541
494
  }
542
-
543
495
  .e-gantt .e-edit::before {
544
- content: '\e78f';
496
+ content: "\e78f";
545
497
  }
546
-
547
498
  .e-gantt .e-delete::before {
548
- content: '\e773';
499
+ content: "\e773";
549
500
  }
550
-
551
501
  .e-gantt .e-cancel::before {
552
- content: '\e745';
502
+ content: "\e745";
553
503
  }
554
-
555
504
  .e-gantt .e-save::before {
556
- content: '\e74d';
505
+ content: "\e74d";
557
506
  }
558
-
559
507
  .e-gantt .e-update::before {
560
- content: '\e74d';
508
+ content: "\e74d";
561
509
  }
562
-
563
510
  .e-gantt .e-search-icon::before {
564
- content: '\e724';
511
+ content: "\e724";
565
512
  }
566
-
567
513
  .e-gantt .e-cancel-icon::before {
568
- content: '\e745';
514
+ content: "\e745";
569
515
  }
570
-
571
516
  .e-gantt .e-notes-info::before {
572
- content: '\e760';
517
+ content: "\e760";
573
518
  }
574
-
575
519
  .e-gantt .e-left-resize-gripper::before,
576
520
  .e-gantt .e-right-resize-gripper::before {
577
- content: '\e781';
521
+ content: "\e781";
578
522
  }
579
-
580
523
  .e-gantt .e-expandall::before {
581
- content: '\e7db';
524
+ content: "\e7db";
582
525
  }
583
-
584
526
  .e-gantt .e-collapseall::before {
585
- content: '\e7dc';
527
+ content: "\e7dc";
586
528
  }
587
-
588
529
  .e-gantt .e-prevtimespan::before {
589
- content: '\e7c1';
530
+ content: "\e7c1";
590
531
  }
591
-
592
532
  .e-gantt .e-nexttimespan::before {
593
- content: '\e7ce';
533
+ content: "\e7ce";
594
534
  }
595
-
596
535
  .e-gantt .e-zoomin::before {
597
- content: '\e70a';
536
+ content: "\e70a";
598
537
  }
599
-
600
538
  .e-gantt .e-zoomout::before {
601
- content: '\e74a';
539
+ content: "\e74a";
602
540
  }
603
-
604
541
  .e-gantt .e-zoomtofit::before {
605
- content: '\e657';
542
+ content: "\e657";
606
543
  }
607
-
608
544
  .e-gantt .e-csvexport::before {
609
- content: '\e725';
545
+ content: "\e725";
610
546
  }
611
-
612
547
  .e-gantt .e-excelexport::before {
613
- content: '\e74e';
548
+ content: "\e74e";
614
549
  }
615
-
616
550
  .e-gantt .e-pdfexport::before {
617
- content: '\e727';
551
+ content: "\e727";
618
552
  }
619
-
620
553
  .e-gantt .e-indent::before {
621
- content: '\e702';
554
+ content: "\e702";
622
555
  }
623
-
624
556
  .e-gantt .e-outdent::before {
625
- content: '\e722';
557
+ content: "\e722";
626
558
  }
627
-
628
559
  .e-gantt .e-add-above::before {
629
- content: '\e658';
560
+ content: "\e658";
630
561
  }
631
-
632
562
  .e-gantt .e-add-below::before {
633
- content: '\e659';
563
+ content: "\e659";
634
564
  }
635
565
 
636
566
  .e-gantt.e-device .e-backarrowspan::before,
637
567
  .e-gantt.e-device .e-icon-dlg-close::before {
638
- content: '\e85b';
568
+ content: "\e85b";
639
569
  }
640
-
641
570
  .e-gantt.e-device .e-left-resize-gripper::before,
642
571
  .e-gantt.e-device .e-right-resize-gripper::before {
643
- content: '\e903';
572
+ content: "\e903";
573
+ }
574
+
575
+ .e-gantt-tooltip-arrow-left::before {
576
+ content: "\e7c1";
577
+ }
578
+
579
+ .e-gantt-tooltip-arrow-right::before {
580
+ content: "\e7ce";
581
+ }
582
+
583
+ .e-bigger .e-gantt .e-gantt-chart .e-timeline-header-container {
584
+ height: 64px;
585
+ }
586
+ .e-bigger .e-gantt .e-gantt-chart .e-timeline-top-header-cell {
587
+ height: 32px;
588
+ }
589
+ .e-bigger .e-gantt .e-gantt-chart .e-event-markers .e-span-label {
590
+ border-radius: 4px !important;
591
+ font-size: 12px !important;
592
+ height: 26px !important;
593
+ padding: 4px 11px 4px 9px !important;
594
+ top: 65px !important;
595
+ }
596
+ .e-bigger .e-gantt .e-gantt-chart .e-event-markers .e-gantt-right-arrow {
597
+ border-bottom: 6px solid transparent;
598
+ border-right: 6px solid transparent;
599
+ border-right-color: #ffc107;
600
+ border-top: 6px solid transparent;
601
+ top: 73px !important;
602
+ }
603
+ .e-bigger .e-gantt .e-gantt-chart .e-left-resize-gripper::before,
604
+ .e-bigger .e-gantt .e-gantt-chart .e-right-resize-gripper::before {
605
+ content: "\e92c";
606
+ }
607
+ .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right,
608
+ .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left,
609
+ .e-bigger .e-gantt .e-gantt-chart .e-right-connectorpoint-outer-div,
610
+ .e-bigger .e-gantt .e-gantt-chart .e-left-connectorpoint-outer-div {
611
+ border-radius: 50%;
612
+ display: inline-block;
613
+ position: absolute;
614
+ }
615
+ .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover,
616
+ .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
617
+ border-style: solid;
618
+ border-width: 1px;
619
+ box-sizing: content-box;
620
+ cursor: pointer;
621
+ display: inline-block;
622
+ }
623
+ .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover,
624
+ .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
625
+ background-color: #0056b3;
626
+ border-color: #fff;
627
+ }
628
+ .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover:hover,
629
+ .e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover:hover {
630
+ background-color: #0056b3;
631
+ border-color: #fff;
632
+ outline: 2px solid #007bff;
633
+ }
634
+ .e-bigger .e-gantt .e-tab .e-content {
635
+ height: 250px !important;
636
+ }
637
+ .e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
638
+ height: 63px !important; /* stylelint-disable-line declaration-no-important */
639
+ }
640
+ .e-bigger .e-gantt .e-dialog .e-dlg-header-content {
641
+ padding: 16px 4px 16px 16px !important; /* stylelint-disable-line declaration-no-important */
642
+ }
643
+ .e-bigger .e-gantt .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
644
+ left: 1px !important;
645
+ }
646
+ .e-bigger .e-gantt .e-dialog .e-btn .e-btn-icon.e-icon-dlg-close {
647
+ font-size: 14px !important;
648
+ }
649
+ .e-bigger .e-gantt .e-dialog .e-footer-content {
650
+ height: 70px !important;
651
+ padding: 16px !important;
652
+ }
653
+ .e-bigger .e-gantt .e-dialog .e-footer-content .e-btn {
654
+ margin-left: 12px;
655
+ }
656
+ .e-bigger .e-gantt .e-dialog .e-dlg-header {
657
+ line-height: 28px;
658
+ }
659
+ .e-bigger .e-gantt .e-filter-popup.e-popup {
660
+ width: 350px !important;
661
+ }
662
+ .e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
663
+ padding: 16px 0 0 !important;
664
+ }
665
+ .e-bigger .e-gantt .e-filter-popup .e-dlg-content {
666
+ border-radius: 6px !important;
667
+ padding: 32px 16px 16px !important;
668
+ }
669
+ .e-bigger .e-columnmenu {
670
+ top: 38px;
671
+ }
672
+ .e-bigger .e-gantt-dialog .e-dialog {
673
+ border-radius: 6px;
674
+ width: 556px !important;
675
+ }
676
+ .e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
677
+ padding: 0 16px !important; /* stylelint-disable-line declaration-no-important */
678
+ }
679
+ .e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(odd) {
680
+ padding: 16px 12px 0 16px;
681
+ }
682
+ .e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(even) {
683
+ padding: 16px 16px 0 12px;
684
+ }
685
+ .e-bigger .e-gantt-dialog .e-edit-form-row.e-scroll .e-edit-form-column:nth-child(even) {
686
+ padding: 16px 18px 0 9px;
687
+ }
688
+ .e-bigger .e-gantt-dialog .e-edit-form-row {
689
+ height: 250px !important;
690
+ }
691
+ .e-bigger .e-gantt-dialog .e-edit-form-column {
692
+ height: 76px !important;
693
+ }
694
+ .e-bigger .e-gantt-dialog .e-dlg-header-content {
695
+ border-bottom: 0 !important; /* stylelint-disable-line declaration-no-important */
696
+ }
697
+ .e-bigger .e-gantt-dialog > .e-dlg-content {
698
+ border-radius: 0 !important; /* stylelint-disable-line declaration-no-important */
699
+ }
700
+ .e-bigger .e-gantt-dialog .e-dlg-header-content {
701
+ border-radius: 6px 6px 0px 0px;
702
+ padding-bottom: 20px;
703
+ }
704
+ .e-bigger .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
705
+ border-radius: 50%;
706
+ height: auto !important; /* stylelint-disable-line declaration-no-important */
707
+ width: auto;
708
+ }
709
+ .e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
710
+ margin-left: 5px !important;
711
+ }
712
+ .e-bigger .e-gantt-dialog .e-icon-dlg-close {
713
+ color: #fff;
714
+ }
715
+ .e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
716
+ font-size: 16px !important; /* stylelint-disable-line declaration-no-important */
717
+ }
718
+ .e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
719
+ min-height: 35px !important;
720
+ min-width: 35.82px !important; /* stylelint-disable-line declaration-no-important */
721
+ }
722
+ .e-bigger .e-gantt-dialog .e-btn.e-flat {
723
+ line-height: 24px;
724
+ padding: 6px 16px 6px 15px !important; /* stylelint-disable-line declaration-no-important */
725
+ }
726
+ .e-bigger .e-gantt-dialog .e-btn.e-primary {
727
+ padding: 6px 21px 6px 23px !important; /* stylelint-disable-line declaration-no-important */
728
+ }
729
+ .e-bigger .e-gantt-dialog .e-datetime-wrapper .e-time-icon.e-icons::before {
730
+ font-size: 16px !important; /* stylelint-disable-line declaration-no-important */
731
+ }
732
+ .e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text {
733
+ font-size: 14px;
734
+ line-height: 22px;
735
+ }
736
+ .e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input[disabled] ~ label.e-label-top.e-float-text {
737
+ font-size: 14px;
738
+ line-height: 22px;
739
+ }
740
+ .e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input {
741
+ height: 34px !important;
742
+ }
743
+ .e-bigger .e-gantt-dialog .e-numeric.e-control-wrapper.e-input-group .e-input-group-icon {
744
+ min-height: 35px !important;
745
+ min-width: 35.82px !important; /* stylelint-disable-line declaration-no-important */
746
+ }
747
+ .e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-time-icon {
748
+ min-height: 35px !important;
749
+ min-width: 35.82px !important; /* stylelint-disable-line declaration-no-important */
750
+ }
751
+ .e-bigger .e-gantt-dialog .e-input-group.e-control-wrapper {
752
+ height: 36px;
753
+ }
754
+ .e-bigger .e-gantt-dialog .e-input-group-icon.e-date-icon {
755
+ min-width: 36px !important; /* stylelint-disable-line declaration-no-important */
756
+ }
757
+ .e-bigger .e-predecessor-tooltip .e-arrow-tip-outer.e-tip-bottom {
758
+ border-top: 8px solid #000;
759
+ }
760
+ .e-bigger .e-predecessor-tooltip .e-arrow-tip-inner.e-tip-bottom {
761
+ color: #000;
762
+ }
763
+ .e-bigger .e-predecessor-tooltip .e-left-btn:disabled {
764
+ color: #adb5bd !important;
765
+ }
766
+ .e-bigger .e-predecessor-tooltip .e-right-btn:disabled {
767
+ color: #adb5bd !important;
768
+ }
769
+ .e-bigger .e-predecessor-tooltip .e-tip-content {
770
+ padding: 3px !important; /* stylelint-disable-line declaration-no-important */
771
+ }
772
+ .e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type {
773
+ background-color: #000;
774
+ border-color: #000;
775
+ color: #f8f9fa;
776
+ font-size: 12px;
777
+ line-height: 18px;
778
+ padding: 0 8px 0 0;
779
+ }
780
+ .e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:last-of-type {
781
+ background-color: #000;
782
+ border-color: #000;
783
+ color: #f8f9fa;
784
+ font-size: 12px;
785
+ line-height: 18px;
786
+ padding: 0 0 0 8px;
787
+ }
788
+ .e-bigger .e-predecessor-dialog {
789
+ background-color: #f8f9fa;
790
+ }
791
+ .e-bigger .e-predecessor-dialog .e-dlg-content {
792
+ background-color: #f8f9fa;
793
+ padding: 10px 9px 9px 14px !important;
794
+ font-size: 12px;
795
+ font-weight: 400;
796
+ line-height: 1.8;
644
797
  }
645
798
 
646
799
  .e-gantt {
647
800
  display: block;
648
801
  width: 100%;
649
802
  }
650
-
651
803
  .e-gantt .e-cloneproperties {
652
804
  padding: 2px 8px 1px;
653
805
  }
654
-
655
806
  .e-gantt .e-cloneproperties.e-draganddrop .e-row .e-icon-rowdragicon::before {
656
807
  left: -5px;
657
808
  position: relative;
658
809
  }
659
-
660
810
  .e-gantt .e-cloneproperties {
661
811
  border-style: solid;
662
812
  border-width: 1px;
@@ -674,127 +824,101 @@
674
824
  white-space: nowrap;
675
825
  z-index: 100;
676
826
  }
677
-
678
827
  .e-gantt .e-cloneproperties.e-draganddrop {
679
828
  border-spacing: 0;
680
829
  font-size: 12px;
681
830
  font-weight: normal;
682
831
  overflow: visible;
683
832
  }
684
-
685
833
  .e-gantt .e-cloneproperties .e-bothganttlines {
686
834
  border-width: 1px 0 0 1px;
687
835
  }
688
-
689
836
  .e-gantt .e-draganddrop {
690
837
  border-width: 0 1px 1px;
691
838
  font-weight: normal;
692
839
  padding: 0;
693
840
  }
694
-
695
841
  .e-gantt .e-draganddrop .e-rowcell {
696
- opacity: .95;
842
+ opacity: 0.95;
697
843
  }
698
-
699
844
  .e-gantt .e-cloneproperties.e-draganddrop table {
700
845
  border-spacing: 0;
701
846
  }
702
-
703
847
  .e-gantt .e-icons.e-errorelem {
704
848
  display: inline-block;
705
849
  padding-left: 10px;
706
850
  vertical-align: middle;
707
851
  }
708
-
709
852
  .e-gantt .e-errorelem::before {
710
853
  color: #e3165b;
711
- content: '\e22a';
854
+ content: "\e22a";
712
855
  transform: rotate(180deg);
713
856
  }
714
-
715
- .e-gantt .e-verticallines .e-cloneproperties.e-draganddrop .e-rowdragdrop,
716
- .e-gantt .e-bothlines .e-cloneproperties.e-draganddrop .e-rowdragdrop {
857
+ .e-gantt .e-verticallines .e-cloneproperties.e-draganddrop .e-rowdragdrop, .e-gantt .e-bothlines .e-cloneproperties.e-draganddrop .e-rowdragdrop {
717
858
  border-bottom: 0;
718
859
  border-right: 1px solid #dee2e6;
719
860
  border-top: 1px solid #dee2e6;
720
861
  }
721
-
722
862
  .e-gantt .e-gantt-toolbar {
723
863
  border-bottom-left-radius: 0;
724
864
  border-bottom-right-radius: 0;
725
865
  border-style: solid;
726
866
  border-width: 1px 1px 0;
727
867
  }
728
-
729
868
  .e-gantt .e-flmenu-valuediv {
730
869
  padding-top: 16px;
731
870
  }
732
-
733
871
  .e-gantt .e-gantt-splitter .e-split-bar.e-split-bar-horizontal.e-resizable-split-bar {
734
872
  margin: 0;
735
873
  }
736
-
737
874
  .e-gantt .e-gantt-splitter .e-pane {
738
- overflow: hidden !important;
875
+ overflow: hidden !important; /* stylelint-disable-line declaration-no-important */
739
876
  }
740
-
741
877
  .e-gantt .e-temp-content {
742
878
  border-left: 1px solid;
743
879
  }
744
-
745
880
  .e-gantt .e-tab {
746
881
  border: 0;
747
882
  }
748
-
749
883
  .e-gantt .e-tab .e-tab-header .e-toolbar-item.e-active {
750
884
  border-color: transparent;
751
885
  }
752
-
753
886
  .e-gantt .e-gantt-tree-grid-pane .e-grid {
754
887
  border-width: 0;
755
888
  }
756
-
757
- .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),
758
- .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),
759
- .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),
760
- .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),
761
- .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) {
889
+ .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),
890
+ .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),
891
+ .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),
892
+ .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),
893
+ .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) {
762
894
  background-color: transparent;
763
895
  }
764
-
765
896
  .e-gantt .e-gantt-tree-grid-pane .e-gantt-temp-header {
766
897
  border-bottom-style: solid;
767
898
  border-bottom-width: 1px;
768
899
  height: 45px;
769
900
  }
770
-
771
901
  .e-gantt .e-gantt-tree-grid-pane .e-headercontent {
772
- border-right-width: 0 !important;
902
+ border-right-width: 0 !important; /* stylelint-disable-line declaration-no-important */
773
903
  }
774
-
775
904
  .e-gantt .e-gantt-tree-grid-pane .e-gridheader {
776
905
  border-top-style: none;
777
906
  border-top-width: 0;
778
- padding-right: 0 !important;
907
+ padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
779
908
  }
780
-
781
909
  .e-gantt .e-gantt-tree-grid-pane .e-columnheader,
782
910
  .e-gantt .e-gantt-tree-grid-pane .e-headercell {
783
- height: 63px !important;
911
+ height: 63px !important; /* stylelint-disable-line declaration-no-important */
784
912
  }
785
-
786
913
  .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content {
787
- overflow-x: scroll !important;
914
+ overflow-x: scroll !important; /* stylelint-disable-line declaration-no-important */
788
915
  }
789
-
790
916
  .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content.e-gantt-scroll-padding {
791
917
  width: calc(100% + 17px);
792
918
  }
793
-
794
919
  .e-gantt .e-gantt-tree-grid-pane .e-ganttnotes-info {
795
920
  text-align: center;
796
921
  }
797
-
798
922
  .e-gantt .e-gantt-tree-grid-pane .e-icons.e-notes-info {
799
923
  display: inline-block;
800
924
  font-size: 18px;
@@ -802,54 +926,45 @@
802
926
  line-height: 10px;
803
927
  vertical-align: middle;
804
928
  }
805
-
806
929
  .e-gantt .e-gantt-chart {
807
930
  height: 100%;
808
931
  overflow: hidden;
809
932
  position: relative;
810
933
  width: 100%;
811
934
  }
812
-
813
935
  .e-gantt .e-gantt-chart .e-chart-root-container {
814
936
  border-right: 0 solid;
815
937
  }
816
-
817
938
  .e-gantt .e-gantt-chart .e-chart-root-container .e-content {
818
- -webkit-overflow-scrolling: touch;
939
+ -webkit-overflow-scrolling: touch; /* stylelint-disable-line property-no-vendor-prefix */
819
940
  overflow-x: scroll;
820
941
  overflow-y: auto;
821
942
  position: relative;
822
943
  }
823
-
824
944
  .e-gantt .e-gantt-chart .e-chart-root-container .e-nonworking-day-container {
825
945
  position: absolute;
826
946
  }
827
-
828
947
  .e-gantt .e-gantt-chart .e-chart-root-container .e-event-markers-container {
829
948
  position: absolute;
830
949
  }
831
-
832
950
  .e-gantt .e-gantt-chart .e-chart-root-container .e-holiday-container {
951
+ height: 100%;
833
952
  position: absolute;
834
953
  }
835
-
836
954
  .e-gantt .e-gantt-chart .e-chart-root-container .e-weekend-container {
955
+ height: 100%;
837
956
  position: absolute;
838
957
  }
839
-
840
958
  .e-gantt .e-gantt-chart .e-timeline-header-container {
841
959
  border-bottom-style: solid;
842
- border-right-width: 0;
960
+ border-right: 1px solid;
843
961
  overflow: hidden;
844
962
  position: relative;
845
963
  z-index: 6;
846
964
  }
847
-
848
965
  .e-gantt .e-gantt-chart .e-timeline-header-table-container > thead > tr > th {
849
966
  border-left: 0;
850
- padding: 0 3px;
851
967
  }
852
-
853
968
  .e-gantt .e-gantt-chart .e-timeline-header-table-container {
854
969
  border-collapse: collapse;
855
970
  border-spacing: 0;
@@ -858,7 +973,6 @@
858
973
  margin: 0;
859
974
  padding: 0;
860
975
  }
861
-
862
976
  .e-gantt .e-gantt-chart .e-timeline-header-table-body {
863
977
  border-collapse: collapse;
864
978
  box-sizing: border-box;
@@ -866,12 +980,10 @@
866
980
  transform: scale(1);
867
981
  white-space: nowrap;
868
982
  }
869
-
870
983
  .e-gantt .e-gantt-chart .e-timeline-header-table-body > tr {
871
984
  display: -ms-inline-flexbox;
872
985
  display: inline-flex;
873
986
  }
874
-
875
987
  .e-gantt .e-gantt-chart .e-timeline-top-header-cell,
876
988
  .e-gantt .e-gantt-chart .e-timeline-single-header-cell {
877
989
  border-spacing: 0;
@@ -892,7 +1004,6 @@
892
1004
  user-select: none;
893
1005
  white-space: nowrap;
894
1006
  }
895
-
896
1007
  .e-gantt .e-gantt-chart .e-timeline-top-header-cell .e-header-cell-label,
897
1008
  .e-gantt .e-gantt-chart .e-timeline-single-header-cell .e-header-cell-label {
898
1009
  box-sizing: border-box;
@@ -902,13 +1013,11 @@
902
1013
  text-overflow: ellipsis;
903
1014
  white-space: nowrap;
904
1015
  }
905
-
906
1016
  .e-gantt .e-gantt-chart .e-timeline-top-header-cell .e-gantt-top-cell-text,
907
1017
  .e-gantt .e-gantt-chart .e-timeline-single-header-cell .e-gantt-top-cell-text {
908
- padding-left: 8px;
1018
+ padding-left: 11px;
909
1019
  text-align: left;
910
1020
  }
911
-
912
1021
  .e-gantt .e-gantt-chart .e-gantt-grid-lines {
913
1022
  border-bottom-style: solid;
914
1023
  border-bottom-width: 1px;
@@ -916,37 +1025,30 @@
916
1025
  border-spacing: 0;
917
1026
  box-sizing: border-box;
918
1027
  }
919
-
920
1028
  .e-gantt .e-gantt-chart .e-zero-spacing {
921
1029
  border-spacing: 0;
922
1030
  }
923
-
924
1031
  .e-gantt .e-gantt-chart .e-chart-row:first-child .e-chart-row-border {
925
1032
  border-top-color: transparent;
926
1033
  }
927
-
928
1034
  .e-gantt .e-gantt-chart .e-chart-row .e-chart-row-border {
929
1035
  border-collapse: separate;
930
1036
  border-style: solid;
931
1037
  border-width: 1px 0 0;
932
1038
  }
933
-
934
1039
  .e-gantt .e-gantt-chart .e-chart-row .e-chart-row-cell {
935
1040
  font-size: 0;
936
1041
  padding: 0;
937
1042
  }
938
-
939
1043
  .e-gantt .e-gantt-chart .e-chart-row .e-chart-row-border.e-lastrow {
940
1044
  border-bottom-width: 1px;
941
1045
  }
942
-
943
1046
  .e-gantt .e-gantt-chart .e-line-container-cell {
944
1047
  border-right-style: solid;
945
1048
  border-right-width: 1px;
946
1049
  height: 100%;
947
1050
  position: absolute;
948
1051
  }
949
-
950
1052
  .e-gantt .e-gantt-chart .e-taskbar-main-container {
951
1053
  cursor: move;
952
1054
  display: inline-block;
@@ -954,7 +1056,6 @@
954
1056
  vertical-align: middle;
955
1057
  z-index: 3;
956
1058
  }
957
-
958
1059
  .e-gantt .e-gantt-chart .e-left-label-container.e-left-label-temp-container {
959
1060
  -ms-flex-align: center;
960
1061
  align-items: center;
@@ -966,7 +1067,6 @@
966
1067
  text-overflow: ellipsis;
967
1068
  white-space: nowrap;
968
1069
  }
969
-
970
1070
  .e-gantt .e-gantt-chart .e-right-label-container.e-right-label-temp-container {
971
1071
  -ms-flex-align: center;
972
1072
  align-items: center;
@@ -979,16 +1079,13 @@
979
1079
  text-overflow: ellipsis;
980
1080
  white-space: nowrap;
981
1081
  }
982
-
983
1082
  .e-gantt .e-gantt-chart .e-left-label-container {
984
1083
  display: inline-block;
985
1084
  }
986
-
987
1085
  .e-gantt .e-gantt-chart .e-left-label-inner-div,
988
1086
  .e-gantt .e-gantt-chart .e-right-label-container {
989
1087
  overflow: hidden;
990
1088
  }
991
-
992
1089
  .e-gantt .e-gantt-chart .e-left-label-inner-div {
993
1090
  -ms-flex-align: center;
994
1091
  align-items: center;
@@ -998,21 +1095,18 @@
998
1095
  justify-content: flex-end;
999
1096
  width: 100%;
1000
1097
  }
1001
-
1002
1098
  .e-gantt .e-gantt-chart .e-label {
1003
1099
  margin: 3px;
1004
1100
  overflow: hidden;
1005
1101
  text-overflow: ellipsis;
1006
1102
  white-space: nowrap;
1007
1103
  }
1008
-
1009
1104
  .e-gantt .e-gantt-chart .e-right-label-container {
1010
1105
  background-color: transparent;
1011
1106
  display: inline-block;
1012
1107
  margin: 0;
1013
1108
  position: absolute;
1014
1109
  }
1015
-
1016
1110
  .e-gantt .e-gantt-chart .e-right-label-inner-div {
1017
1111
  -ms-flex-align: center;
1018
1112
  align-items: center;
@@ -1022,16 +1116,14 @@
1022
1116
  outline: none;
1023
1117
  overflow: hidden;
1024
1118
  }
1025
-
1026
1119
  .e-gantt .e-gantt-chart .e-indicator-span {
1027
1120
  display: inline-block;
1028
1121
  font-size: 13px;
1029
- font-weight: 400;
1122
+ font-weight: normal;
1030
1123
  overflow: hidden;
1031
1124
  position: absolute;
1032
1125
  text-overflow: ellipsis;
1033
1126
  }
1034
-
1035
1127
  .e-gantt .e-gantt-chart .e-gantt-child-taskbar,
1036
1128
  .e-gantt .e-gantt-chart .e-gantt-parent-taskbar,
1037
1129
  .e-gantt .e-gantt-chart .e-gantt-child-progressbar,
@@ -1042,18 +1134,15 @@
1042
1134
  display: inline-block;
1043
1135
  width: 100%;
1044
1136
  }
1045
-
1046
1137
  .e-gantt .e-gantt-chart .e-manualparent-main-container {
1047
1138
  background-color: transparent;
1048
1139
  cursor: move;
1049
1140
  margin-top: -5px;
1050
1141
  position: absolute;
1051
1142
  }
1052
-
1053
1143
  .e-gantt .e-gantt-chart .e-gantt-manualparent-taskbar {
1054
1144
  margin-top: 3px;
1055
1145
  }
1056
-
1057
1146
  .e-gantt .e-gantt-chart .e-gantt-split-container-line {
1058
1147
  border-color: inherit;
1059
1148
  border-top-style: dotted;
@@ -1065,7 +1154,6 @@
1065
1154
  top: 50%;
1066
1155
  width: 98%;
1067
1156
  }
1068
-
1069
1157
  .e-gantt .e-gantt-chart .e-gantt-child-taskbar-inner-div,
1070
1158
  .e-gantt .e-gantt-chart .e-gantt-parent-taskbar-inner-div {
1071
1159
  border-spacing: 0;
@@ -1075,28 +1163,23 @@
1075
1163
  padding: 0;
1076
1164
  z-index: 3;
1077
1165
  }
1078
-
1079
1166
  .e-gantt .e-gantt-chart .e-gantt-parent-progressbar-inner-div {
1080
1167
  z-index: 3;
1081
1168
  }
1082
-
1083
1169
  .e-gantt .e-gantt-chart .e-gantt-child-progressbar-inner-div,
1084
1170
  .e-gantt .e-gantt-chart .e-gantt-parent-progressbar-inner-div {
1085
1171
  box-sizing: border-box;
1086
1172
  text-align: right;
1087
1173
  }
1088
-
1089
1174
  .e-gantt .e-gantt-chart .e-chart-scroll-container,
1090
1175
  .e-gantt .e-gantt-chart .e-chart-rows-container {
1091
1176
  -webkit-user-select: none;
1092
1177
  -ms-user-select: none;
1093
1178
  user-select: none;
1094
1179
  }
1095
-
1096
1180
  .e-gantt .e-gantt-chart .e-chart-rows-container {
1097
1181
  line-height: initial;
1098
1182
  }
1099
-
1100
1183
  .e-gantt .e-gantt-chart .e-taskbar-left-resizer,
1101
1184
  .e-gantt .e-gantt-chart .e-taskbar-right-resizer {
1102
1185
  display: inline-block;
@@ -1105,7 +1188,6 @@
1105
1188
  width: 10px;
1106
1189
  z-index: 4;
1107
1190
  }
1108
-
1109
1191
  .e-gantt .e-gantt-chart .e-child-progress-resizer {
1110
1192
  display: inline-block;
1111
1193
  height: 15px;
@@ -1114,61 +1196,53 @@
1114
1196
  width: 20px;
1115
1197
  z-index: 5;
1116
1198
  }
1117
-
1118
1199
  .e-gantt .e-gantt-chart .e-progress-resize-gripper {
1119
1200
  cursor: col-resize;
1120
1201
  }
1121
-
1122
1202
  .e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler {
1123
- border-style: solid;
1124
1203
  border-width: 1px;
1125
1204
  box-sizing: content-box;
1126
1205
  cursor: col-resize;
1127
1206
  height: 2px;
1128
1207
  position: absolute;
1129
1208
  top: 7px;
1130
- width: 12px;
1131
1209
  }
1132
-
1133
1210
  .e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-element {
1134
1211
  border-bottom-style: solid;
1135
- border-bottom-width: 6px;
1212
+ border-bottom-width: 8px;
1136
1213
  border-left: 7px solid transparent;
1137
1214
  border-right: 7px solid transparent;
1138
1215
  cursor: col-resize;
1139
1216
  height: 0;
1140
- left: -1px;
1217
+ left: 0;
1141
1218
  position: absolute;
1142
1219
  top: -7px;
1143
1220
  width: 0;
1144
1221
  }
1145
-
1146
1222
  .e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-after {
1147
1223
  border-bottom-style: solid;
1148
- border-bottom-width: 6px;
1224
+ border-bottom-width: 8px;
1149
1225
  border-left: 6px solid transparent;
1150
1226
  border-right: 6px solid transparent;
1151
1227
  cursor: col-resize;
1152
1228
  height: 0;
1153
- left: -1px;
1229
+ left: 1px;
1154
1230
  position: absolute;
1155
- top: -6px;
1231
+ top: -7px;
1156
1232
  width: 0;
1157
1233
  }
1158
-
1159
1234
  .e-gantt .e-gantt-chart .e-baseline-bar {
1235
+ border-radius: 2px;
1160
1236
  box-sizing: border-box;
1161
1237
  position: absolute;
1162
- z-index: 3;
1238
+ z-index: 2;
1163
1239
  }
1164
-
1165
1240
  .e-gantt .e-gantt-chart .e-milestone-top,
1166
1241
  .e-gantt .e-gantt-chart .e-parent-milestone-top,
1167
1242
  .e-gantt .e-gantt-chart .e-manualparent-milestone-top {
1168
1243
  border-style: none solid solid;
1169
1244
  border-top: 0;
1170
1245
  }
1171
-
1172
1246
  .e-gantt .e-gantt-chart .e-milestone-top,
1173
1247
  .e-gantt .e-gantt-chart .e-milestone-bottom,
1174
1248
  .e-gantt .e-gantt-chart .e-parent-milestone-top,
@@ -1178,19 +1252,16 @@
1178
1252
  border-left-color: transparent;
1179
1253
  border-right-color: transparent;
1180
1254
  }
1181
-
1182
1255
  .e-gantt .e-gantt-chart .e-milestone-bottom,
1183
1256
  .e-gantt .e-gantt-chart .e-parent-milestone-bottom,
1184
1257
  .e-gantt .e-gantt-chart .e-manualparent-milestone-bottom {
1185
1258
  border-bottom: 0;
1186
1259
  border-style: solid solid none;
1187
1260
  }
1188
-
1189
1261
  .e-gantt .e-gantt-chart .e-baseline-gantt-milestone-container {
1190
1262
  position: absolute;
1191
1263
  z-index: 2;
1192
1264
  }
1193
-
1194
1265
  .e-gantt .e-gantt-chart .e-task-label {
1195
1266
  display: inline;
1196
1267
  font-weight: normal;
@@ -1201,11 +1272,9 @@
1201
1272
  vertical-align: middle;
1202
1273
  white-space: nowrap;
1203
1274
  }
1204
-
1205
1275
  .e-gantt .e-gantt-chart .e-task-table {
1206
1276
  overflow: hidden;
1207
1277
  }
1208
-
1209
1278
  .e-gantt .e-gantt-chart .e-left-resize-gripper,
1210
1279
  .e-gantt .e-gantt-chart .e-right-resize-gripper {
1211
1280
  -ms-flex-align: center;
@@ -1214,45 +1283,37 @@
1214
1283
  display: -ms-inline-flexbox;
1215
1284
  display: inline-flex;
1216
1285
  }
1217
-
1218
1286
  .e-gantt .e-gantt-chart .e-holiday {
1219
1287
  display: inline-block;
1220
1288
  position: absolute;
1221
1289
  }
1222
-
1223
1290
  .e-gantt .e-gantt-chart .e-holiday .e-span {
1224
- font-size: 13px;
1225
1291
  position: absolute;
1226
1292
  transform: rotate(-90deg);
1227
1293
  white-space: nowrap;
1228
1294
  width: 0;
1229
1295
  }
1230
-
1231
1296
  .e-gantt .e-gantt-chart .e-weekend {
1232
1297
  display: inline-block;
1233
1298
  position: absolute;
1234
1299
  z-index: 0;
1235
1300
  }
1236
-
1237
1301
  .e-gantt .e-gantt-chart .e-rangecontainer .e-leftarc {
1238
1302
  border-bottom-left-radius: 2px;
1239
1303
  border-top-left-radius: 2px;
1240
1304
  position: absolute;
1241
1305
  }
1242
-
1243
1306
  .e-gantt .e-gantt-chart .e-rangecontainer .e-rightarc {
1244
1307
  border-bottom-right-radius: 2px;
1245
1308
  border-top-right-radius: 2px;
1246
1309
  position: absolute;
1247
1310
  }
1248
-
1249
1311
  .e-gantt .e-gantt-chart .e-event-markers {
1250
1312
  border-left: 1px dashed;
1251
1313
  position: absolute;
1252
1314
  width: 1px;
1253
1315
  z-index: 2;
1254
1316
  }
1255
-
1256
1317
  .e-gantt .e-gantt-chart .e-event-markers .e-span-label {
1257
1318
  border-radius: 3px;
1258
1319
  font-weight: 500;
@@ -1266,7 +1327,6 @@
1266
1327
  width: auto;
1267
1328
  z-index: 2;
1268
1329
  }
1269
-
1270
1330
  .e-gantt .e-gantt-chart .e-event-markers .e-gantt-right-arrow {
1271
1331
  border-bottom: 5px solid transparent;
1272
1332
  border-right: 5px solid;
@@ -1276,52 +1336,45 @@
1276
1336
  top: 56px;
1277
1337
  width: 0;
1278
1338
  }
1279
-
1280
1339
  .e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar {
1281
1340
  border-radius: 0;
1282
1341
  border-style: none;
1283
1342
  display: inline-block;
1284
1343
  }
1285
-
1286
1344
  .e-gantt .e-gantt-chart .e-connector-line-right-arrow {
1287
1345
  border-left-style: solid;
1288
1346
  border-left-width: 10px;
1289
1347
  }
1290
-
1291
1348
  .e-gantt .e-gantt-chart .e-connector-line-left-arrow {
1292
1349
  border-right-style: solid;
1293
1350
  border-right-width: 10px;
1294
1351
  }
1295
-
1296
1352
  .e-gantt .e-gantt-chart .e-connector-line-right-arrow,
1297
1353
  .e-gantt .e-gantt-chart .e-connector-line-left-arrow {
1298
1354
  border-bottom: 5px solid transparent;
1299
1355
  border-top: 5px solid transparent;
1300
1356
  }
1301
-
1302
1357
  .e-gantt .e-gantt-chart .e-connector-line-container {
1303
1358
  z-index: 5;
1304
1359
  }
1305
-
1306
1360
  .e-gantt .e-gantt-chart .e-connector-line-z-index {
1307
1361
  z-index: 1;
1308
1362
  }
1309
-
1310
1363
  .e-gantt .e-gantt-chart .e-connector-line-hover {
1311
1364
  outline: 1px solid;
1312
1365
  }
1313
-
1366
+ .e-gantt .e-gantt-chart .e-critical-connector-line-hover {
1367
+ outline: 1px solid;
1368
+ }
1314
1369
  .e-gantt .e-gantt-chart .e-connector-line-hover-z-index {
1315
1370
  z-index: 100;
1316
1371
  }
1317
-
1318
1372
  .e-gantt .e-gantt-chart .e-connectortouchpoint {
1319
1373
  background-color: transparent;
1320
1374
  display: block;
1321
1375
  position: absolute;
1322
1376
  z-index: 5;
1323
1377
  }
1324
-
1325
1378
  .e-gantt .e-gantt-chart .e-connectorpoint-right,
1326
1379
  .e-gantt .e-gantt-chart .e-connectorpoint-left,
1327
1380
  .e-gantt .e-gantt-chart .e-right-connectorpoint-outer-div,
@@ -1330,7 +1383,6 @@
1330
1383
  display: inline-block;
1331
1384
  position: absolute;
1332
1385
  }
1333
-
1334
1386
  .e-gantt .e-gantt-chart .e-connectorpoint-left-hover,
1335
1387
  .e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
1336
1388
  border-style: solid;
@@ -1339,11 +1391,9 @@
1339
1391
  cursor: pointer;
1340
1392
  display: inline-block;
1341
1393
  }
1342
-
1343
1394
  .e-gantt .e-gantt-chart .e-connectorpoint-allow-block {
1344
1395
  cursor: no-drop;
1345
1396
  }
1346
-
1347
1397
  .e-gantt .e-gantt-chart .e-gantt-manualparenttaskbar-left,
1348
1398
  .e-gantt .e-gantt-chart .e-gantt-manualparenttaskbar-right {
1349
1399
  background-color: #989A9C;
@@ -1355,29 +1405,24 @@
1355
1405
  position: absolute;
1356
1406
  width: 10px;
1357
1407
  }
1358
-
1359
1408
  .e-gantt .e-gantt-chart .e-manualparent-milestone-top,
1360
1409
  .e-gantt .e-gantt-chart .e-manualparent-milestone-bottom {
1361
1410
  border-bottom-color: #989A9C;
1362
1411
  }
1363
-
1364
1412
  .e-gantt .e-gantt-chart .e-gantt-manualparenttaskbar-right {
1365
1413
  cursor: e-resize;
1366
1414
  margin-left: -8px;
1367
1415
  }
1368
-
1369
1416
  .e-gantt .e-gantt-chart .e-gantt-manualparenttaskbar-left {
1370
1417
  margin-left: 0;
1371
1418
  }
1372
-
1373
1419
  .e-gantt .e-gantt-chart .e-gantt-manualparenttaskbar {
1374
1420
  background: #989A9C;
1375
1421
  margin-top: 3px;
1376
1422
  position: absolute;
1377
1423
  }
1378
-
1379
1424
  .e-gantt .e-gantt-chart .e-icon {
1380
- font-family: 'e-icons';
1425
+ font-family: "e-icons";
1381
1426
  font-size: 13px;
1382
1427
  font-style: normal;
1383
1428
  font-variant: normal;
@@ -1386,7 +1431,6 @@
1386
1431
  text-transform: none;
1387
1432
  vertical-align: middle;
1388
1433
  }
1389
-
1390
1434
  .e-gantt .e-gantt-chart .e-active-container {
1391
1435
  outline: 1px solid;
1392
1436
  outline-offset: 2px;
@@ -1395,11 +1439,9 @@
1395
1439
  .e-gantt-dialog .e-tab .e-tab-header {
1396
1440
  padding-left: 12px;
1397
1441
  }
1398
-
1399
1442
  .e-gantt-dialog .e-tab .e-tab-header .e-indicator {
1400
1443
  display: block;
1401
1444
  }
1402
-
1403
1445
  .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
1404
1446
  border-style: solid;
1405
1447
  border-width: 1px;
@@ -1412,119 +1454,99 @@
1412
1454
  .e-gantt-dialog {
1413
1455
  border: 0;
1414
1456
  }
1415
-
1416
1457
  .e-gantt-dialog .e-gridform .e-table {
1417
1458
  border-spacing: 0;
1418
1459
  }
1419
-
1420
1460
  .e-gantt-dialog .e-item {
1421
1461
  height: 241px;
1422
1462
  }
1423
-
1424
1463
  .e-gantt-dialog .e-dependent-div {
1425
1464
  border-bottom-width: 0px;
1426
1465
  }
1427
-
1428
1466
  .e-gantt-dialog .e-icon-dlg-close {
1429
1467
  opacity: initial;
1430
1468
  }
1431
-
1432
1469
  .e-gantt-dialog .e-toolbar {
1433
1470
  border-top-width: 0;
1434
1471
  }
1435
-
1436
1472
  .e-gantt-dialog .e-resource-div {
1437
1473
  border-bottom-width: 0px;
1438
1474
  }
1439
-
1440
1475
  .e-gantt-dialog .e-resource-div .e-gridheader {
1441
1476
  border-top-width: 0;
1442
1477
  }
1443
-
1444
1478
  .e-gantt-dialog .e-edit-form-row {
1445
1479
  height: 241px;
1446
1480
  overflow-y: auto;
1447
1481
  }
1448
-
1449
1482
  .e-gantt-dialog .e-edit-form-column:nth-child(odd) {
1450
1483
  float: left;
1451
1484
  padding: 16px 18px 0 18px;
1452
1485
  width: 50%;
1453
1486
  }
1454
-
1455
1487
  .e-gantt-dialog .e-edit-form-column:nth-child(even) {
1456
1488
  float: left;
1457
1489
  padding: 16px 16px 0 0;
1458
1490
  width: 50%;
1459
1491
  }
1460
-
1461
1492
  .e-gantt-dialog .e-edit-form-row.e-scroll .e-edit-form-column:nth-child(even) {
1462
1493
  padding: 16px 16px 0 0;
1463
1494
  }
1464
-
1465
1495
  .e-gantt-dialog .e-edit-form-column {
1466
1496
  height: 75px;
1467
1497
  }
1468
-
1469
1498
  .e-gantt-dialog .e-dependent-div .e-content {
1470
1499
  height: 161px;
1471
1500
  }
1472
-
1473
1501
  .e-gantt-dialog .e-resource-div .e-content {
1474
1502
  height: 202px;
1475
1503
  }
1476
-
1477
1504
  .e-gantt-dialog .e-richtexteditor {
1478
1505
  border-bottom-width: 0px;
1479
- height: 241px !important;
1506
+ height: 241px !important; /* stylelint-disable-line declaration-no-important */
1480
1507
  overflow: hidden;
1481
1508
  }
1482
-
1483
1509
  .e-gantt-dialog .e-richtexteditor.e-rte-tb-expand {
1484
1510
  border-top: 0;
1485
1511
  }
1486
-
1487
1512
  .e-gantt-dialog .e-richtexteditor .e-rte-content {
1488
1513
  border-bottom-width: 0px;
1489
1514
  height: 200px;
1515
+ overflow: hidden;
1490
1516
  }
1491
-
1492
1517
  .e-gantt-dialog > .e-dlg-content {
1493
- padding: 0 !important;
1518
+ padding: 0 !important; /* stylelint-disable-line declaration-no-important */
1494
1519
  }
1495
-
1496
1520
  .e-gantt-dialog .e-dlg-header-content {
1497
- border-bottom: 0 !important;
1521
+ border-bottom: 0 !important; /* stylelint-disable-line declaration-no-important */
1498
1522
  }
1499
-
1500
1523
  .e-gantt-dialog .e-dlg-header-content {
1501
1524
  border-radius: 3px 3px 0px 0px;
1502
1525
  padding-bottom: 20px;
1503
1526
  }
1504
-
1505
1527
  .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
1506
1528
  border-radius: 50%;
1529
+ height: auto !important; /* stylelint-disable-line declaration-no-important */
1530
+ width: auto !important; /* stylelint-disable-line declaration-no-important */
1507
1531
  }
1508
1532
 
1509
1533
  .e-icon-rowselect::before {
1510
- content: '\e930';
1534
+ content: "\e930";
1511
1535
  }
1512
1536
 
1513
1537
  .e-ganttpopup {
1514
- -moz-user-select: none;
1515
- -ms-user-select: none;
1516
- -webkit-user-select: none;
1538
+ -moz-user-select: none; /* stylelint-disable-line property-no-vendor-prefix */
1539
+ -ms-user-select: none; /* stylelint-disable-line property-no-vendor-prefix */
1540
+ -webkit-user-select: none; /* stylelint-disable-line property-no-vendor-prefix */
1517
1541
  font-weight: normal;
1518
1542
  position: absolute;
1519
1543
  user-select: none;
1520
1544
  z-index: 99999;
1521
1545
  }
1522
-
1523
1546
  .e-ganttpopup .e-rowselect {
1524
1547
  line-height: 18px;
1525
1548
  text-indent: 7%;
1526
1549
  }
1527
-
1528
1550
  .e-ganttpopup span {
1529
1551
  border: 1px solid transparent;
1530
1552
  cursor: pointer;
@@ -1533,7 +1555,6 @@
1533
1555
  padding: 4px;
1534
1556
  width: 26px;
1535
1557
  }
1536
-
1537
1558
  .e-ganttpopup .e-content {
1538
1559
  border-radius: 4px;
1539
1560
  border-style: solid;
@@ -1541,18 +1562,16 @@
1541
1562
  font-size: 14px;
1542
1563
  padding: 4px;
1543
1564
  }
1544
-
1545
1565
  .e-ganttpopup .e-tail::after,
1546
1566
  .e-ganttpopup .e-tail::before,
1547
1567
  .e-ganttpopup .e-ganttpopup {
1548
1568
  border: 10px solid transparent;
1549
- content: '';
1569
+ content: "";
1550
1570
  height: 0;
1551
1571
  left: 8px;
1552
1572
  position: absolute;
1553
1573
  width: 0;
1554
1574
  }
1555
-
1556
1575
  .e-ganttpopup .e-downtail::after {
1557
1576
  top: 34px;
1558
1577
  }
@@ -1566,7 +1585,7 @@
1566
1585
  }
1567
1586
 
1568
1587
  .e-gantt .e-cloneproperties.e-draganddrop .e-row .e-rowcell .e-treecolumn-container .e-icons.e-none::before {
1569
- content: '';
1588
+ content: "";
1570
1589
  }
1571
1590
 
1572
1591
  .e-bigger .e-gantt .e-gantt-chart .e-label {
@@ -1584,140 +1603,159 @@
1584
1603
  padding: 16px 18px 0 18px;
1585
1604
  width: 100%;
1586
1605
  }
1587
-
1588
1606
  .e-gantt.e-device .e-edit-form-row {
1589
1607
  height: auto;
1590
1608
  }
1591
-
1592
1609
  .e-gantt.e-device .e-adaptive-searchbar {
1593
1610
  padding: 5px 10px;
1594
1611
  width: 90%;
1595
1612
  }
1596
-
1597
1613
  .e-gantt.e-device .e-backarrowspan {
1598
1614
  font-size: 16px;
1599
1615
  padding: 5px 10px;
1600
1616
  }
1601
-
1602
1617
  .e-gantt.e-device .e-gantt-dialog {
1603
1618
  max-height: none;
1604
1619
  }
1605
-
1606
1620
  .e-gantt.e-device .e-gantt-dialog .e-dlg-closeicon-btn {
1607
1621
  float: left;
1608
1622
  left: -4px;
1609
1623
  }
1610
-
1611
1624
  .e-gantt.e-device .e-gantt-dialog .e-icon-dlg-close {
1612
1625
  font-size: 16px;
1613
1626
  }
1614
-
1615
1627
  .e-gantt.e-device .e-gantt-dialog .e-dlg-header {
1616
1628
  display: inline-block;
1617
1629
  }
1618
-
1619
1630
  .e-gantt.e-device .e-toolbar-item {
1620
1631
  padding: 7px;
1621
1632
  }
1622
-
1623
1633
  .e-gantt.e-device .e-toolbar .e-icons {
1624
1634
  font-size: 18px;
1625
1635
  }
1626
-
1627
1636
  .e-gantt.e-device .e-gridheader .e-icons {
1628
1637
  font-size: 12px;
1629
1638
  }
1630
-
1631
1639
  .e-gantt.e-device .e-right-resize-gripper,
1632
1640
  .e-gantt.e-device .e-left-resize-gripper {
1633
1641
  border: 7px solid;
1634
1642
  z-index: -1;
1635
1643
  }
1636
-
1637
1644
  .e-gantt.e-device .e-right-resize-gripper::before,
1638
1645
  .e-gantt.e-device .e-left-resize-gripper::before {
1639
1646
  font-size: 14px;
1640
1647
  margin-left: -7px;
1641
1648
  }
1642
-
1643
1649
  .e-gantt.e-device .e-dependent-div .e-content {
1644
1650
  height: 100%;
1645
1651
  }
1646
-
1647
1652
  .e-gantt.e-device .e-resource-div .e-content {
1648
1653
  height: 100%;
1649
1654
  }
1650
-
1651
1655
  .e-gantt.e-device .e-richtexteditor {
1652
1656
  height: 100%;
1653
1657
  }
1654
-
1655
1658
  .e-gantt.e-device .e-richtexteditor .e-rte-content {
1656
1659
  height: 100%;
1657
1660
  }
1658
1661
 
1662
+ .e-predecessor-tooltip {
1663
+ background-color: #000 !important; /* stylelint-disable-line declaration-no-important */
1664
+ border-color: #000 !important; /* stylelint-disable-line declaration-no-important */
1665
+ visibility: hidden;
1666
+ }
1667
+ .e-predecessor-tooltip .e-arrow-tip-outer.e-tip-bottom {
1668
+ border-top: 8px solid #000;
1669
+ }
1670
+ .e-predecessor-tooltip .e-arrow-tip-inner.e-tip-bottom {
1671
+ color: #000;
1672
+ }
1673
+ .e-predecessor-tooltip .e-left-btn:disabled {
1674
+ color: #adb5bd !important;
1675
+ }
1676
+ .e-predecessor-tooltip .e-right-btn:disabled {
1677
+ color: #adb5bd !important;
1678
+ }
1679
+ .e-predecessor-tooltip .e-tip-content {
1680
+ padding: 3px !important; /* stylelint-disable-line declaration-no-important */
1681
+ }
1682
+ .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type {
1683
+ background-color: #000;
1684
+ border-color: #000;
1685
+ color: #f8f9fa;
1686
+ font-size: 12px;
1687
+ line-height: 18px;
1688
+ padding: 0 8px 0 0;
1689
+ }
1690
+ .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:last-of-type {
1691
+ background-color: #000;
1692
+ border-color: #000;
1693
+ color: #f8f9fa;
1694
+ font-size: 12px;
1695
+ line-height: 18px;
1696
+ padding: 0 0 0 8px;
1697
+ }
1698
+
1699
+ .e-predecessor-dialog {
1700
+ background-color: #f8f9fa;
1701
+ }
1702
+ .e-predecessor-dialog .e-dlg-content {
1703
+ background-color: #f8f9fa;
1704
+ padding: 10px 9px 9px 14px !important;
1705
+ font-size: 12px;
1706
+ font-weight: 400;
1707
+ line-height: 1.8;
1708
+ }
1709
+
1659
1710
  /*! Gantt theme */
1660
1711
  .e-gantt .e-gantt-splitter {
1661
1712
  border-color: #dee2e6;
1662
1713
  border-radius: 0px;
1663
1714
  }
1664
-
1665
1715
  .e-gantt .e-cloneproperties.e-draganddrop {
1666
1716
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
1667
- opacity: .95;
1717
+ opacity: 0.95;
1668
1718
  overflow: visible;
1669
1719
  }
1670
-
1671
1720
  .e-gantt .e-cloneproperties {
1672
1721
  background-color: #fff;
1673
1722
  border-color: #ddd;
1674
1723
  color: #212529;
1675
1724
  }
1676
-
1677
1725
  .e-gantt .e-cloneproperties.e-draganddrop .e-rowcell {
1678
1726
  color: #212529;
1679
1727
  }
1680
-
1681
1728
  .e-gantt .e-cloneproperties.e-draganddrop table,
1682
1729
  .e-gantt .e-cloneproperties.e-draganddrop table .e-selectionbackground {
1683
1730
  background-color: #fff;
1684
1731
  height: 30px;
1685
1732
  }
1686
-
1687
1733
  .e-gantt .e-gantt-toolbar + .e-gantt-splitter {
1688
1734
  border-top-left-radius: 0px;
1689
1735
  border-top-right-radius: 0px;
1690
1736
  }
1691
-
1692
1737
  .e-gantt .e-grid .e-focused:not(.e-menu-item) {
1693
- box-shadow: 0 0 0 1px #66afe9 inset !important;
1738
+ box-shadow: 0 0 0 1px #66afe9 inset !important; /* stylelint-disable-line declaration-no-important */
1694
1739
  }
1695
-
1696
1740
  .e-gantt .e-temp-content {
1697
1741
  border-color: #dee2e6;
1698
1742
  }
1699
-
1700
1743
  .e-gantt .e-splitter-box {
1701
1744
  border-color: #dee2e6;
1702
1745
  }
1703
-
1704
1746
  .e-gantt .e-gantt-temp-header {
1705
1747
  border-color: #dee2e6;
1706
1748
  }
1707
-
1708
1749
  .e-gantt .e-gantt-chart-pane {
1709
1750
  border-color: #dee2e6;
1710
1751
  }
1711
-
1712
1752
  .e-gantt .e-gantt-tree-grid-pane .e-timeline-single-header-outer-div {
1713
- height: 45px !important;
1753
+ height: 45px !important; /* stylelint-disable-line declaration-no-important */
1714
1754
  }
1715
-
1716
1755
  .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active {
1717
1756
  background: rgba(0, 123, 255, 0.16);
1718
1757
  opacity: 1;
1719
1758
  }
1720
-
1721
1759
  .e-gantt .e-gantt-chart .e-timeline-header-container {
1722
1760
  background: #fff;
1723
1761
  border-bottom-color: #dee2e6;
@@ -1726,521 +1764,408 @@
1726
1764
  color: #212529;
1727
1765
  height: 64px;
1728
1766
  }
1729
-
1730
1767
  .e-gantt .e-gantt-chart .e-timeline-top-header-cell,
1731
1768
  .e-gantt .e-gantt-chart .e-timeline-single-header-cell {
1732
1769
  border-color: #dee2e6;
1733
1770
  color: #212529;
1734
1771
  }
1735
-
1736
1772
  .e-gantt .e-gantt-chart .e-timeline-single-header-cell {
1737
1773
  height: 47px;
1738
1774
  line-height: 47px;
1739
1775
  }
1740
-
1741
1776
  .e-gantt .e-gantt-chart .e-timeline-single-header-outer-div {
1742
- height: 47px !important;
1777
+ height: 47px !important; /* stylelint-disable-line declaration-no-important */
1743
1778
  }
1744
-
1745
1779
  .e-gantt .e-gantt-chart .e-timeline-top-header-cell {
1746
1780
  height: 32px;
1747
1781
  }
1748
-
1749
1782
  .e-gantt .e-gantt-chart .e-chart-root-container {
1750
1783
  background-color: #fff;
1751
1784
  border-color: #dee2e6;
1752
1785
  }
1753
-
1754
1786
  .e-gantt .e-gantt-chart .e-timeline-header-table-body {
1755
1787
  border-spacing: 0;
1756
1788
  }
1757
-
1758
1789
  .e-gantt .e-gantt-chart .e-chart-row-border {
1759
1790
  border-top-color: #dee2e6;
1760
1791
  }
1761
-
1762
1792
  .e-gantt .e-gantt-chart .e-chart-row-cell {
1763
- color: black;
1793
+ color: rgb(0, 0, 0);
1764
1794
  }
1765
-
1766
1795
  .e-gantt .e-gantt-chart .e-chart-row-border.e-lastrow {
1767
1796
  border-bottom-color: #dee2e6;
1768
1797
  }
1769
-
1770
1798
  .e-gantt .e-gantt-chart .e-line-container-cell {
1771
1799
  border-color: #e0e0e0;
1772
1800
  }
1773
-
1774
1801
  .e-gantt .e-gantt-chart .e-active-container {
1775
1802
  outline-color: #66afe9;
1776
1803
  }
1777
-
1778
1804
  .e-gantt .e-gantt-chart .e-gantt-child-taskbar-inner-div {
1779
1805
  background-color: #007bff;
1780
1806
  border: 1px solid #0056b3;
1781
1807
  border-radius: 4px;
1782
1808
  }
1783
-
1784
1809
  .e-gantt .e-gantt-chart .e-collapse-parent .e-gantt-child-taskbar-inner-div {
1785
1810
  border: 1px solid #fff;
1786
1811
  border-bottom: 0;
1787
1812
  border-top: 0;
1788
1813
  }
1789
-
1790
1814
  .e-gantt .e-gantt-chart .e-collapse-parent .e-gantt-child-progressbar {
1791
1815
  width: 0px !important;
1792
1816
  }
1793
-
1794
1817
  .e-gantt .e-gantt-chart .e-collapse-parent .e-collapsed-taskbar-drag {
1795
1818
  background-color: #0056b3;
1796
1819
  }
1797
-
1798
1820
  .e-gantt .e-gantt-chart .e-collapse-parent .e-left-connectorpoint-outer-div {
1799
1821
  display: none;
1800
1822
  }
1801
-
1802
1823
  .e-gantt .e-gantt-chart .e-collapse-parent .e-right-connectorpoint-outer-div {
1803
1824
  display: none;
1804
1825
  }
1805
-
1806
1826
  .e-gantt .e-gantt-chart .e-gantt-parent-taskbar-inner-div {
1807
1827
  background-color: #6c757d;
1808
1828
  border: 1px solid #495057;
1809
1829
  border-radius: 4px;
1810
1830
  }
1811
-
1812
1831
  .e-gantt .e-gantt-chart .e-gantt-parent-progressbar-inner-div {
1813
1832
  background-color: #495057;
1814
1833
  border: 0px;
1834
+ border-radius: 4px;
1815
1835
  }
1816
-
1817
1836
  .e-gantt .e-gantt-chart .e-gantt-child-progressbar-inner-div {
1818
1837
  background-color: #0056b3;
1819
1838
  border: 0px;
1839
+ border-radius: 4px;
1820
1840
  }
1821
-
1822
1841
  .e-gantt .e-gantt-chart .e-gantt-child-manualtaskbar {
1823
1842
  background-color: #8553F1;
1824
1843
  border: 1px solid #6628EE;
1825
1844
  }
1826
-
1827
1845
  .e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar.e-gantt-child-manualtaskbar {
1828
1846
  background: linear-gradient(to right, rgba(63, 81, 181, 0.2), #8553F1 30%, #8553F1 70%, #8553F1 70%, rgba(63, 81, 181, 0.2) 100%);
1829
1847
  }
1830
-
1831
1848
  .e-gantt .e-gantt-chart .e-gantt-child-manualprogressbar {
1832
1849
  background-color: #6628EE;
1833
1850
  border: 0px;
1834
1851
  }
1835
-
1852
+ .e-gantt .e-gantt-chart .e-gantt-critical-child-manualprogressbar {
1853
+ background-color: #6628EE;
1854
+ border: 0px;
1855
+ }
1836
1856
  .e-gantt .e-gantt-chart .e-holiday {
1837
1857
  background: #e9ecef;
1838
1858
  }
1839
-
1840
1859
  .e-gantt .e-gantt-chart .e-holiday .e-span {
1841
1860
  color: #212529;
1842
1861
  font-size: 13px;
1843
1862
  }
1844
-
1845
1863
  .e-gantt .e-gantt-chart .e-weekend {
1846
1864
  background: #f8f9fa;
1847
1865
  }
1848
-
1849
1866
  .e-gantt .e-gantt-chart .e-weekend-header-cell {
1850
1867
  background: #f8f9fa;
1851
1868
  }
1852
-
1853
1869
  .e-gantt .e-gantt-chart .e-rangecontainer .e-rg-rangdiv {
1854
1870
  border: 2px solid #FC7A05;
1855
1871
  width: 5px;
1856
1872
  z-index: 6;
1857
1873
  }
1858
-
1859
1874
  .e-gantt .e-gantt-chart .e-event-markers {
1860
1875
  border-left-color: #007bff;
1861
1876
  }
1862
-
1863
1877
  .e-gantt .e-gantt-chart .e-event-markers .e-span-label {
1864
1878
  background-color: #ffc107;
1865
1879
  color: #000;
1866
1880
  font-size: 14px;
1867
1881
  }
1868
-
1869
1882
  .e-gantt .e-gantt-chart .e-event-markers .e-gantt-right-arrow {
1870
1883
  border-right-color: #ffc107;
1871
1884
  }
1872
-
1873
1885
  .e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar {
1874
1886
  background: linear-gradient(to right, rgba(0, 123, 255, 0.2), #007bff 30%, #007bff 70%, #007bff 70%, rgba(0, 123, 255, 0.2) 100%);
1875
- background-color: rgba(0, 123, 255, 0.2);
1876
1887
  border: 0px;
1877
1888
  border-radius: 4px;
1878
1889
  }
1879
-
1880
1890
  .e-gantt .e-gantt-chart .e-unscheduled-milestone-top {
1881
1891
  border-bottom-color: #495057;
1882
1892
  }
1883
-
1884
1893
  .e-gantt .e-gantt-chart .e-unscheduled-milestone-bottom {
1885
1894
  border-top-color: #495057;
1886
1895
  }
1887
-
1888
1896
  .e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler {
1889
1897
  background: #222;
1890
- border-color: #fff;
1891
- }
1892
-
1893
- .e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-element {
1894
- border-bottom-color: #fff;
1895
1898
  }
1896
-
1897
1899
  .e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-after {
1898
1900
  border-bottom-color: #222;
1899
1901
  }
1900
-
1901
1902
  .e-gantt .e-gantt-chart .e-gantt-dependency-view-container {
1902
1903
  display: block;
1903
1904
  z-index: 5;
1904
1905
  }
1905
-
1906
1906
  .e-gantt .e-gantt-chart .e-line {
1907
1907
  border-color: #0056b3;
1908
1908
  }
1909
-
1910
1909
  .e-gantt .e-gantt-chart .e-connector-line-right-arrow {
1911
1910
  border-left-color: #0056b3;
1912
1911
  }
1913
-
1914
1912
  .e-gantt .e-gantt-chart .e-connector-line-left-arrow {
1915
1913
  border-right-color: #0056b3;
1916
1914
  }
1917
-
1918
1915
  .e-gantt .e-gantt-chart .e-connector-line-right-arrow-hover {
1919
1916
  border-left-color: #0056b3;
1920
1917
  }
1921
-
1922
1918
  .e-gantt .e-gantt-chart .e-connector-line-left-arrow-hover {
1923
1919
  border-right-color: #0056b3;
1924
1920
  }
1925
-
1926
1921
  .e-gantt .e-gantt-chart .e-connector-line-hover {
1927
1922
  border-color: #0056b3;
1928
1923
  outline-color: #0056b3;
1929
1924
  }
1930
-
1931
1925
  .e-gantt .e-gantt-chart .e-gantt-false-line {
1932
1926
  border-top-color: #0056b3;
1933
1927
  }
1934
-
1935
1928
  .e-gantt .e-gantt-chart .e-connectorpoint-left-hover,
1936
1929
  .e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
1937
- background-color: #333;
1930
+ background-color: #0056b3;
1938
1931
  border-color: #fff;
1939
1932
  }
1940
-
1941
1933
  .e-gantt .e-gantt-chart .e-connectorpoint-left-hover:hover,
1942
1934
  .e-gantt .e-gantt-chart .e-connectorpoint-right-hover:hover {
1943
1935
  background-color: white;
1944
1936
  border-color: #0056b3;
1945
1937
  }
1946
-
1947
1938
  .e-gantt .e-gantt-chart .e-left-label-inner-div,
1948
1939
  .e-gantt .e-gantt-chart .e-right-label-inner-div {
1949
1940
  color: #212529;
1950
1941
  font-size: 13px;
1951
1942
  }
1952
-
1953
1943
  .e-gantt .e-gantt-chart .e-left-label-temp-container {
1954
1944
  color: #212529;
1955
1945
  font-size: 14px;
1956
1946
  padding-right: 25px;
1957
1947
  }
1958
-
1959
1948
  .e-gantt .e-gantt-chart .e-right-label-temp-container {
1960
1949
  color: #212529;
1961
1950
  font-size: 14px;
1962
1951
  margin-left: 25px;
1963
1952
  }
1964
-
1965
1953
  .e-gantt .e-gantt-chart .e-right-label-container {
1966
1954
  margin-left: 25px;
1967
1955
  }
1968
-
1969
1956
  .e-gantt .e-gantt-chart .e-left-label-container {
1970
1957
  padding-right: 25px;
1971
1958
  }
1972
-
1973
1959
  .e-gantt .e-gantt-chart .e-connectorpoint-right {
1974
1960
  margin-left: 2px;
1975
1961
  }
1976
-
1977
1962
  .e-gantt .e-gantt-chart .e-right-connectorpoint-outer-div,
1978
1963
  .e-gantt .e-gantt-chart .e-left-connectorpoint-outer-div {
1979
1964
  height: 8px;
1980
1965
  width: 12px;
1981
1966
  }
1982
-
1983
1967
  .e-gantt .e-gantt-chart .e-left-connectorpoint-outer-div {
1984
1968
  left: -12px;
1985
1969
  }
1986
-
1987
1970
  .e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar-left,
1988
1971
  .e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar-right {
1989
1972
  border-right: transparent;
1990
1973
  border-width: 3px;
1991
1974
  }
1992
-
1993
1975
  .e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar-right {
1994
1976
  border-bottom-left-radius: 0px;
1995
1977
  border-bottom-right-radius: 2px;
1996
1978
  border-top-left-radius: 0px;
1997
1979
  border-top-right-radius: 2px;
1998
1980
  }
1999
-
2000
1981
  .e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar-left {
2001
1982
  border-bottom-left-radius: 2px;
2002
1983
  border-top-left-radius: 2px;
2003
1984
  }
2004
-
2005
1985
  .e-gantt .e-gantt-chart .e-task-label {
2006
1986
  color: #fff;
2007
1987
  font-size: 12px;
2008
1988
  }
2009
-
2010
1989
  .e-gantt .e-gantt-chart .e-icon {
2011
1990
  color: #fff;
2012
1991
  }
2013
-
2014
1992
  .e-gantt .e-gantt-chart .e-milestone-top {
2015
1993
  border-bottom-color: #495057;
2016
1994
  }
2017
-
2018
1995
  .e-gantt .e-gantt-chart .e-milestone-bottom {
2019
1996
  border-top-color: #495057;
2020
1997
  }
2021
-
2022
1998
  .e-gantt .e-gantt-chart .e-parent-milestone-top {
2023
1999
  border-bottom-color: #495057;
2024
2000
  }
2025
-
2026
2001
  .e-gantt .e-gantt-chart .e-parent-milestone-bottom {
2027
2002
  border-top-color: #495057;
2028
2003
  }
2029
-
2030
2004
  .e-gantt .e-gantt-chart .e-manualparent-milestone-top {
2031
2005
  border-bottom-color: #989A9C;
2032
2006
  }
2033
-
2034
2007
  .e-gantt .e-gantt-chart .e-manualparent-milestone-bottom {
2035
2008
  border-top-color: #989A9C;
2036
2009
  }
2037
-
2038
2010
  .e-gantt .e-gantt-chart .e-gantt-unscheduled-manualtask {
2039
2011
  background: linear-gradient(to right, rgba(63, 81, 181, 0.2), #989A9C 30%, #989A9C 70%, #989A9C 70%, rgba(63, 81, 181, 0.2) 100%);
2040
2012
  }
2041
-
2042
2013
  .e-gantt .e-gantt-chart .e-label {
2043
2014
  color: #212529;
2044
2015
  font-size: 14px;
2045
2016
  }
2046
-
2047
2017
  .e-gantt .e-gantt-chart .e-active {
2048
2018
  background: rgba(0, 123, 255, 0.16);
2049
2019
  color: #333;
2050
2020
  opacity: 1;
2051
2021
  }
2052
-
2053
2022
  .e-gantt .e-gantt-chart .e-active .e-label {
2054
2023
  color: #333;
2055
2024
  }
2056
-
2057
2025
  .e-gantt .e-gantt-chart .e-baseline-bar {
2058
- background-color: #fd7e14;
2026
+ background-color: #ffc107;
2059
2027
  }
2060
-
2061
2028
  .e-gantt .e-gantt-chart .e-baseline-milestone-top {
2062
- border-bottom-color: #fd7e14;
2029
+ border-bottom-color: #ffc107;
2063
2030
  }
2064
-
2065
2031
  .e-gantt .e-gantt-chart .e-baseline-milestone-bottom {
2066
- border-top-color: #fd7e14;
2032
+ border-top-color: #ffc107;
2067
2033
  }
2068
-
2069
2034
  .e-gantt .e-gantt-chart .e-uptail::before {
2070
2035
  border-bottom-color: #e0e0e0;
2071
2036
  }
2072
-
2073
2037
  .e-gantt .e-gantt-chart .e-downtail::after {
2074
2038
  border-top-color: #fff;
2075
2039
  }
2076
-
2077
2040
  .e-gantt .e-gantt-chart .e-downtail::before {
2078
2041
  border-top-color: #e0e0e0;
2079
2042
  }
2080
-
2081
2043
  .e-gantt .e-gantt-chart .e-ganttpopup .e-content {
2082
2044
  background-color: #fff;
2083
2045
  border-color: #e0e0e0;
2084
2046
  }
2085
-
2086
2047
  .e-gantt .e-gantt-chart .e-spanclicked,
2087
2048
  .e-gantt .e-gantt-chart .e-grid .e-gridpopup .e-spanclicked {
2088
2049
  border-color: #000;
2089
2050
  }
2090
-
2091
2051
  .e-gantt .e-gantt-chart .e-active-parent-task {
2092
2052
  border-radius: 4px;
2093
2053
  box-shadow: 4px 4px 3px 0 rgba(0, 0, 0, 0.5);
2094
2054
  }
2095
-
2096
2055
  .e-gantt .e-gantt-chart .e-active-parent-task .e-gantt-parent-taskbar-inner-div {
2097
2056
  background: #1a1a1a;
2098
2057
  border: #1a1a1a;
2099
2058
  }
2100
-
2101
2059
  .e-gantt .e-gantt-chart .e-active-parent-task .e-gantt-parent-progressbar-inner-div {
2102
2060
  background-color: transparent;
2103
2061
  border: transparent;
2104
2062
  }
2105
-
2106
2063
  .e-gantt .e-gantt-chart .e-active-parent-task .e-task-label {
2107
2064
  color: transparent;
2108
2065
  }
2109
-
2110
2066
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-task-label {
2111
- color: transparent !important;
2067
+ color: transparent !important; /* stylelint-disable-line declaration-no-important */
2112
2068
  }
2113
-
2114
2069
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-line {
2115
- border-color: #8A8A8A !important;
2070
+ border-color: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
2116
2071
  }
2117
-
2118
2072
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-connector-line-right-arrow {
2119
- border-left-color: #8A8A8A !important;
2073
+ border-left-color: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
2120
2074
  }
2121
-
2122
2075
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-connector-line-left-arrow {
2123
- border-right-color: #8A8A8A !important;
2076
+ border-right-color: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
2124
2077
  }
2125
-
2126
2078
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-child-taskbar-inner-div {
2127
- background: #D5D5D5 !important;
2128
- border: #D5D5D5 !important;
2079
+ background: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
2080
+ border: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
2129
2081
  }
2130
-
2131
2082
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-child-progressbar-inner-div {
2132
- background-color: transparent !important;
2133
- border: transparent !important;
2083
+ background-color: transparent !important; /* stylelint-disable-line declaration-no-important */
2084
+ border: transparent !important; /* stylelint-disable-line declaration-no-important */
2134
2085
  }
2135
-
2136
2086
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-milestone-top {
2137
- border-bottom-color: #D5D5D5 !important;
2087
+ border-bottom-color: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
2138
2088
  }
2139
-
2140
2089
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-milestone-bottom {
2141
- border-top-color: #D5D5D5 !important;
2090
+ border-top-color: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
2142
2091
  }
2143
-
2144
2092
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-parent-taskbar-inner-div {
2145
- background-color: #8A8A8A !important;
2146
- border: #8A8A8A !important;
2093
+ background-color: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
2094
+ border: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
2147
2095
  }
2148
-
2149
2096
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-parent-progressbar-inner-div {
2150
- background-color: transparent !important;
2151
- border: transparent !important;
2097
+ background-color: transparent !important; /* stylelint-disable-line declaration-no-important */
2098
+ border: transparent !important; /* stylelint-disable-line declaration-no-important */
2152
2099
  }
2153
-
2154
2100
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-gantt-child-taskbar-inner-div {
2155
- background: #0056b3 !important;
2156
- border: #0056b3 !important;
2101
+ background: #0056b3 !important; /* stylelint-disable-line declaration-no-important */
2102
+ border: #0056b3 !important; /* stylelint-disable-line declaration-no-important */
2157
2103
  }
2158
-
2159
2104
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-milestone-top {
2160
- border-bottom-color: #0056b3 !important;
2105
+ border-bottom-color: #0056b3 !important; /* stylelint-disable-line declaration-no-important */
2161
2106
  }
2162
-
2163
2107
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-milestone-bottom {
2164
- border-top-color: #0056b3 !important;
2108
+ border-top-color: #0056b3 !important; /* stylelint-disable-line declaration-no-important */
2165
2109
  }
2166
-
2167
2110
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-gantt-child-taskbar-inner-div {
2168
- background: #66b0ff !important;
2169
- border: #66b0ff !important;
2111
+ background: #66b0ff !important; /* stylelint-disable-line declaration-no-important */
2112
+ border: #66b0ff !important; /* stylelint-disable-line declaration-no-important */
2170
2113
  }
2171
-
2172
2114
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-milestone-top {
2173
- border-bottom-color: #66b0ff !important;
2115
+ border-bottom-color: #66b0ff !important; /* stylelint-disable-line declaration-no-important */
2174
2116
  }
2175
-
2176
2117
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-milestone-bottom {
2177
- border-top-color: #66b0ff !important;
2118
+ border-top-color: #66b0ff !important; /* stylelint-disable-line declaration-no-important */
2178
2119
  }
2179
-
2180
2120
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-line {
2181
- border-color: #0056b3 !important;
2121
+ border-color: #0056b3 !important; /* stylelint-disable-line declaration-no-important */
2182
2122
  }
2183
-
2184
2123
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-connector-line-right-arrow {
2185
- border-left-color: #0056b3 !important;
2124
+ border-left-color: #0056b3 !important; /* stylelint-disable-line declaration-no-important */
2186
2125
  }
2187
-
2188
2126
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-connector-line-left-arrow {
2189
- border-right-color: #0056b3 !important;
2127
+ border-right-color: #0056b3 !important; /* stylelint-disable-line declaration-no-important */
2190
2128
  }
2191
-
2192
2129
  .e-gantt .e-icons {
2193
2130
  color: rgba(0, 0, 0, 0.87);
2194
2131
  }
2195
-
2196
2132
  .e-gantt .e-grid .e-icons:not(.e-stop):not(.e-check):not(.e-icon-left):not(.e-date-icon) {
2197
- color: #212529 !important;
2133
+ color: #212529 !important; /* stylelint-disable-line declaration-no-important */
2198
2134
  }
2199
2135
 
2200
2136
  .e-gantt-dialog .e-dlg-header {
2201
2137
  color: #fff;
2202
2138
  }
2203
-
2204
2139
  .e-gantt-dialog .e-dlg-header-content {
2205
2140
  background: #007bff;
2206
2141
  }
2207
-
2208
2142
  .e-gantt-dialog .e-icon-dlg-close {
2209
2143
  color: rgba(255, 255, 255, 0.75);
2210
2144
  }
2211
-
2212
2145
  .e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover {
2213
2146
  background-color: transparent;
2214
2147
  }
2215
-
2216
2148
  .e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover .e-icon-dlg-close {
2217
2149
  color: white;
2218
2150
  }
2219
-
2220
2151
  .e-gantt-dialog .e-tab .e-tab-header {
2221
2152
  background: #007bff;
2222
2153
  }
2223
-
2224
2154
  .e-gantt-dialog .e-tab .e-tab-header .e-indicator {
2225
2155
  background: transparent;
2226
2156
  }
2227
-
2228
2157
  .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
2229
2158
  background-color: #fff;
2230
2159
  }
2231
-
2232
2160
  .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active .e-tab-wrap .e-tab-text {
2233
2161
  color: #495057;
2234
2162
  }
2235
-
2236
2163
  .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
2237
2164
  border-color: transparent;
2238
2165
  }
2239
-
2240
2166
  .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap .e-tab-text {
2241
2167
  color: #fff;
2242
2168
  }
2243
-
2244
2169
  .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item:not(.e-active) .e-tab-wrap:hover {
2245
2170
  background: transparent;
2246
2171
  border-bottom: 0px;
@@ -2248,7 +2173,6 @@
2248
2173
  border-bottom-right-radius: 0px;
2249
2174
  border-color: #dee2e6;
2250
2175
  }
2251
-
2252
2176
  .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item:not(.e-active) .e-tab-wrap:hover .e-tab-text {
2253
2177
  color: #fff;
2254
2178
  }
@@ -2258,7 +2182,58 @@
2258
2182
  border-color: #9e9e9e;
2259
2183
  color: #eee;
2260
2184
  }
2261
-
2262
2185
  .e-gantt.e-device .e-backarrowspan {
2263
2186
  color: #000;
2264
2187
  }
2188
+
2189
+ .e-gantt .e-gantt-chart .e-criticalconnector-line {
2190
+ border-color: #d13438;
2191
+ }
2192
+
2193
+ .e-gantt .e-gantt-chart .e-criticalconnector-line-right-arrow {
2194
+ border-left-color: #d13438;
2195
+ }
2196
+
2197
+ .e-gantt .e-gantt-chart .e-criticalconnector-line-left-arrow {
2198
+ border-right-color: #d13438;
2199
+ }
2200
+
2201
+ .e-gantt .e-gantt-chart .e-critical-connector-line-hover {
2202
+ border-color: #f3d8da;
2203
+ outline-color: #f3d8da;
2204
+ }
2205
+
2206
+ .e-gantt .e-gantt-chart .e-critical-connector-line-right-arrow-hover {
2207
+ border-left-color: #f3d8da;
2208
+ }
2209
+
2210
+ .e-gantt .e-gantt-chart .e-critical-connector-line-left-arrow-hover {
2211
+ border-right-color: #f3d8da;
2212
+ }
2213
+
2214
+ .e-gantt .e-gantt-chart .e-gantt-child-critical-taskbar-inner-div {
2215
+ background-color: #F3D8DA;
2216
+ border: 1px solid #F3D8DA;
2217
+ border-radius: 4px;
2218
+ }
2219
+
2220
+ .e-gantt .e-gantt-chart .e-gantt-child-critical-progressbar-inner-div {
2221
+ background-color: #D13438;
2222
+ border: 0px;
2223
+ border-radius: 4px;
2224
+ }
2225
+
2226
+ .e-gantt .e-gantt-chart .e-gantt-critical-unscheduled-taskbar {
2227
+ background: linear-gradient(to right, rgba(255, 85, 85, 0.2), #D13438 30%, #D13438 70%, #D13438 70%, rgba(255, 85, 85, 0.2) 100%);
2228
+ background-color: rgba(255, 85, 85, 0.2);
2229
+ border: 0px;
2230
+ border-radius: 4px;
2231
+ }
2232
+
2233
+ .e-gantt .e-gantt-chart .e-critical-milestone-top {
2234
+ border-bottom-color: #D13438;
2235
+ }
2236
+
2237
+ .e-gantt .e-gantt-chart .e-critical-milestone-bottom {
2238
+ border-top-color: #D13438;
2239
+ }