@syncfusion/ej2-gantt 20.2.50 → 20.3.48

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 +23 -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 +959 -346
  6. package/dist/es6/ej2-gantt.es2015.js.map +1 -1
  7. package/dist/es6/ej2-gantt.es5.js +989 -365
  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 +124 -19
  23. package/src/gantt/actions/edit.js +72 -11
  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 +11 -6
  31. package/src/gantt/base/gantt.d.ts +6 -6
  32. package/src/gantt/base/gantt.js +13 -4
  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/timeline.js +1 -1
  49. package/src/gantt/renderer/tooltip.js +3 -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
@@ -99,6 +99,8 @@
99
99
  margin: 2px 2px 2px 0;
100
100
  }
101
101
 
102
+ /* stylelint-disable property-no-vendor-prefix */
103
+ /* stylelint-disable property-no-vendor-prefix */
102
104
  @keyframes material-spinner-rotate {
103
105
  0% {
104
106
  transform: rotate(0);
@@ -115,6 +117,7 @@
115
117
  transform: rotate(360deg);
116
118
  }
117
119
  }
120
+ /* stylelint-disable */
118
121
  .e-gantt .e-add::before {
119
122
  content: "\e823";
120
123
  }
@@ -264,10 +267,10 @@
264
267
  height: 242px !important;
265
268
  }
266
269
  .e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
267
- height: 63px !important;
270
+ height: 63px !important; /* stylelint-disable-line declaration-no-important */
268
271
  }
269
272
  .e-bigger .e-gantt .e-dialog .e-dlg-header-content {
270
- padding: 16px 4px 16px 16px !important;
273
+ padding: 16px 4px 16px 16px !important; /* stylelint-disable-line declaration-no-important */
271
274
  }
272
275
  .e-bigger .e-gantt .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
273
276
  left: 0 !important;
@@ -285,7 +288,7 @@
285
288
  .e-bigger .e-gantt .e-dialog .e-dlg-header {
286
289
  line-height: 28px;
287
290
  }
288
- .e-bigger .e-gantt .e-filter-popup {
291
+ .e-bigger .e-gantt .e-filter-popup.e-popup {
289
292
  width: 350px !important;
290
293
  }
291
294
  .e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
@@ -298,12 +301,12 @@
298
301
  .e-bigger .e-columnmenu {
299
302
  top: 45px;
300
303
  }
301
- .e-bigger .e-gantt-dialog {
304
+ .e-bigger .e-gantt-dialog .e-dialog {
302
305
  border-radius: 6px;
303
306
  width: 556px !important;
304
307
  }
305
308
  .e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
306
- padding: 0 16px !important;
309
+ padding: 0 16px !important; /* stylelint-disable-line declaration-no-important */
307
310
  }
308
311
  .e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(odd) {
309
312
  padding: 16px 12px 0 16px;
@@ -321,10 +324,10 @@
321
324
  height: 76px !important;
322
325
  }
323
326
  .e-bigger .e-gantt-dialog .e-dlg-header-content {
324
- border-bottom: 0 !important;
327
+ border-bottom: 0 !important; /* stylelint-disable-line declaration-no-important */
325
328
  }
326
329
  .e-bigger .e-gantt-dialog > .e-dlg-content {
327
- border-radius: 0 !important;
330
+ border-radius: 0 !important; /* stylelint-disable-line declaration-no-important */
328
331
  }
329
332
  .e-bigger .e-gantt-dialog .e-dlg-header-content {
330
333
  border-radius: 6px 6px 0px 0px;
@@ -332,28 +335,28 @@
332
335
  }
333
336
  .e-bigger .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
334
337
  border-radius: 50%;
335
- height: auto !important;
338
+ height: auto !important; /* stylelint-disable-line declaration-no-important */
336
339
  width: auto;
337
340
  }
338
341
  .e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
339
342
  margin-left: 5px !important;
340
343
  }
341
344
  .e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
342
- font-size: 16px !important;
345
+ font-size: 16px !important; /* stylelint-disable-line declaration-no-important */
343
346
  }
