@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
@@ -133,12 +133,14 @@
133
133
  box-shadow: 0 0 0 200px rgba(0, 0, 0, 0.12);
134
134
  }
135
135
  }
136
+ /* stylelint-disable property-no-vendor-prefix */
136
137
  @keyframes e-input-ripple {
137
138
  100% {
138
139
  opacity: 0;
139
140
  transform: scale(4);
140
141
  }
141
142
  }
143
+ /* stylelint-disable property-no-vendor-prefix */
142
144
  @keyframes material-spinner-rotate {
143
145
  0% {
144
146
  transform: rotate(0deg);
@@ -155,6 +157,7 @@
155
157
  transform: rotate(360deg);
156
158
  }
157
159
  }
160
+ /* stylelint-disable */
158
161
  .e-gantt .e-add::before {
159
162
  content: "\e7f9";
160
163
  }
@@ -304,10 +307,10 @@
304
307
  height: 241px !important;
305
308
  }
306
309
  .e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
307
- height: 63px !important;
310
+ height: 63px !important; /* stylelint-disable-line declaration-no-important */
308
311
  }
309
312
  .e-bigger .e-gantt .e-dialog .e-dlg-header-content {
310
- padding: 16px 4px 17px 16px !important;
313
+ padding: 16px 4px 17px 16px !important; /* stylelint-disable-line declaration-no-important */
311
314
  }
312
315
  .e-bigger .e-gantt .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
313
316
  left: 1px !important;
@@ -325,7 +328,7 @@
325
328
  .e-bigger .e-gantt .e-dialog .e-dlg-header {
326
329
  line-height: 28px;
327
330
  }
328
- .e-bigger .e-gantt .e-filter-popup {
331
+ .e-bigger .e-gantt .e-filter-popup.e-popup {
329
332
  width: 350px !important;
330
333
  }
331
334
  .e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
@@ -338,12 +341,12 @@
338
341
  .e-bigger .e-columnmenu {
339
342
  top: 38px;
340
343
  }
341
- .e-bigger .e-gantt-dialog {
344
+ .e-bigger .e-gantt-dialog .e-dialog {
342
345
  border-radius: 6px;
343
346
  width: 550px !important;
344
347
  }
345
348
  .e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
346
- padding: 0 16px !important;
349
+ padding: 0 16px !important; /* stylelint-disable-line declaration-no-important */
347
350
  }
348
351
  .e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(odd) {
349
352
  padding: 16px 9px 0 16px;
@@ -361,10 +364,10 @@
361
364
  height: 78px !important;
362
365
  }
363
366
  .e-bigger .e-gantt-dialog .e-dlg-header-content {
364
- border-bottom: 0 !important;
367
+ border-bottom: 0 !important; /* stylelint-disable-line declaration-no-important */
365
368
  }
366
369
  .e-bigger .e-gantt-dialog > .e-dlg-content {
367
- border-radius: 0 !important;
370
+ border-radius: 0 !important; /* stylelint-disable-line declaration-no-important */
368
371
  }
369
372
  .e-bigger .e-gantt-dialog .e-dlg-header-content {
370
373
  border-radius: 6px 6px 0px 0px;
@@ -372,28 +375,28 @@
372
375
  }
373
376
  .e-bigger .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
374
377
  border-radius: 50%;
375
- height: auto !important;
378
+ height: auto !important; /* stylelint-disable-line declaration-no-important */
376
379
  width: auto;
377
380
  }
378
381
  .e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
379
382
  margin-left: 4px !important;
380
383
  }
381
384
  .e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
382
- font-size: 16px !important;
385
+ font-size: 16px !important; /* stylelint-disable-line declaration-no-important */
383
386
  }
384
387
  .e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
385
388
  min-height: 26px !important;
386
- min-width: 35.82px !important;
389
+ min-width: 35.82px !important; /* stylelint-disable-line declaration-no-important */
387
390
  }
388
391
  .e-bigger .e-gantt-dialog .e-btn.e-flat {
389
392
  line-height: 24px;
390
- padding: 6px 16px 6px 15px !important;
393
+ padding: 6px 16px 6px 15px !important; /* stylelint-disable-line declaration-no-important */
391
394
  }
