@syncfusion/ej2-gantt 20.2.50 → 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 (95) hide show
  1. package/CHANGELOG.md +10 -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 +940 -338
  6. package/dist/es6/ej2-gantt.es2015.js.map +1 -1
  7. package/dist/es6/ej2-gantt.es5.js +970 -357
  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 +116 -14
  23. package/src/gantt/actions/edit.js +69 -10
  24. package/src/gantt/actions/filter.d.ts +3 -0
  25. package/src/gantt/actions/filter.js +30 -6
  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/base/enum.d.ts +3 -1
  30. package/src/gantt/base/gantt-chart.js +8 -6
  31. package/src/gantt/base/gantt.d.ts +6 -6
  32. package/src/gantt/base/gantt.js +10 -3
  33. package/src/gantt/base/interface.d.ts +4 -0
  34. package/src/gantt/base/splitter.d.ts +2 -2
  35. package/src/gantt/base/splitter.js +6 -7
  36. package/src/gantt/base/task-processor.js +13 -7
  37. package/src/gantt/base/tree-grid.js +21 -2
  38. package/src/gantt/export/pdf-connector-line.js +187 -185
  39. package/src/gantt/models/edit-settings-model.d.ts +2 -2
  40. package/src/gantt/models/edit-settings.d.ts +2 -2
  41. package/src/gantt/models/filter-settings-model.d.ts +1 -1
  42. package/src/gantt/models/filter-settings.d.ts +1 -1
  43. package/src/gantt/renderer/chart-rows.d.ts +1 -0
  44. package/src/gantt/renderer/chart-rows.js +47 -16
  45. package/src/gantt/renderer/connector-line.js +101 -33
  46. package/src/gantt/renderer/event-marker.js +1 -1
  47. package/src/gantt/renderer/nonworking-day.js +0 -1
  48. package/src/gantt/renderer/tooltip.js +2 -1
  49. package/styles/bootstrap-dark.css +115 -62
  50. package/styles/bootstrap.css +115 -62
  51. package/styles/bootstrap4.css +115 -62
  52. package/styles/bootstrap5-dark.css +119 -63
  53. package/styles/bootstrap5.css +119 -63
  54. package/styles/fabric-dark.css +115 -62
  55. package/styles/fabric.css +115 -62
  56. package/styles/fluent-dark.css +126 -66
  57. package/styles/fluent.css +124 -64
  58. package/styles/gantt/_all.scss +1 -1
  59. package/styles/gantt/_bootstrap-dark-definition.scss +4 -1
  60. package/styles/gantt/_bootstrap-definition.scss +4 -1
  61. package/styles/gantt/_bootstrap4-definition.scss +4 -1
  62. package/styles/gantt/_bootstrap5-definition.scss +4 -2
  63. package/styles/gantt/_fabric-dark-definition.scss +4 -1
  64. package/styles/gantt/_fabric-definition.scss +4 -1
  65. package/styles/gantt/_fluent-definition.scss +6 -4
  66. package/styles/gantt/_fusionnew-definition.scss +12 -10
  67. package/styles/gantt/_highcontrast-definition.scss +4 -1
  68. package/styles/gantt/_highcontrast-light-definition.scss +4 -1
  69. package/styles/gantt/_layout.scss +143 -51
  70. package/styles/gantt/_material-dark-definition.scss +4 -1
  71. package/styles/gantt/_material-definition.scss +4 -1
  72. package/styles/gantt/_material3-definition.scss +13 -11
  73. package/styles/gantt/_tailwind-definition.scss +4 -2
  74. package/styles/gantt/_theme.scss +29 -29
  75. package/styles/gantt/bootstrap-dark.css +115 -62
  76. package/styles/gantt/bootstrap.css +115 -62
  77. package/styles/gantt/bootstrap4.css +115 -62
  78. package/styles/gantt/bootstrap5-dark.css +119 -63
  79. package/styles/gantt/bootstrap5.css +119 -63
  80. package/styles/gantt/fabric-dark.css +115 -62
  81. package/styles/gantt/fabric.css +115 -62
  82. package/styles/gantt/fluent-dark.css +126 -66
  83. package/styles/gantt/fluent.css +124 -64
  84. package/styles/gantt/highcontrast-light.css +120 -62
  85. package/styles/gantt/highcontrast.css +120 -62
  86. package/styles/gantt/material-dark.css +120 -65
  87. package/styles/gantt/material.css +118 -65
  88. package/styles/gantt/tailwind-dark.css +117 -64
  89. package/styles/gantt/tailwind.css +117 -64
  90. package/styles/highcontrast-light.css +120 -62
  91. package/styles/highcontrast.css +120 -62
  92. package/styles/material-dark.css +120 -65
  93. package/styles/material.css +118 -65
  94. package/styles/tailwind-dark.css +117 -64
  95. package/styles/tailwind.css +117 -64
