@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/bootstrap.css
CHANGED
|
@@ -282,8 +282,7 @@
|
|
|
282
282
|
width: 40px;
|
|
283
283
|
}
|
|
284
284
|
|
|
285
|
-
/*! component's theme wise override definitions and variables */
|
|
286
|
-
/*! Bootstrap theme definition's */
|
|
285
|
+
/*! component's theme wise override definitions and variables */ /*! Bootstrap theme definition's */
|
|
287
286
|
/*! component's theme wise override definitions and variables */
|
|
288
287
|
/*! Horizontal Tab */
|
|
289
288
|
/*! Bootstrap specific themes definition's */
|
|
@@ -307,6 +306,9 @@
|
|
|
307
306
|
.e-gantt .e-add::before {
|
|
308
307
|
content: "\e823";
|
|
309
308
|
}
|
|
309
|
+
.e-gantt .e-critical-path::before {
|
|
310
|
+
content: "\e93a";
|
|
311
|
+
}
|
|
310
312
|
.e-gantt .e-edit::before {
|
|
311
313
|
content: "\e944";
|
|
312
314
|
}
|
|
@@ -387,26 +389,219 @@
|
|
|
387
389
|
content: "\e903";
|
|
388
390
|
}
|
|
389
391
|
|
|
392
|
+
.e-gantt-tooltip-arrow-left::before {
|
|
393
|
+
content: "\e85b";
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
.e-gantt-tooltip-arrow-right::before {
|
|
397
|
+
content: "\e85f";
|
|
398
|
+
}
|
|
399
|
+
|
|
390
400
|
.e-bigger .e-gantt .e-gantt-chart .e-timeline-header-container {
|
|
391
401
|
height: 64px;
|
|
392
402
|
}
|
|
393
403
|
.e-bigger .e-gantt .e-gantt-chart .e-timeline-top-header-cell {
|
|
394
404
|
height: 32px;
|
|
395
405
|
}
|
|
406
|
+
.e-bigger .e-gantt .e-gantt-chart .e-event-markers .e-span-label {
|
|
407
|
+
border-radius: 4px !important;
|
|
408
|
+
font-size: 12px !important;
|
|
409
|
+
height: 26px !important;
|
|
410
|
+
padding: 4px 11px 4px 9px !important;
|
|
411
|
+
top: 65px !important;
|
|
412
|
+
}
|
|
413
|
+
.e-bigger .e-gantt .e-gantt-chart .e-event-markers .e-gantt-right-arrow {
|
|
414
|
+
border-bottom: 6px solid transparent;
|
|
415
|
+
border-right: 6px solid transparent;
|
|
416
|
+
border-right-color: #8a6d3b;
|
|
417
|
+
border-top: 6px solid transparent;
|
|
418
|
+
top: 73px !important;
|
|
419
|
+
}
|
|
420
|
+
.e-bigger .e-gantt .e-gantt-chart .e-left-resize-gripper::before,
|
|
421
|
+
.e-bigger .e-gantt .e-gantt-chart .e-right-resize-gripper::before {
|
|
422
|
+
content: "\e92c";
|
|
423
|
+
}
|
|
424
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right,
|
|
425
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left,
|
|
426
|
+
.e-bigger .e-gantt .e-gantt-chart .e-right-connectorpoint-outer-div,
|
|
427
|
+
.e-bigger .e-gantt .e-gantt-chart .e-left-connectorpoint-outer-div {
|
|
428
|
+
border-radius: 50%;
|
|
429
|
+
display: inline-block;
|
|
430
|
+
position: absolute;
|
|
431
|
+
}
|
|
432
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover,
|
|
433
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
|
|
434
|
+
border-style: solid;
|
|
435
|
+
border-width: 1px;
|
|
436
|
+
box-sizing: content-box;
|
|
437
|
+
cursor: pointer;
|
|
438
|
+
display: inline-block;
|
|
439
|
+
}
|
|
440
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover,
|
|
441
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
|
|
442
|
+
background-color: #21527d;
|
|
443
|
+
border-color: #fff;
|
|
444
|
+
}
|
|
445
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover:hover,
|
|
446
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover:hover {
|
|
447
|
+
background-color: #21527d;
|
|
448
|
+
border-color: #fff;
|
|
449
|
+
outline: 2px solid #75acdb;
|
|
450
|
+
}
|
|
451
|
+
.e-bigger .e-gantt .e-tab .e-content {
|
|
452
|
+
height: 242px !important;
|
|
453
|
+
}
|
|
396
454
|
.e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
|
|
397
455
|
height: 63px !important;
|
|
398
456
|
}
|
|
457
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header-content {
|
|
458
|
+
padding: 16px 4px 16px 16px !important;
|
|
459
|
+
}
|
|
460
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
461
|
+
left: 0 !important;
|
|
462
|
+
}
|
|
463
|
+
.e-bigger .e-gantt .e-dialog .e-btn .e-btn-icon.e-icon-dlg-close {
|
|
464
|
+
font-size: 12px !important;
|
|
465
|
+
}
|
|
466
|
+
.e-bigger .e-gantt .e-dialog .e-footer-content {
|
|
467
|
+
height: 70px !important;
|
|
468
|
+
padding: 16px !important;
|
|
469
|
+
}
|
|
470
|
+
.e-bigger .e-gantt .e-dialog .e-footer-content .e-btn {
|
|
471
|
+
margin-left: 12px;
|
|
472
|
+
}
|
|
473
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header {
|
|
474
|
+
line-height: 28px;
|
|
475
|
+
}
|
|
476
|
+
.e-bigger .e-gantt .e-filter-popup {
|
|
477
|
+
width: 350px !important;
|
|
478
|
+
}
|
|
479
|
+
.e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
|
|
480
|
+
padding: 16px 0 0 !important;
|
|
481
|
+
}
|
|
482
|
+
.e-bigger .e-gantt .e-filter-popup .e-dlg-content {
|
|
483
|
+
border-radius: 6px !important;
|
|
484
|
+
padding: 32px 16px 16px !important;
|
|
485
|
+
}
|
|
399
486
|
.e-bigger .e-columnmenu {
|
|
400
487
|
top: 40px;
|
|
401
488
|
}
|
|
489
|
+
.e-bigger .e-gantt-dialog {
|
|
490
|
+
border-radius: 6px;
|
|
491
|
+
width: 556px !important;
|
|
492
|
+
}
|
|
493
|
+
.e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
494
|
+
padding: 0 16px !important;
|
|
495
|
+
}
|
|
402
496
|
.e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(odd) {
|
|
403
|
-
padding: 16px
|
|
497
|
+
padding: 16px 12px 0 16px;
|
|
404
498
|
}
|
|
405
499
|
.e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(even) {
|
|
406
|
-
padding: 16px
|
|
500
|
+
padding: 16px 16px 0 12px;
|
|
407
501
|
}
|
|
408
502
|
.e-bigger .e-gantt-dialog .e-edit-form-row.e-scroll .e-edit-form-column:nth-child(even) {
|
|
409
|
-
padding: 16px 18px 0
|
|
503
|
+
padding: 16px 18px 0 9px;
|
|
504
|
+
}
|
|
505
|
+
.e-bigger .e-gantt-dialog .e-edit-form-row {
|
|
506
|
+
height: 242px !important;
|
|
507
|
+
}
|
|
508
|
+
.e-bigger .e-gantt-dialog .e-edit-form-column {
|
|
509
|
+
height: 76px !important;
|
|
510
|
+
}
|
|
511
|
+
.e-bigger .e-gantt-dialog .e-dlg-header-content {
|
|
512
|
+
border-bottom: 0 !important;
|
|
513
|
+
}
|
|
514
|
+
.e-bigger .e-gantt-dialog > .e-dlg-content {
|
|
515
|
+
border-radius: 0 !important;
|
|
516
|
+
}
|
|
517
|
+
.e-bigger .e-gantt-dialog .e-dlg-header-content {
|
|
518
|
+
border-radius: 6px 6px 0px 0px;
|
|
519
|
+
padding-bottom: 20px;
|
|
520
|
+
}
|
|
521
|
+
.e-bigger .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
522
|
+
border-radius: 50%;
|
|
523
|
+
height: auto !important;
|
|
524
|
+
width: auto;
|
|
525
|
+
}
|
|
526
|
+
.e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
527
|
+
margin-left: 5px !important;
|
|
528
|
+
}
|
|
529
|
+
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
530
|
+
font-size: 16px !important;
|
|
531
|
+
}
|
|
532
|
+
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
533
|
+
min-height: 35px !important;
|
|
534
|
+
min-width: 35.82px !important;
|
|
535
|
+
}
|
|
536
|
+
.e-bigger .e-gantt-dialog .e-btn.e-flat {
|
|
537
|
+
line-height: 24px;
|
|
538
|
+
padding: 6px 16px 6px 15px !important;
|
|
539
|
+
}
|
|
540
|
+
.e-bigger .e-gantt-dialog .e-btn.e-primary {
|
|
541
|
+
padding: 6px 21px 6px 23px !important;
|
|
542
|
+
}
|
|
543
|
+
.e-bigger .e-gantt-dialog .e-datetime-wrapper .e-time-icon.e-icons::before {
|
|
544
|
+
font-size: 16px !important;
|
|
545
|
+
}
|
|
546
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text {
|
|
547
|
+
font-size: 14px;
|
|
548
|
+
line-height: 22px;
|
|
549
|
+
}
|
|
550
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input[disabled] ~ label.e-label-top.e-float-text {
|
|
551
|
+
font-size: 14px;
|
|
552
|
+
line-height: 22px;
|
|
553
|
+
}
|
|
554
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input {
|
|
555
|
+
height: 34px !important;
|
|
556
|
+
}
|
|
557
|
+
.e-bigger .e-gantt-dialog .e-numeric.e-control-wrapper.e-input-group .e-input-group-icon {
|
|
558
|
+
min-height: 35px !important;
|
|
559
|
+
min-width: 35.82px !important;
|
|
560
|
+
}
|
|
561
|
+
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-time-icon {
|
|
562
|
+
min-height: 35px !important;
|
|
563
|
+
min-width: 35.82px !important;
|
|
564
|
+
}
|
|
565
|
+
.e-bigger .e-gantt-dialog .e-input-group.e-control-wrapper {
|
|
566
|
+
height: 36px;
|
|
567
|
+
}
|
|
568
|
+
.e-bigger .e-gantt-dialog .e-input-group-icon.e-date-icon {
|
|
569
|
+
min-width: 36px !important;
|
|
570
|
+
}
|
|
571
|
+
.e-bigger .e-predecessor-tooltip {
|
|
572
|
+
background-color: #000;
|
|
573
|
+
}
|
|
574
|
+
.e-bigger .e-predecessor-tooltip .e-left-btn:disabled {
|
|
575
|
+
color: #adadad !important;
|
|
576
|
+
}
|
|
577
|
+
.e-bigger .e-predecessor-tooltip .e-right-btn:disabled {
|
|
578
|
+
color: #adadad !important;
|
|
579
|
+
}
|
|
580
|
+
.e-bigger .e-predecessor-tooltip .e-tip-content {
|
|
581
|
+
padding: 3px !important;
|
|
582
|
+
}
|
|
583
|
+
.e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type {
|
|
584
|
+
background-color: #000;
|
|
585
|
+
border-color: #000;
|
|
586
|
+
color: #fff;
|
|
587
|
+
font-size: 12px;
|
|
588
|
+
line-height: 18px;
|
|
589
|
+
padding: 0 8px 0 0;
|
|
590
|
+
}
|
|
591
|
+
.e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:last-of-type {
|
|
592
|
+
background-color: #000;
|
|
593
|
+
border-color: #000;
|
|
594
|
+
color: #fff;
|
|
595
|
+
font-size: 12px;
|
|
596
|
+
line-height: 18px;
|
|
597
|
+
padding: 0 0 0 8px;
|
|
598
|
+
}
|
|
599
|
+
.e-bigger .e-predecessor-dialog {
|
|
600
|
+
background-color: #f5f5f5;
|
|
601
|
+
}
|
|
602
|
+
.e-bigger .e-predecessor-dialog .e-dlg-content {
|
|
603
|
+
background-color: #f5f5f5;
|
|
604
|
+
padding: 10px 9px 9px 14px !important;
|
|
410
605
|
}
|
|
411
606
|
|
|
412
607
|
.e-gantt {
|
|
@@ -561,9 +756,11 @@
|
|
|
561
756
|
position: absolute;
|
|
562
757
|
}
|
|
563
758
|
.e-gantt .e-gantt-chart .e-chart-root-container .e-holiday-container {
|
|
759
|
+
height: 100%;
|
|
564
760
|
position: absolute;
|
|
565
761
|
}
|
|
566
762
|
.e-gantt .e-gantt-chart .e-chart-root-container .e-weekend-container {
|
|
763
|
+
height: 100%;
|
|
567
764
|
position: absolute;
|
|
568
765
|
}
|
|
569
766
|
.e-gantt .e-gantt-chart .e-timeline-header-container {
|
|
@@ -812,37 +1009,35 @@
|
|
|
812
1009
|
cursor: col-resize;
|
|
813
1010
|
}
|
|
814
1011
|
.e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler {
|
|
815
|
-
border-style: solid;
|
|
816
1012
|
border-width: 1px;
|
|
817
1013
|
box-sizing: content-box;
|
|
818
1014
|
cursor: col-resize;
|
|
819
1015
|
height: 2px;
|
|
820
1016
|
position: absolute;
|
|
821
1017
|
top: 7px;
|
|
822
|
-
width: 12px;
|
|
823
1018
|
}
|
|
824
1019
|
.e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-element {
|
|
825
1020
|
border-bottom-style: solid;
|
|
826
|
-
border-bottom-width:
|
|
1021
|
+
border-bottom-width: 8px;
|
|
827
1022
|
border-left: 7px solid transparent;
|
|
828
1023
|
border-right: 7px solid transparent;
|
|
829
1024
|
cursor: col-resize;
|
|
830
1025
|
height: 0;
|
|
831
|
-
left:
|
|
1026
|
+
left: 0;
|
|
832
1027
|
position: absolute;
|
|
833
1028
|
top: -7px;
|
|
834
1029
|
width: 0;
|
|
835
1030
|
}
|
|
836
1031
|
.e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-after {
|
|
837
1032
|
border-bottom-style: solid;
|
|
838
|
-
border-bottom-width:
|
|
1033
|
+
border-bottom-width: 8px;
|
|
839
1034
|
border-left: 6px solid transparent;
|
|
840
1035
|
border-right: 6px solid transparent;
|
|
841
1036
|
cursor: col-resize;
|
|
842
1037
|
height: 0;
|
|
843
|
-
left:
|
|
1038
|
+
left: 1px;
|
|
844
1039
|
position: absolute;
|
|
845
|
-
top: -
|
|
1040
|
+
top: -7px;
|
|
846
1041
|
width: 0;
|
|
847
1042
|
}
|
|
848
1043
|
.e-gantt .e-gantt-chart .e-baseline-bar {
|
|
@@ -977,6 +1172,9 @@
|
|
|
977
1172
|
.e-gantt .e-gantt-chart .e-connector-line-hover {
|
|
978
1173
|
outline: 1px solid;
|
|
979
1174
|
}
|
|
1175
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-hover {
|
|
1176
|
+
outline: 1px solid;
|
|
1177
|
+
}
|
|
980
1178
|
.e-gantt .e-gantt-chart .e-connector-line-hover-z-index {
|
|
981
1179
|
z-index: 100;
|
|
982
1180
|
}
|
|
@@ -1269,6 +1467,10 @@
|
|
|
1269
1467
|
height: 100%;
|
|
1270
1468
|
}
|
|
1271
1469
|
|
|
1470
|
+
.e-predecessor-tooltip {
|
|
1471
|
+
visibility: hidden;
|
|
1472
|
+
}
|
|
1473
|
+
|
|
1272
1474
|
/*! Gantt theme */
|
|
1273
1475
|
.e-gantt .e-gantt-splitter {
|
|
1274
1476
|
border-color: #ddd;
|
|
@@ -1411,6 +1613,10 @@
|
|
|
1411
1613
|
background-color: #572A96;
|
|
1412
1614
|
border: 0px;
|
|
1413
1615
|
}
|
|
1616
|
+
.e-gantt .e-gantt-chart .e-gantt-critical-child-manualprogressbar {
|
|
1617
|
+
background-color: #572A96;
|
|
1618
|
+
border: 0px;
|
|
1619
|
+
}
|
|
1414
1620
|
.e-gantt .e-gantt-chart .e-holiday {
|
|
1415
1621
|
background: #eee;
|
|
1416
1622
|
}
|
|
@@ -1442,7 +1648,6 @@
|
|
|
1442
1648
|
}
|
|
1443
1649
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar {
|
|
1444
1650
|
background: linear-gradient(to right, rgba(49, 122, 185, 0.2), #317ab9 30%, #317ab9 70%, #317ab9 70%, rgba(49, 122, 185, 0.2) 100%);
|
|
1445
|
-
background-color: rgba(49, 122, 185, 0.2);
|
|
1446
1651
|
border: 0px;
|
|
1447
1652
|
border-radius: 4px;
|
|
1448
1653
|
}
|
|
@@ -1486,7 +1691,7 @@
|
|
|
1486
1691
|
}
|
|
1487
1692
|
.e-gantt .e-gantt-chart .e-connectorpoint-left-hover,
|
|
1488
1693
|
.e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
|
|
1489
|
-
background-color: #
|
|
1694
|
+
background-color: #21527d;
|
|
1490
1695
|
border-color: #fff;
|
|
1491
1696
|
}
|
|
1492
1697
|
.e-gantt .e-gantt-chart .e-connectorpoint-left-hover:hover,
|
|
@@ -1743,4 +1948,56 @@
|
|
|
1743
1948
|
}
|
|
1744
1949
|
.e-gantt.e-device .e-backarrowspan {
|
|
1745
1950
|
color: #000;
|
|
1951
|
+
}
|
|
1952
|
+
|
|
1953
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line {
|
|
1954
|
+
border-color: #d13438;
|
|
1955
|
+
}
|
|
1956
|
+
|
|
1957
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line-right-arrow {
|
|
1958
|
+
border-left-color: #d13438;
|
|
1959
|
+
}
|
|
1960
|
+
|
|
1961
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line-left-arrow {
|
|
1962
|
+
border-right-color: #d13438;
|
|
1963
|
+
}
|
|
1964
|
+
|
|
1965
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-hover {
|
|
1966
|
+
border-color: #f3d8da;
|
|
1967
|
+
outline-color: #f3d8da;
|
|
1968
|
+
}
|
|
1969
|
+
|
|
1970
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-right-arrow-hover {
|
|
1971
|
+
border-left-color: #f3d8da;
|
|
1972
|
+
}
|
|
1973
|
+
|
|
1974
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-left-arrow-hover {
|
|
1975
|
+
border-right-color: #f3d8da;
|
|
1976
|
+
}
|
|
1977
|
+
|
|
1978
|
+
.e-gantt .e-gantt-chart .e-gantt-child-critical-taskbar-inner-div {
|
|
1979
|
+
background-color: #F3D8DA;
|
|
1980
|
+
border: 1px solid #F3D8DA;
|
|
1981
|
+
border-radius: 4px;
|
|
1982
|
+
}
|
|
1983
|
+
|
|
1984
|
+
.e-gantt .e-gantt-chart .e-gantt-child-critical-progressbar-inner-div {
|
|
1985
|
+
background-color: #D13438;
|
|
1986
|
+
border: 1px solid #21527d;
|
|
1987
|
+
border-radius: 4px;
|
|
1988
|
+
}
|
|
1989
|
+
|
|
1990
|
+
.e-gantt .e-gantt-chart .e-gantt-critical-unscheduled-taskbar {
|
|
1991
|
+
background: linear-gradient(to right, rgba(255, 85, 85, 0.2), #D13438 30%, #D13438 70%, #D13438 70%, rgba(255, 85, 85, 0.2) 100%);
|
|
1992
|
+
background-color: rgba(255, 85, 85, 0.2);
|
|
1993
|
+
border: 0px;
|
|
1994
|
+
border-radius: 4px;
|
|
1995
|
+
}
|
|
1996
|
+
|
|
1997
|
+
.e-gantt .e-gantt-chart .e-critical-milestone-top {
|
|
1998
|
+
border-bottom-color: #D13438;
|
|
1999
|
+
}
|
|
2000
|
+
|
|
2001
|
+
.e-gantt .e-gantt-chart .e-critical-milestone-bottom {
|
|
2002
|
+
border-top-color: #D13438;
|
|
1746
2003
|
}
|