@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-rte-toolbar .e-toolbar-popup .e-rte-backgroundcolor-dropdown.e-active,
|
|
2
3
|
.e-rte-toolbar .e-toolbar-popup .e-rte-fontcolor-dropdown.e-active,
|
|
3
4
|
.e-rte-toolbar .e-toolbar-popup .e-rte-numberformatlist-dropdown.e-active,
|
|
@@ -189,7 +190,7 @@
|
|
|
189
190
|
content: "\e842";
|
|
190
191
|
}
|
|
191
192
|
.e-gantt .e-notes-info::before {
|
|
192
|
-
content: "
|
|
193
|
+
content: "🛈";
|
|
193
194
|
}
|
|
194
195
|
.e-gantt .e-left-resize-gripper::before,
|
|
195
196
|
.e-gantt .e-right-resize-gripper::before {
|
|
@@ -341,7 +342,7 @@
|
|
|
341
342
|
border-radius: 6px !important;
|
|
342
343
|
padding: 32px 16px 16px !important;
|
|
343
344
|
}
|
|
344
|
-
.e-bigger .e-
|
|
345
|
+
.e-bigger .e-columnmenu {
|
|
345
346
|
top: 40px;
|
|
346
347
|
}
|
|
347
348
|
.e-bigger .e-gantt-dialog .e-dialog {
|
|
@@ -466,75 +467,6 @@
|
|
|
466
467
|
font-size: 12px;
|
|
467
468
|
font-weight: 400;
|
|
468
469
|
line-height: 1.8;
|
|
469
|
-
color: #000;
|
|
470
|
-
}
|
|
471
|
-
|
|
472
|
-
.e-blazor-gantt-tooltip .e-tip-content {
|
|
473
|
-
overflow-wrap: unset !important; /* stylelint-disable-line declaration-no-important */
|
|
474
|
-
white-space: nowrap !important; /* stylelint-disable-line declaration-no-important */
|
|
475
|
-
word-break: unset !important; /* stylelint-disable-line declaration-no-important */
|
|
476
|
-
}
|
|
477
|
-
|
|
478
|
-
.e-gantt-tooltip .e-tip-content {
|
|
479
|
-
text-align: left !important; /* stylelint-disable-line declaration-no-important */
|
|
480
|
-
}
|
|
481
|
-
|
|
482
|
-
.e-gantt.e-gantt-rtl .e-connector-line-right-arrow {
|
|
483
|
-
border-left: none !important; /* stylelint-disable-line declaration-no-important */
|
|
484
|
-
border-right-color: #0070f0;
|
|
485
|
-
}
|
|
486
|
-
.e-gantt.e-gantt-rtl .e-connector-line-left-arrow {
|
|
487
|
-
border-right: none !important; /* stylelint-disable-line declaration-no-important */
|
|
488
|
-
border-left-color: #0070f0;
|
|
489
|
-
}
|
|
490
|
-
.e-gantt.e-gantt-rtl .e-toolbar-right {
|
|
491
|
-
left: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
492
|
-
right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
493
|
-
}
|
|
494
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-timeline-header-container {
|
|
495
|
-
border-right: none !important; /* stylelint-disable-line declaration-no-important */
|
|
496
|
-
border-left: 1px solid !important; /* stylelint-disable-line declaration-no-important */
|
|
497
|
-
border-left-color: #484848 !important; /* stylelint-disable-line declaration-no-important */
|
|
498
|
-
}
|
|
499
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-timeline-top-header-cell .e-gantt-top-cell-text {
|
|
500
|
-
padding-right: 11px !important; /* stylelint-disable-line declaration-no-important */
|
|
501
|
-
padding-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
502
|
-
text-align: right !important; /* stylelint-disable-line declaration-no-important */
|
|
503
|
-
}
|
|
504
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-element {
|
|
505
|
-
right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
506
|
-
}
|
|
507
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-after {
|
|
508
|
-
right: 1px !important; /* stylelint-disable-line declaration-no-important */
|
|
509
|
-
}
|
|
510
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-connectorpoint-right {
|
|
511
|
-
margin-right: 2px !important; /* stylelint-disable-line declaration-no-important */
|
|
512
|
-
}
|
|
513
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-event-markers .e-gantt-right-arrow {
|
|
514
|
-
border-left: 5px solid;
|
|
515
|
-
border-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
516
|
-
}
|
|
517
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-holiday .e-span {
|
|
518
|
-
transform: rotate(90deg) !important; /* stylelint-disable-line declaration-no-important */
|
|
519
|
-
}
|
|
520
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-left-label-container {
|
|
521
|
-
padding-left: 25px !important; /* stylelint-disable-line declaration-no-important */
|
|
522
|
-
padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
523
|
-
}
|
|
524
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-right-label-container {
|
|
525
|
-
margin-right: 25px !important; /* stylelint-disable-line declaration-no-important */
|
|
526
|
-
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
527
|
-
}
|
|
528
|
-
|
|
529
|
-
.e-gantt-rtl .e-gantt-tooltip-label {
|
|
530
|
-
text-align: right !important; /* stylelint-disable-line declaration-no-important */
|
|
531
|
-
}
|
|
532
|
-
.e-gantt-rtl .e-tip-content {
|
|
533
|
-
text-align: right !important; /* stylelint-disable-line declaration-no-important */
|
|
534
|
-
}
|
|
535
|
-
|
|
536
|
-
.e-gantt-dialog.e-rtl .e-dlg-closeicon-btn {
|
|
537
|
-
padding: 4px 8px !important; /* stylelint-disable-line declaration-no-important */
|
|
538
470
|
}
|
|
539
471
|
|
|
540
472
|
.e-gantt {
|
|
@@ -646,7 +578,6 @@
|
|
|
646
578
|
border-top-style: none;
|
|
647
579
|
border-top-width: 0;
|
|
648
580
|
padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
649
|
-
padding-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
650
581
|
}
|
|
651
582
|
.e-gantt .e-gantt-tree-grid-pane .e-columnheader,
|
|
652
583
|
.e-gantt .e-gantt-tree-grid-pane .e-headercell {
|
|
@@ -655,9 +586,6 @@
|
|
|
655
586
|
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content {
|
|
656
587
|
overflow-x: scroll !important; /* stylelint-disable-line declaration-no-important */
|
|
657
588
|
}
|
|
658
|
-
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-gantt-frozen {
|
|
659
|
-
overflow-x: hidden !important; /* stylelint-disable-line declaration-no-important */
|
|
660
|
-
}
|
|
661
589
|
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content.e-gantt-scroll-padding {
|
|
662
590
|
width: calc(100% + 17px);
|
|
663
591
|
}
|
|
@@ -677,12 +605,6 @@
|
|
|
677
605
|
position: relative;
|
|
678
606
|
width: 100%;
|
|
679
607
|
}
|
|
680
|
-
.e-gantt .e-gantt-chart .e-chart-empty-row {
|
|
681
|
-
border: 0.5px solid;
|
|
682
|
-
position: absolute;
|
|
683
|
-
background-color: rgba(0, 112, 240, 0.15);
|
|
684
|
-
border-color: rgba(0, 112, 240, 0.65) !important;
|
|
685
|
-
}
|
|
686
608
|
.e-gantt .e-gantt-chart .e-chart-root-container {
|
|
687
609
|
border-right: 0 solid;
|
|
688
610
|
}
|
|
@@ -777,10 +699,10 @@
|
|
|
777
699
|
box-sizing: border-box;
|
|
778
700
|
}
|
|
779
701
|
.e-gantt .e-gantt-chart .e-zero-spacing {
|
|
780
|
-
border-spacing: 0
|
|
702
|
+
border-spacing: 0;
|
|
781
703
|
}
|
|
782
704
|
.e-gantt .e-gantt-chart .e-chart-row:first-child .e-chart-row-border {
|
|
783
|
-
border-top:
|
|
705
|
+
border-top-color: transparent;
|
|
784
706
|
}
|
|
785
707
|
.e-gantt .e-gantt-chart .e-chart-row .e-chart-row-border {
|
|
786
708
|
border-collapse: separate;
|
|
@@ -931,88 +853,6 @@
|
|
|
931
853
|
.e-gantt .e-gantt-chart .e-chart-rows-container {
|
|
932
854
|
line-height: initial;
|
|
933
855
|
}
|
|
934
|
-
.e-gantt .e-gantt-chart .e-masked-tbody {
|
|
935
|
-
table-layout: fixed;
|
|
936
|
-
width: 100%;
|
|
937
|
-
}
|
|
938
|
-
.e-gantt .e-gantt-chart .e-div-background {
|
|
939
|
-
border-color: #e1dfdd;
|
|
940
|
-
border-right-style: solid;
|
|
941
|
-
border-right-width: 1px;
|
|
942
|
-
height: 100%;
|
|
943
|
-
position: absolute;
|
|
944
|
-
}
|
|
945
|
-
.e-gantt .e-gantt-chart .e-innerHTML {
|
|
946
|
-
height: 16px;
|
|
947
|
-
width: 16px;
|
|
948
|
-
left: 14px;
|
|
949
|
-
background: #e1dfdd;
|
|
950
|
-
}
|
|
951
|
-
.e-gantt .e-gantt-chart .e-innerHTML1 {
|
|
952
|
-
height: 16px;
|
|
953
|
-
width: 16px;
|
|
954
|
-
left: 30px;
|
|
955
|
-
background: #e1dfdd;
|
|
956
|
-
}
|
|
957
|
-
.e-gantt .e-gantt-chart .e-innerHTML2 {
|
|
958
|
-
height: 16px;
|
|
959
|
-
width: 16px;
|
|
960
|
-
left: 60px;
|
|
961
|
-
background: #e1dfdd;
|
|
962
|
-
}
|
|
963
|
-
.e-gantt .e-gantt-chart .e-timelineHeader {
|
|
964
|
-
height: 16px;
|
|
965
|
-
width: 82px;
|
|
966
|
-
left: 20px;
|
|
967
|
-
background: #e1dfdd;
|
|
968
|
-
}
|
|
969
|
-
.e-gantt .e-gantt-chart .e-maskcell01 {
|
|
970
|
-
height: 12px;
|
|
971
|
-
width: 88px;
|
|
972
|
-
left: 14px;
|
|
973
|
-
border-radius: 0;
|
|
974
|
-
background: #e1dfdd;
|
|
975
|
-
}
|
|
976
|
-
.e-gantt .e-gantt-chart .e-maskcell02 {
|
|
977
|
-
height: 18px;
|
|
978
|
-
width: 410px;
|
|
979
|
-
border-radius: 0;
|
|
980
|
-
background: #e1dfdd;
|
|
981
|
-
}
|
|
982
|
-
.e-gantt .e-gantt-chart .e-maskcell03 {
|
|
983
|
-
height: 12px;
|
|
984
|
-
width: 88px;
|
|
985
|
-
left: 14px;
|
|
986
|
-
border-radius: 0;
|
|
987
|
-
background: #e1dfdd;
|
|
988
|
-
}
|
|
989
|
-
.e-gantt .e-gantt-chart .e-maskcell04 {
|
|
990
|
-
height: 18px;
|
|
991
|
-
width: 208px;
|
|
992
|
-
border-radius: 0;
|
|
993
|
-
background: #e1dfdd;
|
|
994
|
-
}
|
|
995
|
-
.e-gantt .e-gantt-chart .e-maskcell05 {
|
|
996
|
-
height: 12px;
|
|
997
|
-
width: 108px;
|
|
998
|
-
left: 64px;
|
|
999
|
-
border-radius: 0;
|
|
1000
|
-
background: #e1dfdd;
|
|
1001
|
-
}
|
|
1002
|
-
.e-gantt .e-gantt-chart .e-maskcell06 {
|
|
1003
|
-
height: 18px;
|
|
1004
|
-
width: 195px;
|
|
1005
|
-
left: 192px;
|
|
1006
|
-
border-radius: 0;
|
|
1007
|
-
background: #e1dfdd;
|
|
1008
|
-
}
|
|
1009
|
-
.e-gantt .e-gantt-chart .e-maskcell07 {
|
|
1010
|
-
height: 18px;
|
|
1011
|
-
width: 156px;
|
|
1012
|
-
left: 388px;
|
|
1013
|
-
border-radius: 0;
|
|
1014
|
-
background: #e1dfdd;
|
|
1015
|
-
}
|
|
1016
856
|
.e-gantt .e-gantt-chart .e-taskbar-left-resizer,
|
|
1017
857
|
.e-gantt .e-gantt-chart .e-taskbar-right-resizer {
|
|
1018
858
|
display: inline-block;
|
|
@@ -1047,7 +887,7 @@
|
|
|
1047
887
|
border-right: 7px solid transparent;
|
|
1048
888
|
cursor: col-resize;
|
|
1049
889
|
height: 0;
|
|
1050
|
-
left:
|
|
890
|
+
left: 0;
|
|
1051
891
|
position: absolute;
|
|
1052
892
|
top: -7px;
|
|
1053
893
|
width: 0;
|
|
@@ -1059,7 +899,7 @@
|
|
|
1059
899
|
border-right: 6px solid transparent;
|
|
1060
900
|
cursor: col-resize;
|
|
1061
901
|
height: 0;
|
|
1062
|
-
left:
|
|
902
|
+
left: 1px;
|
|
1063
903
|
position: absolute;
|
|
1064
904
|
top: -7px;
|
|
1065
905
|
width: 0;
|
|
@@ -1107,7 +947,6 @@
|
|
|
1107
947
|
}
|
|
1108
948
|
.e-gantt .e-gantt-chart .e-task-table {
|
|
1109
949
|
overflow: hidden;
|
|
1110
|
-
border-collapse: separate;
|
|
1111
950
|
}
|
|
1112
951
|
.e-gantt .e-gantt-chart .e-left-resize-gripper,
|
|
1113
952
|
.e-gantt .e-gantt-chart .e-right-resize-gripper {
|
|
@@ -1152,6 +991,7 @@
|
|
|
1152
991
|
border-radius: 3px;
|
|
1153
992
|
font-weight: 500;
|
|
1154
993
|
height: 30px;
|
|
994
|
+
left: 5px;
|
|
1155
995
|
line-height: 1.5;
|
|
1156
996
|
padding: 7px 12px;
|
|
1157
997
|
position: absolute;
|
|
@@ -1360,7 +1200,7 @@
|
|
|
1360
1200
|
.e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
1361
1201
|
border-radius: 50%;
|
|
1362
1202
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
1363
|
-
width: auto;
|
|
1203
|
+
width: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
1364
1204
|
}
|
|
1365
1205
|
|
|
1366
1206
|
.e-icon-rowselect::before {
|
|
@@ -1538,7 +1378,6 @@
|
|
|
1538
1378
|
font-size: 12px;
|
|
1539
1379
|
font-weight: 400;
|
|
1540
1380
|
line-height: 1.8;
|
|
1541
|
-
color: #000;
|
|
1542
1381
|
}
|
|
1543
1382
|
|
|
1544
1383
|
/*! Gantt theme */
|
|
@@ -1595,7 +1434,6 @@
|
|
|
1595
1434
|
border-bottom-color: #484848;
|
|
1596
1435
|
border-bottom-width: 0px;
|
|
1597
1436
|
border-right-color: #484848;
|
|
1598
|
-
border-left-color: #484848;
|
|
1599
1437
|
color: #f0f0f0;
|
|
1600
1438
|
height: 64px;
|
|
1601
1439
|
}
|
|
@@ -1638,7 +1476,7 @@
|
|
|
1638
1476
|
}
|
|
1639
1477
|
.e-gantt .e-gantt-chart .e-gantt-child-taskbar-inner-div {
|
|
1640
1478
|
background-color: #248aff;
|
|
1641
|
-
|
|
1479
|
+
border: 1px solid #0070f0;
|
|
1642
1480
|
border-radius: 4px;
|
|
1643
1481
|
}
|
|
1644
1482
|
.e-gantt .e-gantt-chart .e-collapse-parent .e-gantt-child-taskbar-inner-div {
|
|
@@ -1660,7 +1498,7 @@
|
|
|
1660
1498
|
}
|
|
1661
1499
|
.e-gantt .e-gantt-chart .e-gantt-parent-taskbar-inner-div {
|
|
1662
1500
|
background-color: #029f90;
|
|
1663
|
-
|
|
1501
|
+
border: 1px solid #4cc7ba;
|
|
1664
1502
|
border-radius: 4px;
|
|
1665
1503
|
}
|
|
1666
1504
|
.e-gantt .e-gantt-chart .e-gantt-parent-progressbar-inner-div {
|
|
@@ -1716,7 +1554,6 @@
|
|
|
1716
1554
|
}
|
|
1717
1555
|
.e-gantt .e-gantt-chart .e-event-markers .e-gantt-right-arrow {
|
|
1718
1556
|
border-right-color: #cae8ff;
|
|
1719
|
-
border-left-color: #cae8ff !important; /* stylelint-disable-line declaration-no-important */
|
|
1720
1557
|
}
|
|
1721
1558
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar {
|
|
1722
1559
|
background: linear-gradient(to right, rgba(0, 112, 240, 0.2), #0070f0 30%, #0070f0 70%, #0070f0 70%, rgba(0, 112, 240, 0.2) 100%);
|
|
@@ -1809,16 +1646,14 @@
|
|
|
1809
1646
|
border-width: 3px;
|
|
1810
1647
|
}
|
|
1811
1648
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar-right {
|
|
1812
|
-
border-
|
|
1813
|
-
border-bottom-left-radius: 0;
|
|
1814
|
-
border-top-right-radius: 2px;
|
|
1649
|
+
border-bottom-left-radius: 0px;
|
|
1815
1650
|
border-bottom-right-radius: 2px;
|
|
1651
|
+
border-top-left-radius: 0px;
|
|
1652
|
+
border-top-right-radius: 2px;
|
|
1816
1653
|
}
|
|
1817
1654
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar-left {
|
|
1818
1655
|
border-bottom-left-radius: 2px;
|
|
1819
1656
|
border-top-left-radius: 2px;
|
|
1820
|
-
border-bottom-right-radius: 0;
|
|
1821
|
-
border-top-right-radius: 0;
|
|
1822
1657
|
}
|
|
1823
1658
|
.e-gantt .e-gantt-chart .e-task-label {
|
|
1824
1659
|
color: #fff;
|
|
@@ -1971,9 +1806,6 @@
|
|
|
1971
1806
|
color: #f0f0f0 !important; /* stylelint-disable-line declaration-no-important */
|
|
1972
1807
|
}
|
|
1973
1808
|
|
|
1974
|
-
.e-gantt-dialog .e-dlg-content .e-rte-quick-popup.e-hide {
|
|
1975
|
-
border: none !important; /* stylelint-disable-line declaration-no-important */
|
|
1976
|
-
}
|
|
1977
1809
|
.e-gantt-dialog .e-dlg-header {
|
|
1978
1810
|
color: #fff;
|
|
1979
1811
|
}
|
|
@@ -1 +1,22 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/bootstrap-dark-definition.scss';
|
|
2
|
+
@import 'ej2-grids/styles/grid/bootstrap-dark-definition.scss';
|
|
3
|
+
@import 'ej2-treegrid/styles/treegrid/bootstrap-dark-definition.scss';
|
|
4
|
+
@import 'ej2-richtexteditor/styles/rich-text-editor/bootstrap-dark-definition.scss';
|
|
5
|
+
@import 'ej2-calendars/styles/datepicker/bootstrap-dark-definition.scss';
|
|
6
|
+
@import 'ej2-calendars/styles/datetimepicker/bootstrap-dark-definition.scss';
|
|
7
|
+
@import 'ej2-buttons/styles/button/bootstrap-dark-definition.scss';
|
|
8
|
+
@import 'ej2-dropdowns/styles/drop-down-list/bootstrap-dark-definition.scss';
|
|
9
|
+
@import 'ej2-dropdowns/styles/combo-box/bootstrap-dark-definition.scss';
|
|
10
|
+
@import 'ej2-dropdowns/styles/multi-select/bootstrap-dark-definition.scss';
|
|
11
|
+
@import 'ej2-navigations/styles/toolbar/bootstrap-dark-definition.scss';
|
|
12
|
+
@import 'ej2-navigations/styles/tab/bootstrap-dark-definition.scss';
|
|
13
|
+
@import 'ej2-navigations/styles/context-menu/bootstrap-dark-definition.scss';
|
|
14
|
+
@import 'ej2-inputs/styles/input/bootstrap-dark-definition.scss';
|
|
15
|
+
@import 'ej2-inputs/styles/numerictextbox/bootstrap-dark-definition.scss';
|
|
16
|
+
@import 'ej2-popups/styles/dialog/bootstrap-dark-definition.scss';
|
|
17
|
+
@import 'ej2-popups/styles/spinner/bootstrap-dark-definition.scss';
|
|
18
|
+
@import 'ej2-popups/styles/tooltip/bootstrap-dark-definition.scss';
|
|
19
|
+
@import 'ej2-layouts/styles/splitter/bootstrap-dark-definition.scss';
|
|
20
|
+
@import 'bootstrap-dark-definition.scss';
|
|
21
|
+
@import 'icons/bootstrap-dark.scss';
|
|
22
|
+
@import 'all.scss';
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
@charset "UTF-8";
|
|
1
2
|
.e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-dropdown-btn.e-active.e-tbar-btn {
|
|
2
3
|
background: #e6e6e6;
|
|
3
4
|
border: 1px solid #8c8c8c;
|
|
@@ -333,7 +334,7 @@
|
|
|
333
334
|
content: "\e842";
|
|
334
335
|
}
|
|
335
336
|
.e-gantt .e-notes-info::before {
|
|
336
|
-
content: "
|
|
337
|
+
content: "🛈";
|
|
337
338
|
}
|
|
338
339
|
.e-gantt .e-left-resize-gripper::before,
|
|
339
340
|
.e-gantt .e-right-resize-gripper::before {
|
|
@@ -485,7 +486,7 @@
|
|
|
485
486
|
border-radius: 6px !important;
|
|
486
487
|
padding: 32px 16px 16px !important;
|
|
487
488
|
}
|
|
488
|
-
.e-bigger .e-
|
|
489
|
+
.e-bigger .e-columnmenu {
|
|
489
490
|
top: 40px;
|
|
490
491
|
}
|
|
491
492
|
.e-bigger .e-gantt-dialog .e-dialog {
|
|
@@ -610,75 +611,6 @@
|
|
|
610
611
|
font-size: 12px;
|
|
611
612
|
font-weight: 400;
|
|
612
613
|
line-height: 1.8;
|
|
613
|
-
color: #000;
|
|
614
|
-
}
|
|
615
|
-
|
|
616
|
-
.e-blazor-gantt-tooltip .e-tip-content {
|
|
617
|
-
overflow-wrap: unset !important; /* stylelint-disable-line declaration-no-important */
|
|
618
|
-
white-space: nowrap !important; /* stylelint-disable-line declaration-no-important */
|
|
619
|
-
word-break: unset !important; /* stylelint-disable-line declaration-no-important */
|
|
620
|
-
}
|
|
621
|
-
|
|
622
|
-
.e-gantt-tooltip .e-tip-content {
|
|
623
|
-
text-align: left !important; /* stylelint-disable-line declaration-no-important */
|
|
624
|
-
}
|
|
625
|
-
|
|
626
|
-
.e-gantt.e-gantt-rtl .e-connector-line-right-arrow {
|
|
627
|
-
border-left: none !important; /* stylelint-disable-line declaration-no-important */
|
|
628
|
-
border-right-color: #21527d;
|
|
629
|
-
}
|
|
630
|
-
.e-gantt.e-gantt-rtl .e-connector-line-left-arrow {
|
|
631
|
-
border-right: none !important; /* stylelint-disable-line declaration-no-important */
|
|
632
|
-
border-left-color: #21527d;
|
|
633
|
-
}
|
|
634
|
-
.e-gantt.e-gantt-rtl .e-toolbar-right {
|
|
635
|
-
left: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
636
|
-
right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
637
|
-
}
|
|
638
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-timeline-header-container {
|
|
639
|
-
border-right: none !important; /* stylelint-disable-line declaration-no-important */
|
|
640
|
-
border-left: 1px solid !important; /* stylelint-disable-line declaration-no-important */
|
|
641
|
-
border-left-color: #ddd !important; /* stylelint-disable-line declaration-no-important */
|
|
642
|
-
}
|
|
643
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-timeline-top-header-cell .e-gantt-top-cell-text {
|
|
644
|
-
padding-right: 11px !important; /* stylelint-disable-line declaration-no-important */
|
|
645
|
-
padding-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
646
|
-
text-align: right !important; /* stylelint-disable-line declaration-no-important */
|
|
647
|
-
}
|
|
648
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-element {
|
|
649
|
-
right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
650
|
-
}
|
|
651
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-after {
|
|
652
|
-
right: 1px !important; /* stylelint-disable-line declaration-no-important */
|
|
653
|
-
}
|
|
654
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-connectorpoint-right {
|
|
655
|
-
margin-right: 2px !important; /* stylelint-disable-line declaration-no-important */
|
|
656
|
-
}
|
|
657
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-event-markers .e-gantt-right-arrow {
|
|
658
|
-
border-left: 5px solid;
|
|
659
|
-
border-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
660
|
-
}
|
|
661
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-holiday .e-span {
|
|
662
|
-
transform: rotate(90deg) !important; /* stylelint-disable-line declaration-no-important */
|
|
663
|
-
}
|
|
664
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-left-label-container {
|
|
665
|
-
padding-left: 25px !important; /* stylelint-disable-line declaration-no-important */
|
|
666
|
-
padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
667
|
-
}
|
|
668
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-right-label-container {
|
|
669
|
-
margin-right: 25px !important; /* stylelint-disable-line declaration-no-important */
|
|
670
|
-
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
671
|
-
}
|
|
672
|
-
|
|
673
|
-
.e-gantt-rtl .e-gantt-tooltip-label {
|
|
674
|
-
text-align: right !important; /* stylelint-disable-line declaration-no-important */
|
|
675
|
-
}
|
|
676
|
-
.e-gantt-rtl .e-tip-content {
|
|
677
|
-
text-align: right !important; /* stylelint-disable-line declaration-no-important */
|
|
678
|
-
}
|
|
679
|
-
|
|
680
|
-
.e-gantt-dialog.e-rtl .e-dlg-closeicon-btn {
|
|
681
|
-
padding: 4px 8px !important; /* stylelint-disable-line declaration-no-important */
|
|
682
614
|
}
|
|
683
615
|
|
|
684
616
|
.e-gantt {
|
|
@@ -790,7 +722,6 @@
|
|
|
790
722
|
border-top-style: none;
|
|
791
723
|
border-top-width: 0;
|
|
792
724
|
padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
793
|
-
padding-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
794
725
|
}
|
|
795
726
|
.e-gantt .e-gantt-tree-grid-pane .e-columnheader,
|
|
796
727
|
.e-gantt .e-gantt-tree-grid-pane .e-headercell {
|
|
@@ -799,9 +730,6 @@
|
|
|
799
730
|
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content {
|
|
800
731
|
overflow-x: scroll !important; /* stylelint-disable-line declaration-no-important */
|
|
801
732
|
}
|
|
802
|
-
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-gantt-frozen {
|
|
803
|
-
overflow-x: hidden !important; /* stylelint-disable-line declaration-no-important */
|
|
804
|
-
}
|
|
805
733
|
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content.e-gantt-scroll-padding {
|
|
806
734
|
width: calc(100% + 17px);
|
|
807
735
|
}
|
|
@@ -821,12 +749,6 @@
|
|
|
821
749
|
position: relative;
|
|
822
750
|
width: 100%;
|
|
823
751
|
}
|
|
824
|
-
.e-gantt .e-gantt-chart .e-chart-empty-row {
|
|
825
|
-
border: 0.5px solid;
|
|
826
|
-
position: absolute;
|
|
827
|
-
background-color: rgba(33, 82, 125, 0.15);
|
|
828
|
-
border-color: rgba(33, 82, 125, 0.65) !important;
|
|
829
|
-
}
|
|
830
752
|
.e-gantt .e-gantt-chart .e-chart-root-container {
|
|
831
753
|
border-right: 0 solid;
|
|
832
754
|
}
|
|
@@ -921,10 +843,10 @@
|
|
|
921
843
|
box-sizing: border-box;
|
|
922
844
|
}
|
|
923
845
|
.e-gantt .e-gantt-chart .e-zero-spacing {
|
|
924
|
-
border-spacing: 0
|
|
846
|
+
border-spacing: 0;
|
|
925
847
|
}
|
|
926
848
|
.e-gantt .e-gantt-chart .e-chart-row:first-child .e-chart-row-border {
|
|
927
|
-
border-top:
|
|
849
|
+
border-top-color: transparent;
|
|
928
850
|
}
|
|
929
851
|
.e-gantt .e-gantt-chart .e-chart-row .e-chart-row-border {
|
|
930
852
|
border-collapse: separate;
|
|
@@ -1075,88 +997,6 @@
|
|
|
1075
997
|
.e-gantt .e-gantt-chart .e-chart-rows-container {
|
|
1076
998
|
line-height: initial;
|
|
1077
999
|
}
|
|
1078
|
-
.e-gantt .e-gantt-chart .e-masked-tbody {
|
|
1079
|
-
table-layout: fixed;
|
|
1080
|
-
width: 100%;
|
|
1081
|
-
}
|
|
1082
|
-
.e-gantt .e-gantt-chart .e-div-background {
|
|
1083
|
-
border-color: #e1dfdd;
|
|
1084
|
-
border-right-style: solid;
|
|
1085
|
-
border-right-width: 1px;
|
|
1086
|
-
height: 100%;
|
|
1087
|
-
position: absolute;
|
|
1088
|
-
}
|
|
1089
|
-
.e-gantt .e-gantt-chart .e-innerHTML {
|
|
1090
|
-
height: 16px;
|
|
1091
|
-
width: 16px;
|
|
1092
|
-
left: 14px;
|
|
1093
|
-
background: #e1dfdd;
|
|
1094
|
-
}
|
|
1095
|
-
.e-gantt .e-gantt-chart .e-innerHTML1 {
|
|
1096
|
-
height: 16px;
|
|
1097
|
-
width: 16px;
|
|
1098
|
-
left: 30px;
|
|
1099
|
-
background: #e1dfdd;
|
|
1100
|
-
}
|
|
1101
|
-
.e-gantt .e-gantt-chart .e-innerHTML2 {
|
|
1102
|
-
height: 16px;
|
|
1103
|
-
width: 16px;
|
|
1104
|
-
left: 60px;
|
|
1105
|
-
background: #e1dfdd;
|
|
1106
|
-
}
|
|
1107
|
-
.e-gantt .e-gantt-chart .e-timelineHeader {
|
|
1108
|
-
height: 16px;
|
|
1109
|
-
width: 82px;
|
|
1110
|
-
left: 20px;
|
|
1111
|
-
background: #e1dfdd;
|
|
1112
|
-
}
|
|
1113
|
-
.e-gantt .e-gantt-chart .e-maskcell01 {
|
|
1114
|
-
height: 12px;
|
|
1115
|
-
width: 88px;
|
|
1116
|
-
left: 14px;
|
|
1117
|
-
border-radius: 0;
|
|
1118
|
-
background: #e1dfdd;
|
|
1119
|
-
}
|
|
1120
|
-
.e-gantt .e-gantt-chart .e-maskcell02 {
|
|
1121
|
-
height: 18px;
|
|
1122
|
-
width: 410px;
|
|
1123
|
-
border-radius: 0;
|
|
1124
|
-
background: #e1dfdd;
|
|
1125
|
-
}
|
|
1126
|
-
.e-gantt .e-gantt-chart .e-maskcell03 {
|
|
1127
|
-
height: 12px;
|
|
1128
|
-
width: 88px;
|
|
1129
|
-
left: 14px;
|
|
1130
|
-
border-radius: 0;
|
|
1131
|
-
background: #e1dfdd;
|
|
1132
|
-
}
|
|
1133
|
-
.e-gantt .e-gantt-chart .e-maskcell04 {
|
|
1134
|
-
height: 18px;
|
|
1135
|
-
width: 208px;
|
|
1136
|
-
border-radius: 0;
|
|
1137
|
-
background: #e1dfdd;
|
|
1138
|
-
}
|
|
1139
|
-
.e-gantt .e-gantt-chart .e-maskcell05 {
|
|
1140
|
-
height: 12px;
|
|
1141
|
-
width: 108px;
|
|
1142
|
-
left: 64px;
|
|
1143
|
-
border-radius: 0;
|
|
1144
|
-
background: #e1dfdd;
|
|
1145
|
-
}
|
|
1146
|
-
.e-gantt .e-gantt-chart .e-maskcell06 {
|
|
1147
|
-
height: 18px;
|
|
1148
|
-
width: 195px;
|
|
1149
|
-
left: 192px;
|
|
1150
|
-
border-radius: 0;
|
|
1151
|
-
background: #e1dfdd;
|
|
1152
|
-
}
|
|
1153
|
-
.e-gantt .e-gantt-chart .e-maskcell07 {
|
|
1154
|
-
height: 18px;
|
|
1155
|
-
width: 156px;
|
|
1156
|
-
left: 388px;
|
|
1157
|
-
border-radius: 0;
|
|
1158
|
-
background: #e1dfdd;
|
|
1159
|
-
}
|
|
1160
1000
|
.e-gantt .e-gantt-chart .e-taskbar-left-resizer,
|
|
1161
1001
|
.e-gantt .e-gantt-chart .e-taskbar-right-resizer {
|
|
1162
1002
|
display: inline-block;
|
|
@@ -1191,7 +1031,7 @@
|
|
|
1191
1031
|
border-right: 7px solid transparent;
|
|
1192
1032
|
cursor: col-resize;
|
|
1193
1033
|
height: 0;
|
|
1194
|
-
left:
|
|
1034
|
+
left: 0;
|
|
1195
1035
|
position: absolute;
|
|
1196
1036
|
top: -7px;
|
|
1197
1037
|
width: 0;
|
|
@@ -1203,7 +1043,7 @@
|
|
|
1203
1043
|
border-right: 6px solid transparent;
|
|
1204
1044
|
cursor: col-resize;
|
|
1205
1045
|
height: 0;
|
|
1206
|
-
left:
|
|
1046
|
+
left: 1px;
|
|
1207
1047
|
position: absolute;
|
|
1208
1048
|
top: -7px;
|
|
1209
1049
|
width: 0;
|
|
@@ -1251,7 +1091,6 @@
|
|
|
1251
1091
|
}
|
|
1252
1092
|
.e-gantt .e-gantt-chart .e-task-table {
|
|
1253
1093
|
overflow: hidden;
|
|
1254
|
-
border-collapse: separate;
|
|
1255
1094
|
}
|
|
1256
1095
|
.e-gantt .e-gantt-chart .e-left-resize-gripper,
|
|
1257
1096
|
.e-gantt .e-gantt-chart .e-right-resize-gripper {
|
|
@@ -1296,6 +1135,7 @@
|
|
|
1296
1135
|
border-radius: 3px;
|
|
1297
1136
|
font-weight: 500;
|
|
1298
1137
|
height: 30px;
|
|
1138
|
+
left: 5px;
|
|
1299
1139
|
line-height: 1.5;
|
|
1300
1140
|
padding: 7px 12px;
|
|
1301
1141
|
position: absolute;
|
|
@@ -1504,7 +1344,7 @@
|
|
|
1504
1344
|
.e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
1505
1345
|
border-radius: 50%;
|
|
1506
1346
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
1507
|
-
width: auto;
|
|
1347
|
+
width: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
1508
1348
|
}
|
|
1509
1349
|
|
|
1510
1350
|
.e-icon-rowselect::before {
|
|
@@ -1682,7 +1522,6 @@
|
|
|
1682
1522
|
font-size: 12px;
|
|
1683
1523
|
font-weight: 400;
|
|
1684
1524
|
line-height: 1.8;
|
|
1685
|
-
color: #000;
|
|
1686
1525
|
}
|
|
1687
1526
|
|
|
1688
1527
|
/*! Gantt theme */
|
|
@@ -1739,7 +1578,6 @@
|
|
|
1739
1578
|
border-bottom-color: #ddd;
|
|
1740
1579
|
border-bottom-width: 0px;
|
|
1741
1580
|
border-right-color: #ddd;
|
|
1742
|
-
border-left-color: #ddd;
|
|
1743
1581
|
color: #333;
|
|
1744
1582
|
height: 64px;
|
|
1745
1583
|
}
|
|
@@ -1782,7 +1620,7 @@
|
|
|
1782
1620
|
}
|
|
1783
1621
|
.e-gantt .e-gantt-chart .e-gantt-child-taskbar-inner-div {
|
|
1784
1622
|
background-color: #317ab9;
|
|
1785
|
-
|
|
1623
|
+
border: 1px solid #21527d;
|
|
1786
1624
|
border-radius: 4px;
|
|
1787
1625
|
}
|
|
1788
1626
|
.e-gantt .e-gantt-chart .e-collapse-parent .e-gantt-child-taskbar-inner-div {
|
|
@@ -1804,7 +1642,7 @@
|
|
|
1804
1642
|
}
|
|
1805
1643
|
.e-gantt .e-gantt-chart .e-gantt-parent-taskbar-inner-div {
|
|
1806
1644
|
background-color: #777;
|
|
1807
|
-
|
|
1645
|
+
border: 1px solid #555;
|
|
1808
1646
|
border-radius: 4px;
|
|
1809
1647
|
}
|
|
1810
1648
|
.e-gantt .e-gantt-chart .e-gantt-parent-progressbar-inner-div {
|
|
@@ -1860,7 +1698,6 @@
|
|
|
1860
1698
|
}
|
|
1861
1699
|
.e-gantt .e-gantt-chart .e-event-markers .e-gantt-right-arrow {
|
|
1862
1700
|
border-right-color: #8a6d3b;
|
|
1863
|
-
border-left-color: #8a6d3b !important; /* stylelint-disable-line declaration-no-important */
|
|
1864
1701
|
}
|
|
1865
1702
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar {
|
|
1866
1703
|
background: linear-gradient(to right, rgba(49, 122, 185, 0.2), #317ab9 30%, #317ab9 70%, #317ab9 70%, rgba(49, 122, 185, 0.2) 100%);
|
|
@@ -1953,16 +1790,14 @@
|
|
|
1953
1790
|
border-width: 3px;
|
|
1954
1791
|
}
|
|
1955
1792
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar-right {
|
|
1956
|
-
border-
|
|
1957
|
-
border-bottom-left-radius: 0;
|
|
1958
|
-
border-top-right-radius: 2px;
|
|
1793
|
+
border-bottom-left-radius: 0px;
|
|
1959
1794
|
border-bottom-right-radius: 2px;
|
|
1795
|
+
border-top-left-radius: 0px;
|
|
1796
|
+
border-top-right-radius: 2px;
|
|
1960
1797
|
}
|
|
1961
1798
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar-left {
|
|
1962
1799
|
border-bottom-left-radius: 2px;
|
|
1963
1800
|
border-top-left-radius: 2px;
|
|
1964
|
-
border-bottom-right-radius: 0;
|
|
1965
|
-
border-top-right-radius: 0;
|
|
1966
1801
|
}
|
|
1967
1802
|
.e-gantt .e-gantt-chart .e-task-label {
|
|
1968
1803
|
color: #fff;
|
|
@@ -2115,9 +1950,6 @@
|
|
|
2115
1950
|
color: #333 !important; /* stylelint-disable-line declaration-no-important */
|
|
2116
1951
|
}
|
|
2117
1952
|
|
|
2118
|
-
.e-gantt-dialog .e-dlg-content .e-rte-quick-popup.e-hide {
|
|
2119
|
-
border: none !important; /* stylelint-disable-line declaration-no-important */
|
|
2120
|
-
}
|
|
2121
1953
|
.e-gantt-dialog .e-dlg-header {
|
|
2122
1954
|
color: #fff;
|
|
2123
1955
|
}
|