@@ -179,10 +179,15 @@
179
179
  border-left-width: 0;
180
180
  }
181
181
 
182
- /*! Toolbar's bootstrap5 theme wise override definitions and variables */ /*! Tab's bootstrap5 theme wise override definitions and variables */
182
+ /*! Toolbar's bootstrap5 theme wise override definitions and variables */
183
+ /* stylelint-disable */
184
+ /*! Tab's bootstrap5 theme wise override definitions and variables */
185
+ /* stylelint-disable */
183
186
  /*! Horizontal Tab */
184
187
  /*! Bootstrap specific themes definition's */
185
188
  /*! Vertical Tab */
189
+ /* stylelint-disable property-no-vendor-prefix */
190
+ /* stylelint-disable property-no-vendor-prefix */
186
191
  @keyframes material-spinner-rotate {
187
192
  0% {
188
193
  transform: rotate(0);
@@ -199,6 +204,7 @@
199
204
  transform: rotate(360deg);
200
205
  }
201
206
  }
207
+ /* stylelint-disable */
202
208
  .e-gantt .e-add::before {
203
209
  content: "\e805";
204
210
  }
@@ -348,10 +354,10 @@
348
354
  height: 250px !important;
349
355
  }
350
356
  .e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
351
- height: 63px !important;
357
+ height: 63px !important; /* stylelint-disable-line declaration-no-important */
352
358
  }
353
359
  .e-bigger .e-gantt .e-dialog .e-dlg-header-content {
354
- padding: 16px 4px 16px 16px !important;
360
+ padding: 16px 4px 16px 16px !important; /* stylelint-disable-line declaration-no-important */
355
361
  }
356
362
  .e-bigger .e-gantt .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
357
363
  left: 2px !important;
@@ -369,7 +375,7 @@
369
375
  .e-bigger .e-gantt .e-dialog .e-dlg-header {
370
376
  line-height: 28px;
371
377
  }
372
- .e-bigger .e-gantt .e-filter-popup {
378
+ .e-bigger .e-gantt .e-filter-popup.e-popup {
373
379
  width: 350px !important;
374
380
  }
375
381
  .e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
@@ -382,12 +388,12 @@
382
388
  .e-bigger .e-columnmenu {
383
389
  top: 35px;
384
390
  }
385
- .e-bigger .e-gantt-dialog {
391
+ .e-bigger .e-gantt-dialog .e-dialog {
386
392
  border-radius: 6px;
387
393
  width: 556px !important;
388
394
  }
389
395
  .e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
390
- padding: 0 16px !important;
396
+ padding: 0 16px !important; /* stylelint-disable-line declaration-no-important */
391
397
  }
392
398
  .e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(odd) {
393
399
  padding: 16px 12px 0 16px;
@@ -405,10 +411,10 @@
405
411
  height: 78px !important;
406
412
  }
407
413
  .e-bigger .e-gantt-dialog .e-dlg-header-content {
408
- border-bottom: 0 !important;
414
+ border-bottom: 0 !important; /* stylelint-disable-line declaration-no-important */
409
415
  }
410
416
  .e-bigger .e-gantt-dialog > .e-dlg-content {
411
- border-radius: 0 !important;
417
+ border-radius: 0 !important; /* stylelint-disable-line declaration-no-important */
412
418
  }
413
419
  .e-bigger .e-gantt-dialog .e-dlg-header-content {
414
420
  border-radius: 6px 6px 0px 0px;
@@ -416,28 +422,28 @@
416
422
  }
417
423
  .e-bigger .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
418
424
  border-radius: 50%;
419
- height: auto !important;
425
+ height: auto !important; /* stylelint-disable-line declaration-no-important */
420
426
  width: auto;
421
427
  }
