@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
|
@@ -385,7 +385,7 @@
|
|
|
385
385
|
border-radius: 6px !important;
|
|
386
386
|
padding: 32px 16px 16px !important;
|
|
387
387
|
}
|
|
388
|
-
.e-bigger .e-
|
|
388
|
+
.e-bigger .e-columnmenu {
|
|
389
389
|
top: 35px;
|
|
390
390
|
}
|
|
391
391
|
.e-bigger .e-gantt-dialog .e-dialog {
|
|
@@ -510,75 +510,6 @@
|
|
|
510
510
|
font-size: 12px;
|
|
511
511
|
font-weight: 400;
|
|
512
512
|
line-height: 1.8;
|
|
513
|
-
color: #fff;
|
|
514
|
-
}
|
|
515
|
-
|
|
516
|
-
.e-blazor-gantt-tooltip .e-tip-content {
|
|
517
|
-
overflow-wrap: unset !important; /* stylelint-disable-line declaration-no-important */
|
|
518
|
-
white-space: nowrap !important; /* stylelint-disable-line declaration-no-important */
|
|
519
|
-
word-break: unset !important; /* stylelint-disable-line declaration-no-important */
|
|
520
|
-
}
|
|
521
|
-
|
|
522
|
-
.e-gantt-tooltip .e-tip-content {
|
|
523
|
-
text-align: left !important; /* stylelint-disable-line declaration-no-important */
|
|
524
|
-
}
|
|
525
|
-
|
|
526
|
-
.e-gantt.e-gantt-rtl .e-connector-line-right-arrow {
|
|
527
|
-
border-left: none !important; /* stylelint-disable-line declaration-no-important */
|
|
528
|
-
border-right-color: #0d6efd;
|
|
529
|
-
}
|
|
530
|
-
.e-gantt.e-gantt-rtl .e-connector-line-left-arrow {
|
|
531
|
-
border-right: none !important; /* stylelint-disable-line declaration-no-important */
|
|
532
|
-
border-left-color: #0d6efd;
|
|
533
|
-
}
|
|
534
|
-
.e-gantt.e-gantt-rtl .e-toolbar-right {
|
|
535
|
-
left: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
536
|
-
right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
537
|
-
}
|
|
538
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-timeline-header-container {
|
|
539
|
-
border-right: none !important; /* stylelint-disable-line declaration-no-important */
|
|
540
|
-
border-left: 1px solid !important; /* stylelint-disable-line declaration-no-important */
|
|
541
|
-
border-left-color: #444c54 !important; /* stylelint-disable-line declaration-no-important */
|
|
542
|
-
}
|
|
543
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-timeline-top-header-cell .e-gantt-top-cell-text {
|
|
544
|
-
padding-right: 11px !important; /* stylelint-disable-line declaration-no-important */
|
|
545
|
-
padding-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
546
|
-
text-align: right !important; /* stylelint-disable-line declaration-no-important */
|
|
547
|
-
}
|
|
548
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-element {
|
|
549
|
-
right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
550
|
-
}
|
|
551
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-after {
|
|
552
|
-
right: 1px !important; /* stylelint-disable-line declaration-no-important */
|
|
553
|
-
}
|
|
554
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-connectorpoint-right {
|
|
555
|
-
margin-right: 2px !important; /* stylelint-disable-line declaration-no-important */
|
|
556
|
-
}
|
|
557
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-event-markers .e-gantt-right-arrow {
|
|
558
|
-
border-left: 5px solid;
|
|
559
|
-
border-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
560
|
-
}
|
|
561
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-holiday .e-span {
|
|
562
|
-
transform: rotate(90deg) !important; /* stylelint-disable-line declaration-no-important */
|
|
563
|
-
}
|
|
564
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-left-label-container {
|
|
565
|
-
padding-left: 25px !important; /* stylelint-disable-line declaration-no-important */
|
|
566
|
-
padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
567
|
-
}
|
|
568
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-right-label-container {
|
|
569
|
-
margin-right: 25px !important; /* stylelint-disable-line declaration-no-important */
|
|
570
|
-
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
571
|
-
}
|
|
572
|
-
|
|
573
|
-
.e-gantt-rtl .e-gantt-tooltip-label {
|
|
574
|
-
text-align: right !important; /* stylelint-disable-line declaration-no-important */
|
|
575
|
-
}
|
|
576
|
-
.e-gantt-rtl .e-tip-content {
|
|
577
|
-
text-align: right !important; /* stylelint-disable-line declaration-no-important */
|
|
578
|
-
}
|
|
579
|
-
|
|
580
|
-
.e-gantt-dialog.e-rtl .e-dlg-closeicon-btn {
|
|
581
|
-
padding: 4px 8px !important; /* stylelint-disable-line declaration-no-important */
|
|
582
513
|
}
|
|
583
514
|
|
|
584
515
|
.e-gantt {
|
|
@@ -690,7 +621,6 @@
|
|
|
690
621
|
border-top-style: none;
|
|
691
622
|
border-top-width: 0;
|
|
692
623
|
padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
693
|
-
padding-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
694
624
|
}
|
|
695
625
|
.e-gantt .e-gantt-tree-grid-pane .e-columnheader,
|
|
696
626
|
.e-gantt .e-gantt-tree-grid-pane .e-headercell {
|
|
@@ -699,9 +629,6 @@
|
|
|
699
629
|
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content {
|
|
700
630
|
overflow-x: scroll !important; /* stylelint-disable-line declaration-no-important */
|
|
701
631
|
}
|
|
702
|
-
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-gantt-frozen {
|
|
703
|
-
overflow-x: hidden !important; /* stylelint-disable-line declaration-no-important */
|
|
704
|
-
}
|
|
705
632
|
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content.e-gantt-scroll-padding {
|
|
706
633
|
width: calc(100% + 17px);
|
|
707
634
|
}
|
|
@@ -721,12 +648,6 @@
|
|
|
721
648
|
position: relative;
|
|
722
649
|
width: 100%;
|
|
723
650
|
}
|
|
724
|
-
.e-gantt .e-gantt-chart .e-chart-empty-row {
|
|
725
|
-
border: 0.5px solid;
|
|
726
|
-
position: absolute;
|
|
727
|
-
background-color: rgba(0, 120, 222, 0.15);
|
|
728
|
-
border-color: rgba(0, 120, 222, 0.65) !important;
|
|
729
|
-
}
|
|
730
651
|
.e-gantt .e-gantt-chart .e-chart-root-container {
|
|
731
652
|
border-right: 0 solid;
|
|
732
653
|
}
|
|
@@ -821,10 +742,10 @@
|
|
|
821
742
|
box-sizing: border-box;
|
|
822
743
|
}
|
|
823
744
|
.e-gantt .e-gantt-chart .e-zero-spacing {
|
|
824
|
-
border-spacing: 0
|
|
745
|
+
border-spacing: 0;
|
|
825
746
|
}
|
|
826
747
|
.e-gantt .e-gantt-chart .e-chart-row:first-child .e-chart-row-border {
|
|
827
|
-
border-top:
|
|
748
|
+
border-top-color: transparent;
|
|
828
749
|
}
|
|
829
750
|
.e-gantt .e-gantt-chart .e-chart-row .e-chart-row-border {
|
|
830
751
|
border-collapse: separate;
|
|
@@ -975,88 +896,6 @@
|
|
|
975
896
|
.e-gantt .e-gantt-chart .e-chart-rows-container {
|
|
976
897
|
line-height: initial;
|
|
977
898
|
}
|
|
978
|
-
.e-gantt .e-gantt-chart .e-masked-tbody {
|
|
979
|
-
table-layout: fixed;
|
|
980
|
-
width: 100%;
|
|
981
|
-
}
|
|
982
|
-
.e-gantt .e-gantt-chart .e-div-background {
|
|
983
|
-
border-color: rgb(225, 223, 221);
|
|
984
|
-
border-right-style: solid;
|
|
985
|
-
border-right-width: 1px;
|
|
986
|
-
height: 100%;
|
|
987
|
-
position: absolute;
|
|
988
|
-
}
|
|
989
|
-
.e-gantt .e-gantt-chart .e-innerHTML {
|
|
990
|
-
height: 16px;
|
|
991
|
-
width: 16px;
|
|
992
|
-
left: 14px;
|
|
993
|
-
background: rgb(225, 223, 221);
|
|
994
|
-
}
|
|
995
|
-
.e-gantt .e-gantt-chart .e-innerHTML1 {
|
|
996
|
-
height: 16px;
|
|
997
|
-
width: 16px;
|
|
998
|
-
left: 30px;
|
|
999
|
-
background: rgb(225, 223, 221);
|
|
1000
|
-
}
|
|
1001
|
-
.e-gantt .e-gantt-chart .e-innerHTML2 {
|
|
1002
|
-
height: 16px;
|
|
1003
|
-
width: 16px;
|
|
1004
|
-
left: 60px;
|
|
1005
|
-
background: rgb(225, 223, 221);
|
|
1006
|
-
}
|
|
1007
|
-
.e-gantt .e-gantt-chart .e-timelineHeader {
|
|
1008
|
-
height: 16px;
|
|
1009
|
-
width: 82px;
|
|
1010
|
-
left: 20px;
|
|
1011
|
-
background: rgb(225, 223, 221);
|
|
1012
|
-
}
|
|
1013
|
-
.e-gantt .e-gantt-chart .e-maskcell01 {
|
|
1014
|
-
height: 12px;
|
|
1015
|
-
width: 88px;
|
|
1016
|
-
left: 14px;
|
|
1017
|
-
border-radius: 0;
|
|
1018
|
-
background: rgb(225, 223, 221);
|
|
1019
|
-
}
|
|
1020
|
-
.e-gantt .e-gantt-chart .e-maskcell02 {
|
|
1021
|
-
height: 18px;
|
|
1022
|
-
width: 410px;
|
|
1023
|
-
border-radius: 0;
|
|
1024
|
-
background: rgb(225, 223, 221);
|
|
1025
|
-
}
|
|
1026
|
-
.e-gantt .e-gantt-chart .e-maskcell03 {
|
|
1027
|
-
height: 12px;
|
|
1028
|
-
width: 88px;
|
|
1029
|
-
left: 14px;
|
|
1030
|
-
border-radius: 0;
|
|
1031
|
-
background: rgb(225, 223, 221);
|
|
1032
|
-
}
|
|
1033
|
-
.e-gantt .e-gantt-chart .e-maskcell04 {
|
|
1034
|
-
height: 18px;
|
|
1035
|
-
width: 208px;
|
|
1036
|
-
border-radius: 0;
|
|
1037
|
-
background: rgb(225, 223, 221);
|
|
1038
|
-
}
|
|
1039
|
-
.e-gantt .e-gantt-chart .e-maskcell05 {
|
|
1040
|
-
height: 12px;
|
|
1041
|
-
width: 108px;
|
|
1042
|
-
left: 64px;
|
|
1043
|
-
border-radius: 0;
|
|
1044
|
-
background: rgb(225, 223, 221);
|
|
1045
|
-
}
|
|
1046
|
-
.e-gantt .e-gantt-chart .e-maskcell06 {
|
|
1047
|
-
height: 18px;
|
|
1048
|
-
width: 195px;
|
|
1049
|
-
left: 192px;
|
|
1050
|
-
border-radius: 0;
|
|
1051
|
-
background: rgb(225, 223, 221);
|
|
1052
|
-
}
|
|
1053
|
-
.e-gantt .e-gantt-chart .e-maskcell07 {
|
|
1054
|
-
height: 18px;
|
|
1055
|
-
width: 156px;
|
|
1056
|
-
left: 388px;
|
|
1057
|
-
border-radius: 0;
|
|
1058
|
-
background: rgb(225, 223, 221);
|
|
1059
|
-
}
|
|
1060
899
|
.e-gantt .e-gantt-chart .e-taskbar-left-resizer,
|
|
1061
900
|
.e-gantt .e-gantt-chart .e-taskbar-right-resizer {
|
|
1062
901
|
display: inline-block;
|
|
@@ -1091,7 +930,7 @@
|
|
|
1091
930
|
border-right: 7px solid transparent;
|
|
1092
931
|
cursor: col-resize;
|
|
1093
932
|
height: 0;
|
|
1094
|
-
left:
|
|
933
|
+
left: 0;
|
|
1095
934
|
position: absolute;
|
|
1096
935
|
top: -7px;
|
|
1097
936
|
width: 0;
|
|
@@ -1103,7 +942,7 @@
|
|
|
1103
942
|
border-right: 6px solid transparent;
|
|
1104
943
|
cursor: col-resize;
|
|
1105
944
|
height: 0;
|
|
1106
|
-
left:
|
|
945
|
+
left: 1px;
|
|
1107
946
|
position: absolute;
|
|
1108
947
|
top: -7px;
|
|
1109
948
|
width: 0;
|
|
@@ -1151,7 +990,6 @@
|
|
|
1151
990
|
}
|
|
1152
991
|
.e-gantt .e-gantt-chart .e-task-table {
|
|
1153
992
|
overflow: hidden;
|
|
1154
|
-
border-collapse: separate;
|
|
1155
993
|
}
|
|
1156
994
|
.e-gantt .e-gantt-chart .e-left-resize-gripper,
|
|
1157
995
|
.e-gantt .e-gantt-chart .e-right-resize-gripper {
|
|
@@ -1196,6 +1034,7 @@
|
|
|
1196
1034
|
border-radius: 3px;
|
|
1197
1035
|
font-weight: 500;
|
|
1198
1036
|
height: 28px;
|
|
1037
|
+
left: 5px;
|
|
1199
1038
|
line-height: 1.5;
|
|
1200
1039
|
padding: 3px 12px;
|
|
1201
1040
|
position: absolute;
|
|
@@ -1404,7 +1243,7 @@
|
|
|
1404
1243
|
.e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
1405
1244
|
border-radius: 50%;
|
|
1406
1245
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
1407
|
-
width: auto;
|
|
1246
|
+
width: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
1408
1247
|
}
|
|
1409
1248
|
|
|
1410
1249
|
.e-icon-rowselect::before {
|
|
@@ -1582,7 +1421,6 @@
|
|
|
1582
1421
|
font-size: 12px;
|
|
1583
1422
|
font-weight: 400;
|
|
1584
1423
|
line-height: 1.8;
|
|
1585
|
-
color: #fff;
|
|
1586
1424
|
}
|
|
1587
1425
|
|
|
1588
1426
|
/*! Gantt theme */
|
|
@@ -1639,7 +1477,6 @@
|
|
|
1639
1477
|
border-bottom-color: #444c54;
|
|
1640
1478
|
border-bottom-width: 1px;
|
|
1641
1479
|
border-right-color: #444c54;
|
|
1642
|
-
border-left-color: #444c54;
|
|
1643
1480
|
color: #fff;
|
|
1644
1481
|
height: 52px;
|
|
1645
1482
|
}
|
|
@@ -1682,7 +1519,7 @@
|
|
|
1682
1519
|
}
|
|
1683
1520
|
.e-gantt .e-gantt-chart .e-gantt-child-taskbar-inner-div {
|
|
1684
1521
|
background-color: #86b7fe;
|
|
1685
|
-
|
|
1522
|
+
border: 1px solid #0d6efd;
|
|
1686
1523
|
border-radius: 4px;
|
|
1687
1524
|
}
|
|
1688
1525
|
.e-gantt .e-gantt-chart .e-collapse-parent .e-gantt-child-taskbar-inner-div {
|
|
@@ -1704,7 +1541,7 @@
|
|
|
1704
1541
|
}
|
|
1705
1542
|
.e-gantt .e-gantt-chart .e-gantt-parent-taskbar-inner-div {
|
|
1706
1543
|
background-color: #6c757d;
|
|
1707
|
-
|
|
1544
|
+
border: 1px solid #adb5bd;
|
|
1708
1545
|
border-radius: 4px;
|
|
1709
1546
|
}
|
|
1710
1547
|
.e-gantt .e-gantt-chart .e-gantt-parent-progressbar-inner-div {
|
|
@@ -1760,7 +1597,6 @@
|
|
|
1760
1597
|
}
|
|
1761
1598
|
.e-gantt .e-gantt-chart .e-event-markers .e-gantt-right-arrow {
|
|
1762
1599
|
border-right-color: #fff3cd;
|
|
1763
|
-
border-left-color: #fff3cd !important; /* stylelint-disable-line declaration-no-important */
|
|
1764
1600
|
}
|
|
1765
1601
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar {
|
|
1766
1602
|
background: linear-gradient(to right, #86b7fe, #0d6efd 30%, #0d6efd 70%, #0d6efd 70%, #86b7fe 100%);
|
|
@@ -1853,16 +1689,14 @@
|
|
|
1853
1689
|
border-width: 3px;
|
|
1854
1690
|
}
|
|
1855
1691
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar-right {
|
|
1856
|
-
border-
|
|
1857
|
-
border-bottom-left-radius: 0;
|
|
1858
|
-
border-top-right-radius: 2px;
|
|
1692
|
+
border-bottom-left-radius: 0px;
|
|
1859
1693
|
border-bottom-right-radius: 2px;
|
|
1694
|
+
border-top-left-radius: 0px;
|
|
1695
|
+
border-top-right-radius: 2px;
|
|
1860
1696
|
}
|
|
1861
1697
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar-left {
|
|
1862
1698
|
border-bottom-left-radius: 2px;
|
|
1863
1699
|
border-top-left-radius: 2px;
|
|
1864
|
-
border-bottom-right-radius: 0;
|
|
1865
|
-
border-top-right-radius: 0;
|
|
1866
1700
|
}
|
|
1867
1701
|
.e-gantt .e-gantt-chart .e-task-label {
|
|
1868
1702
|
color: #fff;
|
|
@@ -2015,9 +1849,6 @@
|
|
|
2015
1849
|
color: #adb5bd !important; /* stylelint-disable-line declaration-no-important */
|
|
2016
1850
|
}
|
|
2017
1851
|
|
|
2018
|
-
.e-gantt-dialog .e-dlg-content .e-rte-quick-popup.e-hide {
|
|
2019
|
-
border: none !important; /* stylelint-disable-line declaration-no-important */
|
|
2020
|
-
}
|
|
2021
1852
|
.e-gantt-dialog .e-dlg-header {
|
|
2022
1853
|
color: #fff;
|
|
2023
1854
|
}
|
|
@@ -1 +1,22 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/bootstrap5-dark-definition.scss';
|
|
2
|
+
@import 'ej2-grids/styles/grid/bootstrap5-dark-definition.scss';
|
|
3
|
+
@import 'ej2-treegrid/styles/treegrid/bootstrap5-dark-definition.scss';
|
|
4
|
+
@import 'ej2-richtexteditor/styles/rich-text-editor/bootstrap5-dark-definition.scss';
|
|
5
|
+
@import 'ej2-calendars/styles/datepicker/bootstrap5-dark-definition.scss';
|
|
6
|
+
@import 'ej2-calendars/styles/datetimepicker/bootstrap5-dark-definition.scss';
|
|
7
|
+
@import 'ej2-buttons/styles/button/bootstrap5-dark-definition.scss';
|
|
8
|
+
@import 'ej2-dropdowns/styles/drop-down-list/bootstrap5-dark-definition.scss';
|
|
9
|
+
@import 'ej2-dropdowns/styles/combo-box/bootstrap5-dark-definition.scss';
|
|
10
|
+
@import 'ej2-dropdowns/styles/multi-select/bootstrap5-dark-definition.scss';
|
|
11
|
+
@import 'ej2-navigations/styles/toolbar/bootstrap5-dark-definition.scss';
|
|
12
|
+
@import 'ej2-navigations/styles/tab/bootstrap5-dark-definition.scss';
|
|
13
|
+
@import 'ej2-navigations/styles/context-menu/bootstrap5-dark-definition.scss';
|
|
14
|
+
@import 'ej2-inputs/styles/input/bootstrap5-dark-definition.scss';
|
|
15
|
+
@import 'ej2-inputs/styles/numerictextbox/bootstrap5-dark-definition.scss';
|
|
16
|
+
@import 'ej2-popups/styles/dialog/bootstrap5-dark-definition.scss';
|
|
17
|
+
@import 'ej2-popups/styles/spinner/bootstrap5-dark-definition.scss';
|
|
18
|
+
@import 'ej2-popups/styles/tooltip/bootstrap5-dark-definition.scss';
|
|
19
|
+
@import 'ej2-layouts/styles/splitter/bootstrap5-dark-definition.scss';
|
|
20
|
+
@import 'bootstrap5-dark-definition.scss';
|
|
21
|
+
@import 'icons/bootstrap5-dark.scss';
|
|
22
|
+
@import 'all.scss';
|
|
@@ -385,7 +385,7 @@
|
|
|
385
385
|
border-radius: 6px !important;
|
|
386
386
|
padding: 32px 16px 16px !important;
|
|
387
387
|
}
|
|
388
|
-
.e-bigger .e-
|
|
388
|
+
.e-bigger .e-columnmenu {
|
|
389
389
|
top: 35px;
|
|
390
390
|
}
|
|
391
391
|
.e-bigger .e-gantt-dialog .e-dialog {
|
|
@@ -510,75 +510,6 @@
|
|
|
510
510
|
font-size: 12px;
|
|
511
511
|
font-weight: 400;
|
|
512
512
|
line-height: 1.8;
|
|
513
|
-
color: #212529;
|
|
514
|
-
}
|
|
515
|
-
|
|
516
|
-
.e-blazor-gantt-tooltip .e-tip-content {
|
|
517
|
-
overflow-wrap: unset !important; /* stylelint-disable-line declaration-no-important */
|
|
518
|
-
white-space: nowrap !important; /* stylelint-disable-line declaration-no-important */
|
|
519
|
-
word-break: unset !important; /* stylelint-disable-line declaration-no-important */
|
|
520
|
-
}
|
|
521
|
-
|
|
522
|
-
.e-gantt-tooltip .e-tip-content {
|
|
523
|
-
text-align: left !important; /* stylelint-disable-line declaration-no-important */
|
|
524
|
-
}
|
|
525
|
-
|
|
526
|
-
.e-gantt.e-gantt-rtl .e-connector-line-right-arrow {
|
|
527
|
-
border-left: none !important; /* stylelint-disable-line declaration-no-important */
|
|
528
|
-
border-right-color: #0d6efd;
|
|
529
|
-
}
|
|
530
|
-
.e-gantt.e-gantt-rtl .e-connector-line-left-arrow {
|
|
531
|
-
border-right: none !important; /* stylelint-disable-line declaration-no-important */
|
|
532
|
-
border-left-color: #0d6efd;
|
|
533
|
-
}
|
|
534
|
-
.e-gantt.e-gantt-rtl .e-toolbar-right {
|
|
535
|
-
left: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
536
|
-
right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
537
|
-
}
|
|
538
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-timeline-header-container {
|
|
539
|
-
border-right: none !important; /* stylelint-disable-line declaration-no-important */
|
|
540
|
-
border-left: 1px solid !important; /* stylelint-disable-line declaration-no-important */
|
|
541
|
-
border-left-color: #dee2e6 !important; /* stylelint-disable-line declaration-no-important */
|
|
542
|
-
}
|
|
543
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-timeline-top-header-cell .e-gantt-top-cell-text {
|
|
544
|
-
padding-right: 11px !important; /* stylelint-disable-line declaration-no-important */
|
|
545
|
-
padding-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
546
|
-
text-align: right !important; /* stylelint-disable-line declaration-no-important */
|
|
547
|
-
}
|
|
548
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-element {
|
|
549
|
-
right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
550
|
-
}
|
|
551
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-after {
|
|
552
|
-
right: 1px !important; /* stylelint-disable-line declaration-no-important */
|
|
553
|
-
}
|
|
554
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-connectorpoint-right {
|
|
555
|
-
margin-right: 2px !important; /* stylelint-disable-line declaration-no-important */
|
|
556
|
-
}
|
|
557
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-event-markers .e-gantt-right-arrow {
|
|
558
|
-
border-left: 5px solid;
|
|
559
|
-
border-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
560
|
-
}
|
|
561
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-holiday .e-span {
|
|
562
|
-
transform: rotate(90deg) !important; /* stylelint-disable-line declaration-no-important */
|
|
563
|
-
}
|
|
564
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-left-label-container {
|
|
565
|
-
padding-left: 25px !important; /* stylelint-disable-line declaration-no-important */
|
|
566
|
-
padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
567
|
-
}
|
|
568
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-right-label-container {
|
|
569
|
-
margin-right: 25px !important; /* stylelint-disable-line declaration-no-important */
|
|
570
|
-
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
571
|
-
}
|
|
572
|
-
|
|
573
|
-
.e-gantt-rtl .e-gantt-tooltip-label {
|
|
574
|
-
text-align: right !important; /* stylelint-disable-line declaration-no-important */
|
|
575
|
-
}
|
|
576
|
-
.e-gantt-rtl .e-tip-content {
|
|
577
|
-
text-align: right !important; /* stylelint-disable-line declaration-no-important */
|
|
578
|
-
}
|
|
579
|
-
|
|
580
|
-
.e-gantt-dialog.e-rtl .e-dlg-closeicon-btn {
|
|
581
|
-
padding: 4px 8px !important; /* stylelint-disable-line declaration-no-important */
|
|
582
513
|
}
|
|
583
514
|
|
|
584
515
|
.e-gantt {
|
|
@@ -690,7 +621,6 @@
|
|
|
690
621
|
border-top-style: none;
|
|
691
622
|
border-top-width: 0;
|
|
692
623
|
padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
693
|
-
padding-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
694
624
|
}
|
|
695
625
|
.e-gantt .e-gantt-tree-grid-pane .e-columnheader,
|
|
696
626
|
.e-gantt .e-gantt-tree-grid-pane .e-headercell {
|
|
@@ -699,9 +629,6 @@
|
|
|
699
629
|
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content {
|
|
700
630
|
overflow-x: scroll !important; /* stylelint-disable-line declaration-no-important */
|
|
701
631
|
}
|
|
702
|
-
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-gantt-frozen {
|
|
703
|
-
overflow-x: hidden !important; /* stylelint-disable-line declaration-no-important */
|
|
704
|
-
}
|
|
705
632
|
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content.e-gantt-scroll-padding {
|
|
706
633
|
width: calc(100% + 17px);
|
|
707
634
|
}
|
|
@@ -721,12 +648,6 @@
|
|
|
721
648
|
position: relative;
|
|
722
649
|
width: 100%;
|
|
723
650
|
}
|
|
724
|
-
.e-gantt .e-gantt-chart .e-chart-empty-row {
|
|
725
|
-
border: 0.5px solid;
|
|
726
|
-
position: absolute;
|
|
727
|
-
background-color: rgba(0, 120, 222, 0.15);
|
|
728
|
-
border-color: rgba(0, 120, 222, 0.65) !important;
|
|
729
|
-
}
|
|
730
651
|
.e-gantt .e-gantt-chart .e-chart-root-container {
|
|
731
652
|
border-right: 0 solid;
|
|
732
653
|
}
|
|
@@ -821,10 +742,10 @@
|
|
|
821
742
|
box-sizing: border-box;
|
|
822
743
|
}
|
|
823
744
|
.e-gantt .e-gantt-chart .e-zero-spacing {
|
|
824
|
-
border-spacing: 0
|
|
745
|
+
border-spacing: 0;
|
|
825
746
|
}
|
|
826
747
|
.e-gantt .e-gantt-chart .e-chart-row:first-child .e-chart-row-border {
|
|
827
|
-
border-top:
|
|
748
|
+
border-top-color: transparent;
|
|
828
749
|
}
|
|
829
750
|
.e-gantt .e-gantt-chart .e-chart-row .e-chart-row-border {
|
|
830
751
|
border-collapse: separate;
|
|
@@ -975,88 +896,6 @@
|
|
|
975
896
|
.e-gantt .e-gantt-chart .e-chart-rows-container {
|
|
976
897
|
line-height: initial;
|
|
977
898
|
}
|
|
978
|
-
.e-gantt .e-gantt-chart .e-masked-tbody {
|
|
979
|
-
table-layout: fixed;
|
|
980
|
-
width: 100%;
|
|
981
|
-
}
|
|
982
|
-
.e-gantt .e-gantt-chart .e-div-background {
|
|
983
|
-
border-color: rgb(225, 223, 221);
|
|
984
|
-
border-right-style: solid;
|
|
985
|
-
border-right-width: 1px;
|
|
986
|
-
height: 100%;
|
|
987
|
-
position: absolute;
|
|
988
|
-
}
|
|
989
|
-
.e-gantt .e-gantt-chart .e-innerHTML {
|
|
990
|
-
height: 16px;
|
|
991
|
-
width: 16px;
|
|
992
|
-
left: 14px;
|
|
993
|
-
background: rgb(225, 223, 221);
|
|
994
|
-
}
|
|
995
|
-
.e-gantt .e-gantt-chart .e-innerHTML1 {
|
|
996
|
-
height: 16px;
|
|
997
|
-
width: 16px;
|
|
998
|
-
left: 30px;
|
|
999
|
-
background: rgb(225, 223, 221);
|
|
1000
|
-
}
|
|
1001
|
-
.e-gantt .e-gantt-chart .e-innerHTML2 {
|
|
1002
|
-
height: 16px;
|
|
1003
|
-
width: 16px;
|
|
1004
|
-
left: 60px;
|
|
1005
|
-
background: rgb(225, 223, 221);
|
|
1006
|
-
}
|
|
1007
|
-
.e-gantt .e-gantt-chart .e-timelineHeader {
|
|
1008
|
-
height: 16px;
|
|
1009
|
-
width: 82px;
|
|
1010
|
-
left: 20px;
|
|
1011
|
-
background: rgb(225, 223, 221);
|
|
1012
|
-
}
|
|
1013
|
-
.e-gantt .e-gantt-chart .e-maskcell01 {
|
|
1014
|
-
height: 12px;
|
|
1015
|
-
width: 88px;
|
|
1016
|
-
left: 14px;
|
|
1017
|
-
border-radius: 0;
|
|
1018
|
-
background: rgb(225, 223, 221);
|
|
1019
|
-
}
|
|
1020
|
-
.e-gantt .e-gantt-chart .e-maskcell02 {
|
|
1021
|
-
height: 18px;
|
|
1022
|
-
width: 410px;
|
|
1023
|
-
border-radius: 0;
|
|
1024
|
-
background: rgb(225, 223, 221);
|
|
1025
|
-
}
|
|
1026
|
-
.e-gantt .e-gantt-chart .e-maskcell03 {
|
|
1027
|
-
height: 12px;
|
|
1028
|
-
width: 88px;
|
|
1029
|
-
left: 14px;
|
|
1030
|
-
border-radius: 0;
|
|
1031
|
-
background: rgb(225, 223, 221);
|
|
1032
|
-
}
|
|
1033
|
-
.e-gantt .e-gantt-chart .e-maskcell04 {
|
|
1034
|
-
height: 18px;
|
|
1035
|
-
width: 208px;
|
|
1036
|
-
border-radius: 0;
|
|
1037
|
-
background: rgb(225, 223, 221);
|
|
1038
|
-
}
|
|
1039
|
-
.e-gantt .e-gantt-chart .e-maskcell05 {
|
|
1040
|
-
height: 12px;
|
|
1041
|
-
width: 108px;
|
|
1042
|
-
left: 64px;
|
|
1043
|
-
border-radius: 0;
|
|
1044
|
-
background: rgb(225, 223, 221);
|
|
1045
|
-
}
|
|
1046
|
-
.e-gantt .e-gantt-chart .e-maskcell06 {
|
|
1047
|
-
height: 18px;
|
|
1048
|
-
width: 195px;
|
|
1049
|
-
left: 192px;
|
|
1050
|
-
border-radius: 0;
|
|
1051
|
-
background: rgb(225, 223, 221);
|
|
1052
|
-
}
|
|
1053
|
-
.e-gantt .e-gantt-chart .e-maskcell07 {
|
|
1054
|
-
height: 18px;
|
|
1055
|
-
width: 156px;
|
|
1056
|
-
left: 388px;
|
|
1057
|
-
border-radius: 0;
|
|
1058
|
-
background: rgb(225, 223, 221);
|
|
1059
|
-
}
|
|
1060
899
|
.e-gantt .e-gantt-chart .e-taskbar-left-resizer,
|
|
1061
900
|
.e-gantt .e-gantt-chart .e-taskbar-right-resizer {
|
|
1062
901
|
display: inline-block;
|
|
@@ -1091,7 +930,7 @@
|
|
|
1091
930
|
border-right: 7px solid transparent;
|
|
1092
931
|
cursor: col-resize;
|
|
1093
932
|
height: 0;
|
|
1094
|
-
left:
|
|
933
|
+
left: 0;
|
|
1095
934
|
position: absolute;
|
|
1096
935
|
top: -7px;
|
|
1097
936
|
width: 0;
|
|
@@ -1103,7 +942,7 @@
|
|
|
1103
942
|
border-right: 6px solid transparent;
|
|
1104
943
|
cursor: col-resize;
|
|
1105
944
|
height: 0;
|
|
1106
|
-
left:
|
|
945
|
+
left: 1px;
|
|
1107
946
|
position: absolute;
|
|
1108
947
|
top: -7px;
|
|
1109
948
|
width: 0;
|
|
@@ -1151,7 +990,6 @@
|
|
|
1151
990
|
}
|
|
1152
991
|
.e-gantt .e-gantt-chart .e-task-table {
|
|
1153
992
|
overflow: hidden;
|
|
1154
|
-
border-collapse: separate;
|
|
1155
993
|
}
|
|
1156
994
|
.e-gantt .e-gantt-chart .e-left-resize-gripper,
|
|
1157
995
|
.e-gantt .e-gantt-chart .e-right-resize-gripper {
|
|
@@ -1196,6 +1034,7 @@
|
|
|
1196
1034
|
border-radius: 3px;
|
|
1197
1035
|
font-weight: 500;
|
|
1198
1036
|
height: 28px;
|
|
1037
|
+
left: 5px;
|
|
1199
1038
|
line-height: 1.5;
|
|
1200
1039
|
padding: 3px 12px;
|
|
1201
1040
|
position: absolute;
|
|
@@ -1404,7 +1243,7 @@
|
|
|
1404
1243
|
.e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
1405
1244
|
border-radius: 50%;
|
|
1406
1245
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
1407
|
-
width: auto;
|
|
1246
|
+
width: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
1408
1247
|
}
|
|
1409
1248
|
|
|
1410
1249
|
.e-icon-rowselect::before {
|
|
@@ -1582,7 +1421,6 @@
|
|
|
1582
1421
|
font-size: 12px;
|
|
1583
1422
|
font-weight: 400;
|
|
1584
1423
|
line-height: 1.8;
|
|
1585
|
-
color: #212529;
|
|
1586
1424
|
}
|
|
1587
1425
|
|
|
1588
1426
|
/*! Gantt theme */
|
|
@@ -1639,7 +1477,6 @@
|
|
|
1639
1477
|
border-bottom-color: #dee2e6;
|
|
1640
1478
|
border-bottom-width: 1px;
|
|
1641
1479
|
border-right-color: #dee2e6;
|
|
1642
|
-
border-left-color: #dee2e6;
|
|
1643
1480
|
color: #212529;
|
|
1644
1481
|
height: 52px;
|
|
1645
1482
|
}
|
|
@@ -1682,7 +1519,7 @@
|
|
|
1682
1519
|
}
|
|
1683
1520
|
.e-gantt .e-gantt-chart .e-gantt-child-taskbar-inner-div {
|
|
1684
1521
|
background-color: #86b7fe;
|
|
1685
|
-
|
|
1522
|
+
border: 1px solid #0d6efd;
|
|
1686
1523
|
border-radius: 4px;
|
|
1687
1524
|
}
|
|
1688
1525
|
.e-gantt .e-gantt-chart .e-collapse-parent .e-gantt-child-taskbar-inner-div {
|
|
@@ -1704,7 +1541,7 @@
|
|
|
1704
1541
|
}
|
|
1705
1542
|
.e-gantt .e-gantt-chart .e-gantt-parent-taskbar-inner-div {
|
|
1706
1543
|
background-color: #ced4da;
|
|
1707
|
-
|
|
1544
|
+
border: 1px solid #adb5bd;
|
|
1708
1545
|
border-radius: 4px;
|
|
1709
1546
|
}
|
|
1710
1547
|
.e-gantt .e-gantt-chart .e-gantt-parent-progressbar-inner-div {
|
|
@@ -1760,7 +1597,6 @@
|
|
|
1760
1597
|
}
|
|
1761
1598
|
.e-gantt .e-gantt-chart .e-event-markers .e-gantt-right-arrow {
|
|
1762
1599
|
border-right-color: #fff3cd;
|
|
1763
|
-
border-left-color: #fff3cd !important; /* stylelint-disable-line declaration-no-important */
|
|
1764
1600
|
}
|
|
1765
1601
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar {
|
|
1766
1602
|
background: linear-gradient(to right, #86b7fe, #0d6efd 30%, #0d6efd 70%, #0d6efd 70%, #86b7fe 100%);
|
|
@@ -1853,16 +1689,14 @@
|
|
|
1853
1689
|
border-width: 3px;
|
|
1854
1690
|
}
|
|
1855
1691
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar-right {
|
|
1856
|
-
border-
|
|
1857
|
-
border-bottom-left-radius: 0;
|
|
1858
|
-
border-top-right-radius: 2px;
|
|
1692
|
+
border-bottom-left-radius: 0px;
|
|
1859
1693
|
border-bottom-right-radius: 2px;
|
|
1694
|
+
border-top-left-radius: 0px;
|
|
1695
|
+
border-top-right-radius: 2px;
|
|
1860
1696
|
}
|
|
1861
1697
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar-left {
|
|
1862
1698
|
border-bottom-left-radius: 2px;
|
|
1863
1699
|
border-top-left-radius: 2px;
|
|
1864
|
-
border-bottom-right-radius: 0;
|
|
1865
|
-
border-top-right-radius: 0;
|
|
1866
1700
|
}
|
|
1867
1701
|
.e-gantt .e-gantt-chart .e-task-label {
|
|
1868
1702
|
color: #fff;
|
|
@@ -2015,9 +1849,6 @@
|
|
|
2015
1849
|
color: #6c757d !important; /* stylelint-disable-line declaration-no-important */
|
|
2016
1850
|
}
|
|
2017
1851
|
|
|
2018
|
-
.e-gantt-dialog .e-dlg-content .e-rte-quick-popup.e-hide {
|
|
2019
|
-
border: none !important; /* stylelint-disable-line declaration-no-important */
|
|
2020
|
-
}
|
|
2021
1852
|
.e-gantt-dialog .e-dlg-header {
|
|
2022
1853
|
color: #212529;
|
|
2023
1854
|
}
|
|
@@ -1 +1,22 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/bootstrap5-definition.scss';
|
|
2
|
+
@import 'ej2-grids/styles/grid/bootstrap5-definition.scss';
|
|
3
|
+
@import 'ej2-treegrid/styles/treegrid/bootstrap5-definition.scss';
|
|
4
|
+
@import 'ej2-richtexteditor/styles/rich-text-editor/bootstrap5-definition.scss';
|
|
5
|
+
@import 'ej2-calendars/styles/datepicker/bootstrap5-definition.scss';
|
|
6
|
+
@import 'ej2-calendars/styles/datetimepicker/bootstrap5-definition.scss';
|
|
7
|
+
@import 'ej2-buttons/styles/button/bootstrap5-definition.scss';
|
|
8
|
+
@import 'ej2-dropdowns/styles/drop-down-list/bootstrap5-definition.scss';
|
|
9
|
+
@import 'ej2-dropdowns/styles/combo-box/bootstrap5-definition.scss';
|
|
10
|
+
@import 'ej2-dropdowns/styles/multi-select/bootstrap5-definition.scss';
|
|
11
|
+
@import 'ej2-navigations/styles/toolbar/bootstrap5-definition.scss';
|
|
12
|
+
@import 'ej2-navigations/styles/tab/bootstrap5-definition.scss';
|
|
13
|
+
@import 'ej2-navigations/styles/context-menu/bootstrap5-definition.scss';
|
|
14
|
+
@import 'ej2-inputs/styles/input/bootstrap5-definition.scss';
|
|
15
|
+
@import 'ej2-inputs/styles/numerictextbox/bootstrap5-definition.scss';
|
|
16
|
+
@import 'ej2-popups/styles/dialog/bootstrap5-definition.scss';
|
|
17
|
+
@import 'ej2-popups/styles/spinner/bootstrap5-definition.scss';
|
|
18
|
+
@import 'ej2-popups/styles/tooltip/bootstrap5-definition.scss';
|
|
19
|
+
@import 'ej2-layouts/styles/splitter/bootstrap5-definition.scss';
|
|
20
|
+
@import 'bootstrap5-definition.scss';
|
|
21
|
+
@import 'icons/bootstrap5.scss';
|
|
22
|
+
@import 'all.scss';
|