@syncfusion/ej2-gantt 20.2.49 → 20.3.47

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 (96) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/dist/ej2-gantt.min.js +10 -0
  3. package/dist/ej2-gantt.umd.min.js +2 -2
  4. package/dist/ej2-gantt.umd.min.js.map +1 -1
  5. package/dist/es6/ej2-gantt.es2015.js +970 -379
  6. package/dist/es6/ej2-gantt.es2015.js.map +1 -1
  7. package/dist/es6/ej2-gantt.es5.js +1019 -413
  8. package/dist/es6/ej2-gantt.es5.js.map +1 -1
  9. package/dist/global/ej2-gantt.min.js +2 -2
  10. package/dist/global/ej2-gantt.min.js.map +1 -1
  11. package/dist/global/index.d.ts +1 -1
  12. package/package.json +19 -19
  13. package/src/gantt/actions/cell-edit.js +1 -2
  14. package/src/gantt/actions/connector-line-edit.d.ts +2 -0
  15. package/src/gantt/actions/connector-line-edit.js +104 -10
  16. package/src/gantt/actions/context-menu.js +6 -1
  17. package/src/gantt/actions/critical-path.d.ts +1 -1
  18. package/src/gantt/actions/critical-path.js +105 -30
  19. package/src/gantt/actions/dependency.d.ts +2 -0
  20. package/src/gantt/actions/dependency.js +68 -12
  21. package/src/gantt/actions/dialog-edit.d.ts +3 -0
  22. package/src/gantt/actions/dialog-edit.js +130 -15
  23. package/src/gantt/actions/edit.js +101 -26
  24. package/src/gantt/actions/filter.d.ts +3 -1
  25. package/src/gantt/actions/filter.js +32 -44
  26. package/src/gantt/actions/keyboard.js +1 -1
  27. package/src/gantt/actions/rowdragdrop.js +68 -8
  28. package/src/gantt/actions/taskbar-edit.js +15 -3
  29. package/src/gantt/actions/toolbar.js +1 -1
  30. package/src/gantt/base/enum.d.ts +3 -1
  31. package/src/gantt/base/gantt-chart.js +8 -6
  32. package/src/gantt/base/gantt.d.ts +6 -6
  33. package/src/gantt/base/gantt.js +10 -3
  34. package/src/gantt/base/interface.d.ts +4 -0
  35. package/src/gantt/base/splitter.d.ts +2 -2
  36. package/src/gantt/base/splitter.js +6 -7
  37. package/src/gantt/base/task-processor.js +13 -7
  38. package/src/gantt/base/tree-grid.js +21 -2
  39. package/src/gantt/export/pdf-connector-line.js +187 -185
  40. package/src/gantt/models/edit-settings-model.d.ts +2 -2
  41. package/src/gantt/models/edit-settings.d.ts +2 -2
  42. package/src/gantt/models/filter-settings-model.d.ts +1 -1
  43. package/src/gantt/models/filter-settings.d.ts +1 -1
  44. package/src/gantt/renderer/chart-rows.d.ts +1 -0
  45. package/src/gantt/renderer/chart-rows.js +47 -16
  46. package/src/gantt/renderer/connector-line.js +101 -33
  47. package/src/gantt/renderer/event-marker.js +1 -1
  48. package/src/gantt/renderer/nonworking-day.js +0 -1
  49. package/src/gantt/renderer/tooltip.js +2 -1
  50. package/styles/bootstrap-dark.css +115 -62
  51. package/styles/bootstrap.css +115 -62
  52. package/styles/bootstrap4.css +115 -62
  53. package/styles/bootstrap5-dark.css +119 -63
  54. package/styles/bootstrap5.css +119 -63
  55. package/styles/fabric-dark.css +115 -62
  56. package/styles/fabric.css +115 -62
  57. package/styles/fluent-dark.css +126 -66
  58. package/styles/fluent.css +124 -64
  59. package/styles/gantt/_all.scss +1 -1
  60. package/styles/gantt/_bootstrap-dark-definition.scss +4 -1
  61. package/styles/gantt/_bootstrap-definition.scss +4 -1
  62. package/styles/gantt/_bootstrap4-definition.scss +4 -1
  63. package/styles/gantt/_bootstrap5-definition.scss +4 -2
  64. package/styles/gantt/_fabric-dark-definition.scss +4 -1
  65. package/styles/gantt/_fabric-definition.scss +4 -1
  66. package/styles/gantt/_fluent-definition.scss +6 -4
  67. package/styles/gantt/_fusionnew-definition.scss +12 -10
  68. package/styles/gantt/_highcontrast-definition.scss +4 -1
  69. package/styles/gantt/_highcontrast-light-definition.scss +4 -1
  70. package/styles/gantt/_layout.scss +143 -51
  71. package/styles/gantt/_material-dark-definition.scss +4 -1
  72. package/styles/gantt/_material-definition.scss +4 -1
  73. package/styles/gantt/_material3-definition.scss +13 -11
  74. package/styles/gantt/_tailwind-definition.scss +4 -2
  75. package/styles/gantt/_theme.scss +29 -29
  76. package/styles/gantt/bootstrap-dark.css +115 -62
  77. package/styles/gantt/bootstrap.css +115 -62
  78. package/styles/gantt/bootstrap4.css +115 -62
  79. package/styles/gantt/bootstrap5-dark.css +119 -63
  80. package/styles/gantt/bootstrap5.css +119 -63
  81. package/styles/gantt/fabric-dark.css +115 -62
  82. package/styles/gantt/fabric.css +115 -62
  83. package/styles/gantt/fluent-dark.css +126 -66
  84. package/styles/gantt/fluent.css +124 -64
  85. package/styles/gantt/highcontrast-light.css +120 -62
  86. package/styles/gantt/highcontrast.css +120 -62
  87. package/styles/gantt/material-dark.css +120 -65
  88. package/styles/gantt/material.css +118 -65
  89. package/styles/gantt/tailwind-dark.css +117 -64
  90. package/styles/gantt/tailwind.css +117 -64
  91. package/styles/highcontrast-light.css +120 -62
  92. package/styles/highcontrast.css +120 -62
  93. package/styles/material-dark.css +120 -65
  94. package/styles/material.css +118 -65
  95. package/styles/tailwind-dark.css +117 -64
  96. package/styles/tailwind.css +117 -64
