@syncfusion/ej2-gantt 20.1.55 → 20.1.59

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