422
428
  .e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
423
429
  margin-left: 5px !important;
424
430
  }
425
431
  .e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
426
- font-size: 16px !important;
432
+ font-size: 16px !important; /* stylelint-disable-line declaration-no-important */
427
433
  }
428
434
  .e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
429
435
  min-height: 36px !important;
430
- min-width: 35.82px !important;
436
+ min-width: 35.82px !important; /* stylelint-disable-line declaration-no-important */
431
437
  }
432
438
  .e-bigger .e-gantt-dialog .e-btn.e-flat {
433
439
  line-height: 24px;
434
- padding: 6px 16px 6px 15px !important;
440
+ padding: 6px 16px 6px 15px !important; /* stylelint-disable-line declaration-no-important */
435
441
  }
436
442
  .e-bigger .e-gantt-dialog .e-btn.e-primary {
437
- padding: 6px 21px 6px 23px !important;
443
+ padding: 6px 21px 6px 23px !important; /* stylelint-disable-line declaration-no-important */
438
444
  }
439
445
  .e-bigger .e-gantt-dialog .e-datetime-wrapper .e-time-icon.e-icons::before {
440
- font-size: 16px !important;
446
+ font-size: 16px !important; /* stylelint-disable-line declaration-no-important */
441
447
  }
442
448
  .e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text {
443
449
  font-size: 14px;
@@ -452,20 +458,23 @@
452
458
  }
453
459
  .e-bigger .e-gantt-dialog .e-numeric.e-control-wrapper.e-input-group .e-input-group-icon {
454
460
  min-height: 36px !important;
455
- min-width: 35.82px !important;
461
+ min-width: 35.82px !important; /* stylelint-disable-line declaration-no-important */
456
462
  }
457
463
  .e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-time-icon {
458
464
  min-height: 36px !important;
459
- min-width: 35.82px !important;
465
+ min-width: 35.82px !important; /* stylelint-disable-line declaration-no-important */
460
466
  }
461
467
  .e-bigger .e-gantt-dialog .e-input-group.e-control-wrapper {
462
468
  height: 38px;
463
469
  }
464
470
  .e-bigger .e-gantt-dialog .e-input-group-icon.e-date-icon {
465
- min-width: 36px !important;
471
+ min-width: 36px !important; /* stylelint-disable-line declaration-no-important */
466
472
  }
467
- .e-bigger .e-predecessor-tooltip {
468
- background-color: #000;
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;
469
478
  }
470
479
  .e-bigger .e-predecessor-tooltip .e-left-btn:disabled {
471
480
  color: #adb5bd !important;
@@ -474,7 +483,7 @@
474
483
  color: #adb5bd !important;
475
484
  }
476
485
  .e-bigger .e-predecessor-tooltip .e-tip-content {
477
- padding: 3px !important;
486
+ padding: 3px !important; /* stylelint-disable-line declaration-no-important */
478
487
  }
