@syncfusion/ej2-angular-gantt 20.4.38-ngcc → 20.4.38
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 +71 -0
- package/esm2020/src/gantt/gantt.component.mjs +255 -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 +734 -0
- package/fesm2015/syncfusion-ej2-angular-gantt.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-gantt.mjs +734 -0
- package/fesm2020/syncfusion-ej2-angular-gantt.mjs.map +1 -0
- package/package.json +27 -13
- package/schematics/utils/lib-details.d.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 +14 -182
- package/styles/bootstrap.css +14 -182
- package/styles/bootstrap4.css +13 -182
- package/styles/bootstrap5-dark.css +12 -181
- package/styles/bootstrap5.css +12 -181
- package/styles/fabric-dark.css +14 -182
- package/styles/fabric.css +14 -182
- package/styles/fluent-dark.css +12 -183
- package/styles/fluent.css +12 -183
- package/styles/gantt/_all.scss +2 -0
- package/styles/gantt/_bootstrap-dark-definition.scss +210 -0
- package/styles/gantt/_bootstrap-definition.scss +211 -0
- package/styles/gantt/_bootstrap4-definition.scss +213 -0
- package/styles/gantt/_bootstrap5-dark-definition.scss +1 -0
- package/styles/gantt/_bootstrap5-definition.scss +215 -0
- package/styles/gantt/_fabric-dark-definition.scss +211 -0
- package/styles/gantt/_fabric-definition.scss +211 -0
- package/styles/gantt/_fluent-dark-definition.scss +1 -0
- package/styles/gantt/_fluent-definition.scss +215 -0
- package/styles/gantt/_fusionnew-definition.scss +214 -0
- package/styles/gantt/_highcontrast-definition.scss +211 -0
- package/styles/gantt/_highcontrast-light-definition.scss +211 -0
- package/styles/gantt/_layout.scss +1446 -0
- package/styles/gantt/_material-dark-definition.scss +212 -0
- package/styles/gantt/_material-definition.scss +212 -0
- package/styles/gantt/_material3-definition.scss +215 -0
- package/styles/gantt/_tailwind-dark-definition.scss +1 -0
- package/styles/gantt/_tailwind-definition.scss +215 -0
- package/styles/gantt/_theme.scss +702 -0
- package/styles/gantt/bootstrap-dark.css +14 -182
- package/styles/gantt/bootstrap-dark.scss +22 -1
- package/styles/gantt/bootstrap.css +14 -182
- package/styles/gantt/bootstrap.scss +22 -1
- package/styles/gantt/bootstrap4.css +13 -182
- package/styles/gantt/bootstrap4.scss +22 -1
- package/styles/gantt/bootstrap5-dark.css +12 -181
- package/styles/gantt/bootstrap5-dark.scss +22 -1
- package/styles/gantt/bootstrap5.css +12 -181
- package/styles/gantt/bootstrap5.scss +22 -1
- package/styles/gantt/fabric-dark.css +14 -182
- package/styles/gantt/fabric-dark.scss +22 -1
- package/styles/gantt/fabric.css +14 -182
- package/styles/gantt/fabric.scss +22 -1
- package/styles/gantt/fluent-dark.css +12 -183
- package/styles/gantt/fluent-dark.scss +22 -1
- package/styles/gantt/fluent.css +12 -183
- package/styles/gantt/fluent.scss +22 -1
- package/styles/gantt/highcontrast-light.css +12 -181
- package/styles/gantt/highcontrast-light.scss +21 -1
- package/styles/gantt/highcontrast.css +14 -182
- 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 +14 -180
- package/styles/gantt/material-dark.scss +22 -1
- package/styles/gantt/material.css +14 -182
- package/styles/gantt/material.scss +22 -1
- package/styles/gantt/tailwind-dark.css +12 -181
- package/styles/gantt/tailwind-dark.scss +22 -1
- package/styles/gantt/tailwind.css +12 -181
- package/styles/gantt/tailwind.scss +22 -1
- package/styles/highcontrast-light.css +12 -181
- package/styles/highcontrast.css +14 -182
- package/styles/material-dark.css +14 -180
- package/styles/material.css +14 -182
- package/styles/tailwind-dark.css +12 -181
- package/styles/tailwind.css +12 -181
- package/{ej2-angular-gantt.d.ts → syncfusion-ej2-angular-gantt.d.ts} +1 -1
- package/@syncfusion/ej2-angular-gantt.es5.js +0 -812
- package/@syncfusion/ej2-angular-gantt.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-gantt.js +0 -764
- package/@syncfusion/ej2-angular-gantt.js.map +0 -1
- package/CHANGELOG.md +0 -1505
- package/dist/ej2-angular-gantt.umd.js +0 -909
- 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/styles/fluent.css
CHANGED
|
@@ -364,7 +364,7 @@
|
|
|
364
364
|
border-radius: 2px !important;
|
|
365
365
|
padding: 28px 28px 0px 28px !important;
|
|
366
366
|
}
|
|
367
|
-
.e-bigger .e-
|
|
367
|
+
.e-bigger .e-columnmenu {
|
|
368
368
|
top: 38px;
|
|
369
369
|
}
|
|
370
370
|
.e-bigger .e-gantt-dialog .e-dialog {
|
|
@@ -490,78 +490,9 @@
|
|
|
490
490
|
font-size: 12px;
|
|
491
491
|
font-weight: 400;
|
|
492
492
|
line-height: 1.8;
|
|
493
|
-
color: #201f1e;
|
|
494
493
|
margin-bottom: 0;
|
|
495
494
|
}
|
|
496
495
|
|
|
497
|
-
.e-blazor-gantt-tooltip .e-tip-content {
|
|
498
|
-
overflow-wrap: unset !important; /* stylelint-disable-line declaration-no-important */
|
|
499
|
-
white-space: nowrap !important; /* stylelint-disable-line declaration-no-important */
|
|
500
|
-
word-break: unset !important; /* stylelint-disable-line declaration-no-important */
|
|
501
|
-
}
|
|
502
|
-
|
|
503
|
-
.e-gantt-tooltip .e-tip-content {
|
|
504
|
-
text-align: left !important; /* stylelint-disable-line declaration-no-important */
|
|
505
|
-
}
|
|
506
|
-
|
|
507
|
-
.e-gantt.e-gantt-rtl .e-connector-line-right-arrow {
|
|
508
|
-
border-left: none !important; /* stylelint-disable-line declaration-no-important */
|
|
509
|
-
border-right-color: #0078d4;
|
|
510
|
-
}
|
|
511
|
-
.e-gantt.e-gantt-rtl .e-connector-line-left-arrow {
|
|
512
|
-
border-right: none !important; /* stylelint-disable-line declaration-no-important */
|
|
513
|
-
border-left-color: #0078d4;
|
|
514
|
-
}
|
|
515
|
-
.e-gantt.e-gantt-rtl .e-toolbar-right {
|
|
516
|
-
left: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
517
|
-
right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
518
|
-
}
|
|
519
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-timeline-header-container {
|
|
520
|
-
border-right: none !important; /* stylelint-disable-line declaration-no-important */
|
|
521
|
-
border-left: 1px solid !important; /* stylelint-disable-line declaration-no-important */
|
|
522
|
-
border-left-color: #edebe9 !important; /* stylelint-disable-line declaration-no-important */
|
|
523
|
-
}
|
|
524
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-timeline-top-header-cell .e-gantt-top-cell-text {
|
|
525
|
-
padding-right: 11px !important; /* stylelint-disable-line declaration-no-important */
|
|
526
|
-
padding-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
527
|
-
text-align: right !important; /* stylelint-disable-line declaration-no-important */
|
|
528
|
-
}
|
|
529
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-element {
|
|
530
|
-
right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
531
|
-
}
|
|
532
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-after {
|
|
533
|
-
right: 1px !important; /* stylelint-disable-line declaration-no-important */
|
|
534
|
-
}
|
|
535
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-connectorpoint-right {
|
|
536
|
-
margin-right: 2px !important; /* stylelint-disable-line declaration-no-important */
|
|
537
|
-
}
|
|
538
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-event-markers .e-gantt-right-arrow {
|
|
539
|
-
border-left: 5px solid;
|
|
540
|
-
border-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
541
|
-
}
|
|
542
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-holiday .e-span {
|
|
543
|
-
transform: rotate(90deg) !important; /* stylelint-disable-line declaration-no-important */
|
|
544
|
-
}
|
|
545
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-left-label-container {
|
|
546
|
-
padding-left: 25px !important; /* stylelint-disable-line declaration-no-important */
|
|
547
|
-
padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
548
|
-
}
|
|
549
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-right-label-container {
|
|
550
|
-
margin-right: 25px !important; /* stylelint-disable-line declaration-no-important */
|
|
551
|
-
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
552
|
-
}
|
|
553
|
-
|
|
554
|
-
.e-gantt-rtl .e-gantt-tooltip-label {
|
|
555
|
-
text-align: right !important; /* stylelint-disable-line declaration-no-important */
|
|
556
|
-
}
|
|
557
|
-
.e-gantt-rtl .e-tip-content {
|
|
558
|
-
text-align: right !important; /* stylelint-disable-line declaration-no-important */
|
|
559
|
-
}
|
|
560
|
-
|
|
561
|
-
.e-gantt-dialog.e-rtl .e-dlg-closeicon-btn {
|
|
562
|
-
padding: 4px 8px !important; /* stylelint-disable-line declaration-no-important */
|
|
563
|
-
}
|
|
564
|
-
|
|
565
496
|
.e-gantt {
|
|
566
497
|
display: block;
|
|
567
498
|
width: 100%;
|
|
@@ -671,7 +602,6 @@
|
|
|
671
602
|
border-top-style: none;
|
|
672
603
|
border-top-width: 0;
|
|
673
604
|
padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
674
|
-
padding-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
675
605
|
}
|
|
676
606
|
.e-gantt .e-gantt-tree-grid-pane .e-columnheader,
|
|
677
607
|
.e-gantt .e-gantt-tree-grid-pane .e-headercell {
|
|
@@ -680,9 +610,6 @@
|
|
|
680
610
|
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content {
|
|
681
611
|
overflow-x: scroll !important; /* stylelint-disable-line declaration-no-important */
|
|
682
612
|
}
|
|
683
|
-
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-gantt-frozen {
|
|
684
|
-
overflow-x: hidden !important; /* stylelint-disable-line declaration-no-important */
|
|
685
|
-
}
|
|
686
613
|
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content.e-gantt-scroll-padding {
|
|
687
614
|
width: calc(100% + 17px);
|
|
688
615
|
}
|
|
@@ -702,12 +629,6 @@
|
|
|
702
629
|
position: relative;
|
|
703
630
|
width: 100%;
|
|
704
631
|
}
|
|
705
|
-
.e-gantt .e-gantt-chart .e-chart-empty-row {
|
|
706
|
-
border: 0.5px solid;
|
|
707
|
-
position: absolute;
|
|
708
|
-
background-color: rgba(0, 120, 222, 0.15);
|
|
709
|
-
border-color: rgba(0, 120, 222, 0.65) !important;
|
|
710
|
-
}
|
|
711
632
|
.e-gantt .e-gantt-chart .e-chart-root-container {
|
|
712
633
|
border-right: 0 solid;
|
|
713
634
|
}
|
|
@@ -802,10 +723,10 @@
|
|
|
802
723
|
box-sizing: border-box;
|
|
803
724
|
}
|
|
804
725
|
.e-gantt .e-gantt-chart .e-zero-spacing {
|
|
805
|
-
border-spacing: 0
|
|
726
|
+
border-spacing: 0;
|
|
806
727
|
}
|
|
807
728
|
.e-gantt .e-gantt-chart .e-chart-row:first-child .e-chart-row-border {
|
|
808
|
-
border-top:
|
|
729
|
+
border-top-color: transparent;
|
|
809
730
|
}
|
|
810
731
|
.e-gantt .e-gantt-chart .e-chart-row .e-chart-row-border {
|
|
811
732
|
border-collapse: separate;
|
|
@@ -956,88 +877,6 @@
|
|
|
956
877
|
.e-gantt .e-gantt-chart .e-chart-rows-container {
|
|
957
878
|
line-height: initial;
|
|
958
879
|
}
|
|
959
|
-
.e-gantt .e-gantt-chart .e-masked-tbody {
|
|
960
|
-
table-layout: fixed;
|
|
961
|
-
width: 100%;
|
|
962
|
-
}
|
|
963
|
-
.e-gantt .e-gantt-chart .e-div-background {
|
|
964
|
-
border-color: rgb(225, 223, 221);
|
|
965
|
-
border-right-style: solid;
|
|
966
|
-
border-right-width: 1px;
|
|
967
|
-
height: 100%;
|
|
968
|
-
position: absolute;
|
|
969
|
-
}
|
|
970
|
-
.e-gantt .e-gantt-chart .e-innerHTML {
|
|
971
|
-
height: 16px;
|
|
972
|
-
width: 16px;
|
|
973
|
-
left: 14px;
|
|
974
|
-
background: rgb(225, 223, 221);
|
|
975
|
-
}
|
|
976
|
-
.e-gantt .e-gantt-chart .e-innerHTML1 {
|
|
977
|
-
height: 16px;
|
|
978
|
-
width: 16px;
|
|
979
|
-
left: 30px;
|
|
980
|
-
background: rgb(225, 223, 221);
|
|
981
|
-
}
|
|
982
|
-
.e-gantt .e-gantt-chart .e-innerHTML2 {
|
|
983
|
-
height: 16px;
|
|
984
|
-
width: 16px;
|
|
985
|
-
left: 60px;
|
|
986
|
-
background: rgb(225, 223, 221);
|
|
987
|
-
}
|
|
988
|
-
.e-gantt .e-gantt-chart .e-timelineHeader {
|
|
989
|
-
height: 16px;
|
|
990
|
-
width: 82px;
|
|
991
|
-
left: 20px;
|
|
992
|
-
background: rgb(225, 223, 221);
|
|
993
|
-
}
|
|
994
|
-
.e-gantt .e-gantt-chart .e-maskcell01 {
|
|
995
|
-
height: 12px;
|
|
996
|
-
width: 88px;
|
|
997
|
-
left: 14px;
|
|
998
|
-
border-radius: 0;
|
|
999
|
-
background: rgb(225, 223, 221);
|
|
1000
|
-
}
|
|
1001
|
-
.e-gantt .e-gantt-chart .e-maskcell02 {
|
|
1002
|
-
height: 18px;
|
|
1003
|
-
width: 410px;
|
|
1004
|
-
border-radius: 0;
|
|
1005
|
-
background: rgb(225, 223, 221);
|
|
1006
|
-
}
|
|
1007
|
-
.e-gantt .e-gantt-chart .e-maskcell03 {
|
|
1008
|
-
height: 12px;
|
|
1009
|
-
width: 88px;
|
|
1010
|
-
left: 14px;
|
|
1011
|
-
border-radius: 0;
|
|
1012
|
-
background: rgb(225, 223, 221);
|
|
1013
|
-
}
|
|
1014
|
-
.e-gantt .e-gantt-chart .e-maskcell04 {
|
|
1015
|
-
height: 18px;
|
|
1016
|
-
width: 208px;
|
|
1017
|
-
border-radius: 0;
|
|
1018
|
-
background: rgb(225, 223, 221);
|
|
1019
|
-
}
|
|
1020
|
-
.e-gantt .e-gantt-chart .e-maskcell05 {
|
|
1021
|
-
height: 12px;
|
|
1022
|
-
width: 108px;
|
|
1023
|
-
left: 64px;
|
|
1024
|
-
border-radius: 0;
|
|
1025
|
-
background: rgb(225, 223, 221);
|
|
1026
|
-
}
|
|
1027
|
-
.e-gantt .e-gantt-chart .e-maskcell06 {
|
|
1028
|
-
height: 18px;
|
|
1029
|
-
width: 195px;
|
|
1030
|
-
left: 192px;
|
|
1031
|
-
border-radius: 0;
|
|
1032
|
-
background: rgb(225, 223, 221);
|
|
1033
|
-
}
|
|
1034
|
-
.e-gantt .e-gantt-chart .e-maskcell07 {
|
|
1035
|
-
height: 18px;
|
|
1036
|
-
width: 156px;
|
|
1037
|
-
left: 388px;
|
|
1038
|
-
border-radius: 0;
|
|
1039
|
-
background: rgb(225, 223, 221);
|
|
1040
|
-
}
|
|
1041
880
|
.e-gantt .e-gantt-chart .e-taskbar-left-resizer,
|
|
1042
881
|
.e-gantt .e-gantt-chart .e-taskbar-right-resizer {
|
|
1043
882
|
display: inline-block;
|
|
@@ -1072,7 +911,7 @@
|
|
|
1072
911
|
border-right: 7px solid transparent;
|
|
1073
912
|
cursor: col-resize;
|
|
1074
913
|
height: 0;
|
|
1075
|
-
left:
|
|
914
|
+
left: 0;
|
|
1076
915
|
position: absolute;
|
|
1077
916
|
top: -7px;
|
|
1078
917
|
width: 0;
|
|
@@ -1084,7 +923,7 @@
|
|
|
1084
923
|
border-right: 6px solid transparent;
|
|
1085
924
|
cursor: col-resize;
|
|
1086
925
|
height: 0;
|
|
1087
|
-
left:
|
|
926
|
+
left: 1px;
|
|
1088
927
|
position: absolute;
|
|
1089
928
|
top: -7px;
|
|
1090
929
|
width: 0;
|
|
@@ -1132,7 +971,6 @@
|
|
|
1132
971
|
}
|
|
1133
972
|
.e-gantt .e-gantt-chart .e-task-table {
|
|
1134
973
|
overflow: hidden;
|
|
1135
|
-
border-collapse: separate;
|
|
1136
974
|
}
|
|
1137
975
|
.e-gantt .e-gantt-chart .e-left-resize-gripper,
|
|
1138
976
|
.e-gantt .e-gantt-chart .e-right-resize-gripper {
|
|
@@ -1177,6 +1015,7 @@
|
|
|
1177
1015
|
border-radius: 3px;
|
|
1178
1016
|
font-weight: 500;
|
|
1179
1017
|
height: 28px;
|
|
1018
|
+
left: 5px;
|
|
1180
1019
|
line-height: 1.5;
|
|
1181
1020
|
padding: 3px 12px;
|
|
1182
1021
|
position: absolute;
|
|
@@ -1299,8 +1138,6 @@
|
|
|
1299
1138
|
}
|
|
1300
1139
|
.e-gantt-dialog .e-tab .e-tab-header .e-indicator {
|
|
1301
1140
|
display: block;
|
|
1302
|
-
bottom: 1px;
|
|
1303
|
-
height: 3px;
|
|
1304
1141
|
}
|
|
1305
1142
|
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
1306
1143
|
border-style: solid;
|
|
@@ -1387,7 +1224,7 @@
|
|
|
1387
1224
|
.e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
1388
1225
|
border-radius: 50%;
|
|
1389
1226
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
1390
|
-
width: auto;
|
|
1227
|
+
width: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
1391
1228
|
}
|
|
1392
1229
|
|
|
1393
1230
|
.e-icon-rowselect::before {
|
|
@@ -1566,7 +1403,6 @@
|
|
|
1566
1403
|
font-size: 12px;
|
|
1567
1404
|
font-weight: 400;
|
|
1568
1405
|
line-height: 1.8;
|
|
1569
|
-
color: #201f1e;
|
|
1570
1406
|
margin-bottom: 0;
|
|
1571
1407
|
}
|
|
1572
1408
|
|
|
@@ -1624,7 +1460,6 @@
|
|
|
1624
1460
|
border-bottom-color: #edebe9;
|
|
1625
1461
|
border-bottom-width: 1px;
|
|
1626
1462
|
border-right-color: #edebe9;
|
|
1627
|
-
border-left-color: #edebe9;
|
|
1628
1463
|
color: #201f1e;
|
|
1629
1464
|
height: 52px;
|
|
1630
1465
|
}
|
|
@@ -1667,7 +1502,7 @@
|
|
|
1667
1502
|
}
|
|
1668
1503
|
.e-gantt .e-gantt-chart .e-gantt-child-taskbar-inner-div {
|
|
1669
1504
|
background-color: #6ec0ff;
|
|
1670
|
-
|
|
1505
|
+
border: 1px solid #0078d4;
|
|
1671
1506
|
border-radius: 4px;
|
|
1672
1507
|
}
|
|
1673
1508
|
.e-gantt .e-gantt-chart .e-collapse-parent .e-gantt-child-taskbar-inner-div {
|
|
@@ -1689,7 +1524,7 @@
|
|
|
1689
1524
|
}
|
|
1690
1525
|
.e-gantt .e-gantt-chart .e-gantt-parent-taskbar-inner-div {
|
|
1691
1526
|
background-color: #e1dfdd;
|
|
1692
|
-
|
|
1527
|
+
border: 1px solid #c8c6c4;
|
|
1693
1528
|
border-radius: 4px;
|
|
1694
1529
|
}
|
|
1695
1530
|
.e-gantt .e-gantt-chart .e-gantt-parent-progressbar-inner-div {
|
|
@@ -1745,7 +1580,6 @@
|
|
|
1745
1580
|
}
|
|
1746
1581
|
.e-gantt .e-gantt-chart .e-event-markers .e-gantt-right-arrow {
|
|
1747
1582
|
border-right-color: #fff4ce;
|
|
1748
|
-
border-left-color: #fff4ce !important; /* stylelint-disable-line declaration-no-important */
|
|
1749
1583
|
}
|
|
1750
1584
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar {
|
|
1751
1585
|
background: linear-gradient(to right, #c7e0f4, #0078d4 30%, #0078d4 70%, #0078d4 70%, #c7e0f4 100%);
|
|
@@ -1838,16 +1672,14 @@
|
|
|
1838
1672
|
border-width: 3px;
|
|
1839
1673
|
}
|
|
1840
1674
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar-right {
|
|
1841
|
-
border-
|
|
1842
|
-
border-bottom-left-radius: 0;
|
|
1843
|
-
border-top-right-radius: 2px;
|
|
1675
|
+
border-bottom-left-radius: 0px;
|
|
1844
1676
|
border-bottom-right-radius: 2px;
|
|
1677
|
+
border-top-left-radius: 0px;
|
|
1678
|
+
border-top-right-radius: 2px;
|
|
1845
1679
|
}
|
|
1846
1680
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar-left {
|
|
1847
1681
|
border-bottom-left-radius: 2px;
|
|
1848
1682
|
border-top-left-radius: 2px;
|
|
1849
|
-
border-bottom-right-radius: 0;
|
|
1850
|
-
border-top-right-radius: 0;
|
|
1851
1683
|
}
|
|
1852
1684
|
.e-gantt .e-gantt-chart .e-task-label {
|
|
1853
1685
|
color: #fff;
|
|
@@ -2000,9 +1832,6 @@
|
|
|
2000
1832
|
color: #605e5c !important; /* stylelint-disable-line declaration-no-important */
|
|
2001
1833
|
}
|
|
2002
1834
|
|
|
2003
|
-
.e-gantt-dialog .e-dlg-content .e-rte-quick-popup.e-hide {
|
|
2004
|
-
border: none !important; /* stylelint-disable-line declaration-no-important */
|
|
2005
|
-
}
|
|
2006
1835
|
.e-gantt-dialog .e-dlg-header {
|
|
2007
1836
|
color: #201f1e;
|
|
2008
1837
|
}
|
|
@@ -0,0 +1,210 @@
|
|
|
1
|
+
$gantt-header-bg-color: $grey-base !default;
|
|
2
|
+
$gantt-header-border-color: $grey-88 !default;
|
|
3
|
+
$gantt-header-color: $grey-dark-font !default;
|
|
4
|
+
$gantt-context-menu-icon-color: $grey-dark-font !default;
|
|
5
|
+
$gantt-grid-line-color: $grey-88 !default;
|
|
6
|
+
$gantt-label-color: rgba($grey-light-font, .87) !default;
|
|
7
|
+
$gantt-content-color: rgba($grey-light-font, .87) !default;
|
|
8
|
+
$holiday-background: $grey-light !default;
|
|
9
|
+
$progress-handler-outline: $brand-primary-font !default;
|
|
10
|
+
$progress-handler-background: $gray-dark !default;
|
|
11
|
+
$holiday-label-color: $grey-dark-font !default;
|
|
12
|
+
$holiday-label-font-size: 13px !default;
|
|
13
|
+
$weekend-background: $grey-dark !default;
|
|
14
|
+
$event-marker-line-color: $brand-primary !default;
|
|
15
|
+
$event-marker-label-color: #cae8ff !default;
|
|
16
|
+
$event-marker-label-font-color: #004a8c !default;
|
|
17
|
+
$event-marker-label-font-size: 12px !default;
|
|
18
|
+
$event-marker-label-padding: 7px 12px !default;
|
|
19
|
+
$event-marker-label-height: 30px !default;
|
|
20
|
+
$event-marker-label-arrow-top: 60px !default;
|
|
21
|
+
$connector-line-color: $brand-primary !default;
|
|
22
|
+
$connector-line-hover-color: $brand-primary !default;
|
|
23
|
+
$connector-point-border-color: $grey-base !default;
|
|
24
|
+
$connector-false-line-color: $brand-primary !default;
|
|
25
|
+
$connector-point-hover-color: #21527d !default;
|
|
26
|
+
$critical-connector-line-color: #d13438 !default;
|
|
27
|
+
$critical-connector-line-hover-color: #f3d8da !default;
|
|
28
|
+
$connector-point-hover-bg-color: $grey-e6 !default;
|
|
29
|
+
$connector-point-hover-border-color: $brand-primary !default;
|
|
30
|
+
$gantt-connector-point-margin-top: 7.5px !default;
|
|
31
|
+
$gantt-connector-point-margin-radius: 4px !default;
|
|
32
|
+
$gantt-connector-point-left: 8px !default;
|
|
33
|
+
$gantt-unscheduled-taskbar-left: 3px !default;
|
|
34
|
+
$gantt-unscheduled-taskbar-right-radius: 2px !default;
|
|
35
|
+
$gantt-label-size: 13px !default;
|
|
36
|
+
$gantt-header-border-spacing: 0 !default;
|
|
37
|
+
$gantt-line-container-cell-border-color: $grey-88 !default;
|
|
38
|
+
/* stylelint-disable */
|
|
39
|
+
$gantt-unscheduled-taskbar-background: linear-gradient(to right, rgba($brand-primary, 0.2 ), $brand-primary 30%, $brand-primary 70%, $brand-primary 70%, rgba($brand-primary, 0.2 ) 100%) !default;
|
|
40
|
+
$gantt-unscheduled-critical-taskbar-background: linear-gradient(to right, rgba(285,85,85, 0.2), #D13438 30%, #D13438 70%, #D13438 70%, rgba(285,85,85, 0.2) 100%) !default;
|
|
41
|
+
$gantt-unscheduled-critical-taskbar-background-color: rgba(285,85,85, .2) !default;
|
|
42
|
+
$gantt-critical-child-task-bar: #F3D8DA !default;
|
|
43
|
+
$gantt-critical-child-progress-bar: #D13438 !default;
|
|
44
|
+
$gantt-critical-child-task-bar-border: 1px solid #F3D8DA !default;
|
|
45
|
+
$gantt-unscheduled-milestone-top-border: #dadada !default;
|
|
46
|
+
$gantt-unscheduled-milestone-bottom-border: #dadada !default;
|
|
47
|
+
$gantt-child-task-bar: lighten($brand-primary, 10%) !default;
|
|
48
|
+
$gantt-child-progress-bar: $brand-primary !default;
|
|
49
|
+
$gantt-child-progress-bar-border: 1px solid $brand-primary !default;
|
|
50
|
+
$gantt-child-progress-bar-border-radious:4px;
|
|
51
|
+
$gantt-child-task-bar-border: 1px solid $brand-primary !default;
|
|
52
|
+
$gantt-manualchild-task-bar: #8dd1c4;
|
|
53
|
+
$gantt-manualchild-progress-bar: #67c1b2;
|
|
54
|
+
$gantt-manualchild-progress-bar-border: #4fb29f;
|
|
55
|
+
$gantt-manualchild-task-bar-border: #4fb29f;
|
|
56
|
+
$gantt-manualparent-background-color: #989A9C;
|
|
57
|
+
$gantt-unscheduledmanualparent-background-color: linear-gradient(to right, rgba(63, 81, 181, 0.2), #989A9C 30%, #989A9C 70%, #989A9C 70%, rgba(63, 81, 181, 0.2) 100%) !default;
|
|
58
|
+
$gantt-unscheduled-manualtaskbar-background: linear-gradient(to right, rgba(63,81,181, 0.2), #8dd1c4 30%, #8dd1c4 70%, #8dd1c4 70%, rgba(63,81,181, 0.2) 100%) !default;
|
|
59
|
+
$gantt-parent-task-bar: #029f90 !default;
|
|
60
|
+
$gantt-parent-progress-bar: #4cc7ba !default;
|
|
61
|
+
$gantt-milestone-border-color: #dadada !default;
|
|
62
|
+
$gantt-critical-milestone-border-color: #D13438 !default;
|
|
63
|
+
$gantt-parent-milestone-border-color: #4cc7ba !default;
|
|
64
|
+
$gantt-parent-progress-bar-border: 1px solid #4cc7ba !default;
|
|
65
|
+
$gantt-parent-task-bar-border: 1px solid #4cc7ba !default;
|
|
66
|
+
$gantt-progress-bar-left-radius: 2px !default;
|
|
67
|
+
$gantt-unscheduled-taskbar-left-radius: 0px !default;
|
|
68
|
+
$gantt-unscheduled-taskbar-border-radius: 4px !default;
|
|
69
|
+
$gantt-connector-point-right-margin-left: 2px !default;
|
|
70
|
+
$gantt-right-label-container-margin-left: 25px !default;
|
|
71
|
+
$gantt-task-label-font-size: 12px !default;
|
|
72
|
+
$gantt-label-font-size: 14px !default;
|
|
73
|
+
$gantt-bigger-label-font-size: 14px !default;
|
|
74
|
+
$gantt-label-font-color: $grey-dark-font !default;
|
|
75
|
+
$gantt-task-label-font-color: $brand-primary-font !default;
|
|
76
|
+
$gantt-tab-header-active-font-color: $grey-light-font !default;
|
|
77
|
+
$gantt-tab-header-font-color: $brand-primary-font !default;
|
|
78
|
+
$gantt-edit-icon-color: $brand-primary-font !default;
|
|
79
|
+
$gantt-icons-color: $brand-primary-font;
|
|
80
|
+
$gantt-unscheduled-taskbar-border: 0px !default;
|
|
81
|
+
$gantt-timeline-top-headercell-font-size: 14px !default;
|
|
82
|
+
$gantt-timeline-top-headercell-font-weight: bold !default;
|
|
83
|
+
$gantt-dialog-general-height: 241px !default;
|
|
84
|
+
$gantt-dialog-edit-form-odd-padding: 16px 18px 0 18px !default;
|
|
85
|
+
$gantt-dialog-edit-form-even-padding: 16px 16px 0 0 !default;
|
|
86
|
+
$gantt-dialog-edit-form-scroll-padding: 16px 16px 0 0 !default;
|
|
87
|
+
$gantt-bigger-predecessor-dialog-padding: 10px 9px 9px 14px !important;
|
|
88
|
+
$gantt-bigger-predecessor-dialog-font-size: 12px;
|
|
89
|
+
$gantt-bigger-predecessor-dialog-font-weight: 400 !default;
|
|
90
|
+
$gantt-bigger-predecessor-dialog-line-height: 1.8 !default;
|
|
91
|
+
$gantt-bigger-tooltip-button-color: $shadow;
|
|
92
|
+
$gantt-bigger-tooltip-dialog-color: $grey-light-font;
|
|
93
|
+
$gantt-bigger-tooltip-button-text-color: $grey-light-font;
|
|
94
|
+
$gantt-bigger-tooltip-disabled-button-color: #adadad !important;
|
|
95
|
+
$gantt-bigger-dialog-edit-form-odd-padding: 16px 12px 0 16px !default;
|
|
96
|
+
$gantt-bigger-dialog-edit-form-even-padding: 16px 16px 0 12px !default;
|
|
97
|
+
$gantt-bigger-dialog-close-button-left: 0 !important;
|
|
98
|
+
$gantt-bigger-dialog-close-button-size: 12px !important;
|
|
99
|
+
$gantt-bigger-dialog-header-padding: 16px 4px 16px 16px !important;
|
|
100
|
+
$gantt-bigger-dialog-edit-form-scroll-padding: 16px 18px 0 9px !default;
|
|
101
|
+
$gantt-bigger-add-dialog-content-height: 242px !important;
|
|
102
|
+
$gantt-bigger-event-arrow-color: $brand-info-light;
|
|
103
|
+
$gantt-bigger-event-arrow-font-size: 12px !important;
|
|
104
|
+
$gantt-bigger-event-markers-border-radius: 4px !important;
|
|
105
|
+
$gantt-bigger-event-markers-height: 26px !important;
|
|
106
|
+
$gantt-bigger-event-arrow-bottom: 6px solid transparent;
|
|
107
|
+
$gantt-bigger-event-arrow-right: 6px solid transparent;
|
|
108
|
+
$gantt-bigger-event-arrow-top: 6px solid transparent;
|
|
109
|
+
$gantt-bigger-event-arrow-top-value: 73px !important;
|
|
110
|
+
$gantt-bigger-event-markers-top: 65px !important;
|
|
111
|
+
$gantt-bigger-event-markers-padding: 4px 11px 4px 9px !important;
|
|
112
|
+
$gantt-bigger-add-dialog-input-height: 76px !important;
|
|
113
|
+
$gantt-bigger-add-dialog-input-width: 250px !important;
|
|
114
|
+
$gantt-bigger-add-dialog-input-field-width: 175px !default;
|
|
115
|
+
$gantt-bigger-filter-dialog-footer-padding: 16px !important;
|
|
116
|
+
$gantt-bigger-add-dialog-footer-padding: 16px !important;
|
|
117
|
+
$gantt-bigger-filter-dialog-input-padding: 16px 0 0 !important;
|
|
118
|
+
$gantt-bigger-filter-dialog-footer-height: 70px !important;
|
|
119
|
+
$gantt-bigger-add-dialog-footer-height: 70px !important;
|
|
120
|
+
$gantt-bigger-dialog-width: 556px !important;
|
|
121
|
+
$gantt-bigger-filter-dialog-width: 350px !important;
|
|
122
|
+
$gantt-dialog-bigger-input-field: 36px !default;
|
|
123
|
+
$gantt-dialog-bigger-input-padding-field: 32px 16px 16px !important;
|
|
124
|
+
$gantt-bigger-dialog-input-field-height: 34px !important;
|
|
125
|
+
$gantt-bigger-dialog-input-icon: 35px !important;
|
|
126
|
+
$gantt-dialog-bigger-border-radius: 6px !important;
|
|
127
|
+
$gantt-bigger-dialog-tab-padding-left: 5px !important;
|
|
128
|
+
$gantt-bigger-dialog-border-radius: 6px 6px 0px 0px !default;
|
|
129
|
+
$gantt-dialog-dependent-height: 161px !default;
|
|
130
|
+
$gantt-dialog-resource-height: 202px !default;
|
|
131
|
+
$gantt-dialog-rte-height: 241px !default;
|
|
132
|
+
$gantt-dialog-rte-content-height: 200px !default;
|
|
133
|
+
$gantt-dialog-padding-bottom: 20px !default;
|
|
134
|
+
$gantt-dialog-active-tab-background: $gray-base !default;
|
|
135
|
+
$gantt-dialog-tab-padding-left: 12px !default;
|
|
136
|
+
$gantt-dialog-tab-background: $brand-primary !default;
|
|
137
|
+
$gantt-dialog-header-font-color: $brand-primary-font !default;
|
|
138
|
+
$gantt-dialog-icon-color: $brand-primary-font !default;
|
|
139
|
+
$gantt-dialog-icon-hover-color: transparent !default;
|
|
140
|
+
$gantt-dialog-close-icon-hover-color: $grey-dark-font !default;
|
|
141
|
+
$gantt-dialog-tab-hover-border-color: transparent !default;
|
|
142
|
+
$gantt-dialog-tab-header-border-no-color: transparent !default;
|
|
143
|
+
$gantt-tab-header-border-width: 0px;
|
|
144
|
+
$gantt-depedent-div-border-bottom: 0px !default;
|
|
145
|
+
$gantt-resource-div-border-bottom: 0px !default;
|
|
146
|
+
$gantt-richtext-border-bottom: 0px !default;
|
|
147
|
+
$gantt-richtext-content-border-bottom: 0px !default;
|
|
148
|
+
$gantt-tab-selection-indicator-color: transparent !default;
|
|
149
|
+
$gantt-tab-header-hover-color: $grey-dark !default;
|
|
150
|
+
$gantt-tab-header-hover-font-color: $grey-dark-font !default;
|
|
151
|
+
$gantt-connector-point-width: 12px !default;
|
|
152
|
+
$gantt-connector-point-height: 8px !default;
|
|
153
|
+
$gantt-connector-left-point-left: -12px !default;
|
|
154
|
+
$gantt-parent-progress-bar-border-radius: 4px !default;
|
|
155
|
+
$gantt-active-background: $grey-88 !default;
|
|
156
|
+
$gantt-active-color: $brand-primary-font !default;
|
|
157
|
+
$gantt-active-color-opacity: 1 !default;
|
|
158
|
+
$gantt-table-background: $grey-base !default;
|
|
159
|
+
$connector-point-hover-outerline-color: #75ACDB !default;
|
|
160
|
+
$gantt-baseline-color: $brand-warning !default;
|
|
161
|
+
$gantt-child-progress-margin-left: 0.5px !default;
|
|
162
|
+
$gantt-timeline-single-header-outer-div: 45px !default;
|
|
163
|
+
$gantt-chart-timeline-single-header-outer-div: 47px !default;
|
|
164
|
+
$gantt-header-border-height: 64px !default;
|
|
165
|
+
$gantt-bigger-header-border-height: 64px !default;
|
|
166
|
+
$gantt-treegrid-header-border-height: 63px !default;
|
|
167
|
+
$gantt-bigger-treegrid-header-border-height: 63px !default;
|
|
168
|
+
$gantt-header-border-bottom-width: 0px !default;
|
|
169
|
+
$gantt-timeline-top-header-cell-height: 32px !default;
|
|
170
|
+
$gantt-bigger-timeline-top-header-cell-height: 32px !default;
|
|
171
|
+
$gantt-header-border-radius: 4px !default;
|
|
172
|
+
$gantt-splitter-border-top-right-radius: 0px !default;
|
|
173
|
+
$gantt-splitter-border-top-left-radius: 0px !default;
|
|
174
|
+
$gantt-filter-menu-value-div-padding: 24px !default;
|
|
175
|
+
$gantt-dialog-tab-hover-border-bottom: 0px !default;
|
|
176
|
+
$gantt-dialog-tab-hover-border-bottom-radius: 0px !default;
|
|
177
|
+
$gantt-dialog-border-radius: 6px 6px 0px 0px !default;
|
|
178
|
+
$event-marker-line-height: 1.5 !default;
|
|
179
|
+
$gantt-inactive-parent: #8A8A8A !default;
|
|
180
|
+
$gantt-inactive-child: #D5D5D5 !default;
|
|
181
|
+
$gantt-connected-task: lighten($brand-primary, 20%) !default;
|
|
182
|
+
$gantt-active-parent-task: lighten(#000000, 10%) !default;
|
|
183
|
+
$gantt-uptail-border: #e0e0e0 !default;
|
|
184
|
+
$gantt-gridpopup-span: $base-font !default;
|
|
185
|
+
$gantt-active-parent-shadow: rgba($gantt-gridpopup-span, 0.5) !default;
|
|
186
|
+
$gantt-left-resize-gripper-border: #9e9e9e !default;
|
|
187
|
+
$gantt-left-resize-gripper-color: #eee !default;
|
|
188
|
+
$gantt-clone-padding: 4px 5px !default;
|
|
189
|
+
$gantt-bigger-clone-padding: $gantt-clone-padding !default;
|
|
190
|
+
$gantt-cell-border-color: $grey-88 !default;
|
|
191
|
+
$gantt-group-clone-box-shadow: 0 0 !default;
|
|
192
|
+
$gantt-header-font-size: 12px !default;
|
|
193
|
+
$gantt-header-font-weight: 500 !default;
|
|
194
|
+
$gantt-drag-clone-font-weight: $gantt-header-font-weight !default;
|
|
195
|
+
$gantt-drag-clone-opacity: 1 !default;
|
|
196
|
+
$gantt-group-clone-text-align: center !default;
|
|
197
|
+
$gantt-clone-prop-box-shadow: 0 5px 15px rgba($base-font, .5) !default;
|
|
198
|
+
$gantt-drag-clone-bg-color: $grey-base !default;
|
|
199
|
+
$gantt-drag-clone-border-color: $grey-44 !default;
|
|
200
|
+
$gantt-drag-clone-color: $header-font-color !default;
|
|
201
|
+
$gantt-content-font-color: $grey-dark-font !default;
|
|
202
|
+
$gantt-clone-dragdrop-bg-color: $grey !default;
|
|
203
|
+
$error-elem-color: #e3165b;
|
|
204
|
+
$gantt-border-size: 1px !default;
|
|
205
|
+
$gantt-active-container-border: lighten($brand-primary, 10%) !default;
|
|
206
|
+
$grid-active-container-border: 0 0 0 1px lighten($brand-primary, 10%) inset !default;
|
|
207
|
+
$gantt-collapse-progress-width: 0px !important;
|
|
208
|
+
$rangecontainer-border-color: #FC7A05;
|
|
209
|
+
$gantt-range-container-arc-radius: 2px !default;
|
|
210
|
+
$bigger-column-menu-size: 40px !default;
|