@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/material.css
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
@charset "UTF-8";
|
|
1
2
|
@import url("https://fonts.googleapis.com/css?family=Roboto:400,500");
|
|
2
3
|
.e-ddl.e-control-wrapper .e-ddl-icon::before {
|
|
3
4
|
transform: rotate(0deg);
|
|
@@ -225,7 +226,7 @@
|
|
|
225
226
|
content: "\e825";
|
|
226
227
|
}
|
|
227
228
|
.e-gantt .e-notes-info::before {
|
|
228
|
-
content: "
|
|
229
|
+
content: "🛈";
|
|
229
230
|
}
|
|
230
231
|
.e-gantt .e-left-resize-gripper::before,
|
|
231
232
|
.e-gantt .e-right-resize-gripper::before {
|
|
@@ -377,7 +378,7 @@
|
|
|
377
378
|
border-radius: 6px !important;
|
|
378
379
|
padding: 20px 16px 6px 16px !important;
|
|
379
380
|
}
|
|
380
|
-
.e-bigger .e-
|
|
381
|
+
.e-bigger .e-columnmenu {
|
|
381
382
|
top: 38px;
|
|
382
383
|
}
|
|
383
384
|
.e-bigger .e-gantt-dialog .e-dialog {
|
|
@@ -509,75 +510,6 @@
|
|
|
509
510
|
font-size: 12px;
|
|
510
511
|
font-weight: 400;
|
|
511
512
|
line-height: 1.46;
|
|
512
|
-
color: #000;
|
|
513
|
-
}
|
|
514
|
-
|
|
515
|
-
.e-blazor-gantt-tooltip .e-tip-content {
|
|
516
|
-
overflow-wrap: unset !important; /* stylelint-disable-line declaration-no-important */
|
|
517
|
-
white-space: nowrap !important; /* stylelint-disable-line declaration-no-important */
|
|
518
|
-
word-break: unset !important; /* stylelint-disable-line declaration-no-important */
|
|
519
|
-
}
|
|
520
|
-
|
|
521
|
-
.e-gantt-tooltip .e-tip-content {
|
|
522
|
-
text-align: left !important; /* stylelint-disable-line declaration-no-important */
|
|
523
|
-
}
|
|
524
|
-
|
|
525
|
-
.e-gantt.e-gantt-rtl .e-connector-line-right-arrow {
|
|
526
|
-
border-left: none !important; /* stylelint-disable-line declaration-no-important */
|
|
527
|
-
border-right-color: #3f51b5;
|
|
528
|
-
}
|
|
529
|
-
.e-gantt.e-gantt-rtl .e-connector-line-left-arrow {
|
|
530
|
-
border-right: none !important; /* stylelint-disable-line declaration-no-important */
|
|
531
|
-
border-left-color: #3f51b5;
|
|
532
|
-
}
|
|
533
|
-
.e-gantt.e-gantt-rtl .e-toolbar-right {
|
|
534
|
-
left: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
535
|
-
right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
536
|
-
}
|
|
537
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-timeline-header-container {
|
|
538
|
-
border-right: none !important; /* stylelint-disable-line declaration-no-important */
|
|
539
|
-
border-left: 1px solid !important; /* stylelint-disable-line declaration-no-important */
|
|
540
|
-
border-left-color: #e0e0e0 !important; /* stylelint-disable-line declaration-no-important */
|
|
541
|
-
}
|
|
542
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-timeline-top-header-cell .e-gantt-top-cell-text {
|
|
543
|
-
padding-right: 11px !important; /* stylelint-disable-line declaration-no-important */
|
|
544
|
-
padding-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
545
|
-
text-align: right !important; /* stylelint-disable-line declaration-no-important */
|
|
546
|
-
}
|
|
547
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-element {
|
|
548
|
-
right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
549
|
-
}
|
|
550
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-after {
|
|
551
|
-
right: 1px !important; /* stylelint-disable-line declaration-no-important */
|
|
552
|
-
}
|
|
553
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-connectorpoint-right {
|
|
554
|
-
margin-right: 2px !important; /* stylelint-disable-line declaration-no-important */
|
|
555
|
-
}
|
|
556
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-event-markers .e-gantt-right-arrow {
|
|
557
|
-
border-left: 5px solid;
|
|
558
|
-
border-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
559
|
-
}
|
|
560
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-holiday .e-span {
|
|
561
|
-
transform: rotate(90deg) !important; /* stylelint-disable-line declaration-no-important */
|
|
562
|
-
}
|
|
563
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-left-label-container {
|
|
564
|
-
padding-left: 25px !important; /* stylelint-disable-line declaration-no-important */
|
|
565
|
-
padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
566
|
-
}
|
|
567
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-right-label-container {
|
|
568
|
-
margin-right: 25px !important; /* stylelint-disable-line declaration-no-important */
|
|
569
|
-
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
570
|
-
}
|
|
571
|
-
|
|
572
|
-
.e-gantt-rtl .e-gantt-tooltip-label {
|
|
573
|
-
text-align: right !important; /* stylelint-disable-line declaration-no-important */
|
|
574
|
-
}
|
|
575
|
-
.e-gantt-rtl .e-tip-content {
|
|
576
|
-
text-align: right !important; /* stylelint-disable-line declaration-no-important */
|
|
577
|
-
}
|
|
578
|
-
|
|
579
|
-
.e-gantt-dialog.e-rtl .e-dlg-closeicon-btn {
|
|
580
|
-
padding: 4px 8px !important; /* stylelint-disable-line declaration-no-important */
|
|
581
513
|
}
|
|
582
514
|
|
|
583
515
|
.e-gantt {
|
|
@@ -689,7 +621,6 @@
|
|
|
689
621
|
border-top-style: none;
|
|
690
622
|
border-top-width: 0;
|
|
691
623
|
padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
692
|
-
padding-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
693
624
|
}
|
|
694
625
|
.e-gantt .e-gantt-tree-grid-pane .e-columnheader,
|
|
695
626
|
.e-gantt .e-gantt-tree-grid-pane .e-headercell {
|
|
@@ -698,9 +629,6 @@
|
|
|
698
629
|
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content {
|
|
699
630
|
overflow-x: scroll !important; /* stylelint-disable-line declaration-no-important */
|
|
700
631
|
}
|
|
701
|
-
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-gantt-frozen {
|
|
702
|
-
overflow-x: hidden !important; /* stylelint-disable-line declaration-no-important */
|
|
703
|
-
}
|
|
704
632
|
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content.e-gantt-scroll-padding {
|
|
705
633
|
width: calc(100% + 17px);
|
|
706
634
|
}
|
|
@@ -720,12 +648,6 @@
|
|
|
720
648
|
position: relative;
|
|
721
649
|
width: 100%;
|
|
722
650
|
}
|
|
723
|
-
.e-gantt .e-gantt-chart .e-chart-empty-row {
|
|
724
|
-
border: 0.5px solid;
|
|
725
|
-
position: absolute;
|
|
726
|
-
background-color: rgba(0, 120, 222, 0.15);
|
|
727
|
-
border-color: rgba(0, 120, 222, 0.65) !important;
|
|
728
|
-
}
|
|
729
651
|
.e-gantt .e-gantt-chart .e-chart-root-container {
|
|
730
652
|
border-right: 0 solid;
|
|
731
653
|
}
|
|
@@ -820,10 +742,10 @@
|
|
|
820
742
|
box-sizing: border-box;
|
|
821
743
|
}
|
|
822
744
|
.e-gantt .e-gantt-chart .e-zero-spacing {
|
|
823
|
-
border-spacing: 0
|
|
745
|
+
border-spacing: 0;
|
|
824
746
|
}
|
|
825
747
|
.e-gantt .e-gantt-chart .e-chart-row:first-child .e-chart-row-border {
|
|
826
|
-
border-top:
|
|
748
|
+
border-top-color: transparent;
|
|
827
749
|
}
|
|
828
750
|
.e-gantt .e-gantt-chart .e-chart-row .e-chart-row-border {
|
|
829
751
|
border-collapse: separate;
|
|
@@ -974,88 +896,6 @@
|
|
|
974
896
|
.e-gantt .e-gantt-chart .e-chart-rows-container {
|
|
975
897
|
line-height: initial;
|
|
976
898
|
}
|
|
977
|
-
.e-gantt .e-gantt-chart .e-masked-tbody {
|
|
978
|
-
table-layout: fixed;
|
|
979
|
-
width: 100%;
|
|
980
|
-
}
|
|
981
|
-
.e-gantt .e-gantt-chart .e-div-background {
|
|
982
|
-
border-color: #e1dfdd;
|
|
983
|
-
border-right-style: solid;
|
|
984
|
-
border-right-width: 1px;
|
|
985
|
-
height: 100%;
|
|
986
|
-
position: absolute;
|
|
987
|
-
}
|
|
988
|
-
.e-gantt .e-gantt-chart .e-innerHTML {
|
|
989
|
-
height: 16px;
|
|
990
|
-
width: 16px;
|
|
991
|
-
left: 14px;
|
|
992
|
-
background: #e1dfdd;
|
|
993
|
-
}
|
|
994
|
-
.e-gantt .e-gantt-chart .e-innerHTML1 {
|
|
995
|
-
height: 16px;
|
|
996
|
-
width: 16px;
|
|
997
|
-
left: 30px;
|
|
998
|
-
background: #e1dfdd;
|
|
999
|
-
}
|
|
1000
|
-
.e-gantt .e-gantt-chart .e-innerHTML2 {
|
|
1001
|
-
height: 16px;
|
|
1002
|
-
width: 16px;
|
|
1003
|
-
left: 60px;
|
|
1004
|
-
background: #e1dfdd;
|
|
1005
|
-
}
|
|
1006
|
-
.e-gantt .e-gantt-chart .e-timelineHeader {
|
|
1007
|
-
height: 16px;
|
|
1008
|
-
width: 82px;
|
|
1009
|
-
left: 20px;
|
|
1010
|
-
background: #e1dfdd;
|
|
1011
|
-
}
|
|
1012
|
-
.e-gantt .e-gantt-chart .e-maskcell01 {
|
|
1013
|
-
height: 12px;
|
|
1014
|
-
width: 88px;
|
|
1015
|
-
left: 14px;
|
|
1016
|
-
border-radius: 0;
|
|
1017
|
-
background: #e1dfdd;
|
|
1018
|
-
}
|
|
1019
|
-
.e-gantt .e-gantt-chart .e-maskcell02 {
|
|
1020
|
-
height: 18px;
|
|
1021
|
-
width: 410px;
|
|
1022
|
-
border-radius: 0;
|
|
1023
|
-
background: #e1dfdd;
|
|
1024
|
-
}
|
|
1025
|
-
.e-gantt .e-gantt-chart .e-maskcell03 {
|
|
1026
|
-
height: 12px;
|
|
1027
|
-
width: 88px;
|
|
1028
|
-
left: 14px;
|
|
1029
|
-
border-radius: 0;
|
|
1030
|
-
background: #e1dfdd;
|
|
1031
|
-
}
|
|
1032
|
-
.e-gantt .e-gantt-chart .e-maskcell04 {
|
|
1033
|
-
height: 18px;
|
|
1034
|
-
width: 208px;
|
|
1035
|
-
border-radius: 0;
|
|
1036
|
-
background: #e1dfdd;
|
|
1037
|
-
}
|
|
1038
|
-
.e-gantt .e-gantt-chart .e-maskcell05 {
|
|
1039
|
-
height: 12px;
|
|
1040
|
-
width: 108px;
|
|
1041
|
-
left: 64px;
|
|
1042
|
-
border-radius: 0;
|
|
1043
|
-
background: #e1dfdd;
|
|
1044
|
-
}
|
|
1045
|
-
.e-gantt .e-gantt-chart .e-maskcell06 {
|
|
1046
|
-
height: 18px;
|
|
1047
|
-
width: 195px;
|
|
1048
|
-
left: 192px;
|
|
1049
|
-
border-radius: 0;
|
|
1050
|
-
background: #e1dfdd;
|
|
1051
|
-
}
|
|
1052
|
-
.e-gantt .e-gantt-chart .e-maskcell07 {
|
|
1053
|
-
height: 18px;
|
|
1054
|
-
width: 156px;
|
|
1055
|
-
left: 388px;
|
|
1056
|
-
border-radius: 0;
|
|
1057
|
-
background: #e1dfdd;
|
|
1058
|
-
}
|
|
1059
899
|
.e-gantt .e-gantt-chart .e-taskbar-left-resizer,
|
|
1060
900
|
.e-gantt .e-gantt-chart .e-taskbar-right-resizer {
|
|
1061
901
|
display: inline-block;
|
|
@@ -1090,7 +930,7 @@
|
|
|
1090
930
|
border-right: 7px solid transparent;
|
|
1091
931
|
cursor: col-resize;
|
|
1092
932
|
height: 0;
|
|
1093
|
-
left:
|
|
933
|
+
left: 0;
|
|
1094
934
|
position: absolute;
|
|
1095
935
|
top: -7px;
|
|
1096
936
|
width: 0;
|
|
@@ -1102,7 +942,7 @@
|
|
|
1102
942
|
border-right: 6px solid transparent;
|
|
1103
943
|
cursor: col-resize;
|
|
1104
944
|
height: 0;
|
|
1105
|
-
left:
|
|
945
|
+
left: 1px;
|
|
1106
946
|
position: absolute;
|
|
1107
947
|
top: -7px;
|
|
1108
948
|
width: 0;
|
|
@@ -1150,7 +990,6 @@
|
|
|
1150
990
|
}
|
|
1151
991
|
.e-gantt .e-gantt-chart .e-task-table {
|
|
1152
992
|
overflow: hidden;
|
|
1153
|
-
border-collapse: separate;
|
|
1154
993
|
}
|
|
1155
994
|
.e-gantt .e-gantt-chart .e-left-resize-gripper,
|
|
1156
995
|
.e-gantt .e-gantt-chart .e-right-resize-gripper {
|
|
@@ -1195,6 +1034,7 @@
|
|
|
1195
1034
|
border-radius: 3px;
|
|
1196
1035
|
font-weight: 500;
|
|
1197
1036
|
height: 30px;
|
|
1037
|
+
left: 5px;
|
|
1198
1038
|
line-height: 1.4;
|
|
1199
1039
|
padding: 7px 12px;
|
|
1200
1040
|
position: absolute;
|
|
@@ -1403,7 +1243,7 @@
|
|
|
1403
1243
|
.e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
1404
1244
|
border-radius: 50%;
|
|
1405
1245
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
1406
|
-
width: auto;
|
|
1246
|
+
width: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
1407
1247
|
}
|
|
1408
1248
|
|
|
1409
1249
|
.e-icon-rowselect::before {
|
|
@@ -1581,7 +1421,6 @@
|
|
|
1581
1421
|
font-size: 12px;
|
|
1582
1422
|
font-weight: 400;
|
|
1583
1423
|
line-height: 1.46;
|
|
1584
|
-
color: #000;
|
|
1585
1424
|
}
|
|
1586
1425
|
|
|
1587
1426
|
/*! Gantt theme */
|
|
@@ -1638,7 +1477,6 @@
|
|
|
1638
1477
|
border-bottom-color: #e0e0e0;
|
|
1639
1478
|
border-bottom-width: 1px;
|
|
1640
1479
|
border-right-color: #e0e0e0;
|
|
1641
|
-
border-left-color: #e0e0e0;
|
|
1642
1480
|
color: rgba(0, 0, 0, 0.54);
|
|
1643
1481
|
height: 64px;
|
|
1644
1482
|
}
|
|
@@ -1681,7 +1519,7 @@
|
|
|
1681
1519
|
}
|
|
1682
1520
|
.e-gantt .e-gantt-chart .e-gantt-child-taskbar-inner-div {
|
|
1683
1521
|
background-color: #5869c5;
|
|
1684
|
-
|
|
1522
|
+
border: 1px solid #3f51b5;
|
|
1685
1523
|
border-radius: 4px;
|
|
1686
1524
|
}
|
|
1687
1525
|
.e-gantt .e-gantt-chart .e-collapse-parent .e-gantt-child-taskbar-inner-div {
|
|
@@ -1703,7 +1541,7 @@
|
|
|
1703
1541
|
}
|
|
1704
1542
|
.e-gantt .e-gantt-chart .e-gantt-parent-taskbar-inner-div {
|
|
1705
1543
|
background-color: rgba(97, 97, 97, 0.87);
|
|
1706
|
-
|
|
1544
|
+
border: 1px solid #616161;
|
|
1707
1545
|
border-radius: 4px;
|
|
1708
1546
|
}
|
|
1709
1547
|
.e-gantt .e-gantt-chart .e-gantt-parent-progressbar-inner-div {
|
|
@@ -1759,7 +1597,6 @@
|
|
|
1759
1597
|
}
|
|
1760
1598
|
.e-gantt .e-gantt-chart .e-event-markers .e-gantt-right-arrow {
|
|
1761
1599
|
border-right-color: #fdbf64;
|
|
1762
|
-
border-left-color: #fdbf64 !important; /* stylelint-disable-line declaration-no-important */
|
|
1763
1600
|
}
|
|
1764
1601
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar {
|
|
1765
1602
|
background: linear-gradient(to right, rgba(63, 81, 181, 0.2), #3f51b5 30%, #3f51b5 70%, #3f51b5 70%, rgba(63, 81, 181, 0.2) 100%);
|
|
@@ -1852,16 +1689,14 @@
|
|
|
1852
1689
|
border-width: 3px;
|
|
1853
1690
|
}
|
|
1854
1691
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar-right {
|
|
1855
|
-
border-
|
|
1856
|
-
border-bottom-left-radius: 0;
|
|
1857
|
-
border-top-right-radius: 2px;
|
|
1692
|
+
border-bottom-left-radius: 0px;
|
|
1858
1693
|
border-bottom-right-radius: 2px;
|
|
1694
|
+
border-top-left-radius: 0px;
|
|
1695
|
+
border-top-right-radius: 2px;
|
|
1859
1696
|
}
|
|
1860
1697
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar-left {
|
|
1861
1698
|
border-bottom-left-radius: 2px;
|
|
1862
1699
|
border-top-left-radius: 2px;
|
|
1863
|
-
border-bottom-right-radius: 0;
|
|
1864
|
-
border-top-right-radius: 0;
|
|
1865
1700
|
}
|
|
1866
1701
|
.e-gantt .e-gantt-chart .e-task-label {
|
|
1867
1702
|
color: #fff;
|
|
@@ -2014,9 +1849,6 @@
|
|
|
2014
1849
|
color: rgba(0, 0, 0, 0.54) !important; /* stylelint-disable-line declaration-no-important */
|
|
2015
1850
|
}
|
|
2016
1851
|
|
|
2017
|
-
.e-gantt-dialog .e-dlg-content .e-rte-quick-popup.e-hide {
|
|
2018
|
-
border: none !important; /* stylelint-disable-line declaration-no-important */
|
|
2019
|
-
}
|
|
2020
1852
|
.e-gantt-dialog .e-dlg-header {
|
|
2021
1853
|
color: #fff;
|
|
2022
1854
|
}
|
package/styles/tailwind-dark.css
CHANGED
|
@@ -349,7 +349,7 @@
|
|
|
349
349
|
border-radius: 6px !important;
|
|
350
350
|
padding: 23px 24px 15px 24px !important;
|
|
351
351
|
}
|
|
352
|
-
.e-bigger .e-
|
|
352
|
+
.e-bigger .e-columnmenu {
|
|
353
353
|
top: 35px;
|
|
354
354
|
}
|
|
355
355
|
.e-bigger .e-gantt-dialog .e-dialog {
|
|
@@ -477,75 +477,6 @@
|
|
|
477
477
|
font-size: 12px;
|
|
478
478
|
font-weight: 400;
|
|
479
479
|
line-height: 1.8;
|
|
480
|
-
color: #fff;
|
|
481
|
-
}
|
|
482
|
-
|
|
483
|
-
.e-blazor-gantt-tooltip .e-tip-content {
|
|
484
|
-
overflow-wrap: unset !important; /* stylelint-disable-line declaration-no-important */
|
|
485
|
-
white-space: nowrap !important; /* stylelint-disable-line declaration-no-important */
|
|
486
|
-
word-break: unset !important; /* stylelint-disable-line declaration-no-important */
|
|
487
|
-
}
|
|
488
|
-
|
|
489
|
-
.e-gantt-tooltip .e-tip-content {
|
|
490
|
-
text-align: left !important; /* stylelint-disable-line declaration-no-important */
|
|
491
|
-
}
|
|
492
|
-
|
|
493
|
-
.e-gantt.e-gantt-rtl .e-connector-line-right-arrow {
|
|
494
|
-
border-left: none !important; /* stylelint-disable-line declaration-no-important */
|
|
495
|
-
border-right-color: #22d3ee;
|
|
496
|
-
}
|
|
497
|
-
.e-gantt.e-gantt-rtl .e-connector-line-left-arrow {
|
|
498
|
-
border-right: none !important; /* stylelint-disable-line declaration-no-important */
|
|
499
|
-
border-left-color: #22d3ee;
|
|
500
|
-
}
|
|
501
|
-
.e-gantt.e-gantt-rtl .e-toolbar-right {
|
|
502
|
-
left: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
503
|
-
right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
504
|
-
}
|
|
505
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-timeline-header-container {
|
|
506
|
-
border-right: none !important; /* stylelint-disable-line declaration-no-important */
|
|
507
|
-
border-left: 1px solid !important; /* stylelint-disable-line declaration-no-important */
|
|
508
|
-
border-left-color: #4b5563 !important; /* stylelint-disable-line declaration-no-important */
|
|
509
|
-
}
|
|
510
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-timeline-top-header-cell .e-gantt-top-cell-text {
|
|
511
|
-
padding-right: 11px !important; /* stylelint-disable-line declaration-no-important */
|
|
512
|
-
padding-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
513
|
-
text-align: right !important; /* stylelint-disable-line declaration-no-important */
|
|
514
|
-
}
|
|
515
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-element {
|
|
516
|
-
right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
517
|
-
}
|
|
518
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-after {
|
|
519
|
-
right: 1px !important; /* stylelint-disable-line declaration-no-important */
|
|
520
|
-
}
|
|
521
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-connectorpoint-right {
|
|
522
|
-
margin-right: 2px !important; /* stylelint-disable-line declaration-no-important */
|
|
523
|
-
}
|
|
524
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-event-markers .e-gantt-right-arrow {
|
|
525
|
-
border-left: 5px solid;
|
|
526
|
-
border-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
527
|
-
}
|
|
528
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-holiday .e-span {
|
|
529
|
-
transform: rotate(90deg) !important; /* stylelint-disable-line declaration-no-important */
|
|
530
|
-
}
|
|
531
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-left-label-container {
|
|
532
|
-
padding-left: 25px !important; /* stylelint-disable-line declaration-no-important */
|
|
533
|
-
padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
534
|
-
}
|
|
535
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-right-label-container {
|
|
536
|
-
margin-right: 25px !important; /* stylelint-disable-line declaration-no-important */
|
|
537
|
-
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
538
|
-
}
|
|
539
|
-
|
|
540
|
-
.e-gantt-rtl .e-gantt-tooltip-label {
|
|
541
|
-
text-align: right !important; /* stylelint-disable-line declaration-no-important */
|
|
542
|
-
}
|
|
543
|
-
.e-gantt-rtl .e-tip-content {
|
|
544
|
-
text-align: right !important; /* stylelint-disable-line declaration-no-important */
|
|
545
|
-
}
|
|
546
|
-
|
|
547
|
-
.e-gantt-dialog.e-rtl .e-dlg-closeicon-btn {
|
|
548
|
-
padding: 4px 8px !important; /* stylelint-disable-line declaration-no-important */
|
|
549
480
|
}
|
|
550
481
|
|
|
551
482
|
.e-gantt {
|
|
@@ -657,7 +588,6 @@
|
|
|
657
588
|
border-top-style: none;
|
|
658
589
|
border-top-width: 0;
|
|
659
590
|
padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
660
|
-
padding-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
661
591
|
}
|
|
662
592
|
.e-gantt .e-gantt-tree-grid-pane .e-columnheader,
|
|
663
593
|
.e-gantt .e-gantt-tree-grid-pane .e-headercell {
|
|
@@ -666,9 +596,6 @@
|
|
|
666
596
|
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content {
|
|
667
597
|
overflow-x: scroll !important; /* stylelint-disable-line declaration-no-important */
|
|
668
598
|
}
|
|
669
|
-
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-gantt-frozen {
|
|
670
|
-
overflow-x: hidden !important; /* stylelint-disable-line declaration-no-important */
|
|
671
|
-
}
|
|
672
599
|
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content.e-gantt-scroll-padding {
|
|
673
600
|
width: calc(100% + 17px);
|
|
674
601
|
}
|
|
@@ -688,12 +615,6 @@
|
|
|
688
615
|
position: relative;
|
|
689
616
|
width: 100%;
|
|
690
617
|
}
|
|
691
|
-
.e-gantt .e-gantt-chart .e-chart-empty-row {
|
|
692
|
-
border: 0.5px solid;
|
|
693
|
-
position: absolute;
|
|
694
|
-
background-color: rgba(0, 120, 222, 0.15);
|
|
695
|
-
border-color: rgba(0, 120, 222, 0.65) !important;
|
|
696
|
-
}
|
|
697
618
|
.e-gantt .e-gantt-chart .e-chart-root-container {
|
|
698
619
|
border-right: 0 solid;
|
|
699
620
|
}
|
|
@@ -788,10 +709,10 @@
|
|
|
788
709
|
box-sizing: border-box;
|
|
789
710
|
}
|
|
790
711
|
.e-gantt .e-gantt-chart .e-zero-spacing {
|
|
791
|
-
border-spacing: 0
|
|
712
|
+
border-spacing: 0;
|
|
792
713
|
}
|
|
793
714
|
.e-gantt .e-gantt-chart .e-chart-row:first-child .e-chart-row-border {
|
|
794
|
-
border-top:
|
|
715
|
+
border-top-color: transparent;
|
|
795
716
|
}
|
|
796
717
|
.e-gantt .e-gantt-chart .e-chart-row {
|
|
797
718
|
line-height: normal;
|
|
@@ -945,88 +866,6 @@
|
|
|
945
866
|
.e-gantt .e-gantt-chart .e-chart-rows-container {
|
|
946
867
|
line-height: initial;
|
|
947
868
|
}
|
|
948
|
-
.e-gantt .e-gantt-chart .e-masked-tbody {
|
|
949
|
-
table-layout: fixed;
|
|
950
|
-
width: 100%;
|
|
951
|
-
}
|
|
952
|
-
.e-gantt .e-gantt-chart .e-div-background {
|
|
953
|
-
border-color: rgb(225, 223, 221);
|
|
954
|
-
border-right-style: solid;
|
|
955
|
-
border-right-width: 1px;
|
|
956
|
-
height: 100%;
|
|
957
|
-
position: absolute;
|
|
958
|
-
}
|
|
959
|
-
.e-gantt .e-gantt-chart .e-innerHTML {
|
|
960
|
-
height: 16px;
|
|
961
|
-
width: 16px;
|
|
962
|
-
left: 14px;
|
|
963
|
-
background: rgb(225, 223, 221);
|
|
964
|
-
}
|
|
965
|
-
.e-gantt .e-gantt-chart .e-innerHTML1 {
|
|
966
|
-
height: 16px;
|
|
967
|
-
width: 16px;
|
|
968
|
-
left: 30px;
|
|
969
|
-
background: rgb(225, 223, 221);
|
|
970
|
-
}
|
|
971
|
-
.e-gantt .e-gantt-chart .e-innerHTML2 {
|
|
972
|
-
height: 16px;
|
|
973
|
-
width: 16px;
|
|
974
|
-
left: 60px;
|
|
975
|
-
background: rgb(225, 223, 221);
|
|
976
|
-
}
|
|
977
|
-
.e-gantt .e-gantt-chart .e-timelineHeader {
|
|
978
|
-
height: 16px;
|
|
979
|
-
width: 82px;
|
|
980
|
-
left: 20px;
|
|
981
|
-
background: rgb(225, 223, 221);
|
|
982
|
-
}
|
|
983
|
-
.e-gantt .e-gantt-chart .e-maskcell01 {
|
|
984
|
-
height: 12px;
|
|
985
|
-
width: 88px;
|
|
986
|
-
left: 14px;
|
|
987
|
-
border-radius: 0;
|
|
988
|
-
background: rgb(225, 223, 221);
|
|
989
|
-
}
|
|
990
|
-
.e-gantt .e-gantt-chart .e-maskcell02 {
|
|
991
|
-
height: 18px;
|
|
992
|
-
width: 410px;
|
|
993
|
-
border-radius: 0;
|
|
994
|
-
background: rgb(225, 223, 221);
|
|
995
|
-
}
|
|
996
|
-
.e-gantt .e-gantt-chart .e-maskcell03 {
|
|
997
|
-
height: 12px;
|
|
998
|
-
width: 88px;
|
|
999
|
-
left: 14px;
|
|
1000
|
-
border-radius: 0;
|
|
1001
|
-
background: rgb(225, 223, 221);
|
|
1002
|
-
}
|
|
1003
|
-
.e-gantt .e-gantt-chart .e-maskcell04 {
|
|
1004
|
-
height: 18px;
|
|
1005
|
-
width: 208px;
|
|
1006
|
-
border-radius: 0;
|
|
1007
|
-
background: rgb(225, 223, 221);
|
|
1008
|
-
}
|
|
1009
|
-
.e-gantt .e-gantt-chart .e-maskcell05 {
|
|
1010
|
-
height: 12px;
|
|
1011
|
-
width: 108px;
|
|
1012
|
-
left: 64px;
|
|
1013
|
-
border-radius: 0;
|
|
1014
|
-
background: rgb(225, 223, 221);
|
|
1015
|
-
}
|
|
1016
|
-
.e-gantt .e-gantt-chart .e-maskcell06 {
|
|
1017
|
-
height: 18px;
|
|
1018
|
-
width: 195px;
|
|
1019
|
-
left: 192px;
|
|
1020
|
-
border-radius: 0;
|
|
1021
|
-
background: rgb(225, 223, 221);
|
|
1022
|
-
}
|
|
1023
|
-
.e-gantt .e-gantt-chart .e-maskcell07 {
|
|
1024
|
-
height: 18px;
|
|
1025
|
-
width: 156px;
|
|
1026
|
-
left: 388px;
|
|
1027
|
-
border-radius: 0;
|
|
1028
|
-
background: rgb(225, 223, 221);
|
|
1029
|
-
}
|
|
1030
869
|
.e-gantt .e-gantt-chart .e-taskbar-left-resizer,
|
|
1031
870
|
.e-gantt .e-gantt-chart .e-taskbar-right-resizer {
|
|
1032
871
|
display: inline-block;
|
|
@@ -1061,7 +900,7 @@
|
|
|
1061
900
|
border-right: 7px solid transparent;
|
|
1062
901
|
cursor: col-resize;
|
|
1063
902
|
height: 0;
|
|
1064
|
-
left:
|
|
903
|
+
left: 0;
|
|
1065
904
|
position: absolute;
|
|
1066
905
|
top: -7px;
|
|
1067
906
|
width: 0;
|
|
@@ -1073,7 +912,7 @@
|
|
|
1073
912
|
border-right: 6px solid transparent;
|
|
1074
913
|
cursor: col-resize;
|
|
1075
914
|
height: 0;
|
|
1076
|
-
left:
|
|
915
|
+
left: 1px;
|
|
1077
916
|
position: absolute;
|
|
1078
917
|
top: -7px;
|
|
1079
918
|
width: 0;
|
|
@@ -1121,7 +960,6 @@
|
|
|
1121
960
|
}
|
|
1122
961
|
.e-gantt .e-gantt-chart .e-task-table {
|
|
1123
962
|
overflow: hidden;
|
|
1124
|
-
border-collapse: separate;
|
|
1125
963
|
}
|
|
1126
964
|
.e-gantt .e-gantt-chart .e-left-resize-gripper,
|
|
1127
965
|
.e-gantt .e-gantt-chart .e-right-resize-gripper {
|
|
@@ -1166,6 +1004,7 @@
|
|
|
1166
1004
|
border-radius: 3px;
|
|
1167
1005
|
font-weight: 500;
|
|
1168
1006
|
height: 26px;
|
|
1007
|
+
left: 5px;
|
|
1169
1008
|
line-height: 18px;
|
|
1170
1009
|
padding: 4px 8px;
|
|
1171
1010
|
position: absolute;
|
|
@@ -1375,7 +1214,7 @@
|
|
|
1375
1214
|
.e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
1376
1215
|
border-radius: 50%;
|
|
1377
1216
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
1378
|
-
width: auto;
|
|
1217
|
+
width: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
1379
1218
|
}
|
|
1380
1219
|
|
|
1381
1220
|
.e-icon-rowselect::before {
|
|
@@ -1553,7 +1392,6 @@
|
|
|
1553
1392
|
font-size: 12px;
|
|
1554
1393
|
font-weight: 400;
|
|
1555
1394
|
line-height: 1.8;
|
|
1556
|
-
color: #fff;
|
|
1557
1395
|
}
|
|
1558
1396
|
|
|
1559
1397
|
/*! Gantt theme */
|
|
@@ -1610,7 +1448,6 @@
|
|
|
1610
1448
|
border-bottom-color: #4b5563;
|
|
1611
1449
|
border-bottom-width: 0px;
|
|
1612
1450
|
border-right-color: #4b5563;
|
|
1613
|
-
border-left-color: #4b5563;
|
|
1614
1451
|
color: #9ca3af;
|
|
1615
1452
|
height: 49px;
|
|
1616
1453
|
}
|
|
@@ -1653,7 +1490,7 @@
|
|
|
1653
1490
|
}
|
|
1654
1491
|
.e-gantt .e-gantt-chart .e-gantt-child-taskbar-inner-div {
|
|
1655
1492
|
background-color: #0891b2;
|
|
1656
|
-
|
|
1493
|
+
border: 1px solid #22d3ee;
|
|
1657
1494
|
border-radius: 4px;
|
|
1658
1495
|
}
|
|
1659
1496
|
.e-gantt .e-gantt-chart .e-collapse-parent .e-gantt-child-taskbar-inner-div {
|
|
@@ -1675,7 +1512,7 @@
|
|
|
1675
1512
|
}
|
|
1676
1513
|
.e-gantt .e-gantt-chart .e-gantt-parent-taskbar-inner-div {
|
|
1677
1514
|
background-color: #6b7280;
|
|
1678
|
-
|
|
1515
|
+
border: 1px solid #9ca3af;
|
|
1679
1516
|
border-radius: 4px;
|
|
1680
1517
|
}
|
|
1681
1518
|
.e-gantt .e-gantt-chart .e-gantt-parent-progressbar-inner-div {
|
|
@@ -1731,7 +1568,6 @@
|
|
|
1731
1568
|
}
|
|
1732
1569
|
.e-gantt .e-gantt-chart .e-event-markers .e-gantt-right-arrow {
|
|
1733
1570
|
border-right-color: #ffedd5;
|
|
1734
|
-
border-left-color: #ffedd5 !important; /* stylelint-disable-line declaration-no-important */
|
|
1735
1571
|
}
|
|
1736
1572
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar {
|
|
1737
1573
|
background: linear-gradient(to right, #0891b2, #22d3ee 30%, #22d3ee 70%, #22d3ee 70%, #0891b2 100%);
|
|
@@ -1824,16 +1660,14 @@
|
|
|
1824
1660
|
border-width: 3px;
|
|
1825
1661
|
}
|
|
1826
1662
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar-right {
|
|
1827
|
-
border-
|
|
1828
|
-
border-bottom-left-radius: 0;
|
|
1829
|
-
border-top-right-radius: 2px;
|
|
1663
|
+
border-bottom-left-radius: 0px;
|
|
1830
1664
|
border-bottom-right-radius: 2px;
|
|
1665
|
+
border-top-left-radius: 0px;
|
|
1666
|
+
border-top-right-radius: 2px;
|
|
1831
1667
|
}
|
|
1832
1668
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar-left {
|
|
1833
1669
|
border-bottom-left-radius: 2px;
|
|
1834
1670
|
border-top-left-radius: 2px;
|
|
1835
|
-
border-bottom-right-radius: 0;
|
|
1836
|
-
border-top-right-radius: 0;
|
|
1837
1671
|
}
|
|
1838
1672
|
.e-gantt .e-gantt-chart .e-task-label {
|
|
1839
1673
|
color: #000;
|
|
@@ -1986,9 +1820,6 @@
|
|
|
1986
1820
|
color: #9ca3af !important; /* stylelint-disable-line declaration-no-important */
|
|
1987
1821
|
}
|
|
1988
1822
|
|
|
1989
|
-
.e-gantt-dialog .e-dlg-content .e-rte-quick-popup.e-hide {
|
|
1990
|
-
border: none !important; /* stylelint-disable-line declaration-no-important */
|
|
1991
|
-
}
|
|
1992
1823
|
.e-gantt-dialog .e-dlg-header {
|
|
1993
1824
|
color: #fff;
|
|
1994
1825
|
}
|