392
395
  .e-bigger .e-gantt-dialog .e-btn.e-primary {
393
- padding: 6px 21px 6px 23px !important;
396
+ padding: 6px 21px 6px 23px !important; /* stylelint-disable-line declaration-no-important */
394
397
  }
395
398
  .e-bigger .e-gantt-dialog .e-datetime-wrapper .e-time-icon.e-icons::before {
396
- font-size: 16px !important;
399
+ font-size: 16px !important; /* stylelint-disable-line declaration-no-important */
397
400
  }
398
401
  .e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text {
399
402
  font-size: 14px;
@@ -405,30 +408,33 @@
405
408
  }
406
409
  .e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input {
407
410
  height: 27px !important;
408
- padding: 5px 0 11px !important;
411
+ padding: 5px 0 11px !important; /* stylelint-disable-line declaration-no-important */
409
412
  }
410
413
  .e-bigger .e-gantt-dialog .e-numeric.e-control-wrapper.e-input-group .e-input-group-icon {
411
414
  min-height: 26px !important;
412
- min-width: 35.82px !important;
415
+ min-width: 35.82px !important; /* stylelint-disable-line declaration-no-important */
413
416
  }
414
417
  .e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-time-icon {
415
418
  min-height: 26px !important;
416
- min-width: 35.82px !important;
419
+ min-width: 35.82px !important; /* stylelint-disable-line declaration-no-important */
417
420
  }
418
421
  .e-bigger .e-gantt-dialog .e-input-group.e-control-wrapper {
419
422
  height: 44px;
420
423
  }
421
424
  .e-bigger .e-gantt-dialog .e-input-group-icon.e-date-icon {
422
- min-width: 36px !important;
425
+ min-width: 36px !important; /* stylelint-disable-line declaration-no-important */
423
426
  }
424
427
  .e-bigger .e-gantt-dialog .e-datetime-wrapper .e-input-group-icon.e-time-icon {
425
- margin: 5px 0 6px !important;
428
+ margin: 5px 0 6px !important; /* stylelint-disable-line declaration-no-important */
426
429
  }
427
430
  .e-bigger .e-gantt-dialog .e-input-group.e-control-wrapper .e-input-group-icon {
428
- margin-right: 0 !important;
431
+ margin-right: 0 !important; /* stylelint-disable-line declaration-no-important */
429
432
  }