344
347
  .e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
345
348
  min-height: 35px !important;
346
- min-width: 35.82px !important;
349
+ min-width: 35.82px !important; /* stylelint-disable-line declaration-no-important */
347
350
  }
348
351
  .e-bigger .e-gantt-dialog .e-btn.e-flat {
349
352
  line-height: 24px;
350
- padding: 6px 16px 6px 15px !important;
353
+ padding: 6px 16px 6px 15px !important; /* stylelint-disable-line declaration-no-important */
351
354
  }
352
355
  .e-bigger .e-gantt-dialog .e-btn.e-primary {
353
- padding: 6px 21px 6px 23px !important;
356
+ padding: 6px 21px 6px 23px !important; /* stylelint-disable-line declaration-no-important */
354
357
  }
355
358
  .e-bigger .e-gantt-dialog .e-datetime-wrapper .e-time-icon.e-icons::before {
356
- font-size: 16px !important;
359
+ font-size: 16px !important; /* stylelint-disable-line declaration-no-important */
357
360
  }
358
361
  .e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text {
359
362
  font-size: 14px;
@@ -368,20 +371,23 @@
368
371
  }
369
372
  .e-bigger .e-gantt-dialog .e-numeric.e-control-wrapper.e-input-group .e-input-group-icon {
370
373
  min-height: 35px !important;
371
- min-width: 35.82px !important;
374
+ min-width: 35.82px !important; /* stylelint-disable-line declaration-no-important */
372
375
  }
373
376
  .e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-time-icon {
374
377
  min-height: 35px !important;
375
- min-width: 35.82px !important;
378
+ min-width: 35.82px !important; /* stylelint-disable-line declaration-no-important */
376
379
  }
377
380
  .e-bigger .e-gantt-dialog .e-input-group.e-control-wrapper {
378
381
  height: 36px;
379
382
  }
380
383
  .e-bigger .e-gantt-dialog .e-input-group-icon.e-date-icon {
381
- min-width: 36px !important;
384
+ min-width: 36px !important; /* stylelint-disable-line declaration-no-important */
382
385
  }
