@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
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
@charset "UTF-8";
|
|
1
2
|
.e-ddl.e-popup {
|
|
2
3
|
border: 0;
|
|
3
4
|
box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.26);
|
|
@@ -145,7 +146,7 @@
|
|
|
145
146
|
content: "\e953";
|
|
146
147
|
}
|
|
147
148
|
.e-gantt .e-notes-info::before {
|
|
148
|
-
content: "
|
|
149
|
+
content: "🛈";
|
|
149
150
|
}
|
|
150
151
|
.e-gantt .e-expandall::before {
|
|
151
152
|
content: "\e555";
|
|
@@ -297,7 +298,7 @@
|
|
|
297
298
|
border-radius: 6px !important;
|
|
298
299
|
padding: 32px 16px 16px !important;
|
|
299
300
|
}
|
|
300
|
-
.e-bigger .e-
|
|
301
|
+
.e-bigger .e-columnmenu {
|
|
301
302
|
top: 45px;
|
|
302
303
|
}
|
|
303
304
|
.e-bigger .e-gantt-dialog .e-dialog {
|
|
@@ -422,75 +423,6 @@
|
|
|
422
423
|
font-size: 12px;
|
|
423
424
|
font-weight: 400;
|
|
424
425
|
line-height: 1.8;
|
|
425
|
-
color: #000;
|
|
426
|
-
}
|
|
427
|
-
|
|
428
|
-
.e-blazor-gantt-tooltip .e-tip-content {
|
|
429
|
-
overflow-wrap: unset !important; /* stylelint-disable-line declaration-no-important */
|
|
430
|
-
white-space: nowrap !important; /* stylelint-disable-line declaration-no-important */
|
|
431
|
-
word-break: unset !important; /* stylelint-disable-line declaration-no-important */
|
|
432
|
-
}
|
|
433
|
-
|
|
434
|
-
.e-gantt-tooltip .e-tip-content {
|
|
435
|
-
text-align: left !important; /* stylelint-disable-line declaration-no-important */
|
|
436
|
-
}
|
|
437
|
-
|
|
438
|
-
.e-gantt.e-gantt-rtl .e-connector-line-right-arrow {
|
|
439
|
-
border-left: none !important; /* stylelint-disable-line declaration-no-important */
|
|
440
|
-
border-right-color: #0063ad;
|
|
441
|
-
}
|
|
442
|
-
.e-gantt.e-gantt-rtl .e-connector-line-left-arrow {
|
|
443
|
-
border-right: none !important; /* stylelint-disable-line declaration-no-important */
|
|
444
|
-
border-left-color: #0063ad;
|
|
445
|
-
}
|
|
446
|
-
.e-gantt.e-gantt-rtl .e-toolbar-right {
|
|
447
|
-
left: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
448
|
-
right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
449
|
-
}
|
|
450
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-timeline-header-container {
|
|
451
|
-
border-right: none !important; /* stylelint-disable-line declaration-no-important */
|
|
452
|
-
border-left: 1px solid !important; /* stylelint-disable-line declaration-no-important */
|
|
453
|
-
border-left-color: #414040 !important; /* stylelint-disable-line declaration-no-important */
|
|
454
|
-
}
|
|
455
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-timeline-top-header-cell .e-gantt-top-cell-text {
|
|
456
|
-
padding-right: 11px !important; /* stylelint-disable-line declaration-no-important */
|
|
457
|
-
padding-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
458
|
-
text-align: right !important; /* stylelint-disable-line declaration-no-important */
|
|
459
|
-
}
|
|
460
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-element {
|
|
461
|
-
right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
462
|
-
}
|
|
463
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-after {
|
|
464
|
-
right: 1px !important; /* stylelint-disable-line declaration-no-important */
|
|
465
|
-
}
|
|
466
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-connectorpoint-right {
|
|
467
|
-
margin-right: 2px !important; /* stylelint-disable-line declaration-no-important */
|
|
468
|
-
}
|
|
469
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-event-markers .e-gantt-right-arrow {
|
|
470
|
-
border-left: 5px solid;
|
|
471
|
-
border-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
472
|
-
}
|
|
473
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-holiday .e-span {
|
|
474
|
-
transform: rotate(90deg) !important; /* stylelint-disable-line declaration-no-important */
|
|
475
|
-
}
|
|
476
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-left-label-container {
|
|
477
|
-
padding-left: 25px !important; /* stylelint-disable-line declaration-no-important */
|
|
478
|
-
padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
479
|
-
}
|
|
480
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-right-label-container {
|
|
481
|
-
margin-right: 25px !important; /* stylelint-disable-line declaration-no-important */
|
|
482
|
-
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
483
|
-
}
|
|
484
|
-
|
|
485
|
-
.e-gantt-rtl .e-gantt-tooltip-label {
|
|
486
|
-
text-align: right !important; /* stylelint-disable-line declaration-no-important */
|
|
487
|
-
}
|
|
488
|
-
.e-gantt-rtl .e-tip-content {
|
|
489
|
-
text-align: right !important; /* stylelint-disable-line declaration-no-important */
|
|
490
|
-
}
|
|
491
|
-
|
|
492
|
-
.e-gantt-dialog.e-rtl .e-dlg-closeicon-btn {
|
|
493
|
-
padding: 4px 8px !important; /* stylelint-disable-line declaration-no-important */
|
|
494
426
|
}
|
|
495
427
|
|
|
496
428
|
.e-gantt {
|
|
@@ -602,7 +534,6 @@
|
|
|
602
534
|
border-top-style: none;
|
|
603
535
|
border-top-width: 0;
|
|
604
536
|
padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
605
|
-
padding-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
606
537
|
}
|
|
607
538
|
.e-gantt .e-gantt-tree-grid-pane .e-columnheader,
|
|
608
539
|
.e-gantt .e-gantt-tree-grid-pane .e-headercell {
|
|
@@ -611,9 +542,6 @@
|
|
|
611
542
|
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content {
|
|
612
543
|
overflow-x: scroll !important; /* stylelint-disable-line declaration-no-important */
|
|
613
544
|
}
|
|
614
|
-
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-gantt-frozen {
|
|
615
|
-
overflow-x: hidden !important; /* stylelint-disable-line declaration-no-important */
|
|
616
|
-
}
|
|
617
545
|
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content.e-gantt-scroll-padding {
|
|
618
546
|
width: calc(100% + 17px);
|
|
619
547
|
}
|
|
@@ -633,12 +561,6 @@
|
|
|
633
561
|
position: relative;
|
|
634
562
|
width: 100%;
|
|
635
563
|
}
|
|
636
|
-
.e-gantt .e-gantt-chart .e-chart-empty-row {
|
|
637
|
-
border: 0.5px solid;
|
|
638
|
-
position: absolute;
|
|
639
|
-
background-color: rgba(0, 120, 222, 0.15);
|
|
640
|
-
border-color: rgba(0, 120, 222, 0.65) !important;
|
|
641
|
-
}
|
|
642
564
|
.e-gantt .e-gantt-chart .e-chart-root-container {
|
|
643
565
|
border-right: 0 solid;
|
|
644
566
|
}
|
|
@@ -733,10 +655,10 @@
|
|
|
733
655
|
box-sizing: border-box;
|
|
734
656
|
}
|
|
735
657
|
.e-gantt .e-gantt-chart .e-zero-spacing {
|
|
736
|
-
border-spacing: 0
|
|
658
|
+
border-spacing: 0;
|
|
737
659
|
}
|
|
738
660
|
.e-gantt .e-gantt-chart .e-chart-row:first-child .e-chart-row-border {
|
|
739
|
-
border-top:
|
|
661
|
+
border-top-color: transparent;
|
|
740
662
|
}
|
|
741
663
|
.e-gantt .e-gantt-chart .e-chart-row .e-chart-row-border {
|
|
742
664
|
border-collapse: separate;
|
|
@@ -887,88 +809,6 @@
|
|
|
887
809
|
.e-gantt .e-gantt-chart .e-chart-rows-container {
|
|
888
810
|
line-height: initial;
|
|
889
811
|
}
|
|
890
|
-
.e-gantt .e-gantt-chart .e-masked-tbody {
|
|
891
|
-
table-layout: fixed;
|
|
892
|
-
width: 100%;
|
|
893
|
-
}
|
|
894
|
-
.e-gantt .e-gantt-chart .e-div-background {
|
|
895
|
-
border-color: #e1dfdd;
|
|
896
|
-
border-right-style: solid;
|
|
897
|
-
border-right-width: 1px;
|
|
898
|
-
height: 100%;
|
|
899
|
-
position: absolute;
|
|
900
|
-
}
|
|
901
|
-
.e-gantt .e-gantt-chart .e-innerHTML {
|
|
902
|
-
height: 16px;
|
|
903
|
-
width: 16px;
|
|
904
|
-
left: 14px;
|
|
905
|
-
background: #e1dfdd;
|
|
906
|
-
}
|
|
907
|
-
.e-gantt .e-gantt-chart .e-innerHTML1 {
|
|
908
|
-
height: 16px;
|
|
909
|
-
width: 16px;
|
|
910
|
-
left: 30px;
|
|
911
|
-
background: #e1dfdd;
|
|
912
|
-
}
|
|
913
|
-
.e-gantt .e-gantt-chart .e-innerHTML2 {
|
|
914
|
-
height: 16px;
|
|
915
|
-
width: 16px;
|
|
916
|
-
left: 60px;
|
|
917
|
-
background: #e1dfdd;
|
|
918
|
-
}
|
|
919
|
-
.e-gantt .e-gantt-chart .e-timelineHeader {
|
|
920
|
-
height: 16px;
|
|
921
|
-
width: 82px;
|
|
922
|
-
left: 20px;
|
|
923
|
-
background: #e1dfdd;
|
|
924
|
-
}
|
|
925
|
-
.e-gantt .e-gantt-chart .e-maskcell01 {
|
|
926
|
-
height: 12px;
|
|
927
|
-
width: 88px;
|
|
928
|
-
left: 14px;
|
|
929
|
-
border-radius: 0;
|
|
930
|
-
background: #e1dfdd;
|
|
931
|
-
}
|
|
932
|
-
.e-gantt .e-gantt-chart .e-maskcell02 {
|
|
933
|
-
height: 18px;
|
|
934
|
-
width: 410px;
|
|
935
|
-
border-radius: 0;
|
|
936
|
-
background: #e1dfdd;
|
|
937
|
-
}
|
|
938
|
-
.e-gantt .e-gantt-chart .e-maskcell03 {
|
|
939
|
-
height: 12px;
|
|
940
|
-
width: 88px;
|
|
941
|
-
left: 14px;
|
|
942
|
-
border-radius: 0;
|
|
943
|
-
background: #e1dfdd;
|
|
944
|
-
}
|
|
945
|
-
.e-gantt .e-gantt-chart .e-maskcell04 {
|
|
946
|
-
height: 18px;
|
|
947
|
-
width: 208px;
|
|
948
|
-
border-radius: 0;
|
|
949
|
-
background: #e1dfdd;
|
|
950
|
-
}
|
|
951
|
-
.e-gantt .e-gantt-chart .e-maskcell05 {
|
|
952
|
-
height: 12px;
|
|
953
|
-
width: 108px;
|
|
954
|
-
left: 64px;
|
|
955
|
-
border-radius: 0;
|
|
956
|
-
background: #e1dfdd;
|
|
957
|
-
}
|
|
958
|
-
.e-gantt .e-gantt-chart .e-maskcell06 {
|
|
959
|
-
height: 18px;
|
|
960
|
-
width: 195px;
|
|
961
|
-
left: 192px;
|
|
962
|
-
border-radius: 0;
|
|
963
|
-
background: #e1dfdd;
|
|
964
|
-
}
|
|
965
|
-
.e-gantt .e-gantt-chart .e-maskcell07 {
|
|
966
|
-
height: 18px;
|
|
967
|
-
width: 156px;
|
|
968
|
-
left: 388px;
|
|
969
|
-
border-radius: 0;
|
|
970
|
-
background: #e1dfdd;
|
|
971
|
-
}
|
|
972
812
|
.e-gantt .e-gantt-chart .e-taskbar-left-resizer,
|
|
973
813
|
.e-gantt .e-gantt-chart .e-taskbar-right-resizer {
|
|
974
814
|
display: inline-block;
|
|
@@ -1003,7 +843,7 @@
|
|
|
1003
843
|
border-right: 7px solid transparent;
|
|
1004
844
|
cursor: col-resize;
|
|
1005
845
|
height: 0;
|
|
1006
|
-
left:
|
|
846
|
+
left: 0;
|
|
1007
847
|
position: absolute;
|
|
1008
848
|
top: -7px;
|
|
1009
849
|
width: 0;
|
|
@@ -1015,7 +855,7 @@
|
|
|
1015
855
|
border-right: 6px solid transparent;
|
|
1016
856
|
cursor: col-resize;
|
|
1017
857
|
height: 0;
|
|
1018
|
-
left:
|
|
858
|
+
left: 1px;
|
|
1019
859
|
position: absolute;
|
|
1020
860
|
top: -7px;
|
|
1021
861
|
width: 0;
|
|
@@ -1063,7 +903,6 @@
|
|
|
1063
903
|
}
|
|
1064
904
|
.e-gantt .e-gantt-chart .e-task-table {
|
|
1065
905
|
overflow: hidden;
|
|
1066
|
-
border-collapse: separate;
|
|
1067
906
|
}
|
|
1068
907
|
.e-gantt .e-gantt-chart .e-left-resize-gripper,
|
|
1069
908
|
.e-gantt .e-gantt-chart .e-right-resize-gripper {
|
|
@@ -1108,6 +947,7 @@
|
|
|
1108
947
|
border-radius: 3px;
|
|
1109
948
|
font-weight: 500;
|
|
1110
949
|
height: 30px;
|
|
950
|
+
left: 5px;
|
|
1111
951
|
line-height: 1.2;
|
|
1112
952
|
padding: 7px 12px;
|
|
1113
953
|
position: absolute;
|
|
@@ -1316,7 +1156,7 @@
|
|
|
1316
1156
|
.e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
1317
1157
|
border-radius: 50%;
|
|
1318
1158
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
1319
|
-
width: auto;
|
|
1159
|
+
width: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
1320
1160
|
}
|
|
1321
1161
|
|
|
1322
1162
|
.e-icon-rowselect::before {
|
|
@@ -1494,7 +1334,6 @@
|
|
|
1494
1334
|
font-size: 12px;
|
|
1495
1335
|
font-weight: 400;
|
|
1496
1336
|
line-height: 1.8;
|
|
1497
|
-
color: #000;
|
|
1498
1337
|
}
|
|
1499
1338
|
|
|
1500
1339
|
/*! Gantt theme */
|
|
@@ -1551,7 +1390,6 @@
|
|
|
1551
1390
|
border-bottom-color: #414040;
|
|
1552
1391
|
border-bottom-width: 1px;
|
|
1553
1392
|
border-right-color: #414040;
|
|
1554
|
-
border-left-color: #414040;
|
|
1555
1393
|
color: #dadada;
|
|
1556
1394
|
height: 64px;
|
|
1557
1395
|
}
|
|
@@ -1594,7 +1432,7 @@
|
|
|
1594
1432
|
}
|
|
1595
1433
|
.e-gantt .e-gantt-chart .e-gantt-child-taskbar-inner-div {
|
|
1596
1434
|
background-color: #0074cc;
|
|
1597
|
-
|
|
1435
|
+
border: 1px solid #0063ad;
|
|
1598
1436
|
border-radius: 0px;
|
|
1599
1437
|
}
|
|
1600
1438
|
.e-gantt .e-gantt-chart .e-collapse-parent .e-gantt-child-taskbar-inner-div {
|
|
@@ -1616,7 +1454,7 @@
|
|
|
1616
1454
|
}
|
|
1617
1455
|
.e-gantt .e-gantt-chart .e-gantt-parent-taskbar-inner-div {
|
|
1618
1456
|
background-color: #029f90;
|
|
1619
|
-
|
|
1457
|
+
border: 1px solid #4cc7ba;
|
|
1620
1458
|
border-radius: 0px;
|
|
1621
1459
|
}
|
|
1622
1460
|
.e-gantt .e-gantt-chart .e-gantt-parent-progressbar-inner-div {
|
|
@@ -1672,7 +1510,6 @@
|
|
|
1672
1510
|
}
|
|
1673
1511
|
.e-gantt .e-gantt-chart .e-event-markers .e-gantt-right-arrow {
|
|
1674
1512
|
border-right-color: #cae8ff;
|
|
1675
|
-
border-left-color: #cae8ff !important; /* stylelint-disable-line declaration-no-important */
|
|
1676
1513
|
}
|
|
1677
1514
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar {
|
|
1678
1515
|
background: linear-gradient(to right, rgba(0, 87, 153, 0.2), #005799 30%, #005799 70%, #005799 70%, rgba(0, 87, 153, 0.2) 100%);
|
|
@@ -1765,16 +1602,14 @@
|
|
|
1765
1602
|
border-width: 3px;
|
|
1766
1603
|
}
|
|
1767
1604
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar-right {
|
|
1768
|
-
border-
|
|
1769
|
-
border-bottom-left-radius: 0;
|
|
1770
|
-
border-top-right-radius: 2px;
|
|
1605
|
+
border-bottom-left-radius: 0px;
|
|
1771
1606
|
border-bottom-right-radius: 2px;
|
|
1607
|
+
border-top-left-radius: 0px;
|
|
1608
|
+
border-top-right-radius: 2px;
|
|
1772
1609
|
}
|
|
1773
1610
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar-left {
|
|
1774
1611
|
border-bottom-left-radius: 2px;
|
|
1775
1612
|
border-top-left-radius: 2px;
|
|
1776
|
-
border-bottom-right-radius: 0;
|
|
1777
|
-
border-top-right-radius: 0;
|
|
1778
1613
|
}
|
|
1779
1614
|
.e-gantt .e-gantt-chart .e-task-label {
|
|
1780
1615
|
color: #fff;
|
|
@@ -1927,9 +1762,6 @@
|
|
|
1927
1762
|
color: #dadada !important; /* stylelint-disable-line declaration-no-important */
|
|
1928
1763
|
}
|
|
1929
1764
|
|
|
1930
|
-
.e-gantt-dialog .e-dlg-content .e-rte-quick-popup.e-hide {
|
|
1931
|
-
border: none !important; /* stylelint-disable-line declaration-no-important */
|
|
1932
|
-
}
|
|
1933
1765
|
.e-gantt-dialog .e-dlg-header {
|
|
1934
1766
|
color: #fff;
|
|
1935
1767
|
}
|
|
@@ -1 +1,22 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/fabric-dark-definition.scss';
|
|
2
|
+
@import 'ej2-grids/styles/grid/fabric-dark-definition.scss';
|
|
3
|
+
@import 'ej2-treegrid/styles/treegrid/fabric-dark-definition.scss';
|
|
4
|
+
@import 'ej2-richtexteditor/styles/rich-text-editor/fabric-dark-definition.scss';
|
|
5
|
+
@import 'ej2-calendars/styles/datepicker/fabric-dark-definition.scss';
|
|
6
|
+
@import 'ej2-calendars/styles/datetimepicker/fabric-dark-definition.scss';
|
|
7
|
+
@import 'ej2-buttons/styles/button/fabric-dark-definition.scss';
|
|
8
|
+
@import 'ej2-dropdowns/styles/drop-down-list/fabric-dark-definition.scss';
|
|
9
|
+
@import 'ej2-dropdowns/styles/combo-box/fabric-dark-definition.scss';
|
|
10
|
+
@import 'ej2-dropdowns/styles/multi-select/fabric-dark-definition.scss';
|
|
11
|
+
@import 'ej2-navigations/styles/toolbar/fabric-dark-definition.scss';
|
|
12
|
+
@import 'ej2-navigations/styles/tab/fabric-dark-definition.scss';
|
|
13
|
+
@import 'ej2-navigations/styles/context-menu/fabric-dark-definition.scss';
|
|
14
|
+
@import 'ej2-inputs/styles/input/fabric-dark-definition.scss';
|
|
15
|
+
@import 'ej2-inputs/styles/numerictextbox/fabric-dark-definition.scss';
|
|
16
|
+
@import 'ej2-popups/styles/dialog/fabric-dark-definition.scss';
|
|
17
|
+
@import 'ej2-popups/styles/spinner/fabric-dark-definition.scss';
|
|
18
|
+
@import 'ej2-popups/styles/tooltip/fabric-dark-definition.scss';
|
|
19
|
+
@import 'ej2-layouts/styles/splitter/fabric-dark-definition.scss';
|
|
20
|
+
@import 'fabric-dark-definition.scss';
|
|
21
|
+
@import 'icons/fabric-dark.scss';
|
|
22
|
+
@import 'all.scss';
|
package/styles/gantt/fabric.css
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
@charset "UTF-8";
|
|
1
2
|
.e-ddl.e-popup {
|
|
2
3
|
border: 0;
|
|
3
4
|
box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
|
|
@@ -143,7 +144,7 @@
|
|
|
143
144
|
content: "\e953";
|
|
144
145
|
}
|
|
145
146
|
.e-gantt .e-notes-info::before {
|
|
146
|
-
content: "
|
|
147
|
+
content: "🛈";
|
|
147
148
|
}
|
|
148
149
|
.e-gantt .e-expandall::before {
|
|
149
150
|
content: "\e555";
|
|
@@ -295,7 +296,7 @@
|
|
|
295
296
|
border-radius: 6px !important;
|
|
296
297
|
padding: 32px 16px 16px !important;
|
|
297
298
|
}
|
|
298
|
-
.e-bigger .e-
|
|
299
|
+
.e-bigger .e-columnmenu {
|
|
299
300
|
top: 45px;
|
|
300
301
|
}
|
|
301
302
|
.e-bigger .e-gantt-dialog .e-dialog {
|
|
@@ -420,75 +421,6 @@
|
|
|
420
421
|
font-size: 12px;
|
|
421
422
|
font-weight: 400;
|
|
422
423
|
line-height: 1.8;
|
|
423
|
-
color: #000;
|
|
424
|
-
}
|
|
425
|
-
|
|
426
|
-
.e-blazor-gantt-tooltip .e-tip-content {
|
|
427
|
-
overflow-wrap: unset !important; /* stylelint-disable-line declaration-no-important */
|
|
428
|
-
white-space: nowrap !important; /* stylelint-disable-line declaration-no-important */
|
|
429
|
-
word-break: unset !important; /* stylelint-disable-line declaration-no-important */
|
|
430
|
-
}
|
|
431
|
-
|
|
432
|
-
.e-gantt-tooltip .e-tip-content {
|
|
433
|
-
text-align: left !important; /* stylelint-disable-line declaration-no-important */
|
|
434
|
-
}
|
|
435
|
-
|
|
436
|
-
.e-gantt.e-gantt-rtl .e-connector-line-right-arrow {
|
|
437
|
-
border-left: none !important; /* stylelint-disable-line declaration-no-important */
|
|
438
|
-
border-right-color: #005ba3;
|
|
439
|
-
}
|
|
440
|
-
.e-gantt.e-gantt-rtl .e-connector-line-left-arrow {
|
|
441
|
-
border-right: none !important; /* stylelint-disable-line declaration-no-important */
|
|
442
|
-
border-left-color: #005ba3;
|
|
443
|
-
}
|
|
444
|
-
.e-gantt.e-gantt-rtl .e-toolbar-right {
|
|
445
|
-
left: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
446
|
-
right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
447
|
-
}
|
|
448
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-timeline-header-container {
|
|
449
|
-
border-right: none !important; /* stylelint-disable-line declaration-no-important */
|
|
450
|
-
border-left: 1px solid !important; /* stylelint-disable-line declaration-no-important */
|
|
451
|
-
border-left-color: #eaeaea !important; /* stylelint-disable-line declaration-no-important */
|
|
452
|
-
}
|
|
453
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-timeline-top-header-cell .e-gantt-top-cell-text {
|
|
454
|
-
padding-right: 11px !important; /* stylelint-disable-line declaration-no-important */
|
|
455
|
-
padding-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
456
|
-
text-align: right !important; /* stylelint-disable-line declaration-no-important */
|
|
457
|
-
}
|
|
458
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-element {
|
|
459
|
-
right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
460
|
-
}
|
|
461
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-after {
|
|
462
|
-
right: 1px !important; /* stylelint-disable-line declaration-no-important */
|
|
463
|
-
}
|
|
464
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-connectorpoint-right {
|
|
465
|
-
margin-right: 2px !important; /* stylelint-disable-line declaration-no-important */
|
|
466
|
-
}
|
|
467
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-event-markers .e-gantt-right-arrow {
|
|
468
|
-
border-left: 5px solid;
|
|
469
|
-
border-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
470
|
-
}
|
|
471
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-holiday .e-span {
|
|
472
|
-
transform: rotate(90deg) !important; /* stylelint-disable-line declaration-no-important */
|
|
473
|
-
}
|
|
474
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-left-label-container {
|
|
475
|
-
padding-left: 25px !important; /* stylelint-disable-line declaration-no-important */
|
|
476
|
-
padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
477
|
-
}
|
|
478
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-right-label-container {
|
|
479
|
-
margin-right: 25px !important; /* stylelint-disable-line declaration-no-important */
|
|
480
|
-
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
481
|
-
}
|
|
482
|
-
|
|
483
|
-
.e-gantt-rtl .e-gantt-tooltip-label {
|
|
484
|
-
text-align: right !important; /* stylelint-disable-line declaration-no-important */
|
|
485
|
-
}
|
|
486
|
-
.e-gantt-rtl .e-tip-content {
|
|
487
|
-
text-align: right !important; /* stylelint-disable-line declaration-no-important */
|
|
488
|
-
}
|
|
489
|
-
|
|
490
|
-
.e-gantt-dialog.e-rtl .e-dlg-closeicon-btn {
|
|
491
|
-
padding: 4px 8px !important; /* stylelint-disable-line declaration-no-important */
|
|
492
424
|
}
|
|
493
425
|
|
|
494
426
|
.e-gantt {
|
|
@@ -600,7 +532,6 @@
|
|
|
600
532
|
border-top-style: none;
|
|
601
533
|
border-top-width: 0;
|
|
602
534
|
padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
603
|
-
padding-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
604
535
|
}
|
|
605
536
|
.e-gantt .e-gantt-tree-grid-pane .e-columnheader,
|
|
606
537
|
.e-gantt .e-gantt-tree-grid-pane .e-headercell {
|
|
@@ -609,9 +540,6 @@
|
|
|
609
540
|
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content {
|
|
610
541
|
overflow-x: scroll !important; /* stylelint-disable-line declaration-no-important */
|
|
611
542
|
}
|
|
612
|
-
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-gantt-frozen {
|
|
613
|
-
overflow-x: hidden !important; /* stylelint-disable-line declaration-no-important */
|
|
614
|
-
}
|
|
615
543
|
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content.e-gantt-scroll-padding {
|
|
616
544
|
width: calc(100% + 17px);
|
|
617
545
|
}
|
|
@@ -631,12 +559,6 @@
|
|
|
631
559
|
position: relative;
|
|
632
560
|
width: 100%;
|
|
633
561
|
}
|
|
634
|
-
.e-gantt .e-gantt-chart .e-chart-empty-row {
|
|
635
|
-
border: 0.5px solid;
|
|
636
|
-
position: absolute;
|
|
637
|
-
background-color: rgba(0, 120, 222, 0.15);
|
|
638
|
-
border-color: rgba(0, 120, 222, 0.65) !important;
|
|
639
|
-
}
|
|
640
562
|
.e-gantt .e-gantt-chart .e-chart-root-container {
|
|
641
563
|
border-right: 0 solid;
|
|
642
564
|
}
|
|
@@ -731,10 +653,10 @@
|
|
|
731
653
|
box-sizing: border-box;
|
|
732
654
|
}
|
|
733
655
|
.e-gantt .e-gantt-chart .e-zero-spacing {
|
|
734
|
-
border-spacing: 0
|
|
656
|
+
border-spacing: 0;
|
|
735
657
|
}
|
|
736
658
|
.e-gantt .e-gantt-chart .e-chart-row:first-child .e-chart-row-border {
|
|
737
|
-
border-top:
|
|
659
|
+
border-top-color: transparent;
|
|
738
660
|
}
|
|
739
661
|
.e-gantt .e-gantt-chart .e-chart-row .e-chart-row-border {
|
|
740
662
|
border-collapse: separate;
|
|
@@ -885,88 +807,6 @@
|
|
|
885
807
|
.e-gantt .e-gantt-chart .e-chart-rows-container {
|
|
886
808
|
line-height: initial;
|
|
887
809
|
}
|
|
888
|
-
.e-gantt .e-gantt-chart .e-masked-tbody {
|
|
889
|
-
table-layout: fixed;
|
|
890
|
-
width: 100%;
|
|
891
|
-
}
|
|
892
|
-
.e-gantt .e-gantt-chart .e-div-background {
|
|
893
|
-
border-color: #e1dfdd;
|
|
894
|
-
border-right-style: solid;
|
|
895
|
-
border-right-width: 1px;
|
|
896
|
-
height: 100%;
|
|
897
|
-
position: absolute;
|
|
898
|
-
}
|
|
899
|
-
.e-gantt .e-gantt-chart .e-innerHTML {
|
|
900
|
-
height: 16px;
|
|
901
|
-
width: 16px;
|
|
902
|
-
left: 14px;
|
|
903
|
-
background: #e1dfdd;
|
|
904
|
-
}
|
|
905
|
-
.e-gantt .e-gantt-chart .e-innerHTML1 {
|
|
906
|
-
height: 16px;
|
|
907
|
-
width: 16px;
|
|
908
|
-
left: 30px;
|
|
909
|
-
background: #e1dfdd;
|
|
910
|
-
}
|
|
911
|
-
.e-gantt .e-gantt-chart .e-innerHTML2 {
|
|
912
|
-
height: 16px;
|
|
913
|
-
width: 16px;
|
|
914
|
-
left: 60px;
|
|
915
|
-
background: #e1dfdd;
|
|
916
|
-
}
|
|
917
|
-
.e-gantt .e-gantt-chart .e-timelineHeader {
|
|
918
|
-
height: 16px;
|
|
919
|
-
width: 82px;
|
|
920
|
-
left: 20px;
|
|
921
|
-
background: #e1dfdd;
|
|
922
|
-
}
|
|
923
|
-
.e-gantt .e-gantt-chart .e-maskcell01 {
|
|
924
|
-
height: 12px;
|
|
925
|
-
width: 88px;
|
|
926
|
-
left: 14px;
|
|
927
|
-
border-radius: 0;
|
|
928
|
-
background: #e1dfdd;
|
|
929
|
-
}
|
|
930
|
-
.e-gantt .e-gantt-chart .e-maskcell02 {
|
|
931
|
-
height: 18px;
|
|
932
|
-
width: 410px;
|
|
933
|
-
border-radius: 0;
|
|
934
|
-
background: #e1dfdd;
|
|
935
|
-
}
|
|
936
|
-
.e-gantt .e-gantt-chart .e-maskcell03 {
|
|
937
|
-
height: 12px;
|
|
938
|
-
width: 88px;
|
|
939
|
-
left: 14px;
|
|
940
|
-
border-radius: 0;
|
|
941
|
-
background: #e1dfdd;
|
|
942
|
-
}
|
|
943
|
-
.e-gantt .e-gantt-chart .e-maskcell04 {
|
|
944
|
-
height: 18px;
|
|
945
|
-
width: 208px;
|
|
946
|
-
border-radius: 0;
|
|
947
|
-
background: #e1dfdd;
|
|
948
|
-
}
|
|
949
|
-
.e-gantt .e-gantt-chart .e-maskcell05 {
|
|
950
|
-
height: 12px;
|
|
951
|
-
width: 108px;
|
|
952
|
-
left: 64px;
|
|
953
|
-
border-radius: 0;
|
|
954
|
-
background: #e1dfdd;
|
|
955
|
-
}
|
|
956
|
-
.e-gantt .e-gantt-chart .e-maskcell06 {
|
|
957
|
-
height: 18px;
|
|
958
|
-
width: 195px;
|
|
959
|
-
left: 192px;
|
|
960
|
-
border-radius: 0;
|
|
961
|
-
background: #e1dfdd;
|
|
962
|
-
}
|
|
963
|
-
.e-gantt .e-gantt-chart .e-maskcell07 {
|
|
964
|
-
height: 18px;
|
|
965
|
-
width: 156px;
|
|
966
|
-
left: 388px;
|
|
967
|
-
border-radius: 0;
|
|
968
|
-
background: #e1dfdd;
|
|
969
|
-
}
|
|
970
810
|
.e-gantt .e-gantt-chart .e-taskbar-left-resizer,
|
|
971
811
|
.e-gantt .e-gantt-chart .e-taskbar-right-resizer {
|
|
972
812
|
display: inline-block;
|
|
@@ -1001,7 +841,7 @@
|
|
|
1001
841
|
border-right: 7px solid transparent;
|
|
1002
842
|
cursor: col-resize;
|
|
1003
843
|
height: 0;
|
|
1004
|
-
left:
|
|
844
|
+
left: 0;
|
|
1005
845
|
position: absolute;
|
|
1006
846
|
top: -7px;
|
|
1007
847
|
width: 0;
|
|
@@ -1013,7 +853,7 @@
|
|
|
1013
853
|
border-right: 6px solid transparent;
|
|
1014
854
|
cursor: col-resize;
|
|
1015
855
|
height: 0;
|
|
1016
|
-
left:
|
|
856
|
+
left: 1px;
|
|
1017
857
|
position: absolute;
|
|
1018
858
|
top: -7px;
|
|
1019
859
|
width: 0;
|
|
@@ -1061,7 +901,6 @@
|
|
|
1061
901
|
}
|
|
1062
902
|
.e-gantt .e-gantt-chart .e-task-table {
|
|
1063
903
|
overflow: hidden;
|
|
1064
|
-
border-collapse: separate;
|
|
1065
904
|
}
|
|
1066
905
|
.e-gantt .e-gantt-chart .e-left-resize-gripper,
|
|
1067
906
|
.e-gantt .e-gantt-chart .e-right-resize-gripper {
|
|
@@ -1106,6 +945,7 @@
|
|
|
1106
945
|
border-radius: 3px;
|
|
1107
946
|
font-weight: 500;
|
|
1108
947
|
height: 30px;
|
|
948
|
+
left: 5px;
|
|
1109
949
|
line-height: 1.2;
|
|
1110
950
|
padding: 7px 12px;
|
|
1111
951
|
position: absolute;
|
|
@@ -1314,7 +1154,7 @@
|
|
|
1314
1154
|
.e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
1315
1155
|
border-radius: 50%;
|
|
1316
1156
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
1317
|
-
width: auto;
|
|
1157
|
+
width: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
1318
1158
|
}
|
|
1319
1159
|
|
|
1320
1160
|
.e-icon-rowselect::before {
|
|
@@ -1492,7 +1332,6 @@
|
|
|
1492
1332
|
font-size: 12px;
|
|
1493
1333
|
font-weight: 400;
|
|
1494
1334
|
line-height: 1.8;
|
|
1495
|
-
color: #000;
|
|
1496
1335
|
}
|
|
1497
1336
|
|
|
1498
1337
|
/*! Gantt theme */
|
|
@@ -1549,7 +1388,6 @@
|
|
|
1549
1388
|
border-bottom-color: #eaeaea;
|
|
1550
1389
|
border-bottom-width: 1px;
|
|
1551
1390
|
border-right-color: #eaeaea;
|
|
1552
|
-
border-left-color: #eaeaea;
|
|
1553
1391
|
color: #666;
|
|
1554
1392
|
height: 64px;
|
|
1555
1393
|
}
|
|
@@ -1592,7 +1430,7 @@
|
|
|
1592
1430
|
}
|
|
1593
1431
|
.e-gantt .e-gantt-chart .e-gantt-child-taskbar-inner-div {
|
|
1594
1432
|
background-color: #0078d6;
|
|
1595
|
-
|
|
1433
|
+
border: 1px solid #005ba3;
|
|
1596
1434
|
border-radius: 0px;
|
|
1597
1435
|
}
|
|
1598
1436
|
.e-gantt .e-gantt-chart .e-collapse-parent .e-gantt-child-taskbar-inner-div {
|
|
@@ -1614,7 +1452,7 @@
|
|
|
1614
1452
|
}
|
|
1615
1453
|
.e-gantt .e-gantt-chart .e-gantt-parent-taskbar-inner-div {
|
|
1616
1454
|
background-color: #767676;
|
|
1617
|
-
|
|
1455
|
+
border: 1px solid #505050;
|
|
1618
1456
|
border-radius: 0px;
|
|
1619
1457
|
}
|
|
1620
1458
|
.e-gantt .e-gantt-chart .e-gantt-parent-progressbar-inner-div {
|
|
@@ -1670,7 +1508,6 @@
|
|
|
1670
1508
|
}
|
|
1671
1509
|
.e-gantt .e-gantt-chart .e-event-markers .e-gantt-right-arrow {
|
|
1672
1510
|
border-right-color: #cae8ff;
|
|
1673
|
-
border-left-color: #cae8ff !important; /* stylelint-disable-line declaration-no-important */
|
|
1674
1511
|
}
|
|
1675
1512
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar {
|
|
1676
1513
|
background: linear-gradient(to right, rgba(0, 91, 163, 0.2), #005ba3 30%, #005ba3 70%, #005ba3 70%, rgba(0, 91, 163, 0.2) 100%);
|
|
@@ -1763,16 +1600,14 @@
|
|
|
1763
1600
|
border-width: 3px;
|
|
1764
1601
|
}
|
|
1765
1602
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar-right {
|
|
1766
|
-
border-
|
|
1767
|
-
border-bottom-left-radius: 0;
|
|
1768
|
-
border-top-right-radius: 2px;
|
|
1603
|
+
border-bottom-left-radius: 0px;
|
|
1769
1604
|
border-bottom-right-radius: 2px;
|
|
1605
|
+
border-top-left-radius: 0px;
|
|
1606
|
+
border-top-right-radius: 2px;
|
|
1770
1607
|
}
|
|
1771
1608
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar-left {
|
|
1772
1609
|
border-bottom-left-radius: 2px;
|
|
1773
1610
|
border-top-left-radius: 2px;
|
|
1774
|
-
border-bottom-right-radius: 0;
|
|
1775
|
-
border-top-right-radius: 0;
|
|
1776
1611
|
}
|
|
1777
1612
|
.e-gantt .e-gantt-chart .e-task-label {
|
|
1778
1613
|
color: #fff;
|
|
@@ -1925,9 +1760,6 @@
|
|
|
1925
1760
|
color: #666 !important; /* stylelint-disable-line declaration-no-important */
|
|
1926
1761
|
}
|
|
1927
1762
|
|
|
1928
|
-
.e-gantt-dialog .e-dlg-content .e-rte-quick-popup.e-hide {
|
|
1929
|
-
border: none !important; /* stylelint-disable-line declaration-no-important */
|
|
1930
|
-
}
|
|
1931
1763
|
.e-gantt-dialog .e-dlg-header {
|
|
1932
1764
|
color: #fff;
|
|
1933
1765
|
}
|