430
- .e-bigger .e-predecessor-tooltip {
431
- background-color: #000;
433
+ .e-bigger .e-predecessor-tooltip .e-arrow-tip-outer.e-tip-bottom {
434
+ border-top: 8px solid #000;
435
+ }
436
+ .e-bigger .e-predecessor-tooltip .e-arrow-tip-inner.e-tip-bottom {
437
+ color: #000;
432
438
  }
433
439
  .e-bigger .e-predecessor-tooltip .e-left-btn:disabled {
434
440
  color: #757575 !important;
@@ -437,7 +443,7 @@
437
443
  color: #757575 !important;
438
444
  }
439
445
  .e-bigger .e-predecessor-tooltip .e-tip-content {
440
- padding: 3px !important;
446
+ padding: 3px !important; /* stylelint-disable-line declaration-no-important */
441
447
  }
442
448
  .e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type {
443
449
  background-color: #000;
@@ -461,6 +467,10 @@
461
467
  .e-bigger .e-predecessor-dialog .e-dlg-content {
462
468
  background-color: #f3f3f3;
463
469
  padding: 10px 9px 9px 14px !important;
470
+ font-size: 12px;
471
+ font-weight: 400;
472
+ line-height: 1.46;
473
+ color: #000;
464
474
  }
465
475
 
466
476
  .e-gantt {
@@ -539,7 +549,7 @@
539
549
  margin: 0;
540
550
  }
541
551
  .e-gantt .e-gantt-splitter .e-pane {
542
- overflow: hidden !important;
552
+ overflow: hidden !important; /* stylelint-disable-line declaration-no-important */
543
553
  }
544
554
  .e-gantt .e-temp-content {
545
555
  border-left: 1px solid;
@@ -566,19 +576,19 @@
566
576
  height: 45px;
567
577
  }
568
578
  .e-gantt .e-gantt-tree-grid-pane .e-headercontent {
569
- border-right-width: 0 !important;
579
+ border-right-width: 0 !important; /* stylelint-disable-line declaration-no-important */
570
580
  }
571
581
  .e-gantt .e-gantt-tree-grid-pane .e-gridheader {
572
582
  border-top-style: none;
573
583
  border-top-width: 0;
574
- padding-right: 0 !important;
584
+ padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
575
585
  }
576
586
  .e-gantt .e-gantt-tree-grid-pane .e-columnheader,
577
587
  .e-gantt .e-gantt-tree-grid-pane .e-headercell {
578
- height: 63px !important;
588
+ height: 63px !important; /* stylelint-disable-line declaration-no-important */
579
589
  }
580
590
  .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content {
581
- overflow-x: scroll !important;
591
+ overflow-x: scroll !important; /* stylelint-disable-line declaration-no-important */
582
592
  }
583
593
  .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content.e-gantt-scroll-padding {
584
594
  width: calc(100% + 17px);
@@ -603,7 +613,7 @@
603
613
  border-right: 0 solid;
604
614
  }
605
615
  .e-gantt .e-gantt-chart .e-chart-root-container .e-content {
606
- -webkit-overflow-scrolling: touch;
616
+ -webkit-overflow-scrolling: touch; /* stylelint-disable-line property-no-vendor-prefix */
607
617
  overflow-x: scroll;
608
618
  overflow-y: auto;
609
619
  position: relative;
@@ -1170,7 +1180,7 @@
1170
1180
  }
1171
1181
  .e-gantt-dialog .e-richtexteditor {
1172
1182
  border-bottom-width: 1px;
1173
- height: 241px !important;
1183
+ height: 241px !important; /* stylelint-disable-line declaration-no-important */
1174
1184
  overflow: hidden;
1175
1185
  }
1176
1186
  .e-gantt-dialog .e-richtexteditor.e-rte-tb-expand {
@@ -1182,10 +1192,10 @@
1182
1192
  overflow: hidden;
1183
1193
  }
1184
1194
  .e-gantt-dialog > .e-dlg-content {
1185
- padding: 0 !important;
1195
+ padding: 0 !important; /* stylelint-disable-line declaration-no-important */
1186
1196
  }
1187
1197
  .e-gantt-dialog .e-dlg-header-content {
1188
- border-bottom: 0 !important;
1198
+ border-bottom: 0 !important; /* stylelint-disable-line declaration-no-important */
1189
1199
  }
1190
1200
  .e-gantt-dialog .e-dlg-header-content {
1191
1201
  border-radius: 0px;
@@ -1193,8 +1203,8 @@
1193
1203
  }
1194
1204
  .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
1195
1205
  border-radius: 50%;
1196
- height: auto !important;
1197
- width: auto !important;
1206
+ height: auto !important; /* stylelint-disable-line declaration-no-important */
1207
+ width: auto !important; /* stylelint-disable-line declaration-no-important */
1198
1208
  }
1199
1209
 
1200
1210
  .e-icon-rowselect::before {
@@ -1202,9 +1212,9 @@
1202
1212
  }
1203
1213
 
1204
1214
  .e-ganttpopup {
1205
- -moz-user-select: none;
1206
- -ms-user-select: none;
1207
- -webkit-user-select: none;
1215
+ -moz-user-select: none; /* stylelint-disable-line property-no-vendor-prefix */
1216
+ -ms-user-select: none; /* stylelint-disable-line property-no-vendor-prefix */
1217
+ -webkit-user-select: none; /* stylelint-disable-line property-no-vendor-prefix */
1208
1218
  font-weight: normal;
1209
1219
  position: absolute;
1210
1220
  user-select: none;
@@ -1327,8 +1337,53 @@
1327
1337
  }
1328
1338
 
1329
1339
  .e-predecessor-tooltip {
1340
+ background-color: #000 !important; /* stylelint-disable-line declaration-no-important */
1341
+ border-color: #000 !important; /* stylelint-disable-line declaration-no-important */
1330
1342
  visibility: hidden;
1331
1343
  }
1344
+ .e-predecessor-tooltip .e-arrow-tip-outer.e-tip-bottom {
1345
+ border-top: 8px solid #000;
1346
+ }
1347
+ .e-predecessor-tooltip .e-arrow-tip-inner.e-tip-bottom {
1348
+ color: #000;
1349
+ }
1350
+ .e-predecessor-tooltip .e-left-btn:disabled {
1351
+ color: #757575 !important;
1352
+ }
1353
+ .e-predecessor-tooltip .e-right-btn:disabled {
1354
+ color: #757575 !important;
1355
+ }
1356
+ .e-predecessor-tooltip .e-tip-content {
1357
+ padding: 3px !important; /* stylelint-disable-line declaration-no-important */
1358
+ }
1359
+ .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type {
1360
+ background-color: #000;
1361
+ border-color: #000;
1362
+ color: #fff;
1363
+ font-size: 12px;
1364
+ line-height: 18px;
1365
+ padding: 0 8px 0 0;
1366
+ }
1367
+ .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:last-of-type {
1368
+ background-color: #000;
1369
+ border-color: #000;
1370
+ color: #fff;
1371
+ font-size: 12px;
1372
+ line-height: 18px;
1373
+ padding: 0 0 0 8px;
1374
+ }
1375
+
1376
+ .e-predecessor-dialog {
1377
+ background-color: #f3f3f3;
1378
+ }
1379
+ .e-predecessor-dialog .e-dlg-content {
1380
+ background-color: #f3f3f3;
1381
+ padding: 10px 9px 9px 14px !important;
1382
+ font-size: 12px;
1383
+ font-weight: 400;
1384
+ line-height: 1.46;
1385
+ color: #000;
1386
+ }
1332
1387
 
1333
1388
  /*! Gantt theme */
1334
1389
  .e-gantt .e-gantt-splitter {
@@ -1358,7 +1413,7 @@
1358
1413
  border-top-right-radius: 0px;
1359
1414
  }
1360
1415
  .e-gantt .e-grid .e-focused:not(.e-menu-item) {
1361
- box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5) inset !important;
1416
+ box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5) inset !important; /* stylelint-disable-line declaration-no-important */
1362
1417
  }