479
488
  .e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type {
480
489
  background-color: #000;
@@ -498,6 +507,9 @@
498
507
  .e-bigger .e-predecessor-dialog .e-dlg-content {
499
508
  background-color: #212529;
500
509
  padding: 10px 9px 9px 14px !important;
510
+ font-size: 12px;
511
+ font-weight: 400;
512
+ line-height: 1.8;
501
513
  }
502
514
 
503
515
  .e-gantt {
@@ -576,7 +588,7 @@
576
588
  margin: 0;
577
589
  }
578
590
  .e-gantt .e-gantt-splitter .e-pane {
579
- overflow: hidden !important;
591
+ overflow: hidden !important; /* stylelint-disable-line declaration-no-important */
580
592
  }
581
593
  .e-gantt .e-temp-content {
582
594
  border-left: 1px solid;
@@ -603,19 +615,19 @@
603
615
  height: 45px;
604
616
  }
605
617
  .e-gantt .e-gantt-tree-grid-pane .e-headercontent {
606
- border-right-width: 0 !important;
618
+ border-right-width: 0 !important; /* stylelint-disable-line declaration-no-important */
607
619
  }
608
620
  .e-gantt .e-gantt-tree-grid-pane .e-gridheader {
609
621
  border-top-style: none;
610
622
  border-top-width: 0;
611
- padding-right: 0 !important;
623
+ padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
612
624
  }
613
625
  .e-gantt .e-gantt-tree-grid-pane .e-columnheader,
614
626
  .e-gantt .e-gantt-tree-grid-pane .e-headercell {
615
- height: 51px !important;
627
+ height: 51px !important; /* stylelint-disable-line declaration-no-important */
616
628
  }
617
629
  .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content {
618
- overflow-x: scroll !important;
630
+ overflow-x: scroll !important; /* stylelint-disable-line declaration-no-important */
619
631
  }
620
632
  .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content.e-gantt-scroll-padding {
621
633
  width: calc(100% + 17px);
@@ -640,7 +652,7 @@
640
652
  border-right: 0 solid;
641
653
  }
642
654
  .e-gantt .e-gantt-chart .e-chart-root-container .e-content {
643
- -webkit-overflow-scrolling: touch;
655
+ -webkit-overflow-scrolling: touch; /* stylelint-disable-line property-no-vendor-prefix */
644
656
  overflow-x: scroll;
645
657
  overflow-y: auto;
646
658
  position: relative;
@@ -1207,7 +1219,7 @@
1207
1219
  }
1208
1220
  .e-gantt-dialog .e-richtexteditor {
1209
1221
  border-bottom-width: 0px;
1210
- height: 241px !important;
1222
+ height: 241px !important; /* stylelint-disable-line declaration-no-important */
1211
1223
  overflow: hidden;
1212
1224
  }
1213
1225
  .e-gantt-dialog .e-richtexteditor.e-rte-tb-expand {
@@ -1219,10 +1231,10 @@
1219
1231
  overflow: hidden;
1220
1232
  }
1221
1233
  .e-gantt-dialog > .e-dlg-content {
1222
- padding: 0 !important;
1234
+ padding: 0 !important; /* stylelint-disable-line declaration-no-important */
1223
1235
  }
1224
1236
  .e-gantt-dialog .e-dlg-header-content {
1225
- border-bottom: 0 !important;
1237
+ border-bottom: 0 !important; /* stylelint-disable-line declaration-no-important */
1226
1238
  }
1227
1239
  .e-gantt-dialog .e-dlg-header-content {
1228
1240
  border-radius: 3px 3px 0px 0px;
@@ -1230,8 +1242,8 @@
1230
1242
  }
1231
1243
  .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
1232
1244
  border-radius: 50%;
1233
- height: auto !important;
1234
- width: auto !important;
1245
+ height: auto !important; /* stylelint-disable-line declaration-no-important */
1246
+ width: auto !important; /* stylelint-disable-line declaration-no-important */
1235
1247
  }
1236
1248
 
