@syncfusion/ej2-gantt 20.1.58 → 20.2.36
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.
- package/CHANGELOG.md +37 -0
- package/dist/ej2-gantt.umd.min.js +2 -2
- package/dist/ej2-gantt.umd.min.js.map +1 -1
- package/dist/es6/ej2-gantt.es2015.js +1100 -74
- package/dist/es6/ej2-gantt.es2015.js.map +1 -1
- package/dist/es6/ej2-gantt.es5.js +1099 -71
- package/dist/es6/ej2-gantt.es5.js.map +1 -1
- package/dist/global/ej2-gantt.min.js +2 -2
- package/dist/global/ej2-gantt.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +18 -18
- package/src/gantt/actions/actions.d.ts +1 -0
- package/src/gantt/actions/actions.js +1 -0
- package/src/gantt/actions/cell-edit.js +5 -3
- package/src/gantt/actions/connector-line-edit.js +20 -6
- package/src/gantt/actions/context-menu.js +3 -4
- package/src/gantt/actions/critical-path.d.ts +26 -0
- package/src/gantt/actions/critical-path.js +735 -0
- package/src/gantt/actions/dependency.js +3 -0
- package/src/gantt/actions/dialog-edit.js +1 -1
- package/src/gantt/actions/edit.js +29 -3
- package/src/gantt/actions/filter.js +1 -1
- package/src/gantt/actions/keyboard.js +2 -2
- package/src/gantt/actions/selection.js +3 -0
- package/src/gantt/actions/taskbar-edit.js +6 -4
- package/src/gantt/actions/toolbar.js +22 -4
- package/src/gantt/base/css-constants.d.ts +12 -0
- package/src/gantt/base/css-constants.js +12 -0
- package/src/gantt/base/date-processor.d.ts +1 -1
- package/src/gantt/base/date-processor.js +8 -2
- package/src/gantt/base/enum.d.ts +3 -1
- package/src/gantt/base/gantt-chart.js +6 -2
- package/src/gantt/base/gantt-model.d.ts +8 -1
- package/src/gantt/base/gantt.d.ts +32 -1
- package/src/gantt/base/gantt.js +133 -5
- package/src/gantt/base/interface.d.ts +16 -0
- package/src/gantt/base/splitter.js +4 -0
- package/src/gantt/base/task-processor.js +19 -6
- package/src/gantt/base/tree-grid.js +1 -1
- package/src/gantt/export/export-helper.js +19 -6
- package/src/gantt/export/pdf-base/pdf-style/gantt-theme.js +16 -0
- package/src/gantt/renderer/chart-rows.js +16 -5
- package/src/gantt/renderer/nonworking-day.js +5 -2
- package/src/gantt/renderer/timeline.js +35 -14
- package/src/global.js +1 -1
- package/styles/bootstrap-dark.css +272 -14
- package/styles/bootstrap.css +271 -14
- package/styles/bootstrap4.css +273 -12
- package/styles/bootstrap5-dark.css +272 -15
- package/styles/bootstrap5.css +272 -15
- package/styles/fabric-dark.css +270 -12
- package/styles/fabric.css +276 -18
- package/styles/fluent-dark.css +272 -14
- package/styles/fluent.css +272 -14
- package/styles/gantt/_bootstrap-dark-definition.scss +59 -16
- package/styles/gantt/_bootstrap-definition.scss +57 -14
- package/styles/gantt/_bootstrap4-definition.scss +65 -21
- package/styles/gantt/_bootstrap5-definition.scss +55 -12
- package/styles/gantt/_fabric-dark-definition.scss +58 -15
- package/styles/gantt/_fabric-definition.scss +58 -15
- package/styles/gantt/_fluent-definition.scss +53 -10
- package/styles/gantt/_fusionnew-definition.scss +212 -0
- package/styles/gantt/_highcontrast-definition.scss +57 -14
- package/styles/gantt/_highcontrast-light-definition.scss +55 -12
- package/styles/gantt/_layout.scss +293 -7
- package/styles/gantt/_material-dark-definition.scss +60 -16
- package/styles/gantt/_material-definition.scss +65 -21
- package/styles/gantt/_material3-definition.scss +213 -0
- package/styles/gantt/_tailwind-definition.scss +52 -8
- package/styles/gantt/_theme.scss +56 -1
- package/styles/gantt/bootstrap-dark.css +272 -14
- package/styles/gantt/bootstrap.css +271 -14
- package/styles/gantt/bootstrap4.css +273 -12
- package/styles/gantt/bootstrap5-dark.css +272 -15
- package/styles/gantt/bootstrap5.css +272 -15
- package/styles/gantt/fabric-dark.css +270 -12
- package/styles/gantt/fabric.css +276 -18
- package/styles/gantt/fluent-dark.css +272 -14
- package/styles/gantt/fluent.css +272 -14
- package/styles/gantt/highcontrast-light.css +260 -13
- package/styles/gantt/highcontrast.css +271 -13
- package/styles/gantt/icons/_bootstrap-dark.scss +12 -1
- package/styles/gantt/icons/_bootstrap.scss +12 -1
- package/styles/gantt/icons/_bootstrap4.scss +12 -1
- package/styles/gantt/icons/_bootstrap5.scss +12 -0
- package/styles/gantt/icons/_fabric-dark.scss +12 -0
- package/styles/gantt/icons/_fabric.scss +12 -0
- package/styles/gantt/icons/_fluent.scss +12 -0
- package/styles/gantt/icons/_fusionnew.scss +120 -0
- package/styles/gantt/icons/_highcontrast.scss +12 -0
- package/styles/gantt/icons/_material-dark.scss +12 -0
- package/styles/gantt/icons/_material.scss +12 -0
- package/styles/gantt/icons/_material3.scss +124 -0
- package/styles/gantt/icons/_tailwind-dark.scss +12 -0
- package/styles/gantt/icons/_tailwind.scss +12 -0
- package/styles/gantt/material-dark.css +277 -12
- package/styles/gantt/material.css +279 -14
- package/styles/gantt/tailwind-dark.css +279 -15
- package/styles/gantt/tailwind.css +276 -12
- package/styles/highcontrast-light.css +260 -13
- package/styles/highcontrast.css +271 -13
- package/styles/material-dark.css +277 -12
- package/styles/material.css +279 -14
- package/styles/tailwind-dark.css +279 -15
- package/styles/tailwind.css +276 -12
package/styles/bootstrap5.css
CHANGED
|
@@ -179,8 +179,7 @@
|
|
|
179
179
|
border-left-width: 0;
|
|
180
180
|
}
|
|
181
181
|
|
|
182
|
-
/*! Toolbar's bootstrap5 theme wise override definitions and variables */
|
|
183
|
-
/*! Tab's bootstrap5 theme wise override definitions and variables */
|
|
182
|
+
/*! Toolbar's bootstrap5 theme wise override definitions and variables */ /*! Tab's bootstrap5 theme wise override definitions and variables */
|
|
184
183
|
/*! Horizontal Tab */
|
|
185
184
|
/*! Bootstrap specific themes definition's */
|
|
186
185
|
/*! Vertical Tab */
|
|
@@ -203,6 +202,9 @@
|
|
|
203
202
|
.e-gantt .e-add::before {
|
|
204
203
|
content: "\e805";
|
|
205
204
|
}
|
|
205
|
+
.e-gantt .e-critical-path::before {
|
|
206
|
+
content: "\e88c";
|
|
207
|
+
}
|
|
206
208
|
.e-gantt .e-edit::before {
|
|
207
209
|
content: "\e730";
|
|
208
210
|
}
|
|
@@ -283,26 +285,219 @@
|
|
|
283
285
|
content: "\e770";
|
|
284
286
|
}
|
|
285
287
|
|
|
288
|
+
.e-gantt-tooltip-arrow-left::before {
|
|
289
|
+
content: "\e773";
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
.e-gantt-tooltip-arrow-right::before {
|
|
293
|
+
content: "\e7f9";
|
|
294
|
+
}
|
|
295
|
+
|
|
286
296
|
.e-bigger .e-gantt .e-gantt-chart .e-timeline-header-container {
|
|
287
297
|
height: 64px;
|
|
288
298
|
}
|
|
289
299
|
.e-bigger .e-gantt .e-gantt-chart .e-timeline-top-header-cell {
|
|
290
300
|
height: 32px;
|
|
291
301
|
}
|
|
302
|
+
.e-bigger .e-gantt .e-gantt-chart .e-event-markers .e-span-label {
|
|
303
|
+
border-radius: 4px !important;
|
|
304
|
+
font-size: 12px !important;
|
|
305
|
+
height: 26px !important;
|
|
306
|
+
padding: 4px 11px 4px 9px !important;
|
|
307
|
+
top: 65px !important;
|
|
308
|
+
}
|
|
309
|
+
.e-bigger .e-gantt .e-gantt-chart .e-event-markers .e-gantt-right-arrow {
|
|
310
|
+
border-bottom: 6px solid transparent;
|
|
311
|
+
border-right: 6px solid transparent;
|
|
312
|
+
border-right-color: #fff3cd;
|
|
313
|
+
border-top: 6px solid transparent;
|
|
314
|
+
top: 73px !important;
|
|
315
|
+
}
|
|
316
|
+
.e-bigger .e-gantt .e-gantt-chart .e-left-resize-gripper::before,
|
|
317
|
+
.e-bigger .e-gantt .e-gantt-chart .e-right-resize-gripper::before {
|
|
318
|
+
content: "\e888";
|
|
319
|
+
}
|
|
320
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right,
|
|
321
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left,
|
|
322
|
+
.e-bigger .e-gantt .e-gantt-chart .e-right-connectorpoint-outer-div,
|
|
323
|
+
.e-bigger .e-gantt .e-gantt-chart .e-left-connectorpoint-outer-div {
|
|
324
|
+
border-radius: 50%;
|
|
325
|
+
display: inline-block;
|
|
326
|
+
position: absolute;
|
|
327
|
+
}
|
|
328
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover,
|
|
329
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
|
|
330
|
+
border-style: solid;
|
|
331
|
+
border-width: 1px;
|
|
332
|
+
box-sizing: content-box;
|
|
333
|
+
cursor: pointer;
|
|
334
|
+
display: inline-block;
|
|
335
|
+
}
|
|
336
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover,
|
|
337
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
|
|
338
|
+
background-color: #0257d5;
|
|
339
|
+
border-color: #fff;
|
|
340
|
+
}
|
|
341
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover:hover,
|
|
342
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover:hover {
|
|
343
|
+
background-color: #0257d5;
|
|
344
|
+
border-color: #fff;
|
|
345
|
+
outline: 2px solid #0d6efd;
|
|
346
|
+
}
|
|
347
|
+
.e-bigger .e-gantt .e-tab .e-content {
|
|
348
|
+
height: 250px !important;
|
|
349
|
+
}
|
|
292
350
|
.e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
|
|
293
351
|
height: 63px !important;
|
|
294
352
|
}
|
|
353
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header-content {
|
|
354
|
+
padding: 16px 4px 16px 16px !important;
|
|
355
|
+
}
|
|
356
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
357
|
+
left: 2px !important;
|
|
358
|
+
}
|
|
359
|
+
.e-bigger .e-gantt .e-dialog .e-btn .e-btn-icon.e-icon-dlg-close {
|
|
360
|
+
font-size: 14px !important;
|
|
361
|
+
}
|
|
362
|
+
.e-bigger .e-gantt .e-dialog .e-footer-content {
|
|
363
|
+
height: 70px !important;
|
|
364
|
+
padding: 16px !important;
|
|
365
|
+
}
|
|
366
|
+
.e-bigger .e-gantt .e-dialog .e-footer-content .e-btn {
|
|
367
|
+
margin-left: 12px;
|
|
368
|
+
}
|
|
369
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header {
|
|
370
|
+
line-height: 28px;
|
|
371
|
+
}
|
|
372
|
+
.e-bigger .e-gantt .e-filter-popup {
|
|
373
|
+
width: 350px !important;
|
|
374
|
+
}
|
|
375
|
+
.e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
|
|
376
|
+
padding: 16px 0 0 !important;
|
|
377
|
+
}
|
|
378
|
+
.e-bigger .e-gantt .e-filter-popup .e-dlg-content {
|
|
379
|
+
border-radius: 6px !important;
|
|
380
|
+
padding: 32px 16px 16px !important;
|
|
381
|
+
}
|
|
295
382
|
.e-bigger .e-columnmenu {
|
|
296
383
|
top: 35px;
|
|
297
384
|
}
|
|
385
|
+
.e-bigger .e-gantt-dialog {
|
|
386
|
+
border-radius: 6px;
|
|
387
|
+
width: 556px !important;
|
|
388
|
+
}
|
|
389
|
+
.e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
390
|
+
padding: 0 16px !important;
|
|
391
|
+
}
|
|
298
392
|
.e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(odd) {
|
|
299
|
-
padding: 16px
|
|
393
|
+
padding: 16px 12px 0 16px;
|
|
300
394
|
}
|
|
301
395
|
.e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(even) {
|
|
302
|
-
padding: 16px
|
|
396
|
+
padding: 16px 16px 0 12px;
|
|
303
397
|
}
|
|
304
398
|
.e-bigger .e-gantt-dialog .e-edit-form-row.e-scroll .e-edit-form-column:nth-child(even) {
|
|
305
|
-
padding: 16px 18px 0
|
|
399
|
+
padding: 16px 18px 0 9px;
|
|
400
|
+
}
|
|
401
|
+
.e-bigger .e-gantt-dialog .e-edit-form-row {
|
|
402
|
+
height: 250px !important;
|
|
403
|
+
}
|
|
404
|
+
.e-bigger .e-gantt-dialog .e-edit-form-column {
|
|
405
|
+
height: 78px !important;
|
|
406
|
+
}
|
|
407
|
+
.e-bigger .e-gantt-dialog .e-dlg-header-content {
|
|
408
|
+
border-bottom: 0 !important;
|
|
409
|
+
}
|
|
410
|
+
.e-bigger .e-gantt-dialog > .e-dlg-content {
|
|
411
|
+
border-radius: 0 !important;
|
|
412
|
+
}
|
|
413
|
+
.e-bigger .e-gantt-dialog .e-dlg-header-content {
|
|
414
|
+
border-radius: 6px 6px 0px 0px;
|
|
415
|
+
padding-bottom: 12px;
|
|
416
|
+
}
|
|
417
|
+
.e-bigger .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
418
|
+
border-radius: 50%;
|
|
419
|
+
height: auto !important;
|
|
420
|
+
width: auto;
|
|
421
|
+
}
|
|
422
|
+
.e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
423
|
+
margin-left: 5px !important;
|
|
424
|
+
}
|
|
425
|
+
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
426
|
+
font-size: 16px !important;
|
|
427
|
+
}
|
|
428
|
+
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
429
|
+
min-height: 36px !important;
|
|
430
|
+
min-width: 35.82px !important;
|
|
431
|
+
}
|
|
432
|
+
.e-bigger .e-gantt-dialog .e-btn.e-flat {
|
|
433
|
+
line-height: 24px;
|
|
434
|
+
padding: 6px 16px 6px 15px !important;
|
|
435
|
+
}
|
|
436
|
+
.e-bigger .e-gantt-dialog .e-btn.e-primary {
|
|
437
|
+
padding: 6px 21px 6px 23px !important;
|
|
438
|
+
}
|
|
439
|
+
.e-bigger .e-gantt-dialog .e-datetime-wrapper .e-time-icon.e-icons::before {
|
|
440
|
+
font-size: 16px !important;
|
|
441
|
+
}
|
|
442
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text {
|
|
443
|
+
font-size: 14px;
|
|
444
|
+
line-height: 22px;
|
|
445
|
+
}
|
|
446
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input[disabled] ~ label.e-label-top.e-float-text {
|
|
447
|
+
font-size: 14px;
|
|
448
|
+
line-height: 22px;
|
|
449
|
+
}
|
|
450
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input {
|
|
451
|
+
height: 36px !important;
|
|
452
|
+
}
|
|
453
|
+
.e-bigger .e-gantt-dialog .e-numeric.e-control-wrapper.e-input-group .e-input-group-icon {
|
|
454
|
+
min-height: 36px !important;
|
|
455
|
+
min-width: 35.82px !important;
|
|
456
|
+
}
|
|
457
|
+
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-time-icon {
|
|
458
|
+
min-height: 36px !important;
|
|
459
|
+
min-width: 35.82px !important;
|
|
460
|
+
}
|
|
461
|
+
.e-bigger .e-gantt-dialog .e-input-group.e-control-wrapper {
|
|
462
|
+
height: 38px;
|
|
463
|
+
}
|
|
464
|
+
.e-bigger .e-gantt-dialog .e-input-group-icon.e-date-icon {
|
|
465
|
+
min-width: 36px !important;
|
|
466
|
+
}
|
|
467
|
+
.e-bigger .e-predecessor-tooltip {
|
|
468
|
+
background-color: #000;
|
|
469
|
+
}
|
|
470
|
+
.e-bigger .e-predecessor-tooltip .e-left-btn:disabled {
|
|
471
|
+
color: #adb5bd !important;
|
|
472
|
+
}
|
|
473
|
+
.e-bigger .e-predecessor-tooltip .e-right-btn:disabled {
|
|
474
|
+
color: #adb5bd !important;
|
|
475
|
+
}
|
|
476
|
+
.e-bigger .e-predecessor-tooltip .e-tip-content {
|
|
477
|
+
padding: 3px !important;
|
|
478
|
+
}
|
|
479
|
+
.e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type {
|
|
480
|
+
background-color: #000;
|
|
481
|
+
border-color: #000;
|
|
482
|
+
color: #fff;
|
|
483
|
+
font-size: 12px;
|
|
484
|
+
line-height: 18px;
|
|
485
|
+
padding: 0 8px 0 0;
|
|
486
|
+
}
|
|
487
|
+
.e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:last-of-type {
|
|
488
|
+
background-color: #000;
|
|
489
|
+
border-color: #000;
|
|
490
|
+
color: #fff;
|
|
491
|
+
font-size: 12px;
|
|
492
|
+
line-height: 18px;
|
|
493
|
+
padding: 0 0 0 8px;
|
|
494
|
+
}
|
|
495
|
+
.e-bigger .e-predecessor-dialog {
|
|
496
|
+
background-color: #fff;
|
|
497
|
+
}
|
|
498
|
+
.e-bigger .e-predecessor-dialog .e-dlg-content {
|
|
499
|
+
background-color: #fff;
|
|
500
|
+
padding: 10px 9px 9px 14px !important;
|
|
306
501
|
}
|
|
307
502
|
|
|
308
503
|
.e-gantt {
|
|
@@ -457,9 +652,11 @@
|
|
|
457
652
|
position: absolute;
|
|
458
653
|
}
|
|
459
654
|
.e-gantt .e-gantt-chart .e-chart-root-container .e-holiday-container {
|
|
655
|
+
height: 100%;
|
|
460
656
|
position: absolute;
|
|
461
657
|
}
|
|
462
658
|
.e-gantt .e-gantt-chart .e-chart-root-container .e-weekend-container {
|
|
659
|
+
height: 100%;
|
|
463
660
|
position: absolute;
|
|
464
661
|
}
|
|
465
662
|
.e-gantt .e-gantt-chart .e-timeline-header-container {
|
|
@@ -708,37 +905,35 @@
|
|
|
708
905
|
cursor: col-resize;
|
|
709
906
|
}
|
|
710
907
|
.e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler {
|
|
711
|
-
border-style: solid;
|
|
712
908
|
border-width: 1px;
|
|
713
909
|
box-sizing: content-box;
|
|
714
910
|
cursor: col-resize;
|
|
715
911
|
height: 2px;
|
|
716
912
|
position: absolute;
|
|
717
913
|
top: 7px;
|
|
718
|
-
width: 12px;
|
|
719
914
|
}
|
|
720
915
|
.e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-element {
|
|
721
916
|
border-bottom-style: solid;
|
|
722
|
-
border-bottom-width:
|
|
917
|
+
border-bottom-width: 8px;
|
|
723
918
|
border-left: 7px solid transparent;
|
|
724
919
|
border-right: 7px solid transparent;
|
|
725
920
|
cursor: col-resize;
|
|
726
921
|
height: 0;
|
|
727
|
-
left:
|
|
922
|
+
left: 0;
|
|
728
923
|
position: absolute;
|
|
729
924
|
top: -7px;
|
|
730
925
|
width: 0;
|
|
731
926
|
}
|
|
732
927
|
.e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-after {
|
|
733
928
|
border-bottom-style: solid;
|
|
734
|
-
border-bottom-width:
|
|
929
|
+
border-bottom-width: 8px;
|
|
735
930
|
border-left: 6px solid transparent;
|
|
736
931
|
border-right: 6px solid transparent;
|
|
737
932
|
cursor: col-resize;
|
|
738
933
|
height: 0;
|
|
739
|
-
left:
|
|
934
|
+
left: 1px;
|
|
740
935
|
position: absolute;
|
|
741
|
-
top: -
|
|
936
|
+
top: -7px;
|
|
742
937
|
width: 0;
|
|
743
938
|
}
|
|
744
939
|
.e-gantt .e-gantt-chart .e-baseline-bar {
|
|
@@ -873,6 +1068,9 @@
|
|
|
873
1068
|
.e-gantt .e-gantt-chart .e-connector-line-hover {
|
|
874
1069
|
outline: 1px solid;
|
|
875
1070
|
}
|
|
1071
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-hover {
|
|
1072
|
+
outline: 1px solid;
|
|
1073
|
+
}
|
|
876
1074
|
.e-gantt .e-gantt-chart .e-connector-line-hover-z-index {
|
|
877
1075
|
z-index: 100;
|
|
878
1076
|
}
|
|
@@ -1165,6 +1363,10 @@
|
|
|
1165
1363
|
height: 100%;
|
|
1166
1364
|
}
|
|
1167
1365
|
|
|
1366
|
+
.e-predecessor-tooltip {
|
|
1367
|
+
visibility: hidden;
|
|
1368
|
+
}
|
|
1369
|
+
|
|
1168
1370
|
/*! Gantt theme */
|
|
1169
1371
|
.e-gantt .e-gantt-splitter {
|
|
1170
1372
|
border-color: #dee2e6;
|
|
@@ -1307,6 +1509,10 @@
|
|
|
1307
1509
|
background-color: #198754;
|
|
1308
1510
|
border: 0px;
|
|
1309
1511
|
}
|
|
1512
|
+
.e-gantt .e-gantt-chart .e-gantt-critical-child-manualprogressbar {
|
|
1513
|
+
background-color: #198754;
|
|
1514
|
+
border: 0px;
|
|
1515
|
+
}
|
|
1310
1516
|
.e-gantt .e-gantt-chart .e-holiday {
|
|
1311
1517
|
background: #f8f9fa;
|
|
1312
1518
|
}
|
|
@@ -1338,7 +1544,6 @@
|
|
|
1338
1544
|
}
|
|
1339
1545
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar {
|
|
1340
1546
|
background: linear-gradient(to right, #86b7fe, #0d6efd 30%, #0d6efd 70%, #0d6efd 70%, #86b7fe 100%);
|
|
1341
|
-
background-color: rgba(63, 81, 181, 0.2);
|
|
1342
1547
|
border: 0px;
|
|
1343
1548
|
border-radius: 4px;
|
|
1344
1549
|
}
|
|
@@ -1382,7 +1587,7 @@
|
|
|
1382
1587
|
}
|
|
1383
1588
|
.e-gantt .e-gantt-chart .e-connectorpoint-left-hover,
|
|
1384
1589
|
.e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
|
|
1385
|
-
background-color: #
|
|
1590
|
+
background-color: #0257d5;
|
|
1386
1591
|
border-color: #fff;
|
|
1387
1592
|
}
|
|
1388
1593
|
.e-gantt .e-gantt-chart .e-connectorpoint-left-hover:hover,
|
|
@@ -1585,7 +1790,7 @@
|
|
|
1585
1790
|
color: #6c757d;
|
|
1586
1791
|
}
|
|
1587
1792
|
.e-gantt .e-grid .e-icons:not(.e-stop):not(.e-check):not(.e-icon-left):not(.e-date-icon) {
|
|
1588
|
-
color:
|
|
1793
|
+
color: #6c757d !important;
|
|
1589
1794
|
}
|
|
1590
1795
|
|
|
1591
1796
|
.e-gantt-dialog .e-dlg-header {
|
|
@@ -1639,4 +1844,56 @@
|
|
|
1639
1844
|
}
|
|
1640
1845
|
.e-gantt.e-device .e-backarrowspan {
|
|
1641
1846
|
color: #000;
|
|
1847
|
+
}
|
|
1848
|
+
|
|
1849
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line {
|
|
1850
|
+
border-color: #dc3545;
|
|
1851
|
+
}
|
|
1852
|
+
|
|
1853
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line-right-arrow {
|
|
1854
|
+
border-left-color: #dc3545;
|
|
1855
|
+
}
|
|
1856
|
+
|
|
1857
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line-left-arrow {
|
|
1858
|
+
border-right-color: #dc3545;
|
|
1859
|
+
}
|
|
1860
|
+
|
|
1861
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-hover {
|
|
1862
|
+
border-color: #f8d7da;
|
|
1863
|
+
outline-color: #f8d7da;
|
|
1864
|
+
}
|
|
1865
|
+
|
|
1866
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-right-arrow-hover {
|
|
1867
|
+
border-left-color: #f8d7da;
|
|
1868
|
+
}
|
|
1869
|
+
|
|
1870
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-left-arrow-hover {
|
|
1871
|
+
border-right-color: #f8d7da;
|
|
1872
|
+
}
|
|
1873
|
+
|
|
1874
|
+
.e-gantt .e-gantt-chart .e-gantt-child-critical-taskbar-inner-div {
|
|
1875
|
+
background-color: #f8d7da;
|
|
1876
|
+
border: 1px solid #f8d7da;
|
|
1877
|
+
border-radius: 4px;
|
|
1878
|
+
}
|
|
1879
|
+
|
|
1880
|
+
.e-gantt .e-gantt-chart .e-gantt-child-critical-progressbar-inner-div {
|
|
1881
|
+
background-color: #dc3545;
|
|
1882
|
+
border: 0px;
|
|
1883
|
+
border-radius: 4px;
|
|
1884
|
+
}
|
|
1885
|
+
|
|
1886
|
+
.e-gantt .e-gantt-chart .e-gantt-critical-unscheduled-taskbar {
|
|
1887
|
+
background: linear-gradient(to right, rgba(255, 85, 85, 0.2), #dc3545 30%, #dc3545 70%, #dc3545 70%, rgba(255, 85, 85, 0.2) 100%);
|
|
1888
|
+
background-color: rgba(255, 85, 85, 0.2);
|
|
1889
|
+
border: 0px;
|
|
1890
|
+
border-radius: 4px;
|
|
1891
|
+
}
|
|
1892
|
+
|
|
1893
|
+
.e-gantt .e-gantt-chart .e-critical-milestone-top {
|
|
1894
|
+
border-bottom-color: #dc3545;
|
|
1895
|
+
}
|
|
1896
|
+
|
|
1897
|
+
.e-gantt .e-gantt-chart .e-critical-milestone-bottom {
|
|
1898
|
+
border-top-color: #dc3545;
|
|
1642
1899
|
}
|