1363
1418
  .e-gantt .e-temp-content {
1364
1419
  border-color: #616161;
@@ -1373,7 +1428,7 @@
1373
1428
  border-color: #616161;
1374
1429
  }
1375
1430
  .e-gantt .e-gantt-tree-grid-pane .e-timeline-single-header-outer-div {
1376
- height: 45px !important;
1431
+ height: 45px !important; /* stylelint-disable-line declaration-no-important */
1377
1432
  }
1378
1433
  .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active {
1379
1434
  background: rgba(255, 255, 255, 0.28);
@@ -1397,7 +1452,7 @@
1397
1452
  line-height: 46px;
1398
1453
  }
1399
1454
  .e-gantt .e-gantt-chart .e-timeline-single-header-outer-div {
1400
- height: 46px !important;
1455
+ height: 46px !important; /* stylelint-disable-line declaration-no-important */
1401
1456
  }
1402
1457
  .e-gantt .e-gantt-chart .e-timeline-top-header-cell {
1403
1458
  height: 32px;
@@ -1687,73 +1742,73 @@
1687
1742
  color: transparent;
1688
1743
  }
1689
1744
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-task-label {
1690
- color: transparent !important;
1745
+ color: transparent !important; /* stylelint-disable-line declaration-no-important */
1691
1746
  }
1692
1747
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-line {
1693
- border-color: #8A8A8A !important;
1748
+ border-color: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
1694
1749
  }
1695
1750
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-connector-line-right-arrow {
1696
- border-left-color: #8A8A8A !important;
1751
+ border-left-color: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
1697
1752
  }
1698
1753
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-connector-line-left-arrow {
1699
- border-right-color: #8A8A8A !important;
1754
+ border-right-color: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
1700
1755
  }
