@syncfusion/ej2-angular-gantt 20.1.59 → 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/esm2020/public_api.mjs +3 -0
- package/esm2020/src/gantt/adddialogfields.directive.mjs +58 -0
- package/esm2020/src/gantt/columns.directive.mjs +72 -0
- package/esm2020/src/gantt/dayworkingtime.directive.mjs +58 -0
- package/esm2020/src/gantt/editdialogfields.directive.mjs +58 -0
- package/esm2020/src/gantt/eventmarkers.directive.mjs +57 -0
- package/esm2020/src/gantt/gantt-all.module.mjs +68 -0
- package/esm2020/src/gantt/gantt.component.mjs +248 -0
- package/esm2020/src/gantt/gantt.module.mjs +79 -0
- package/esm2020/src/gantt/holidays.directive.mjs +58 -0
- package/esm2020/src/index.mjs +11 -0
- package/esm2020/syncfusion-ej2-angular-gantt.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-gantt.mjs +724 -0
- package/fesm2015/syncfusion-ej2-angular-gantt.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-gantt.mjs +724 -0
- package/fesm2020/syncfusion-ej2-angular-gantt.mjs.map +1 -0
- package/package.json +29 -15
- package/schematics/utils/lib-details.ts +2 -2
- package/src/gantt/adddialogfields.directive.d.ts +5 -0
- package/src/gantt/columns.directive.d.ts +5 -0
- package/src/gantt/dayworkingtime.directive.d.ts +5 -0
- package/src/gantt/editdialogfields.directive.d.ts +5 -0
- package/src/gantt/eventmarkers.directive.d.ts +5 -0
- package/src/gantt/gantt-all.module.d.ts +6 -0
- package/src/gantt/gantt.component.d.ts +3 -0
- package/src/gantt/gantt.module.d.ts +12 -0
- package/src/gantt/holidays.directive.d.ts +5 -0
- package/styles/bootstrap-dark.css +154 -91
- package/styles/bootstrap.css +151 -88
- package/styles/bootstrap4.css +152 -89
- package/styles/bootstrap5-dark.css +156 -93
- package/styles/bootstrap5.css +156 -93
- package/styles/fabric-dark.css +153 -90
- package/styles/fabric.css +158 -95
- package/styles/fluent-dark.css +156 -93
- package/styles/fluent.css +156 -93
- package/styles/gantt/_all.scss +2 -0
- package/styles/gantt/_bootstrap-dark-definition.scss +207 -0
- package/styles/gantt/_bootstrap-definition.scss +208 -0
- package/styles/gantt/_bootstrap4-definition.scss +210 -0
- package/styles/gantt/_bootstrap5-dark-definition.scss +1 -0
- package/styles/gantt/_bootstrap5-definition.scss +213 -0
- package/styles/gantt/_fabric-dark-definition.scss +208 -0
- package/styles/gantt/_fabric-definition.scss +208 -0
- package/styles/gantt/_fluent-dark-definition.scss +1 -0
- package/styles/gantt/_fluent-definition.scss +213 -0
- package/styles/gantt/_fusionnew-definition.scss +212 -0
- package/styles/gantt/_highcontrast-definition.scss +208 -0
- package/styles/gantt/_highcontrast-light-definition.scss +208 -0
- package/styles/gantt/_layout.scss +1378 -0
- package/styles/gantt/_material-dark-definition.scss +209 -0
- package/styles/gantt/_material-definition.scss +209 -0
- package/styles/gantt/_material3-definition.scss +213 -0
- package/styles/gantt/_tailwind-dark-definition.scss +1 -0
- package/styles/gantt/_tailwind-definition.scss +213 -0
- package/styles/gantt/_theme.scss +720 -0
- package/styles/gantt/bootstrap-dark.css +154 -91
- package/styles/gantt/bootstrap-dark.scss +22 -1
- package/styles/gantt/bootstrap.css +151 -88
- package/styles/gantt/bootstrap.scss +22 -1
- package/styles/gantt/bootstrap4.css +152 -89
- package/styles/gantt/bootstrap4.scss +22 -1
- package/styles/gantt/bootstrap5-dark.css +156 -93
- package/styles/gantt/bootstrap5-dark.scss +22 -1
- package/styles/gantt/bootstrap5.css +156 -93
- package/styles/gantt/bootstrap5.scss +22 -1
- package/styles/gantt/fabric-dark.css +153 -90
- package/styles/gantt/fabric-dark.scss +22 -1
- package/styles/gantt/fabric.css +158 -95
- package/styles/gantt/fabric.scss +22 -1
- package/styles/gantt/fluent-dark.css +156 -93
- package/styles/gantt/fluent-dark.scss +22 -1
- package/styles/gantt/fluent.css +156 -93
- package/styles/gantt/fluent.scss +22 -1
- package/styles/gantt/highcontrast-light.css +150 -90
- package/styles/gantt/highcontrast-light.scss +21 -1
- package/styles/gantt/highcontrast.css +153 -90
- package/styles/gantt/highcontrast.scss +22 -1
- package/styles/gantt/icons/_bootstrap-dark.scss +124 -0
- package/styles/gantt/icons/_bootstrap.scss +124 -0
- package/styles/gantt/icons/_bootstrap4.scss +124 -0
- package/styles/gantt/icons/_bootstrap5-dark.scss +1 -0
- package/styles/gantt/icons/_bootstrap5.scss +124 -0
- package/styles/gantt/icons/_fabric-dark.scss +124 -0
- package/styles/gantt/icons/_fabric.scss +124 -0
- package/styles/gantt/icons/_fluent-dark.scss +1 -0
- package/styles/gantt/icons/_fluent.scss +124 -0
- package/styles/gantt/icons/_fusionnew.scss +120 -0
- package/styles/gantt/icons/_highcontrast.scss +124 -0
- package/styles/gantt/icons/_material-dark.scss +124 -0
- package/styles/gantt/icons/_material.scss +124 -0
- package/styles/gantt/icons/_material3.scss +124 -0
- package/styles/gantt/icons/_tailwind-dark.scss +124 -0
- package/styles/gantt/icons/_tailwind.scss +124 -0
- package/styles/gantt/material-dark.css +157 -94
- package/styles/gantt/material-dark.scss +22 -1
- package/styles/gantt/material.css +159 -96
- package/styles/gantt/material.scss +22 -1
- package/styles/gantt/tailwind-dark.css +164 -101
- package/styles/gantt/tailwind-dark.scss +22 -1
- package/styles/gantt/tailwind.css +160 -97
- package/styles/gantt/tailwind.scss +22 -1
- package/styles/highcontrast-light.css +150 -90
- package/styles/highcontrast.css +153 -90
- package/styles/material-dark.css +157 -94
- package/styles/material.css +159 -96
- package/styles/tailwind-dark.css +164 -101
- package/styles/tailwind.css +160 -97
- package/{ej2-angular-gantt.d.ts → syncfusion-ej2-angular-gantt.d.ts} +1 -1
- package/@syncfusion/ej2-angular-gantt.es5.js +0 -803
- package/@syncfusion/ej2-angular-gantt.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-gantt.js +0 -755
- package/@syncfusion/ej2-angular-gantt.js.map +0 -1
- package/CHANGELOG.md +0 -1243
- package/dist/ej2-angular-gantt.umd.js +0 -897
- package/dist/ej2-angular-gantt.umd.js.map +0 -1
- package/dist/ej2-angular-gantt.umd.min.js +0 -11
- package/dist/ej2-angular-gantt.umd.min.js.map +0 -1
- package/ej2-angular-gantt.metadata.json +0 -1
- package/postinstall/tagchange.js +0 -18
- package/schematics/collection.json +0 -30
- package/schematics/generators/gantt-daymarkers/index.d.ts +0 -3
- package/schematics/generators/gantt-daymarkers/index.js +0 -8
- package/schematics/generators/gantt-daymarkers/sample-details.d.ts +0 -5
- package/schematics/generators/gantt-daymarkers/sample-details.js +0 -7
- package/schematics/generators/gantt-daymarkers/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -9
- package/schematics/generators/gantt-daymarkers/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -6
- package/schematics/generators/gantt-daymarkers/schema.d.ts +0 -3
- package/schematics/generators/gantt-daymarkers/schema.js +0 -2
- package/schematics/generators/gantt-daymarkers/schema.json +0 -124
- package/schematics/generators/gantt-default/index.d.ts +0 -3
- package/schematics/generators/gantt-default/index.js +0 -8
- package/schematics/generators/gantt-default/sample-details.d.ts +0 -5
- package/schematics/generators/gantt-default/sample-details.js +0 -7
- package/schematics/generators/gantt-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -5
- package/schematics/generators/gantt-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -4
- package/schematics/generators/gantt-default/schema.d.ts +0 -3
- package/schematics/generators/gantt-default/schema.js +0 -2
- package/schematics/generators/gantt-default/schema.json +0 -124
- package/schematics/generators/gantt-editing/index.d.ts +0 -3
- package/schematics/generators/gantt-editing/index.js +0 -8
- package/schematics/generators/gantt-editing/sample-details.d.ts +0 -5
- package/schematics/generators/gantt-editing/sample-details.js +0 -7
- package/schematics/generators/gantt-editing/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -4
- package/schematics/generators/gantt-editing/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -5
- package/schematics/generators/gantt-editing/schema.d.ts +0 -3
- package/schematics/generators/gantt-editing/schema.js +0 -2
- package/schematics/generators/gantt-editing/schema.json +0 -124
- package/schematics/generators/gantt-localdata/index.d.ts +0 -3
- package/schematics/generators/gantt-localdata/index.js +0 -8
- package/schematics/generators/gantt-localdata/sample-details.d.ts +0 -5
- package/schematics/generators/gantt-localdata/sample-details.js +0 -7
- package/schematics/generators/gantt-localdata/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -4
- package/schematics/generators/gantt-localdata/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -5
- package/schematics/generators/gantt-localdata/schema.d.ts +0 -3
- package/schematics/generators/gantt-localdata/schema.js +0 -2
- package/schematics/generators/gantt-localdata/schema.json +0 -124
- package/schematics/ng-add/index.d.ts +0 -3
- package/schematics/ng-add/index.js +0 -9
- package/schematics/ng-add/schema.d.ts +0 -13
- package/schematics/ng-add/schema.js +0 -2
- package/schematics/ng-add/schema.json +0 -34
- package/schematics/tsconfig.json +0 -25
- package/schematics/utils/lib-details.d.ts +0 -4
- package/schematics/utils/lib-details.js +0 -6
package/styles/bootstrap4.css
CHANGED
|
@@ -486,6 +486,9 @@
|
|
|
486
486
|
.e-gantt .e-add::before {
|
|
487
487
|
content: "\e759";
|
|
488
488
|
}
|
|
489
|
+
.e-gantt .e-critical-path::before {
|
|
490
|
+
content: "\e93a";
|
|
491
|
+
}
|
|
489
492
|
.e-gantt .e-edit::before {
|
|
490
493
|
content: "\e78f";
|
|
491
494
|
}
|
|
@@ -580,11 +583,13 @@
|
|
|
580
583
|
.e-bigger .e-gantt .e-gantt-chart .e-timeline-top-header-cell {
|
|
581
584
|
height: 32px;
|
|
582
585
|
}
|
|
583
|
-
.e-bigger .e-gantt .e-gantt-chart .e-taskbar-left-resizer
|
|
586
|
+
.e-bigger .e-gantt .e-gantt-chart .e-taskbar-left-resizer {
|
|
587
|
+
padding-right: 10px;
|
|
588
|
+
width: 25px;
|
|
589
|
+
}
|
|
584
590
|
.e-bigger .e-gantt .e-gantt-chart .e-taskbar-right-resizer {
|
|
585
591
|
padding-left: 10px;
|
|
586
|
-
|
|
587
|
-
width: 30px;
|
|
592
|
+
width: 25px;
|
|
588
593
|
}
|
|
589
594
|
.e-bigger .e-gantt .e-gantt-chart .e-event-markers .e-span-label {
|
|
590
595
|
border-radius: 4px !important;
|
|
@@ -631,33 +636,40 @@
|
|
|
631
636
|
border-color: #fff;
|
|
632
637
|
outline: 2px solid #007bff;
|
|
633
638
|
}
|
|
639
|
+
.e-bigger .e-gantt .e-tab .e-content {
|
|
640
|
+
height: 250px !important;
|
|
641
|
+
}
|
|
634
642
|
.e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
|
|
635
643
|
height: 63px !important;
|
|
636
644
|
}
|
|
637
|
-
.e-bigger .e-
|
|
638
|
-
|
|
639
|
-
border-color: #000000;
|
|
640
|
-
color: #F9FAFB;
|
|
641
|
-
font-size: 12px;
|
|
642
|
-
line-height: 18px;
|
|
643
|
-
padding: 0 8px 0 0;
|
|
645
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header-content {
|
|
646
|
+
padding: 16px 4px 16px 16px !important;
|
|
644
647
|
}
|
|
645
|
-
.e-bigger .e-
|
|
646
|
-
|
|
647
|
-
border-color: #000000;
|
|
648
|
-
color: #F9FAFB;
|
|
649
|
-
font-size: 12px;
|
|
650
|
-
line-height: 18px;
|
|
651
|
-
padding: 0 0 0 8px;
|
|
648
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
649
|
+
left: 1px !important;
|
|
652
650
|
}
|
|
653
|
-
.e-bigger .e-
|
|
654
|
-
|
|
651
|
+
.e-bigger .e-gantt .e-dialog .e-btn .e-btn-icon.e-icon-dlg-close {
|
|
652
|
+
font-size: 14px !important;
|
|
653
|
+
}
|
|
654
|
+
.e-bigger .e-gantt .e-dialog .e-footer-content {
|
|
655
|
+
height: 70px !important;
|
|
656
|
+
padding: 16px !important;
|
|
657
|
+
}
|
|
658
|
+
.e-bigger .e-gantt .e-dialog .e-footer-content .e-btn {
|
|
659
|
+
margin-left: 12px;
|
|
660
|
+
}
|
|
661
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header {
|
|
662
|
+
line-height: 28px;
|
|
655
663
|
}
|
|
656
|
-
.e-bigger .e-
|
|
664
|
+
.e-bigger .e-gantt .e-filter-popup {
|
|
665
|
+
width: 350px !important;
|
|
666
|
+
}
|
|
667
|
+
.e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
|
|
657
668
|
padding: 16px 0 0 !important;
|
|
658
669
|
}
|
|
659
|
-
.e-bigger .e-
|
|
660
|
-
|
|
670
|
+
.e-bigger .e-gantt .e-filter-popup .e-dlg-content {
|
|
671
|
+
border-radius: 6px !important;
|
|
672
|
+
padding: 32px 16px 16px !important;
|
|
661
673
|
}
|
|
662
674
|
.e-bigger .e-columnmenu {
|
|
663
675
|
top: 38px;
|
|
@@ -666,6 +678,9 @@
|
|
|
666
678
|
border-radius: 6px;
|
|
667
679
|
width: 556px !important;
|
|
668
680
|
}
|
|
681
|
+
.e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
682
|
+
padding: 0 16px !important;
|
|
683
|
+
}
|
|
669
684
|
.e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(odd) {
|
|
670
685
|
padding: 16px 12px 0 16px;
|
|
671
686
|
}
|
|
@@ -694,103 +709,93 @@
|
|
|
694
709
|
.e-bigger .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
695
710
|
border-radius: 50%;
|
|
696
711
|
height: auto !important;
|
|
697
|
-
width: auto
|
|
712
|
+
width: auto;
|
|
698
713
|
}
|
|
699
714
|
.e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
700
715
|
margin-left: 5px !important;
|
|
701
716
|
}
|
|
702
717
|
.e-bigger .e-gantt-dialog .e-icon-dlg-close {
|
|
703
|
-
color: #
|
|
704
|
-
}
|
|
705
|
-
.e-bigger .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
706
|
-
font-size: 16px !important;
|
|
718
|
+
color: #fff;
|
|
707
719
|
}
|
|
708
|
-
.e-bigger .e-float-input.e-control-wrapper {
|
|
720
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper {
|
|
709
721
|
width: 250px !important;
|
|
710
722
|
}
|
|
711
|
-
.e-bigger .e-
|
|
712
|
-
|
|
713
|
-
}
|
|
714
|
-
.e-bigger .e-predecessor-dialog {
|
|
715
|
-
background-color: #f8f8fa;
|
|
716
|
-
}
|
|
717
|
-
.e-bigger .e-predecessor-dialog .e-dlg-content {
|
|
718
|
-
background-color: #f8f8fa;
|
|
719
|
-
padding: 10px 9px 9px 14px !important;
|
|
720
|
-
}
|
|
721
|
-
.e-bigger .e-dialog .e-dlg-header-content {
|
|
722
|
-
padding: 16px 4px 16px 16px !important;
|
|
723
|
-
}
|
|
724
|
-
.e-bigger .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
725
|
-
left: 1px !important;
|
|
726
|
-
}
|
|
727
|
-
.e-bigger .e-dialog .e-btn .e-btn-icon.e-icon-dlg-close {
|
|
728
|
-
font-size: 14px !important;
|
|
729
|
-
}
|
|
730
|
-
.e-bigger .e-dialog .e-footer-content {
|
|
731
|
-
height: 70px !important;
|
|
732
|
-
padding: 16px !important;
|
|
733
|
-
}
|
|
734
|
-
.e-bigger .e-dialog .e-footer-content .e-btn {
|
|
735
|
-
margin-left: 12px;
|
|
723
|
+
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
724
|
+
font-size: 16px !important;
|
|
736
725
|
}
|
|
737
|
-
.e-bigger .e-dialog .e-
|
|
738
|
-
|
|
726
|
+
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
727
|
+
min-height: 35px !important;
|
|
728
|
+
min-width: 35.82px !important;
|
|
739
729
|
}
|
|
740
|
-
.e-bigger .e-
|
|
741
|
-
height:
|
|
730
|
+
.e-bigger .e-gantt-dialog .e-btn.e-flat {
|
|
731
|
+
line-height: 24px;
|
|
732
|
+
padding: 6px 16px 6px 15px !important;
|
|
742
733
|
}
|
|
743
|
-
.e-bigger .e-
|
|
744
|
-
|
|
734
|
+
.e-bigger .e-gantt-dialog .e-btn.e-primary {
|
|
735
|
+
padding: 6px 21px 6px 23px !important;
|
|
745
736
|
}
|
|
746
|
-
.e-bigger .e-
|
|
747
|
-
|
|
748
|
-
padding: 32px 16px 16px !important;
|
|
737
|
+
.e-bigger .e-gantt-dialog .e-datetime-wrapper .e-time-icon.e-icons::before {
|
|
738
|
+
font-size: 16px !important;
|
|
749
739
|
}
|
|
750
|
-
.e-bigger .e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text {
|
|
740
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text {
|
|
751
741
|
font-size: 14px;
|
|
752
742
|
line-height: 22px;
|
|
753
743
|
}
|
|
754
|
-
.e-bigger .e-float-input.e-control-wrapper input[disabled] ~ label.e-label-top.e-float-text {
|
|
744
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input[disabled] ~ label.e-label-top.e-float-text {
|
|
755
745
|
font-size: 14px;
|
|
756
746
|
line-height: 22px;
|
|
757
747
|
}
|
|
758
|
-
.e-bigger .e-float-input.e-control-wrapper input {
|
|
748
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input {
|
|
759
749
|
height: 34px !important;
|
|
760
750
|
}
|
|
761
|
-
.e-bigger .e-
|
|
762
|
-
color: #ADB5BD !important;
|
|
763
|
-
}
|
|
764
|
-
.e-bigger .e-right-btn:disabled {
|
|
765
|
-
color: #ADB5BD !important;
|
|
766
|
-
}
|
|
767
|
-
.e-bigger .e-input-group-icon.e-date-icon {
|
|
768
|
-
min-width: 36px !important;
|
|
769
|
-
}
|
|
770
|
-
.e-bigger .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
771
|
-
min-height: 35px !important;
|
|
772
|
-
min-width: 35.82px !important;
|
|
773
|
-
}
|
|
774
|
-
.e-bigger .e-numeric.e-control-wrapper.e-input-group .e-input-group-icon {
|
|
751
|
+
.e-bigger .e-gantt-dialog .e-numeric.e-control-wrapper.e-input-group .e-input-group-icon {
|
|
775
752
|
min-height: 35px !important;
|
|
776
753
|
min-width: 35.82px !important;
|
|
777
754
|
}
|
|
778
|
-
.e-bigger .e-control-wrapper .e-input-group-icon.e-time-icon {
|
|
755
|
+
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-time-icon {
|
|
779
756
|
min-height: 35px !important;
|
|
780
757
|
min-width: 35.82px !important;
|
|
781
758
|
}
|
|
782
|
-
.e-bigger .e-input-group.e-control-wrapper {
|
|
759
|
+
.e-bigger .e-gantt-dialog .e-input-group.e-control-wrapper {
|
|
783
760
|
height: 36px;
|
|
784
761
|
}
|
|
785
|
-
.e-bigger .e-
|
|
786
|
-
|
|
762
|
+
.e-bigger .e-gantt-dialog .e-input-group-icon.e-date-icon {
|
|
763
|
+
min-width: 36px !important;
|
|
787
764
|
}
|
|
788
|
-
.e-bigger .e-
|
|
789
|
-
|
|
790
|
-
padding: 6px 16px 6px 15px !important;
|
|
765
|
+
.e-bigger .e-predecessor-tooltip {
|
|
766
|
+
background-color: #000;
|
|
791
767
|
}
|
|
792
|
-
.e-bigger .e-
|
|
793
|
-
|
|
768
|
+
.e-bigger .e-predecessor-tooltip .e-left-btn:disabled {
|
|
769
|
+
color: #adb5bd !important;
|
|
770
|
+
}
|
|
771
|
+
.e-bigger .e-predecessor-tooltip .e-right-btn:disabled {
|
|
772
|
+
color: #adb5bd !important;
|
|
773
|
+
}
|
|
774
|
+
.e-bigger .e-predecessor-tooltip .e-tip-content {
|
|
775
|
+
padding: 3px !important;
|
|
776
|
+
}
|
|
777
|
+
.e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type {
|
|
778
|
+
background-color: #000;
|
|
779
|
+
border-color: #000;
|
|
780
|
+
color: #f8f9fa;
|
|
781
|
+
font-size: 12px;
|
|
782
|
+
line-height: 18px;
|
|
783
|
+
padding: 0 8px 0 0;
|
|
784
|
+
}
|
|
785
|
+
.e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:last-of-type {
|
|
786
|
+
background-color: #000;
|
|
787
|
+
border-color: #000;
|
|
788
|
+
color: #f8f9fa;
|
|
789
|
+
font-size: 12px;
|
|
790
|
+
line-height: 18px;
|
|
791
|
+
padding: 0 0 0 8px;
|
|
792
|
+
}
|
|
793
|
+
.e-bigger .e-predecessor-dialog {
|
|
794
|
+
background-color: #f8f9fa;
|
|
795
|
+
}
|
|
796
|
+
.e-bigger .e-predecessor-dialog .e-dlg-content {
|
|
797
|
+
background-color: #f8f9fa;
|
|
798
|
+
padding: 10px 9px 9px 14px !important;
|
|
794
799
|
}
|
|
795
800
|
|
|
796
801
|
.e-gantt {
|
|
@@ -1361,6 +1366,9 @@
|
|
|
1361
1366
|
.e-gantt .e-gantt-chart .e-connector-line-hover {
|
|
1362
1367
|
outline: 1px solid;
|
|
1363
1368
|
}
|
|
1369
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-hover {
|
|
1370
|
+
outline: 1px solid;
|
|
1371
|
+
}
|
|
1364
1372
|
.e-gantt .e-gantt-chart .e-connector-line-hover-z-index {
|
|
1365
1373
|
z-index: 100;
|
|
1366
1374
|
}
|
|
@@ -1799,6 +1807,10 @@
|
|
|
1799
1807
|
background-color: #6628EE;
|
|
1800
1808
|
border: 0px;
|
|
1801
1809
|
}
|
|
1810
|
+
.e-gantt .e-gantt-chart .e-gantt-critical-child-manualprogressbar {
|
|
1811
|
+
background-color: #6628EE;
|
|
1812
|
+
border: 0px;
|
|
1813
|
+
}
|
|
1802
1814
|
.e-gantt .e-gantt-chart .e-holiday {
|
|
1803
1815
|
background: #e9ecef;
|
|
1804
1816
|
}
|
|
@@ -1830,7 +1842,6 @@
|
|
|
1830
1842
|
}
|
|
1831
1843
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar {
|
|
1832
1844
|
background: linear-gradient(to right, rgba(0, 123, 255, 0.2), #007bff 30%, #007bff 70%, #007bff 70%, rgba(0, 123, 255, 0.2) 100%);
|
|
1833
|
-
background-color: rgba(0, 123, 255, 0.2);
|
|
1834
1845
|
border: 0px;
|
|
1835
1846
|
border-radius: 4px;
|
|
1836
1847
|
}
|
|
@@ -2131,4 +2142,56 @@
|
|
|
2131
2142
|
}
|
|
2132
2143
|
.e-gantt.e-device .e-backarrowspan {
|
|
2133
2144
|
color: #000;
|
|
2145
|
+
}
|
|
2146
|
+
|
|
2147
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line {
|
|
2148
|
+
border-color: #d13438;
|
|
2149
|
+
}
|
|
2150
|
+
|
|
2151
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line-right-arrow {
|
|
2152
|
+
border-left-color: #d13438;
|
|
2153
|
+
}
|
|
2154
|
+
|
|
2155
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line-left-arrow {
|
|
2156
|
+
border-right-color: #d13438;
|
|
2157
|
+
}
|
|
2158
|
+
|
|
2159
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-hover {
|
|
2160
|
+
border-color: #f3d8da;
|
|
2161
|
+
outline-color: #f3d8da;
|
|
2162
|
+
}
|
|
2163
|
+
|
|
2164
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-right-arrow-hover {
|
|
2165
|
+
border-left-color: #f3d8da;
|
|
2166
|
+
}
|
|
2167
|
+
|
|
2168
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-left-arrow-hover {
|
|
2169
|
+
border-right-color: #f3d8da;
|
|
2170
|
+
}
|
|
2171
|
+
|
|
2172
|
+
.e-gantt .e-gantt-chart .e-gantt-child-critical-taskbar-inner-div {
|
|
2173
|
+
background-color: #F3D8DA;
|
|
2174
|
+
border: 1px solid #F3D8DA;
|
|
2175
|
+
border-radius: 4px;
|
|
2176
|
+
}
|
|
2177
|
+
|
|
2178
|
+
.e-gantt .e-gantt-chart .e-gantt-child-critical-progressbar-inner-div {
|
|
2179
|
+
background-color: #D13438;
|
|
2180
|
+
border: 0px;
|
|
2181
|
+
border-radius: 4px;
|
|
2182
|
+
}
|
|
2183
|
+
|
|
2184
|
+
.e-gantt .e-gantt-chart .e-gantt-critical-unscheduled-taskbar {
|
|
2185
|
+
background: linear-gradient(to right, rgba(255, 85, 85, 0.2), #D13438 30%, #D13438 70%, #D13438 70%, rgba(255, 85, 85, 0.2) 100%);
|
|
2186
|
+
background-color: rgba(255, 85, 85, 0.2);
|
|
2187
|
+
border: 0px;
|
|
2188
|
+
border-radius: 4px;
|
|
2189
|
+
}
|
|
2190
|
+
|
|
2191
|
+
.e-gantt .e-gantt-chart .e-critical-milestone-top {
|
|
2192
|
+
border-bottom-color: #D13438;
|
|
2193
|
+
}
|
|
2194
|
+
|
|
2195
|
+
.e-gantt .e-gantt-chart .e-critical-milestone-bottom {
|
|
2196
|
+
border-top-color: #D13438;
|
|
2134
2197
|
}
|
|
@@ -202,6 +202,9 @@
|
|
|
202
202
|
.e-gantt .e-add::before {
|
|
203
203
|
content: "\e805";
|
|
204
204
|
}
|
|
205
|
+
.e-gantt .e-critical-path::before {
|
|
206
|
+
content: "\e88c";
|
|
207
|
+
}
|
|
205
208
|
.e-gantt .e-edit::before {
|
|
206
209
|
content: "\e730";
|
|
207
210
|
}
|
|
@@ -296,11 +299,13 @@
|
|
|
296
299
|
.e-bigger .e-gantt .e-gantt-chart .e-timeline-top-header-cell {
|
|
297
300
|
height: 32px;
|
|
298
301
|
}
|
|
299
|
-
.e-bigger .e-gantt .e-gantt-chart .e-taskbar-left-resizer
|
|
302
|
+
.e-bigger .e-gantt .e-gantt-chart .e-taskbar-left-resizer {
|
|
303
|
+
padding-right: 10px;
|
|
304
|
+
width: 25px;
|
|
305
|
+
}
|
|
300
306
|
.e-bigger .e-gantt .e-gantt-chart .e-taskbar-right-resizer {
|
|
301
307
|
padding-left: 10px;
|
|
302
|
-
|
|
303
|
-
width: 30px;
|
|
308
|
+
width: 25px;
|
|
304
309
|
}
|
|
305
310
|
.e-bigger .e-gantt .e-gantt-chart .e-event-markers .e-span-label {
|
|
306
311
|
border-radius: 4px !important;
|
|
@@ -338,42 +343,49 @@
|
|
|
338
343
|
}
|
|
339
344
|
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover,
|
|
340
345
|
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
|
|
341
|
-
background-color: #
|
|
346
|
+
background-color: #0257d5;
|
|
342
347
|
border-color: #212529;
|
|
343
348
|
}
|
|
344
349
|
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover:hover,
|
|
345
350
|
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover:hover {
|
|
346
|
-
background-color: #
|
|
351
|
+
background-color: #0257d5;
|
|
347
352
|
border-color: #212529;
|
|
348
|
-
outline: 2px solid #
|
|
353
|
+
outline: 2px solid #0d6efd;
|
|
354
|
+
}
|
|
355
|
+
.e-bigger .e-gantt .e-tab .e-content {
|
|
356
|
+
height: 250px !important;
|
|
349
357
|
}
|
|
350
358
|
.e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
|
|
351
359
|
height: 63px !important;
|
|
352
360
|
}
|
|
353
|
-
.e-bigger .e-
|
|
354
|
-
|
|
355
|
-
border-color: #000000;
|
|
356
|
-
color: #F9FAFB;
|
|
357
|
-
font-size: 12px;
|
|
358
|
-
line-height: 18px;
|
|
359
|
-
padding: 0 8px 0 0;
|
|
361
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header-content {
|
|
362
|
+
padding: 16px 4px 16px 16px !important;
|
|
360
363
|
}
|
|
361
|
-
.e-bigger .e-
|
|
362
|
-
|
|
363
|
-
border-color: #000000;
|
|
364
|
-
color: #F9FAFB;
|
|
365
|
-
font-size: 12px;
|
|
366
|
-
line-height: 18px;
|
|
367
|
-
padding: 0 0 0 8px;
|
|
364
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
365
|
+
left: 2px !important;
|
|
368
366
|
}
|
|
369
|
-
.e-bigger .e-
|
|
370
|
-
|
|
367
|
+
.e-bigger .e-gantt .e-dialog .e-btn .e-btn-icon.e-icon-dlg-close {
|
|
368
|
+
font-size: 14px !important;
|
|
371
369
|
}
|
|
372
|
-
.e-bigger .e-
|
|
370
|
+
.e-bigger .e-gantt .e-dialog .e-footer-content {
|
|
371
|
+
height: 70px !important;
|
|
372
|
+
padding: 16px !important;
|
|
373
|
+
}
|
|
374
|
+
.e-bigger .e-gantt .e-dialog .e-footer-content .e-btn {
|
|
375
|
+
margin-left: 12px;
|
|
376
|
+
}
|
|
377
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header {
|
|
378
|
+
line-height: 28px;
|
|
379
|
+
}
|
|
380
|
+
.e-bigger .e-gantt .e-filter-popup {
|
|
381
|
+
width: 350px !important;
|
|
382
|
+
}
|
|
383
|
+
.e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
|
|
373
384
|
padding: 16px 0 0 !important;
|
|
374
385
|
}
|
|
375
|
-
.e-bigger .e-
|
|
376
|
-
|
|
386
|
+
.e-bigger .e-gantt .e-filter-popup .e-dlg-content {
|
|
387
|
+
border-radius: 6px !important;
|
|
388
|
+
padding: 32px 16px 16px !important;
|
|
377
389
|
}
|
|
378
390
|
.e-bigger .e-columnmenu {
|
|
379
391
|
top: 35px;
|
|
@@ -382,6 +394,9 @@
|
|
|
382
394
|
border-radius: 6px;
|
|
383
395
|
width: 556px !important;
|
|
384
396
|
}
|
|
397
|
+
.e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
398
|
+
padding: 0 16px !important;
|
|
399
|
+
}
|
|
385
400
|
.e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(odd) {
|
|
386
401
|
padding: 16px 12px 0 16px;
|
|
387
402
|
}
|
|
@@ -410,100 +425,90 @@
|
|
|
410
425
|
.e-bigger .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
411
426
|
border-radius: 50%;
|
|
412
427
|
height: auto !important;
|
|
413
|
-
width: auto
|
|
428
|
+
width: auto;
|
|
414
429
|
}
|
|
415
430
|
.e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
416
431
|
margin-left: 5px !important;
|
|
417
432
|
}
|
|
418
|
-
.e-bigger .e-
|
|
419
|
-
font-size: 16px !important;
|
|
420
|
-
}
|
|
421
|
-
.e-bigger .e-float-input.e-control-wrapper {
|
|
433
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper {
|
|
422
434
|
width: 250px !important;
|
|
423
435
|
}
|
|
424
|
-
.e-bigger .e-
|
|
425
|
-
|
|
426
|
-
}
|
|
427
|
-
.e-bigger .e-predecessor-dialog {
|
|
428
|
-
background-color: #f8f8fa;
|
|
429
|
-
}
|
|
430
|
-
.e-bigger .e-predecessor-dialog .e-dlg-content {
|
|
431
|
-
background-color: #f8f8fa;
|
|
432
|
-
padding: 10px 9px 9px 14px !important;
|
|
433
|
-
}
|
|
434
|
-
.e-bigger .e-dialog .e-dlg-header-content {
|
|
435
|
-
padding: 16px 4px 16px 16px !important;
|
|
436
|
-
}
|
|
437
|
-
.e-bigger .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
438
|
-
left: 2px !important;
|
|
439
|
-
}
|
|
440
|
-
.e-bigger .e-dialog .e-btn .e-btn-icon.e-icon-dlg-close {
|
|
441
|
-
font-size: 14px !important;
|
|
442
|
-
}
|
|
443
|
-
.e-bigger .e-dialog .e-footer-content {
|
|
444
|
-
height: 70px !important;
|
|
445
|
-
padding: 16px !important;
|
|
446
|
-
}
|
|
447
|
-
.e-bigger .e-dialog .e-footer-content .e-btn {
|
|
448
|
-
margin-left: 12px;
|
|
436
|
+
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
437
|
+
font-size: 16px !important;
|
|
449
438
|
}
|
|
450
|
-
.e-bigger .e-dialog .e-
|
|
451
|
-
|
|
439
|
+
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
440
|
+
min-height: 36px !important;
|
|
441
|
+
min-width: 35.82px !important;
|
|
452
442
|
}
|
|
453
|
-
.e-bigger .e-
|
|
454
|
-
height:
|
|
443
|
+
.e-bigger .e-gantt-dialog .e-btn.e-flat {
|
|
444
|
+
line-height: 24px;
|
|
445
|
+
padding: 6px 16px 6px 15px !important;
|
|
455
446
|
}
|
|
456
|
-
.e-bigger .e-
|
|
457
|
-
|
|
447
|
+
.e-bigger .e-gantt-dialog .e-btn.e-primary {
|
|
448
|
+
padding: 6px 21px 6px 23px !important;
|
|
458
449
|
}
|
|
459
|
-
.e-bigger .e-
|
|
460
|
-
|
|
461
|
-
padding: 32px 16px 16px !important;
|
|
450
|
+
.e-bigger .e-gantt-dialog .e-datetime-wrapper .e-time-icon.e-icons::before {
|
|
451
|
+
font-size: 16px !important;
|
|
462
452
|
}
|
|
463
|
-
.e-bigger .e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text {
|
|
453
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text {
|
|
464
454
|
font-size: 14px;
|
|
465
455
|
line-height: 22px;
|
|
466
456
|
}
|
|
467
|
-
.e-bigger .e-float-input.e-control-wrapper input[disabled] ~ label.e-label-top.e-float-text {
|
|
457
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input[disabled] ~ label.e-label-top.e-float-text {
|
|
468
458
|
font-size: 14px;
|
|
469
459
|
line-height: 22px;
|
|
470
460
|
}
|
|
471
|
-
.e-bigger .e-float-input.e-control-wrapper input {
|
|
461
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input {
|
|
472
462
|
height: 36px !important;
|
|
473
463
|
}
|
|
474
|
-
.e-bigger .e-
|
|
475
|
-
color: #ADB5BD !important;
|
|
476
|
-
}
|
|
477
|
-
.e-bigger .e-right-btn:disabled {
|
|
478
|
-
color: #ADB5BD !important;
|
|
479
|
-
}
|
|
480
|
-
.e-bigger .e-input-group-icon.e-date-icon {
|
|
481
|
-
min-width: 36px !important;
|
|
482
|
-
}
|
|
483
|
-
.e-bigger .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
484
|
-
min-height: 36px !important;
|
|
485
|
-
min-width: 35.82px !important;
|
|
486
|
-
}
|
|
487
|
-
.e-bigger .e-numeric.e-control-wrapper.e-input-group .e-input-group-icon {
|
|
464
|
+
.e-bigger .e-gantt-dialog .e-numeric.e-control-wrapper.e-input-group .e-input-group-icon {
|
|
488
465
|
min-height: 36px !important;
|
|
489
466
|
min-width: 35.82px !important;
|
|
490
467
|
}
|
|
491
|
-
.e-bigger .e-control-wrapper .e-input-group-icon.e-time-icon {
|
|
468
|
+
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-time-icon {
|
|
492
469
|
min-height: 36px !important;
|
|
493
470
|
min-width: 35.82px !important;
|
|
494
471
|
}
|
|
495
|
-
.e-bigger .e-input-group.e-control-wrapper {
|
|
472
|
+
.e-bigger .e-gantt-dialog .e-input-group.e-control-wrapper {
|
|
496
473
|
height: 38px;
|
|
497
474
|
}
|
|
498
|
-
.e-bigger .e-
|
|
499
|
-
|
|
475
|
+
.e-bigger .e-gantt-dialog .e-input-group-icon.e-date-icon {
|
|
476
|
+
min-width: 36px !important;
|
|
500
477
|
}
|
|
501
|
-
.e-bigger .e-
|
|
502
|
-
|
|
503
|
-
padding: 6px 16px 6px 15px !important;
|
|
478
|
+
.e-bigger .e-predecessor-tooltip {
|
|
479
|
+
background-color: #000;
|
|
504
480
|
}
|
|
505
|
-
.e-bigger .e-
|
|
506
|
-
|
|
481
|
+
.e-bigger .e-predecessor-tooltip .e-left-btn:disabled {
|
|
482
|
+
color: #adb5bd !important;
|
|
483
|
+
}
|
|
484
|
+
.e-bigger .e-predecessor-tooltip .e-right-btn:disabled {
|
|
485
|
+
color: #adb5bd !important;
|
|
486
|
+
}
|
|
487
|
+
.e-bigger .e-predecessor-tooltip .e-tip-content {
|
|
488
|
+
padding: 3px !important;
|
|
489
|
+
}
|
|
490
|
+
.e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type {
|
|
491
|
+
background-color: #000;
|
|
492
|
+
border-color: #000;
|
|
493
|
+
color: #fff;
|
|
494
|
+
font-size: 12px;
|
|
495
|
+
line-height: 18px;
|
|
496
|
+
padding: 0 8px 0 0;
|
|
497
|
+
}
|
|
498
|
+
.e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:last-of-type {
|
|
499
|
+
background-color: #000;
|
|
500
|
+
border-color: #000;
|
|
501
|
+
color: #fff;
|
|
502
|
+
font-size: 12px;
|
|
503
|
+
line-height: 18px;
|
|
504
|
+
padding: 0 0 0 8px;
|
|
505
|
+
}
|
|
506
|
+
.e-bigger .e-predecessor-dialog {
|
|
507
|
+
background-color: #212529;
|
|
508
|
+
}
|
|
509
|
+
.e-bigger .e-predecessor-dialog .e-dlg-content {
|
|
510
|
+
background-color: #212529;
|
|
511
|
+
padding: 10px 9px 9px 14px !important;
|
|
507
512
|
}
|
|
508
513
|
|
|
509
514
|
.e-gantt {
|
|
@@ -1074,6 +1079,9 @@
|
|
|
1074
1079
|
.e-gantt .e-gantt-chart .e-connector-line-hover {
|
|
1075
1080
|
outline: 1px solid;
|
|
1076
1081
|
}
|
|
1082
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-hover {
|
|
1083
|
+
outline: 1px solid;
|
|
1084
|
+
}
|
|
1077
1085
|
.e-gantt .e-gantt-chart .e-connector-line-hover-z-index {
|
|
1078
1086
|
z-index: 100;
|
|
1079
1087
|
}
|
|
@@ -1512,6 +1520,10 @@
|
|
|
1512
1520
|
background-color: #21b26f;
|
|
1513
1521
|
border: 0px;
|
|
1514
1522
|
}
|
|
1523
|
+
.e-gantt .e-gantt-chart .e-gantt-critical-child-manualprogressbar {
|
|
1524
|
+
background-color: #21b26f;
|
|
1525
|
+
border: 0px;
|
|
1526
|
+
}
|
|
1515
1527
|
.e-gantt .e-gantt-chart .e-holiday {
|
|
1516
1528
|
background: #282d31;
|
|
1517
1529
|
}
|
|
@@ -1543,7 +1555,6 @@
|
|
|
1543
1555
|
}
|
|
1544
1556
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar {
|
|
1545
1557
|
background: linear-gradient(to right, #86b7fe, #0d6efd 30%, #0d6efd 70%, #0d6efd 70%, #86b7fe 100%);
|
|
1546
|
-
background-color: rgba(63, 81, 181, 0.2);
|
|
1547
1558
|
border: 0px;
|
|
1548
1559
|
border-radius: 4px;
|
|
1549
1560
|
}
|
|
@@ -1587,7 +1598,7 @@
|
|
|
1587
1598
|
}
|
|
1588
1599
|
.e-gantt .e-gantt-chart .e-connectorpoint-left-hover,
|
|
1589
1600
|
.e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
|
|
1590
|
-
background-color: #
|
|
1601
|
+
background-color: #0257d5;
|
|
1591
1602
|
border-color: #212529;
|
|
1592
1603
|
}
|
|
1593
1604
|
.e-gantt .e-gantt-chart .e-connectorpoint-left-hover:hover,
|
|
@@ -1790,7 +1801,7 @@
|
|
|
1790
1801
|
color: #adb5bd;
|
|
1791
1802
|
}
|
|
1792
1803
|
.e-gantt .e-grid .e-icons:not(.e-stop):not(.e-check):not(.e-icon-left):not(.e-date-icon) {
|
|
1793
|
-
color:
|
|
1804
|
+
color: #adb5bd !important;
|
|
1794
1805
|
}
|
|
1795
1806
|
|
|
1796
1807
|
.e-gantt-dialog .e-dlg-header {
|
|
@@ -1844,4 +1855,56 @@
|
|
|
1844
1855
|
}
|
|
1845
1856
|
.e-gantt.e-device .e-backarrowspan {
|
|
1846
1857
|
color: #000;
|
|
1858
|
+
}
|
|
1859
|
+
|
|
1860
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line {
|
|
1861
|
+
border-color: #e4606d;
|
|
1862
|
+
}
|
|
1863
|
+
|
|
1864
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line-right-arrow {
|
|
1865
|
+
border-left-color: #e4606d;
|
|
1866
|
+
}
|
|
1867
|
+
|
|
1868
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line-left-arrow {
|
|
1869
|
+
border-right-color: #e4606d;
|
|
1870
|
+
}
|
|
1871
|
+
|
|
1872
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-hover {
|
|
1873
|
+
border-color: #fadfe2;
|
|
1874
|
+
outline-color: #fadfe2;
|
|
1875
|
+
}
|
|
1876
|
+
|
|
1877
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-right-arrow-hover {
|
|
1878
|
+
border-left-color: #fadfe2;
|
|
1879
|
+
}
|
|
1880
|
+
|
|
1881
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-left-arrow-hover {
|
|
1882
|
+
border-right-color: #fadfe2;
|
|
1883
|
+
}
|
|
1884
|
+
|
|
1885
|
+
.e-gantt .e-gantt-chart .e-gantt-child-critical-taskbar-inner-div {
|
|
1886
|
+
background-color: #fadfe2;
|
|
1887
|
+
border: 1px solid #fadfe2;
|
|
1888
|
+
border-radius: 4px;
|
|
1889
|
+
}
|
|
1890
|
+
|
|
1891
|
+
.e-gantt .e-gantt-chart .e-gantt-child-critical-progressbar-inner-div {
|
|
1892
|
+
background-color: #e4606d;
|
|
1893
|
+
border: 0px;
|
|
1894
|
+
border-radius: 4px;
|
|
1895
|
+
}
|
|
1896
|
+
|
|
1897
|
+
.e-gantt .e-gantt-chart .e-gantt-critical-unscheduled-taskbar {
|
|
1898
|
+
background: linear-gradient(to right, rgba(255, 85, 85, 0.2), #e4606d 30%, #e4606d 70%, #e4606d 70%, rgba(255, 85, 85, 0.2) 100%);
|
|
1899
|
+
background-color: rgba(255, 85, 85, 0.2);
|
|
1900
|
+
border: 0px;
|
|
1901
|
+
border-radius: 4px;
|
|
1902
|
+
}
|
|
1903
|
+
|
|
1904
|
+
.e-gantt .e-gantt-chart .e-critical-milestone-top {
|
|
1905
|
+
border-bottom-color: #e4606d;
|
|
1906
|
+
}
|
|
1907
|
+
|
|
1908
|
+
.e-gantt .e-gantt-chart .e-critical-milestone-bottom {
|
|
1909
|
+
border-top-color: #e4606d;
|
|
1847
1910
|
}
|