@@ -147,6 +147,8 @@
147
147
  }
148
148
  /*! Material specific themes definition's */
149
149
  /*! Vertical Tab */
150
+ /* stylelint-disable property-no-vendor-prefix */
151
+ /* stylelint-disable property-no-vendor-prefix */
150
152
  @keyframes material-spinner-rotate {
151
153
  0% {
152
154
  transform: rotate(0);
@@ -163,6 +165,7 @@
163
165
  transform: rotate(360deg);
164
166
  }
165
167
  }
168
+ /* stylelint-disable */
166
169
  .e-gantt .e-add::before {
167
170
  content: "\e805";
168
171
  }
@@ -312,16 +315,16 @@
312
315
  height: 242px !important;
313
316
  }
314
317
  .e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
315
- height: 63px !important;
318
+ height: 63px !important; /* stylelint-disable-line declaration-no-important */
316
319
  }
317
320
  .e-bigger .e-gantt .e-dialog .e-dlg-header-content {
318
- padding: 16px 4px 16px 24px !important;
321
+ padding: 16px 4px 16px 24px !important; /* stylelint-disable-line declaration-no-important */
319
322
  }
320
323
  .e-bigger .e-gantt .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
321
324
  left: -2px !important;
322
325
  }
323
326
  .e-bigger .e-gantt .e-dialog .e-dlg-header-content {
324
- height: 68px !important;
327
+ height: 68px !important; /* stylelint-disable-line declaration-no-important */
325
328
  }