1237
1249
  .e-icon-rowselect::before {
@@ -1239,9 +1251,9 @@
1239
1251
  }
1240
1252
 
1241
1253
  .e-ganttpopup {
1242
- -moz-user-select: none;
1243
- -ms-user-select: none;
1244
- -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 */
1245
1257
  font-weight: normal;
1246
1258
  position: absolute;
1247
1259
  user-select: none;
@@ -1364,8 +1376,52 @@
1364
1376
  }
1365
1377
 
1366
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 */
1367
1381
  visibility: hidden;
1368
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: #212529;
1417
+ }
1418
+ .e-predecessor-dialog .e-dlg-content {
1419
+ background-color: #212529;
1420
+ padding: 10px 9px 9px 14px !important;
1421
+ font-size: 12px;
1422
+ font-weight: 400;
1423
+ line-height: 1.8;
1424
+ }
1369
1425
 
1370
1426
  /*! Gantt theme */
1371
1427
  .e-gantt .e-gantt-splitter {
@@ -1395,7 +1451,7 @@
1395
1451
  border-top-right-radius: 0px;
1396
1452
  }
1397
1453
  .e-gantt .e-grid .e-focused:not(.e-menu-item) {
1398
- box-shadow: 0 0 0 1px #6c757d inset !important;
1454
+ box-shadow: 0 0 0 1px #6c757d inset !important; /* stylelint-disable-line declaration-no-important */
1399
1455
  }
1400
1456
  .e-gantt .e-temp-content {
1401
1457
  border-color: #444c54;
@@ -1410,7 +1466,7 @@
1410
1466
  border-color: #444c54;
1411
1467
  }
1412
1468
  .e-gantt .e-gantt-tree-grid-pane .e-timeline-single-header-outer-div {
1413
- height: 45px !important;
1469
+ height: 45px !important; /* stylelint-disable-line declaration-no-important */
1414
1470
  }
1415
1471
  .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active {
1416
1472
  background: #3c444b;
@@ -1434,7 +1490,7 @@
1434
1490
  line-height: 46px;
1435
1491
  }
1436
1492
  .e-gantt .e-gantt-chart .e-timeline-single-header-outer-div {
1437
- height: 46px !important;
1493
+ height: 46px !important; /* stylelint-disable-line declaration-no-important */
1438
1494
  }
1439
1495
  .e-gantt .e-gantt-chart .e-timeline-top-header-cell {
1440
1496
  height: 26px;
@@ -1724,73 +1780,73 @@
1724
1780
  color: transparent;
1725
1781
  }
1726
1782
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-task-label {
1727
- color: transparent !important;
1783
+ color: transparent !important; /* stylelint-disable-line declaration-no-important */
1728
1784
  }
1729
1785
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-line {
1730
- border-color: #6c757d !important;
1786
+ border-color: #6c757d !important; /* stylelint-disable-line declaration-no-important */
1731
1787
  }
1732
1788
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-connector-line-right-arrow {
1733
- border-left-color: #6c757d !important;
1789
+ border-left-color: #6c757d !important; /* stylelint-disable-line declaration-no-important */
1734
1790
  }
1735
1791
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-connector-line-left-arrow {
1736
- border-right-color: #6c757d !important;
1792
+ border-right-color: #6c757d !important; /* stylelint-disable-line declaration-no-important */
1737
1793
  }
1738
1794
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-child-taskbar-inner-div {
1739
- background: #86b7fe !important;
1740
- border: #86b7fe !important;
1795
+ background: #86b7fe !important; /* stylelint-disable-line declaration-no-important */
1796
+ border: #86b7fe !important; /* stylelint-disable-line declaration-no-important */
1741
1797
  }
1742
1798
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-child-progressbar-inner-div {
1743
- background-color: transparent !important;
1744
- border: transparent !important;
1799
+ background-color: transparent !important; /* stylelint-disable-line declaration-no-important */
1800
+ border: transparent !important; /* stylelint-disable-line declaration-no-important */
1745
1801
  }
