@syncfusion/ej2-gantt 19.4.55 → 20.1.47-1460716

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