326
329
  .e-bigger .e-gantt .e-dialog .e-btn .e-btn-icon.e-icon-dlg-close {
327
330
  font-size: 16px !important;
@@ -336,7 +339,7 @@
336
339
  .e-bigger .e-gantt .e-dialog .e-dlg-header {
337
340
  line-height: 28px;
338
341
  }
339
- .e-bigger .e-gantt .e-filter-popup {
342
+ .e-bigger .e-gantt .e-filter-popup.e-popup {
340
343
  width: 319px !important;
341
344
  }
342
345
  .e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
@@ -349,12 +352,12 @@
349
352
  .e-bigger .e-columnmenu {
350
353
  top: 35px;
351
354
  }
352
- .e-bigger .e-gantt-dialog {
355
+ .e-bigger .e-gantt-dialog .e-dialog {
353
356
  border-radius: 6px;
354
357
  width: 564px !important;
355
358
  }
356
359
  .e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
357
- padding: 0 16px !important;
360
+ padding: 0 16px !important; /* stylelint-disable-line declaration-no-important */
358
361
  }
359
362
  .e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(odd) {
360
363
  padding: 16px 8px 0 24px;
@@ -372,10 +375,10 @@
372
375
  height: 75px !important;
373
376
  }
374
377
  .e-bigger .e-gantt-dialog .e-dlg-header-content {
375
- border-bottom: 0 !important;
378
+ border-bottom: 0 !important; /* stylelint-disable-line declaration-no-important */
376
379
  }
377
380
  .e-bigger .e-gantt-dialog > .e-dlg-content {
378
- border-radius: 0 !important;
381
+ border-radius: 0 !important; /* stylelint-disable-line declaration-no-important */
379
382
  }
380
383
  .e-bigger .e-gantt-dialog .e-dlg-header-content {
381
384
  border-radius: 6px 6px 0px 0px;
@@ -383,28 +386,28 @@
383
386
  }
384
387
  .e-bigger .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
385
388
  border-radius: 50%;
386
- height: auto !important;
389
+ height: auto !important; /* stylelint-disable-line declaration-no-important */
387
390
  width: auto;
388
391
  }
389
392
  .e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
390
393
  margin-left: 12px !important;
391
394
  }
392
395
  .e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
393
- font-size: 16px !important;
396
+ font-size: 16px !important; /* stylelint-disable-line declaration-no-important */
394
397
  }
395
398
  .e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
396
399
  min-height: 18px !important;
397
- min-width: 35.82px !important;
400
+ min-width: 35.82px !important; /* stylelint-disable-line declaration-no-important */
398
401
  }
399
402
  .e-bigger .e-gantt-dialog .e-btn.e-flat {
400
403
  line-height: 24px;
401
- padding: 6px 16px 6px 15px !important;
404
+ padding: 6px 16px 6px 15px !important; /* stylelint-disable-line declaration-no-important */
402
405
  }
403
406
  .e-bigger .e-gantt-dialog .e-btn.e-primary {
404
- padding: 6px 21px 6px 23px !important;
407
+ padding: 6px 21px 6px 23px !important; /* stylelint-disable-line declaration-no-important */
405
408
  }
406
409
  .e-bigger .e-gantt-dialog .e-datetime-wrapper .e-time-icon.e-icons::before {
407
- font-size: 16px !important;
410
+ font-size: 16px !important; /* stylelint-disable-line declaration-no-important */
408
411
  }
409
412
  .e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text {
410
413
  font-size: 14px;
@@ -419,23 +422,26 @@
419
422
  }
420
423
  .e-bigger .e-gantt-dialog .e-numeric.e-control-wrapper.e-input-group .e-input-group-icon {
421
424
  min-height: 18px !important;
422
- min-width: 35.82px !important;
425
+ min-width: 35.82px !important; /* stylelint-disable-line declaration-no-important */
423
426
  }
