@syncfusion/ej2-gantt 19.4.56 → 20.1.47-1460716

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