1701
1756
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-child-taskbar-inner-div {
1702
- background: #D5D5D5 !important;
1703
- border: #D5D5D5 !important;
1757
+ background: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
1758
+ border: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
1704
1759
  }
1705
1760
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-child-progressbar-inner-div {
1706
- background-color: transparent !important;
1707
- border: transparent !important;
1761
+ background-color: transparent !important; /* stylelint-disable-line declaration-no-important */
1762
+ border: transparent !important; /* stylelint-disable-line declaration-no-important */
1708
1763
  }
1709
1764
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-milestone-top {
1710
- border-bottom-color: #D5D5D5 !important;
1765
+ border-bottom-color: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
1711
1766
  }
1712
1767
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-milestone-bottom {
1713
- border-top-color: #D5D5D5 !important;
1768
+ border-top-color: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
1714
1769
  }
1715
1770
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-parent-taskbar-inner-div {
1716
- background-color: #8A8A8A !important;
1717
- border: #8A8A8A !important;
1771
+ background-color: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
1772
+ border: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
1718
1773
  }
1719
1774
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-parent-progressbar-inner-div {
1720
- background-color: transparent !important;
1721
- border: transparent !important;
1775
+ background-color: transparent !important; /* stylelint-disable-line declaration-no-important */
1776
+ border: transparent !important; /* stylelint-disable-line declaration-no-important */
1722
1777
  }
1723
1778
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-gantt-child-taskbar-inner-div {
1724
- background: #7280ce !important;
1725
- border: #7280ce !important;
1779
+ background: #7280ce !important; /* stylelint-disable-line declaration-no-important */
1780
+ border: #7280ce !important; /* stylelint-disable-line declaration-no-important */
1726
1781
  }
1727
1782
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-milestone-top {
1728
- border-bottom-color: #7280ce !important;
1783
+ border-bottom-color: #7280ce !important; /* stylelint-disable-line declaration-no-important */
1729
1784
  }
1730
1785
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-milestone-bottom {
1731
- border-top-color: #7280ce !important;
1786
+ border-top-color: #7280ce !important; /* stylelint-disable-line declaration-no-important */
1732
1787
  }
1733
1788
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-gantt-child-taskbar-inner-div {
1734
- background: #8591d5 !important;
1735
- border: #8591d5 !important;
1789
+ background: #8591d5 !important; /* stylelint-disable-line declaration-no-important */
1790
+ border: #8591d5 !important; /* stylelint-disable-line declaration-no-important */
1736
1791
  }
1737
1792
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-milestone-top {
1738
- border-bottom-color: #8591d5 !important;
1793
+ border-bottom-color: #8591d5 !important; /* stylelint-disable-line declaration-no-important */
1739
1794
  }
1740
1795
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-milestone-bottom {
1741
- border-top-color: #8591d5 !important;
1796
+ border-top-color: #8591d5 !important; /* stylelint-disable-line declaration-no-important */
1742
1797
  }
1743
1798
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-line {
1744
- border-color: #7280ce !important;
1799
+ border-color: #7280ce !important; /* stylelint-disable-line declaration-no-important */
1745
1800
  }
1746
1801
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-connector-line-right-arrow {
1747
- border-left-color: #7280ce !important;
1802
+ border-left-color: #7280ce !important; /* stylelint-disable-line declaration-no-important */
1748
1803
  }
1749
1804
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-connector-line-left-arrow {
1750
- border-right-color: #7280ce !important;
1805
+ border-right-color: #7280ce !important; /* stylelint-disable-line declaration-no-important */
1751
1806
  }
1752
1807
  .e-gantt .e-icons {
1753
1808
  color: #fff;
1754
1809
  }
1755
1810
  .e-gantt .e-grid .e-icons:not(.e-stop):not(.e-check):not(.e-icon-left):not(.e-date-icon) {
1756
- color: rgba(255, 255, 255, 0.7) !important;
1811
+ color: rgba(255, 255, 255, 0.7) !important; /* stylelint-disable-line declaration-no-important */
1757
1812
  }
1758
1813
 
1759
1814
  .e-gantt-dialog .e-dlg-header {