424
427
  .e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-time-icon {
425
428
  min-height: 18px !important;
426
- min-width: 35.82px !important;
429
+ min-width: 35.82px !important; /* stylelint-disable-line declaration-no-important */
427
430
  }
428
431
  .e-bigger .e-gantt-dialog .e-input-group.e-control-wrapper {
429
432
  height: 38px;
430
433
  }
431
434
  .e-bigger .e-gantt-dialog .e-input-group-icon.e-date-icon {
432
- min-width: 36px !important;
435
+ min-width: 36px !important; /* stylelint-disable-line declaration-no-important */
433
436
  }
434
437
  .e-bigger .e-gantt-dialog .e-input-group.e-control-wrapper .e-input-group-icon {
435
- padding: 7px 0 !important;
438
+ padding: 7px 0 !important; /* stylelint-disable-line declaration-no-important */
436
439
  }
437
- .e-bigger .e-predecessor-tooltip {
438
- background-color: #000;
440
+ .e-bigger .e-predecessor-tooltip .e-arrow-tip-outer.e-tip-bottom {
441
+ border-top: 8px solid #000;
442
+ }
443
+ .e-bigger .e-predecessor-tooltip .e-arrow-tip-inner.e-tip-bottom {
444
+ color: #000;
439
445
  }
440
446
  .e-bigger .e-predecessor-tooltip .e-left-btn:disabled {
441
447
  color: #9ca3af !important;
@@ -444,7 +450,7 @@
444
450
  color: #9ca3af !important;
445
451
  }
446
452
  .e-bigger .e-predecessor-tooltip .e-tip-content {
447
- padding: 3px !important;
453
+ padding: 3px !important; /* stylelint-disable-line declaration-no-important */
448
454
  }
449
455
  .e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type {
450
456
  background-color: #000;
@@ -468,6 +474,9 @@
468
474
  .e-bigger .e-predecessor-dialog .e-dlg-content {
469
475
  background-color: #f9fafb;
470
476
  padding: 10px 9px 9px 14px !important;
477
+ font-size: 12px;
478
+ font-weight: 400;
479
+ line-height: 1.8;
471
480
  }
472
481
 
473
482
  .e-gantt {
@@ -546,7 +555,7 @@
546
555
  margin: 0;
547
556
  }
548
557
  .e-gantt .e-gantt-splitter .e-pane {
549
- overflow: hidden !important;
558
+ overflow: hidden !important; /* stylelint-disable-line declaration-no-important */
550
559
  }
551
560
  .e-gantt .e-temp-content {
552
561
  border-left: 1px solid;
@@ -573,19 +582,19 @@
573
582
  height: 45px;
574
583
  }
575
584
  .e-gantt .e-gantt-tree-grid-pane .e-headercontent {
576
- border-right-width: 0 !important;
585
+ border-right-width: 0 !important; /* stylelint-disable-line declaration-no-important */
577
586
  }
578
587
  .e-gantt .e-gantt-tree-grid-pane .e-gridheader {
579
588
  border-top-style: none;
580
589
  border-top-width: 0;
581
- padding-right: 0 !important;
590
+ padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
582
591
  }
583
592
  .e-gantt .e-gantt-tree-grid-pane .e-columnheader,
584
593
  .e-gantt .e-gantt-tree-grid-pane .e-headercell {
585
- height: 48px !important;
594
+ height: 48px !important; /* stylelint-disable-line declaration-no-important */
586
595
  }
587
596
  .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content {
588
- overflow-x: scroll !important;
597
+ overflow-x: scroll !important; /* stylelint-disable-line declaration-no-important */
589
598
  }
590
599
  .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content.e-gantt-scroll-padding {
591
600
  width: calc(100% + 17px);
@@ -610,7 +619,7 @@
610
619
  border-right: 0 solid;
611
620
  }
612
621
  .e-gantt .e-gantt-chart .e-chart-root-container .e-content {
613
- -webkit-overflow-scrolling: touch;
622
+ -webkit-overflow-scrolling: touch; /* stylelint-disable-line property-no-vendor-prefix */
614
623
  overflow-x: scroll;
615
624
  overflow-y: auto;
616
625
  position: relative;
@@ -1180,7 +1189,7 @@
1180
1189
  }
1181
1190
  .e-gantt-dialog .e-richtexteditor {
1182
1191
  border-bottom-width: 1px;
1183
- height: 259px !important;
1192
+ height: 259px !important; /* stylelint-disable-line declaration-no-important */
1184
1193
  overflow: hidden;
1185
1194
  }
1186
1195
  .e-gantt-dialog .e-richtexteditor.e-rte-tb-expand {
@@ -1192,11 +1201,11 @@
1192
1201
  overflow: hidden;
1193
1202
  }
1194
1203
  .e-gantt-dialog > .e-dlg-content {
1195
- padding: 0 !important;
1204
+ padding: 0 !important; /* stylelint-disable-line declaration-no-important */
1196
1205
  height: 291px;
1197
1206
  }
1198
1207
  .e-gantt-dialog .e-dlg-header-content {
1199
- border-bottom: 0 !important;
1208
+ border-bottom: 0 !important; /* stylelint-disable-line declaration-no-important */
1200
1209
  }
1201
1210
  .e-gantt-dialog .e-dlg-header-content {
1202
1211
  border-radius: 6px;
@@ -1204,8 +1213,8 @@
1204
1213
  }
1205
1214
  .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
1206
1215
  border-radius: 50%;
1207
- height: auto !important;
1208
- width: auto !important;
1216
+ height: auto !important; /* stylelint-disable-line declaration-no-important */
1217
+ width: auto !important; /* stylelint-disable-line declaration-no-important */
1209
1218
  }
1210
1219
 
1211
1220
  .e-icon-rowselect::before {
@@ -1213,9 +1222,9 @@
1213
1222
  }
1214
1223
 
1215
1224
  .e-ganttpopup {
1216
- -moz-user-select: none;
1217
- -ms-user-select: none;
1218
- -webkit-user-select: none;
1225
+ -moz-user-select: none; /* stylelint-disable-line property-no-vendor-prefix */
1226
+ -ms-user-select: none; /* stylelint-disable-line property-no-vendor-prefix */
1227
+ -webkit-user-select: none; /* stylelint-disable-line property-no-vendor-prefix */
1219
1228
  font-weight: normal;
1220
1229
  position: absolute;
1221
1230
  user-select: none;
@@ -1338,8 +1347,52 @@
1338
1347
  }
1339
1348
 
1340
1349
  .e-predecessor-tooltip {
1350
+ background-color: #000 !important; /* stylelint-disable-line declaration-no-important */
1351
+ border-color: #000 !important; /* stylelint-disable-line declaration-no-important */
1341
1352
  visibility: hidden;
1342
1353
  }
1354
+ .e-predecessor-tooltip .e-arrow-tip-outer.e-tip-bottom {
1355
+ border-top: 8px solid #000;
1356
+ }
1357
+ .e-predecessor-tooltip .e-arrow-tip-inner.e-tip-bottom {
1358
+ color: #000;
1359
+ }
1360
+ .e-predecessor-tooltip .e-left-btn:disabled {
1361
+ color: #9ca3af !important;
1362
+ }
1363
+ .e-predecessor-tooltip .e-right-btn:disabled {
1364
+ color: #9ca3af !important;
1365
+ }
1366
+ .e-predecessor-tooltip .e-tip-content {
1367
+ padding: 3px !important; /* stylelint-disable-line declaration-no-important */
1368
+ }
1369
+ .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type {
1370
+ background-color: #000;
1371
+ border-color: #000;
1372
+ color: #fff;
1373
+ font-size: 12px;
1374
+ line-height: 18px;
1375
+ padding: 0 8px 0 0;
1376
+ }
1377
+ .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:last-of-type {
1378
+ background-color: #000;
1379
+ border-color: #000;
1380
+ color: #fff;
1381
+ font-size: 12px;
1382
+ line-height: 18px;
1383
+ padding: 0 0 0 8px;
1384
+ }
1385
+
1386
+ .e-predecessor-dialog {
1387
+ background-color: #f9fafb;
1388
+ }
1389
+ .e-predecessor-dialog .e-dlg-content {
1390
+ background-color: #f9fafb;
1391
+ padding: 10px 9px 9px 14px !important;
1392
+ font-size: 12px;
1393
+ font-weight: 400;
1394
+ line-height: 1.8;
1395
+ }
1343
1396
 
1344
1397
  /*! Gantt theme */
1345
1398
  .e-gantt .e-gantt-splitter {
@@ -1369,7 +1422,7 @@
1369
1422
  border-top-right-radius: 0px;
1370
1423
  }
1371
1424
  .e-gantt .e-grid .e-focused:not(.e-menu-item) {
1372
- box-shadow: 0 0 0 1px #d1d5db inset !important;
1425
+ box-shadow: 0 0 0 1px #d1d5db inset !important; /* stylelint-disable-line declaration-no-important */
1373
1426
  }
1374
1427
  .e-gantt .e-temp-content {
1375
1428
  border-color: #e5e7eb;
@@ -1384,7 +1437,7 @@
1384
1437
  border-color: #e5e7eb;
1385
1438
  }
1386
1439
  .e-gantt .e-gantt-tree-grid-pane .e-timeline-single-header-outer-div {
1387
- height: 45px !important;
1440
+ height: 45px !important; /* stylelint-disable-line declaration-no-important */
1388
1441
  }
1389
1442
  .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active {
1390
1443
  background: #e5e7eb;
@@ -1408,7 +1461,7 @@
1408
1461
  line-height: 46px;
1409
1462
  }
1410
1463
  .e-gantt .e-gantt-chart .e-timeline-single-header-outer-div {
1411
- height: 46px !important;
1464
+ height: 46px !important; /* stylelint-disable-line declaration-no-important */
1412
1465
  }
1413
1466
  .e-gantt .e-gantt-chart .e-timeline-top-header-cell {
1414
1467
  height: 24px;
@@ -1698,73 +1751,73 @@
1698
1751
  color: transparent;
1699
1752
  }
1700
1753
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-task-label {
1701
- color: transparent !important;
1754
+ color: transparent !important; /* stylelint-disable-line declaration-no-important */
1702
1755
  }
1703
1756
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-line {
1704
- border-color: #d1d5db !important;
1757
+ border-color: #d1d5db !important; /* stylelint-disable-line declaration-no-important */
1705
1758
  }
1706
1759
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-connector-line-right-arrow {
1707
- border-left-color: #d1d5db !important;
1760
+ border-left-color: #d1d5db !important; /* stylelint-disable-line declaration-no-important */
1708
1761
  }
1709
1762
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-connector-line-left-arrow {
1710
- border-right-color: #d1d5db !important;
1763
+ border-right-color: #d1d5db !important; /* stylelint-disable-line declaration-no-important */
1711
1764
  }
1712
1765
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-child-taskbar-inner-div {
1713
- background: #818cf8 !important;
1714
- border: #818cf8 !important;
1766
+ background: #818cf8 !important; /* stylelint-disable-line declaration-no-important */
1767
+ border: #818cf8 !important; /* stylelint-disable-line declaration-no-important */
1715
1768
  }
1716
1769
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-child-progressbar-inner-div {
1717
- background-color: transparent !important;
1718
- border: transparent !important;
1770
+ background-color: transparent !important; /* stylelint-disable-line declaration-no-important */
1771
+ border: transparent !important; /* stylelint-disable-line declaration-no-important */
1719
1772
  }
1720
1773
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-milestone-top {
1721
- border-bottom-color: #818cf8 !important;
1774
+ border-bottom-color: #818cf8 !important; /* stylelint-disable-line declaration-no-important */
1722
1775
  }
1723
1776
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-milestone-bottom {
1724
- border-top-color: #818cf8 !important;
1777
+ border-top-color: #818cf8 !important; /* stylelint-disable-line declaration-no-important */
1725
1778
  }
1726
1779
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-parent-taskbar-inner-div {
1727
- background-color: #d1d5db !important;
1728
- border: #d1d5db !important;
1780
+ background-color: #d1d5db !important; /* stylelint-disable-line declaration-no-important */
1781
+ border: #d1d5db !important; /* stylelint-disable-line declaration-no-important */
1729
1782
  }
1730
1783
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-parent-progressbar-inner-div {
1731
- background-color: transparent !important;
1732
- border: transparent !important;
1784
+ background-color: transparent !important; /* stylelint-disable-line declaration-no-important */
1785
+ border: transparent !important; /* stylelint-disable-line declaration-no-important */
1733
1786
  }
1734
1787
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-gantt-child-taskbar-inner-div {
1735
- background: #4f46e5 !important;
1736
- border: #4f46e5 !important;
1788
+ background: #4f46e5 !important; /* stylelint-disable-line declaration-no-important */
1789
+ border: #4f46e5 !important; /* stylelint-disable-line declaration-no-important */
1737
1790
  }
1738
1791
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-milestone-top {
1739
- border-bottom-color: #4f46e5 !important;
1792
+ border-bottom-color: #4f46e5 !important; /* stylelint-disable-line declaration-no-important */
1740
1793
  }
1741
1794
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-milestone-bottom {
1742
- border-top-color: #4f46e5 !important;
1795
+ border-top-color: #4f46e5 !important; /* stylelint-disable-line declaration-no-important */
1743
1796
  }
1744
1797
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-gantt-child-taskbar-inner-div {
1745
- background: #a49ff2 !important;
1746
- border: #a49ff2 !important;
1798
+ background: #a49ff2 !important; /* stylelint-disable-line declaration-no-important */
1799
+ border: #a49ff2 !important; /* stylelint-disable-line declaration-no-important */
1747
1800
  }
1748
1801
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-milestone-top {
1749
- border-bottom-color: #a49ff2 !important;
1802
+ border-bottom-color: #a49ff2 !important; /* stylelint-disable-line declaration-no-important */
1750
1803
  }
1751
1804
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-milestone-bottom {
1752
- border-top-color: #a49ff2 !important;
1805
+ border-top-color: #a49ff2 !important; /* stylelint-disable-line declaration-no-important */
1753
1806
  }
1754
1807
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-line {
1755
- border-color: #4f46e5 !important;
1808
+ border-color: #4f46e5 !important; /* stylelint-disable-line declaration-no-important */
1756
1809
  }
1757
1810
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-connector-line-right-arrow {
1758
- border-left-color: #4f46e5 !important;
1811
+ border-left-color: #4f46e5 !important; /* stylelint-disable-line declaration-no-important */
1759
1812
  }
1760
1813
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-connector-line-left-arrow {
1761
- border-right-color: #4f46e5 !important;
1814
+ border-right-color: #4f46e5 !important; /* stylelint-disable-line declaration-no-important */
1762
1815
  }
1763
1816
  .e-gantt .e-icons {
1764
1817
  color: #6b7280;
1765
1818
  }
1766
1819
  .e-gantt .e-grid .e-icons:not(.e-stop):not(.e-check):not(.e-icon-left):not(.e-date-icon) {
1767
- color: #6b7280 !important;
1820
+ color: #6b7280 !important; /* stylelint-disable-line declaration-no-important */
1768
1821
  }
1769
1822
 
1770
1823
  .e-gantt-dialog .e-dlg-header {