1746
1802
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-milestone-top {
1747
- border-bottom-color: #86b7fe !important;
1803
+ border-bottom-color: #86b7fe !important; /* stylelint-disable-line declaration-no-important */
1748
1804
  }
1749
1805
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-milestone-bottom {
1750
- border-top-color: #86b7fe !important;
1806
+ border-top-color: #86b7fe !important; /* stylelint-disable-line declaration-no-important */
1751
1807
  }
1752
1808
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-parent-taskbar-inner-div {
1753
- background-color: #6c757d !important;
1754
- border: #6c757d !important;
1809
+ background-color: #6c757d !important; /* stylelint-disable-line declaration-no-important */
1810
+ border: #6c757d !important; /* stylelint-disable-line declaration-no-important */
1755
1811
  }
1756
1812
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-parent-progressbar-inner-div {
1757
- background-color: transparent !important;
1758
- border: transparent !important;
1813
+ background-color: transparent !important; /* stylelint-disable-line declaration-no-important */
1814
+ border: transparent !important; /* stylelint-disable-line declaration-no-important */
1759
1815
  }
1760
1816
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-gantt-child-taskbar-inner-div {
1761
- background: #0d6efd !important;
1762
- border: #0d6efd !important;
1817
+ background: #0d6efd !important; /* stylelint-disable-line declaration-no-important */
1818
+ border: #0d6efd !important; /* stylelint-disable-line declaration-no-important */
1763
1819
  }
1764
1820
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-milestone-top {
1765
- border-bottom-color: #0d6efd !important;
1821
+ border-bottom-color: #0d6efd !important; /* stylelint-disable-line declaration-no-important */
1766
1822
  }
1767
1823
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-milestone-bottom {
1768
- border-top-color: #0d6efd !important;
1824
+ border-top-color: #0d6efd !important; /* stylelint-disable-line declaration-no-important */
1769
1825
  }
1770
1826
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-gantt-child-taskbar-inner-div {
1771
- background: #72abfe !important;
1772
- border: #72abfe !important;
1827
+ background: #72abfe !important; /* stylelint-disable-line declaration-no-important */
1828
+ border: #72abfe !important; /* stylelint-disable-line declaration-no-important */
1773
1829
  }
1774
1830
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-milestone-top {
1775
- border-bottom-color: #72abfe !important;
1831
+ border-bottom-color: #72abfe !important; /* stylelint-disable-line declaration-no-important */
1776
1832
  }
1777
1833
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-milestone-bottom {
1778
- border-top-color: #72abfe !important;
1834
+ border-top-color: #72abfe !important; /* stylelint-disable-line declaration-no-important */
1779
1835
  }
1780
1836
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-line {
1781
- border-color: #0d6efd !important;
1837
+ border-color: #0d6efd !important; /* stylelint-disable-line declaration-no-important */
1782
1838
  }
1783
1839
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-connector-line-right-arrow {
1784
- border-left-color: #0d6efd !important;
1840
+ border-left-color: #0d6efd !important; /* stylelint-disable-line declaration-no-important */
1785
1841
  }
1786
1842
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-connector-line-left-arrow {
1787
- border-right-color: #0d6efd !important;
1843
+ border-right-color: #0d6efd !important; /* stylelint-disable-line declaration-no-important */
1788
1844
  }
1789
1845
  .e-gantt .e-icons {
1790
1846
  color: #adb5bd;
1791
1847
  }
1792
1848
  .e-gantt .e-grid .e-icons:not(.e-stop):not(.e-check):not(.e-icon-left):not(.e-date-icon) {
1793
- color: #adb5bd !important;
1849
+ color: #adb5bd !important; /* stylelint-disable-line declaration-no-important */
1794
1850
  }
1795
1851
 
1796
1852
  .e-gantt-dialog .e-dlg-header {