383
- .e-bigger .e-predecessor-tooltip {
384
- background-color: #000;
386
+ .e-bigger .e-predecessor-tooltip .e-arrow-tip-outer.e-tip-bottom {
387
+ border-top: 8px solid #000;
388
+ }
389
+ .e-bigger .e-predecessor-tooltip .e-arrow-tip-inner.e-tip-bottom {
390
+ color: #000;
385
391
  }
386
392
  .e-bigger .e-predecessor-tooltip .e-left-btn:disabled {
387
393
  color: #A6A6A6 !important;
@@ -390,7 +396,7 @@
390
396
  color: #A6A6A6 !important;
391
397
  }
392
398
  .e-bigger .e-predecessor-tooltip .e-tip-content {
393
- padding: 3px !important;
399
+ padding: 3px !important; /* stylelint-disable-line declaration-no-important */
394
400
  }
395
401
  .e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type {
396
402
  background-color: #000;
@@ -414,6 +420,9 @@
414
420
  .e-bigger .e-predecessor-dialog .e-dlg-content {
415
421
  background-color: #f8f8f8;
416
422
  padding: 10px 9px 9px 14px !important;
423
+ font-size: 12px;
424
+ font-weight: 400;
425
+ line-height: 1.8;
417
426
  }
418
427
 
419
428
  .e-gantt {
@@ -492,7 +501,7 @@
492
501
  margin: 0;
493
502
  }
494
503
  .e-gantt .e-gantt-splitter .e-pane {
495
- overflow: hidden !important;
504
+ overflow: hidden !important; /* stylelint-disable-line declaration-no-important */
496
505
  }
497
506
  .e-gantt .e-temp-content {
498
507
  border-left: 1px solid;
@@ -519,19 +528,19 @@
519
528
  height: 45px;
520
529
  }
521
530
  .e-gantt .e-gantt-tree-grid-pane .e-headercontent {
522
- border-right-width: 0 !important;
531
+ border-right-width: 0 !important; /* stylelint-disable-line declaration-no-important */
523
532
  }
524
533
  .e-gantt .e-gantt-tree-grid-pane .e-gridheader {
525
534
  border-top-style: none;
526
535
  border-top-width: 0;
527
- padding-right: 0 !important;
536
+ padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
528
537
  }
529
538
  .e-gantt .e-gantt-tree-grid-pane .e-columnheader,
530
539
  .e-gantt .e-gantt-tree-grid-pane .e-headercell {
531
- height: 63px !important;
540
+ height: 63px !important; /* stylelint-disable-line declaration-no-important */
532
541
  }
533
542
  .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content {
534
- overflow-x: scroll !important;
543
+ overflow-x: scroll !important; /* stylelint-disable-line declaration-no-important */
535
544
  }
536
545
  .e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content.e-gantt-scroll-padding {
537
546
  width: calc(100% + 17px);
@@ -556,7 +565,7 @@
556
565
  border-right: 0 solid;
557
566
  }
558
567
  .e-gantt .e-gantt-chart .e-chart-root-container .e-content {
559
- -webkit-overflow-scrolling: touch;
568
+ -webkit-overflow-scrolling: touch; /* stylelint-disable-line property-no-vendor-prefix */
560
569
  overflow-x: scroll;
561
570
  overflow-y: auto;
562
571
  position: relative;
@@ -1123,7 +1132,7 @@
1123
1132
  }
1124
1133
  .e-gantt-dialog .e-richtexteditor {
1125
1134
  border-bottom-width: 1px;
1126
- height: 241px !important;
1135
+ height: 241px !important; /* stylelint-disable-line declaration-no-important */
1127
1136
  overflow: hidden;
1128
1137
  }
1129
1138
  .e-gantt-dialog .e-richtexteditor.e-rte-tb-expand {
@@ -1135,10 +1144,10 @@
1135
1144
  overflow: hidden;
1136
1145
  }
1137
1146
  .e-gantt-dialog > .e-dlg-content {
1138
- padding: 0 !important;
1147
+ padding: 0 !important; /* stylelint-disable-line declaration-no-important */
1139
1148
  }
1140
1149
  .e-gantt-dialog .e-dlg-header-content {
1141
- border-bottom: 0 !important;
1150
+ border-bottom: 0 !important; /* stylelint-disable-line declaration-no-important */
1142
1151
  }
1143
1152
  .e-gantt-dialog .e-dlg-header-content {
1144
1153
  border-radius: 0px;
@@ -1146,8 +1155,8 @@
1146
1155
  }
1147
1156
  .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
1148
1157
  border-radius: 50%;
1149
- height: auto !important;
1150
- width: auto !important;
1158
+ height: auto !important; /* stylelint-disable-line declaration-no-important */
1159
+ width: auto !important; /* stylelint-disable-line declaration-no-important */
1151
1160
  }
1152
1161
 
1153
1162
  .e-icon-rowselect::before {
@@ -1155,9 +1164,9 @@
1155
1164
  }
1156
1165
 
1157
1166
  .e-ganttpopup {
1158
- -moz-user-select: none;
1159
- -ms-user-select: none;
1160
- -webkit-user-select: none;
1167
+ -moz-user-select: none; /* stylelint-disable-line property-no-vendor-prefix */
1168
+ -ms-user-select: none; /* stylelint-disable-line property-no-vendor-prefix */
1169
+ -webkit-user-select: none; /* stylelint-disable-line property-no-vendor-prefix */
1161
1170
  font-weight: normal;
1162
1171
  position: absolute;
1163
1172
  user-select: none;
@@ -1280,8 +1289,52 @@
1280
1289
  }
1281
1290
 
1282
1291
  .e-predecessor-tooltip {
1292
+ background-color: #000 !important; /* stylelint-disable-line declaration-no-important */
1293
+ border-color: #000 !important; /* stylelint-disable-line declaration-no-important */
1283
1294
  visibility: hidden;
1284
1295
  }
1296
+ .e-predecessor-tooltip .e-arrow-tip-outer.e-tip-bottom {
1297
+ border-top: 8px solid #000;
1298
+ }
1299
+ .e-predecessor-tooltip .e-arrow-tip-inner.e-tip-bottom {
1300
+ color: #000;
1301
+ }
1302
+ .e-predecessor-tooltip .e-left-btn:disabled {
1303
+ color: #A6A6A6 !important;
1304
+ }
1305
+ .e-predecessor-tooltip .e-right-btn:disabled {
1306
+ color: #A6A6A6 !important;
1307
+ }
1308
+ .e-predecessor-tooltip .e-tip-content {
1309
+ padding: 3px !important; /* stylelint-disable-line declaration-no-important */
1310
+ }
1311
+ .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type {
1312
+ background-color: #000;
1313
+ border-color: #000;
1314
+ color: #fff;
1315
+ font-size: 12px;
1316
+ line-height: 18px;
1317
+ padding: 0 8px 0 0;
1318
+ }
1319
+ .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:last-of-type {
1320
+ background-color: #000;
1321
+ border-color: #000;
1322
+ color: #fff;
1323
+ font-size: 12px;
1324
+ line-height: 18px;
1325
+ padding: 0 0 0 8px;
1326
+ }
1327
+
1328
+ .e-predecessor-dialog {
1329
+ background-color: #f8f8f8;
1330
+ }
1331
+ .e-predecessor-dialog .e-dlg-content {
1332
+ background-color: #f8f8f8;
1333
+ padding: 10px 9px 9px 14px !important;
1334
+ font-size: 12px;
1335
+ font-weight: 400;
1336
+ line-height: 1.8;
1337
+ }
1285
1338
 
1286
1339
  /*! Gantt theme */
1287
1340
  .e-gantt .e-gantt-splitter {
@@ -1311,7 +1364,7 @@
1311
1364
  border-top-right-radius: 0px;
1312
1365
  }
1313
1366
  .e-gantt .e-grid .e-focused:not(.e-menu-item) {
1314
- box-shadow: 0 0 0 1px #dadada inset !important;
1367
+ box-shadow: 0 0 0 1px #dadada inset !important; /* stylelint-disable-line declaration-no-important */
1315
1368
  }
1316
1369
  .e-gantt .e-temp-content {
1317
1370
  border-color: #414040;
@@ -1326,7 +1379,7 @@
1326
1379
  border-color: #414040;
1327
1380
  }
1328
1381
  .e-gantt .e-gantt-tree-grid-pane .e-timeline-single-header-outer-div {
1329
- height: 45px !important;
1382
+ height: 45px !important; /* stylelint-disable-line declaration-no-important */
1330
1383
  }
1331
1384
  .e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active {
1332
1385
  background: #514f4f;
@@ -1350,7 +1403,7 @@
1350
1403
  line-height: 46px;
1351
1404
  }
1352
1405
  .e-gantt .e-gantt-chart .e-timeline-single-header-outer-div {
1353
- height: 46px !important;
1406
+ height: 46px !important; /* stylelint-disable-line declaration-no-important */
1354
1407
  }
1355
1408
  .e-gantt .e-gantt-chart .e-timeline-top-header-cell {
1356
1409
  height: 32px;
@@ -1640,73 +1693,73 @@
1640
1693
  color: transparent;
1641
1694
  }
1642
1695
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-task-label {
1643
- color: transparent !important;
1696
+ color: transparent !important; /* stylelint-disable-line declaration-no-important */
1644
1697
  }
1645
1698
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-line {
1646
- border-color: #8A8A8A !important;
1699
+ border-color: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
1647
1700
  }
1648
1701
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-connector-line-right-arrow {
1649
- border-left-color: #8A8A8A !important;
1702
+ border-left-color: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
1650
1703
  }
1651
1704
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-connector-line-left-arrow {
1652
- border-right-color: #8A8A8A !important;
1705
+ border-right-color: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
1653
1706
  }
1654
1707
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-child-taskbar-inner-div {
1655
- background: #D5D5D5 !important;
1656
- border: #D5D5D5 !important;
1708
+ background: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
1709
+ border: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
1657
1710
  }
1658
1711
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-child-progressbar-inner-div {
1659
- background-color: transparent !important;
1660
- border: transparent !important;
1712
+ background-color: transparent !important; /* stylelint-disable-line declaration-no-important */
1713
+ border: transparent !important; /* stylelint-disable-line declaration-no-important */
1661
1714
  }
1662
1715
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-milestone-top {
1663
- border-bottom-color: #D5D5D5 !important;
1716
+ border-bottom-color: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
1664
1717
  }
1665
1718
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-milestone-bottom {
1666
- border-top-color: #D5D5D5 !important;
1719
+ border-top-color: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
1667
1720
  }
1668
1721
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-parent-taskbar-inner-div {
1669
- background-color: #8A8A8A !important;
1670
- border: #8A8A8A !important;
1722
+ background-color: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
1723
+ border: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
1671
1724
  }
1672
1725
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-parent-progressbar-inner-div {
1673
- background-color: transparent !important;
1674
- border: transparent !important;
1726
+ background-color: transparent !important; /* stylelint-disable-line declaration-no-important */
1727
+ border: transparent !important; /* stylelint-disable-line declaration-no-important */
1675
1728
  }
1676
1729
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-gantt-child-taskbar-inner-div {
1677
- background: #0063ad !important;
1678
- border: #0063ad !important;
1730
+ background: #0063ad !important; /* stylelint-disable-line declaration-no-important */
1731
+ border: #0063ad !important; /* stylelint-disable-line declaration-no-important */
1679
1732
  }
1680
1733
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-milestone-top {
1681
- border-bottom-color: #0063ad !important;
1734
+ border-bottom-color: #0063ad !important; /* stylelint-disable-line declaration-no-important */
1682
1735
  }
1683
1736
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-milestone-bottom {
1684
- border-top-color: #0063ad !important;
1737
+ border-top-color: #0063ad !important; /* stylelint-disable-line declaration-no-important */
1685
1738
  }
1686
1739
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-gantt-child-taskbar-inner-div {
1687
- background: #33a7ff !important;
1688
- border: #33a7ff !important;
1740
+ background: #33a7ff !important; /* stylelint-disable-line declaration-no-important */
1741
+ border: #33a7ff !important; /* stylelint-disable-line declaration-no-important */
1689
1742
  }
1690
1743
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-milestone-top {
1691
- border-bottom-color: #33a7ff !important;
1744
+ border-bottom-color: #33a7ff !important; /* stylelint-disable-line declaration-no-important */
1692
1745
  }
1693
1746
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-milestone-bottom {
1694
- border-top-color: #33a7ff !important;
1747
+ border-top-color: #33a7ff !important; /* stylelint-disable-line declaration-no-important */
1695
1748
  }
1696
1749
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-line {
1697
- border-color: #0063ad !important;
1750
+ border-color: #0063ad !important; /* stylelint-disable-line declaration-no-important */
1698
1751
  }
1699
1752
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-connector-line-right-arrow {
1700
- border-left-color: #0063ad !important;
1753
+ border-left-color: #0063ad !important; /* stylelint-disable-line declaration-no-important */
1701
1754
  }
1702
1755
  .e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-connector-line-left-arrow {
1703
- border-right-color: #0063ad !important;
1756
+ border-right-color: #0063ad !important; /* stylelint-disable-line declaration-no-important */
1704
1757
  }
1705
1758
  .e-gantt .e-icons {
1706
1759
  color: #dadada;
1707
1760
  }
1708
1761
  .e-gantt .e-grid .e-icons:not(.e-stop):not(.e-check):not(.e-icon-left):not(.e-date-icon) {
1709
- color: #dadada !important;
1762
+ color: #dadada !important; /* stylelint-disable-line declaration-no-important */
1710
1763
  }
1711
1764
 
1712
1765
  .e-gantt-dialog .e-dlg-header {