@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 +1,22 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/tailwind-dark-definition.scss';
|
|
2
|
+
@import 'ej2-grids/styles/grid/tailwind-dark-definition.scss';
|
|
3
|
+
@import 'ej2-treegrid/styles/treegrid/tailwind-dark-definition.scss';
|
|
4
|
+
@import 'ej2-richtexteditor/styles/rich-text-editor/tailwind-dark-definition.scss';
|
|
5
|
+
@import 'ej2-calendars/styles/datepicker/tailwind-dark-definition.scss';
|
|
6
|
+
@import 'ej2-calendars/styles/datetimepicker/tailwind-dark-definition.scss';
|
|
7
|
+
@import 'ej2-buttons/styles/button/tailwind-dark-definition.scss';
|
|
8
|
+
@import 'ej2-dropdowns/styles/drop-down-list/tailwind-dark-definition.scss';
|
|
9
|
+
@import 'ej2-dropdowns/styles/combo-box/tailwind-dark-definition.scss';
|
|
10
|
+
@import 'ej2-dropdowns/styles/multi-select/tailwind-dark-definition.scss';
|
|
11
|
+
@import 'ej2-navigations/styles/toolbar/tailwind-dark-definition.scss';
|
|
12
|
+
@import 'ej2-navigations/styles/tab/tailwind-dark-definition.scss';
|
|
13
|
+
@import 'ej2-navigations/styles/context-menu/tailwind-dark-definition.scss';
|
|
14
|
+
@import 'ej2-inputs/styles/input/tailwind-dark-definition.scss';
|
|
15
|
+
@import 'ej2-inputs/styles/numerictextbox/tailwind-dark-definition.scss';
|
|
16
|
+
@import 'ej2-popups/styles/dialog/tailwind-dark-definition.scss';
|
|
17
|
+
@import 'ej2-popups/styles/spinner/tailwind-dark-definition.scss';
|
|
18
|
+
@import 'ej2-popups/styles/tooltip/tailwind-dark-definition.scss';
|
|
19
|
+
@import 'ej2-layouts/styles/splitter/tailwind-dark-definition.scss';
|
|
20
|
+
@import 'tailwind-dark-definition.scss';
|
|
21
|
+
@import 'icons/tailwind-dark.scss';
|
|
22
|
+
@import 'all.scss';
|
|
@@ -349,7 +349,7 @@
|
|
|
349
349
|
border-radius: 6px !important;
|
|
350
350
|
padding: 23px 24px 15px 24px !important;
|
|
351
351
|
}
|
|
352
|
-
.e-bigger .e-
|
|
352
|
+
.e-bigger .e-columnmenu {
|
|
353
353
|
top: 35px;
|
|
354
354
|
}
|
|
355
355
|
.e-bigger .e-gantt-dialog .e-dialog {
|
|
@@ -477,75 +477,6 @@
|
|
|
477
477
|
font-size: 12px;
|
|
478
478
|
font-weight: 400;
|
|
479
479
|
line-height: 1.8;
|
|
480
|
-
color: #111827;
|
|
481
|
-
}
|
|
482
|
-
|
|
483
|
-
.e-blazor-gantt-tooltip .e-tip-content {
|
|
484
|
-
overflow-wrap: unset !important; /* stylelint-disable-line declaration-no-important */
|
|
485
|
-
white-space: nowrap !important; /* stylelint-disable-line declaration-no-important */
|
|
486
|
-
word-break: unset !important; /* stylelint-disable-line declaration-no-important */
|
|
487
|
-
}
|
|
488
|
-
|
|
489
|
-
.e-gantt-tooltip .e-tip-content {
|
|
490
|
-
text-align: left !important; /* stylelint-disable-line declaration-no-important */
|
|
491
|
-
}
|
|
492
|
-
|
|
493
|
-
.e-gantt.e-gantt-rtl .e-connector-line-right-arrow {
|
|
494
|
-
border-left: none !important; /* stylelint-disable-line declaration-no-important */
|
|
495
|
-
border-right-color: #4f46e5;
|
|
496
|
-
}
|
|
497
|
-
.e-gantt.e-gantt-rtl .e-connector-line-left-arrow {
|
|
498
|
-
border-right: none !important; /* stylelint-disable-line declaration-no-important */
|
|
499
|
-
border-left-color: #4f46e5;
|
|
500
|
-
}
|
|
501
|
-
.e-gantt.e-gantt-rtl .e-toolbar-right {
|
|
502
|
-
left: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
503
|
-
right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
504
|
-
}
|
|
505
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-timeline-header-container {
|
|
506
|
-
border-right: none !important; /* stylelint-disable-line declaration-no-important */
|
|
507
|
-
border-left: 1px solid !important; /* stylelint-disable-line declaration-no-important */
|
|
508
|
-
border-left-color: #e5e7eb !important; /* stylelint-disable-line declaration-no-important */
|
|
509
|
-
}
|
|
510
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-timeline-top-header-cell .e-gantt-top-cell-text {
|
|
511
|
-
padding-right: 11px !important; /* stylelint-disable-line declaration-no-important */
|
|
512
|
-
padding-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
513
|
-
text-align: right !important; /* stylelint-disable-line declaration-no-important */
|
|
514
|
-
}
|
|
515
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-element {
|
|
516
|
-
right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
517
|
-
}
|
|
518
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-after {
|
|
519
|
-
right: 1px !important; /* stylelint-disable-line declaration-no-important */
|
|
520
|
-
}
|
|
521
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-connectorpoint-right {
|
|
522
|
-
margin-right: 2px !important; /* stylelint-disable-line declaration-no-important */
|
|
523
|
-
}
|
|
524
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-event-markers .e-gantt-right-arrow {
|
|
525
|
-
border-left: 5px solid;
|
|
526
|
-
border-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
527
|
-
}
|
|
528
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-holiday .e-span {
|
|
529
|
-
transform: rotate(90deg) !important; /* stylelint-disable-line declaration-no-important */
|
|
530
|
-
}
|
|
531
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-left-label-container {
|
|
532
|
-
padding-left: 25px !important; /* stylelint-disable-line declaration-no-important */
|
|
533
|
-
padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
534
|
-
}
|
|
535
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-right-label-container {
|
|
536
|
-
margin-right: 25px !important; /* stylelint-disable-line declaration-no-important */
|
|
537
|
-
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
538
|
-
}
|
|
539
|
-
|
|
540
|
-
.e-gantt-rtl .e-gantt-tooltip-label {
|
|
541
|
-
text-align: right !important; /* stylelint-disable-line declaration-no-important */
|
|
542
|
-
}
|
|
543
|
-
.e-gantt-rtl .e-tip-content {
|
|
544
|
-
text-align: right !important; /* stylelint-disable-line declaration-no-important */
|
|
545
|
-
}
|
|
546
|
-
|
|
547
|
-
.e-gantt-dialog.e-rtl .e-dlg-closeicon-btn {
|
|
548
|
-
padding: 4px 8px !important; /* stylelint-disable-line declaration-no-important */
|
|
549
480
|
}
|
|
550
481
|
|
|
551
482
|
.e-gantt {
|
|
@@ -657,7 +588,6 @@
|
|
|
657
588
|
border-top-style: none;
|
|
658
589
|
border-top-width: 0;
|
|
659
590
|
padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
660
|
-
padding-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
661
591
|
}
|
|
662
592
|
.e-gantt .e-gantt-tree-grid-pane .e-columnheader,
|
|
663
593
|
.e-gantt .e-gantt-tree-grid-pane .e-headercell {
|
|
@@ -666,9 +596,6 @@
|
|
|
666
596
|
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content {
|
|
667
597
|
overflow-x: scroll !important; /* stylelint-disable-line declaration-no-important */
|
|
668
598
|
}
|
|
669
|
-
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-gantt-frozen {
|
|
670
|
-
overflow-x: hidden !important; /* stylelint-disable-line declaration-no-important */
|
|
671
|
-
}
|
|
672
599
|
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content.e-gantt-scroll-padding {
|
|
673
600
|
width: calc(100% + 17px);
|
|
674
601
|
}
|
|
@@ -688,12 +615,6 @@
|
|
|
688
615
|
position: relative;
|
|
689
616
|
width: 100%;
|
|
690
617
|
}
|
|
691
|
-
.e-gantt .e-gantt-chart .e-chart-empty-row {
|
|
692
|
-
border: 0.5px solid;
|
|
693
|
-
position: absolute;
|
|
694
|
-
background-color: rgba(0, 120, 222, 0.15);
|
|
695
|
-
border-color: rgba(0, 120, 222, 0.65) !important;
|
|
696
|
-
}
|
|
697
618
|
.e-gantt .e-gantt-chart .e-chart-root-container {
|
|
698
619
|
border-right: 0 solid;
|
|
699
620
|
}
|
|
@@ -788,10 +709,10 @@
|
|
|
788
709
|
box-sizing: border-box;
|
|
789
710
|
}
|
|
790
711
|
.e-gantt .e-gantt-chart .e-zero-spacing {
|
|
791
|
-
border-spacing: 0
|
|
712
|
+
border-spacing: 0;
|
|
792
713
|
}
|
|
793
714
|
.e-gantt .e-gantt-chart .e-chart-row:first-child .e-chart-row-border {
|
|
794
|
-
border-top:
|
|
715
|
+
border-top-color: transparent;
|
|
795
716
|
}
|
|
796
717
|
.e-gantt .e-gantt-chart .e-chart-row {
|
|
797
718
|
line-height: normal;
|
|
@@ -945,88 +866,6 @@
|
|
|
945
866
|
.e-gantt .e-gantt-chart .e-chart-rows-container {
|
|
946
867
|
line-height: initial;
|
|
947
868
|
}
|
|
948
|
-
.e-gantt .e-gantt-chart .e-masked-tbody {
|
|
949
|
-
table-layout: fixed;
|
|
950
|
-
width: 100%;
|
|
951
|
-
}
|
|
952
|
-
.e-gantt .e-gantt-chart .e-div-background {
|
|
953
|
-
border-color: rgb(225, 223, 221);
|
|
954
|
-
border-right-style: solid;
|
|
955
|
-
border-right-width: 1px;
|
|
956
|
-
height: 100%;
|
|
957
|
-
position: absolute;
|
|
958
|
-
}
|
|
959
|
-
.e-gantt .e-gantt-chart .e-innerHTML {
|
|
960
|
-
height: 16px;
|
|
961
|
-
width: 16px;
|
|
962
|
-
left: 14px;
|
|
963
|
-
background: rgb(225, 223, 221);
|
|
964
|
-
}
|
|
965
|
-
.e-gantt .e-gantt-chart .e-innerHTML1 {
|
|
966
|
-
height: 16px;
|
|
967
|
-
width: 16px;
|
|
968
|
-
left: 30px;
|
|
969
|
-
background: rgb(225, 223, 221);
|
|
970
|
-
}
|
|
971
|
-
.e-gantt .e-gantt-chart .e-innerHTML2 {
|
|
972
|
-
height: 16px;
|
|
973
|
-
width: 16px;
|
|
974
|
-
left: 60px;
|
|
975
|
-
background: rgb(225, 223, 221);
|
|
976
|
-
}
|
|
977
|
-
.e-gantt .e-gantt-chart .e-timelineHeader {
|
|
978
|
-
height: 16px;
|
|
979
|
-
width: 82px;
|
|
980
|
-
left: 20px;
|
|
981
|
-
background: rgb(225, 223, 221);
|
|
982
|
-
}
|
|
983
|
-
.e-gantt .e-gantt-chart .e-maskcell01 {
|
|
984
|
-
height: 12px;
|
|
985
|
-
width: 88px;
|
|
986
|
-
left: 14px;
|
|
987
|
-
border-radius: 0;
|
|
988
|
-
background: rgb(225, 223, 221);
|
|
989
|
-
}
|
|
990
|
-
.e-gantt .e-gantt-chart .e-maskcell02 {
|
|
991
|
-
height: 18px;
|
|
992
|
-
width: 410px;
|
|
993
|
-
border-radius: 0;
|
|
994
|
-
background: rgb(225, 223, 221);
|
|
995
|
-
}
|
|
996
|
-
.e-gantt .e-gantt-chart .e-maskcell03 {
|
|
997
|
-
height: 12px;
|
|
998
|
-
width: 88px;
|
|
999
|
-
left: 14px;
|
|
1000
|
-
border-radius: 0;
|
|
1001
|
-
background: rgb(225, 223, 221);
|
|
1002
|
-
}
|
|
1003
|
-
.e-gantt .e-gantt-chart .e-maskcell04 {
|
|
1004
|
-
height: 18px;
|
|
1005
|
-
width: 208px;
|
|
1006
|
-
border-radius: 0;
|
|
1007
|
-
background: rgb(225, 223, 221);
|
|
1008
|
-
}
|
|
1009
|
-
.e-gantt .e-gantt-chart .e-maskcell05 {
|
|
1010
|
-
height: 12px;
|
|
1011
|
-
width: 108px;
|
|
1012
|
-
left: 64px;
|
|
1013
|
-
border-radius: 0;
|
|
1014
|
-
background: rgb(225, 223, 221);
|
|
1015
|
-
}
|
|
1016
|
-
.e-gantt .e-gantt-chart .e-maskcell06 {
|
|
1017
|
-
height: 18px;
|
|
1018
|
-
width: 195px;
|
|
1019
|
-
left: 192px;
|
|
1020
|
-
border-radius: 0;
|
|
1021
|
-
background: rgb(225, 223, 221);
|
|
1022
|
-
}
|
|
1023
|
-
.e-gantt .e-gantt-chart .e-maskcell07 {
|
|
1024
|
-
height: 18px;
|
|
1025
|
-
width: 156px;
|
|
1026
|
-
left: 388px;
|
|
1027
|
-
border-radius: 0;
|
|
1028
|
-
background: rgb(225, 223, 221);
|
|
1029
|
-
}
|
|
1030
869
|
.e-gantt .e-gantt-chart .e-taskbar-left-resizer,
|
|
1031
870
|
.e-gantt .e-gantt-chart .e-taskbar-right-resizer {
|
|
1032
871
|
display: inline-block;
|
|
@@ -1061,7 +900,7 @@
|
|
|
1061
900
|
border-right: 7px solid transparent;
|
|
1062
901
|
cursor: col-resize;
|
|
1063
902
|
height: 0;
|
|
1064
|
-
left:
|
|
903
|
+
left: 0;
|
|
1065
904
|
position: absolute;
|
|
1066
905
|
top: -7px;
|
|
1067
906
|
width: 0;
|
|
@@ -1073,7 +912,7 @@
|
|
|
1073
912
|
border-right: 6px solid transparent;
|
|
1074
913
|
cursor: col-resize;
|
|
1075
914
|
height: 0;
|
|
1076
|
-
left:
|
|
915
|
+
left: 1px;
|
|
1077
916
|
position: absolute;
|
|
1078
917
|
top: -7px;
|
|
1079
918
|
width: 0;
|
|
@@ -1121,7 +960,6 @@
|
|
|
1121
960
|
}
|
|
1122
961
|
.e-gantt .e-gantt-chart .e-task-table {
|
|
1123
962
|
overflow: hidden;
|
|
1124
|
-
border-collapse: separate;
|
|
1125
963
|
}
|
|
1126
964
|
.e-gantt .e-gantt-chart .e-left-resize-gripper,
|
|
1127
965
|
.e-gantt .e-gantt-chart .e-right-resize-gripper {
|
|
@@ -1166,6 +1004,7 @@
|
|
|
1166
1004
|
border-radius: 3px;
|
|
1167
1005
|
font-weight: 500;
|
|
1168
1006
|
height: 26px;
|
|
1007
|
+
left: 5px;
|
|
1169
1008
|
line-height: 18px;
|
|
1170
1009
|
padding: 4px 8px;
|
|
1171
1010
|
position: absolute;
|
|
@@ -1375,7 +1214,7 @@
|
|
|
1375
1214
|
.e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
1376
1215
|
border-radius: 50%;
|
|
1377
1216
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
1378
|
-
width: auto;
|
|
1217
|
+
width: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
1379
1218
|
}
|
|
1380
1219
|
|
|
1381
1220
|
.e-icon-rowselect::before {
|
|
@@ -1553,7 +1392,6 @@
|
|
|
1553
1392
|
font-size: 12px;
|
|
1554
1393
|
font-weight: 400;
|
|
1555
1394
|
line-height: 1.8;
|
|
1556
|
-
color: #111827;
|
|
1557
1395
|
}
|
|
1558
1396
|
|
|
1559
1397
|
/*! Gantt theme */
|
|
@@ -1610,7 +1448,6 @@
|
|
|
1610
1448
|
border-bottom-color: #e5e7eb;
|
|
1611
1449
|
border-bottom-width: 0px;
|
|
1612
1450
|
border-right-color: #e5e7eb;
|
|
1613
|
-
border-left-color: #e5e7eb;
|
|
1614
1451
|
color: #6b7280;
|
|
1615
1452
|
height: 49px;
|
|
1616
1453
|
}
|
|
@@ -1653,7 +1490,7 @@
|
|
|
1653
1490
|
}
|
|
1654
1491
|
.e-gantt .e-gantt-chart .e-gantt-child-taskbar-inner-div {
|
|
1655
1492
|
background-color: #818cf8;
|
|
1656
|
-
|
|
1493
|
+
border: 1px solid #4f46e5;
|
|
1657
1494
|
border-radius: 4px;
|
|
1658
1495
|
}
|
|
1659
1496
|
.e-gantt .e-gantt-chart .e-collapse-parent .e-gantt-child-taskbar-inner-div {
|
|
@@ -1675,7 +1512,7 @@
|
|
|
1675
1512
|
}
|
|
1676
1513
|
.e-gantt .e-gantt-chart .e-gantt-parent-taskbar-inner-div {
|
|
1677
1514
|
background-color: #d1d5db;
|
|
1678
|
-
|
|
1515
|
+
border: 1px solid #9ca3af;
|
|
1679
1516
|
border-radius: 4px;
|
|
1680
1517
|
}
|
|
1681
1518
|
.e-gantt .e-gantt-chart .e-gantt-parent-progressbar-inner-div {
|
|
@@ -1731,7 +1568,6 @@
|
|
|
1731
1568
|
}
|
|
1732
1569
|
.e-gantt .e-gantt-chart .e-event-markers .e-gantt-right-arrow {
|
|
1733
1570
|
border-right-color: #ffedd5;
|
|
1734
|
-
border-left-color: #ffedd5 !important; /* stylelint-disable-line declaration-no-important */
|
|
1735
1571
|
}
|
|
1736
1572
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar {
|
|
1737
1573
|
background: linear-gradient(to right, #818cf8, #4f46e5 30%, #4f46e5 70%, #4f46e5 70%, #818cf8 100%);
|
|
@@ -1824,16 +1660,14 @@
|
|
|
1824
1660
|
border-width: 3px;
|
|
1825
1661
|
}
|
|
1826
1662
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar-right {
|
|
1827
|
-
border-
|
|
1828
|
-
border-bottom-left-radius: 0;
|
|
1829
|
-
border-top-right-radius: 2px;
|
|
1663
|
+
border-bottom-left-radius: 0px;
|
|
1830
1664
|
border-bottom-right-radius: 2px;
|
|
1665
|
+
border-top-left-radius: 0px;
|
|
1666
|
+
border-top-right-radius: 2px;
|
|
1831
1667
|
}
|
|
1832
1668
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar-left {
|
|
1833
1669
|
border-bottom-left-radius: 2px;
|
|
1834
1670
|
border-top-left-radius: 2px;
|
|
1835
|
-
border-bottom-right-radius: 0;
|
|
1836
|
-
border-top-right-radius: 0;
|
|
1837
1671
|
}
|
|
1838
1672
|
.e-gantt .e-gantt-chart .e-task-label {
|
|
1839
1673
|
color: #fff;
|
|
@@ -1986,9 +1820,6 @@
|
|
|
1986
1820
|
color: #6b7280 !important; /* stylelint-disable-line declaration-no-important */
|
|
1987
1821
|
}
|
|
1988
1822
|
|
|
1989
|
-
.e-gantt-dialog .e-dlg-content .e-rte-quick-popup.e-hide {
|
|
1990
|
-
border: none !important; /* stylelint-disable-line declaration-no-important */
|
|
1991
|
-
}
|
|
1992
1823
|
.e-gantt-dialog .e-dlg-header {
|
|
1993
1824
|
color: #111827;
|
|
1994
1825
|
}
|
|
@@ -1 +1,22 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/tailwind-definition.scss';
|
|
2
|
+
@import 'ej2-grids/styles/grid/tailwind-definition.scss';
|
|
3
|
+
@import 'ej2-treegrid/styles/treegrid/tailwind-definition.scss';
|
|
4
|
+
@import 'ej2-richtexteditor/styles/rich-text-editor/tailwind-definition.scss';
|
|
5
|
+
@import 'ej2-calendars/styles/datepicker/tailwind-definition.scss';
|
|
6
|
+
@import 'ej2-calendars/styles/datetimepicker/tailwind-definition.scss';
|
|
7
|
+
@import 'ej2-buttons/styles/button/tailwind-definition.scss';
|
|
8
|
+
@import 'ej2-dropdowns/styles/drop-down-list/tailwind-definition.scss';
|
|
9
|
+
@import 'ej2-dropdowns/styles/combo-box/tailwind-definition.scss';
|
|
10
|
+
@import 'ej2-dropdowns/styles/multi-select/tailwind-definition.scss';
|
|
11
|
+
@import 'ej2-navigations/styles/toolbar/tailwind-definition.scss';
|
|
12
|
+
@import 'ej2-navigations/styles/tab/tailwind-definition.scss';
|
|
13
|
+
@import 'ej2-navigations/styles/context-menu/tailwind-definition.scss';
|
|
14
|
+
@import 'ej2-inputs/styles/input/tailwind-definition.scss';
|
|
15
|
+
@import 'ej2-inputs/styles/numerictextbox/tailwind-definition.scss';
|
|
16
|
+
@import 'ej2-popups/styles/dialog/tailwind-definition.scss';
|
|
17
|
+
@import 'ej2-popups/styles/spinner/tailwind-definition.scss';
|
|
18
|
+
@import 'ej2-popups/styles/tooltip/tailwind-definition.scss';
|
|
19
|
+
@import 'ej2-layouts/styles/splitter/tailwind-definition.scss';
|
|
20
|
+
@import 'tailwind-definition.scss';
|
|
21
|
+
@import 'icons/tailwind.scss';
|
|
22
|
+
@import 'all.scss';
|
|
@@ -280,7 +280,7 @@
|
|
|
280
280
|
border-radius: 0px !important;
|
|
281
281
|
padding: 20px 18px 0px 18px !important;
|
|
282
282
|
}
|
|
283
|
-
.e-bigger .e-
|
|
283
|
+
.e-bigger .e-columnmenu {
|
|
284
284
|
top: 45px;
|
|
285
285
|
}
|
|
286
286
|
.e-bigger .e-gantt-dialog .e-dialog {
|
|
@@ -406,75 +406,6 @@
|
|
|
406
406
|
font-size: 12px;
|
|
407
407
|
font-weight: 400;
|
|
408
408
|
line-height: 1.8;
|
|
409
|
-
color: #000;
|
|
410
|
-
}
|
|
411
|
-
|
|
412
|
-
.e-blazor-gantt-tooltip .e-tip-content {
|
|
413
|
-
overflow-wrap: unset !important; /* stylelint-disable-line declaration-no-important */
|
|
414
|
-
white-space: nowrap !important; /* stylelint-disable-line declaration-no-important */
|
|
415
|
-
word-break: unset !important; /* stylelint-disable-line declaration-no-important */
|
|
416
|
-
}
|
|
417
|
-
|
|
418
|
-
.e-gantt-tooltip .e-tip-content {
|
|
419
|
-
text-align: left !important; /* stylelint-disable-line declaration-no-important */
|
|
420
|
-
}
|
|
421
|
-
|
|
422
|
-
.e-gantt.e-gantt-rtl .e-connector-line-right-arrow {
|
|
423
|
-
border-left: none !important; /* stylelint-disable-line declaration-no-important */
|
|
424
|
-
border-right-color: #29c400;
|
|
425
|
-
}
|
|
426
|
-
.e-gantt.e-gantt-rtl .e-connector-line-left-arrow {
|
|
427
|
-
border-right: none !important; /* stylelint-disable-line declaration-no-important */
|
|
428
|
-
border-left-color: #29c400;
|
|
429
|
-
}
|
|
430
|
-
.e-gantt.e-gantt-rtl .e-toolbar-right {
|
|
431
|
-
left: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
432
|
-
right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
433
|
-
}
|
|
434
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-timeline-header-container {
|
|
435
|
-
border-right: none !important; /* stylelint-disable-line declaration-no-important */
|
|
436
|
-
border-left: 1px solid !important; /* stylelint-disable-line declaration-no-important */
|
|
437
|
-
border-left-color: #757575 !important; /* stylelint-disable-line declaration-no-important */
|
|
438
|
-
}
|
|
439
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-timeline-top-header-cell .e-gantt-top-cell-text {
|
|
440
|
-
padding-right: 11px !important; /* stylelint-disable-line declaration-no-important */
|
|
441
|
-
padding-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
442
|
-
text-align: right !important; /* stylelint-disable-line declaration-no-important */
|
|
443
|
-
}
|
|
444
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-element {
|
|
445
|
-
right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
446
|
-
}
|
|
447
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-after {
|
|
448
|
-
right: 1px !important; /* stylelint-disable-line declaration-no-important */
|
|
449
|
-
}
|
|
450
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-connectorpoint-right {
|
|
451
|
-
margin-right: 2px !important; /* stylelint-disable-line declaration-no-important */
|
|
452
|
-
}
|
|
453
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-event-markers .e-gantt-right-arrow {
|
|
454
|
-
border-left: 5px solid;
|
|
455
|
-
border-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
456
|
-
}
|
|
457
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-holiday .e-span {
|
|
458
|
-
transform: rotate(90deg) !important; /* stylelint-disable-line declaration-no-important */
|
|
459
|
-
}
|
|
460
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-left-label-container {
|
|
461
|
-
padding-left: 25px !important; /* stylelint-disable-line declaration-no-important */
|
|
462
|
-
padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
463
|
-
}
|
|
464
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-right-label-container {
|
|
465
|
-
margin-right: 25px !important; /* stylelint-disable-line declaration-no-important */
|
|
466
|
-
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
467
|
-
}
|
|
468
|
-
|
|
469
|
-
.e-gantt-rtl .e-gantt-tooltip-label {
|
|
470
|
-
text-align: right !important; /* stylelint-disable-line declaration-no-important */
|
|
471
|
-
}
|
|
472
|
-
.e-gantt-rtl .e-tip-content {
|
|
473
|
-
text-align: right !important; /* stylelint-disable-line declaration-no-important */
|
|
474
|
-
}
|
|
475
|
-
|
|
476
|
-
.e-gantt-dialog.e-rtl .e-dlg-closeicon-btn {
|
|
477
|
-
padding: 4px 8px !important; /* stylelint-disable-line declaration-no-important */
|
|
478
409
|
}
|
|
479
410
|
|
|
480
411
|
.e-gantt {
|
|
@@ -586,7 +517,6 @@
|
|
|
586
517
|
border-top-style: none;
|
|
587
518
|
border-top-width: 0;
|
|
588
519
|
padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
589
|
-
padding-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
590
520
|
}
|
|
591
521
|
.e-gantt .e-gantt-tree-grid-pane .e-columnheader,
|
|
592
522
|
.e-gantt .e-gantt-tree-grid-pane .e-headercell {
|
|
@@ -595,9 +525,6 @@
|
|
|
595
525
|
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content {
|
|
596
526
|
overflow-x: scroll !important; /* stylelint-disable-line declaration-no-important */
|
|
597
527
|
}
|
|
598
|
-
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-gantt-frozen {
|
|
599
|
-
overflow-x: hidden !important; /* stylelint-disable-line declaration-no-important */
|
|
600
|
-
}
|
|
601
528
|
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content.e-gantt-scroll-padding {
|
|
602
529
|
width: calc(100% + 17px);
|
|
603
530
|
}
|
|
@@ -617,12 +544,6 @@
|
|
|
617
544
|
position: relative;
|
|
618
545
|
width: 100%;
|
|
619
546
|
}
|
|
620
|
-
.e-gantt .e-gantt-chart .e-chart-empty-row {
|
|
621
|
-
border: 0.5px solid;
|
|
622
|
-
position: absolute;
|
|
623
|
-
background-color: rgba(0, 120, 222, 0.15);
|
|
624
|
-
border-color: rgba(0, 120, 222, 0.65) !important;
|
|
625
|
-
}
|
|
626
547
|
.e-gantt .e-gantt-chart .e-chart-root-container {
|
|
627
548
|
border-right: 0 solid;
|
|
628
549
|
}
|
|
@@ -717,10 +638,10 @@
|
|
|
717
638
|
box-sizing: border-box;
|
|
718
639
|
}
|
|
719
640
|
.e-gantt .e-gantt-chart .e-zero-spacing {
|
|
720
|
-
border-spacing: 0
|
|
641
|
+
border-spacing: 0;
|
|
721
642
|
}
|
|
722
643
|
.e-gantt .e-gantt-chart .e-chart-row:first-child .e-chart-row-border {
|
|
723
|
-
border-top:
|
|
644
|
+
border-top-color: transparent;
|
|
724
645
|
}
|
|
725
646
|
.e-gantt .e-gantt-chart .e-chart-row .e-chart-row-border {
|
|
726
647
|
border-collapse: separate;
|
|
@@ -871,88 +792,6 @@
|
|
|
871
792
|
.e-gantt .e-gantt-chart .e-chart-rows-container {
|
|
872
793
|
line-height: initial;
|
|
873
794
|
}
|
|
874
|
-
.e-gantt .e-gantt-chart .e-masked-tbody {
|
|
875
|
-
table-layout: fixed;
|
|
876
|
-
width: 100%;
|
|
877
|
-
}
|
|
878
|
-
.e-gantt .e-gantt-chart .e-div-background {
|
|
879
|
-
border-color: #e1dfdd;
|
|
880
|
-
border-right-style: solid;
|
|
881
|
-
border-right-width: 1px;
|
|
882
|
-
height: 100%;
|
|
883
|
-
position: absolute;
|
|
884
|
-
}
|
|
885
|
-
.e-gantt .e-gantt-chart .e-innerHTML {
|
|
886
|
-
height: 16px;
|
|
887
|
-
width: 16px;
|
|
888
|
-
left: 14px;
|
|
889
|
-
background: #e1dfdd;
|
|
890
|
-
}
|
|
891
|
-
.e-gantt .e-gantt-chart .e-innerHTML1 {
|
|
892
|
-
height: 16px;
|
|
893
|
-
width: 16px;
|
|
894
|
-
left: 30px;
|
|
895
|
-
background: #e1dfdd;
|
|
896
|
-
}
|
|
897
|
-
.e-gantt .e-gantt-chart .e-innerHTML2 {
|
|
898
|
-
height: 16px;
|
|
899
|
-
width: 16px;
|
|
900
|
-
left: 60px;
|
|
901
|
-
background: #e1dfdd;
|
|
902
|
-
}
|
|
903
|
-
.e-gantt .e-gantt-chart .e-timelineHeader {
|
|
904
|
-
height: 16px;
|
|
905
|
-
width: 82px;
|
|
906
|
-
left: 20px;
|
|
907
|
-
background: #e1dfdd;
|
|
908
|
-
}
|
|
909
|
-
.e-gantt .e-gantt-chart .e-maskcell01 {
|
|
910
|
-
height: 12px;
|
|
911
|
-
width: 88px;
|
|
912
|
-
left: 14px;
|
|
913
|
-
border-radius: 0;
|
|
914
|
-
background: #e1dfdd;
|
|
915
|
-
}
|
|
916
|
-
.e-gantt .e-gantt-chart .e-maskcell02 {
|
|
917
|
-
height: 18px;
|
|
918
|
-
width: 410px;
|
|
919
|
-
border-radius: 0;
|
|
920
|
-
background: #e1dfdd;
|
|
921
|
-
}
|
|
922
|
-
.e-gantt .e-gantt-chart .e-maskcell03 {
|
|
923
|
-
height: 12px;
|
|
924
|
-
width: 88px;
|
|
925
|
-
left: 14px;
|
|
926
|
-
border-radius: 0;
|
|
927
|
-
background: #e1dfdd;
|
|
928
|
-
}
|
|
929
|
-
.e-gantt .e-gantt-chart .e-maskcell04 {
|
|
930
|
-
height: 18px;
|
|
931
|
-
width: 208px;
|
|
932
|
-
border-radius: 0;
|
|
933
|
-
background: #e1dfdd;
|
|
934
|
-
}
|
|
935
|
-
.e-gantt .e-gantt-chart .e-maskcell05 {
|
|
936
|
-
height: 12px;
|
|
937
|
-
width: 108px;
|
|
938
|
-
left: 64px;
|
|
939
|
-
border-radius: 0;
|
|
940
|
-
background: #e1dfdd;
|
|
941
|
-
}
|
|
942
|
-
.e-gantt .e-gantt-chart .e-maskcell06 {
|
|
943
|
-
height: 18px;
|
|
944
|
-
width: 195px;
|
|
945
|
-
left: 192px;
|
|
946
|
-
border-radius: 0;
|
|
947
|
-
background: #e1dfdd;
|
|
948
|
-
}
|
|
949
|
-
.e-gantt .e-gantt-chart .e-maskcell07 {
|
|
950
|
-
height: 18px;
|
|
951
|
-
width: 156px;
|
|
952
|
-
left: 388px;
|
|
953
|
-
border-radius: 0;
|
|
954
|
-
background: #e1dfdd;
|
|
955
|
-
}
|
|
956
795
|
.e-gantt .e-gantt-chart .e-taskbar-left-resizer,
|
|
957
796
|
.e-gantt .e-gantt-chart .e-taskbar-right-resizer {
|
|
958
797
|
display: inline-block;
|
|
@@ -987,7 +826,7 @@
|
|
|
987
826
|
border-right: 7px solid transparent;
|
|
988
827
|
cursor: col-resize;
|
|
989
828
|
height: 0;
|
|
990
|
-
left:
|
|
829
|
+
left: 0;
|
|
991
830
|
position: absolute;
|
|
992
831
|
top: -7px;
|
|
993
832
|
width: 0;
|
|
@@ -999,7 +838,7 @@
|
|
|
999
838
|
border-right: 6px solid transparent;
|
|
1000
839
|
cursor: col-resize;
|
|
1001
840
|
height: 0;
|
|
1002
|
-
left:
|
|
841
|
+
left: 1px;
|
|
1003
842
|
position: absolute;
|
|
1004
843
|
top: -7px;
|
|
1005
844
|
width: 0;
|
|
@@ -1047,7 +886,6 @@
|
|
|
1047
886
|
}
|
|
1048
887
|
.e-gantt .e-gantt-chart .e-task-table {
|
|
1049
888
|
overflow: hidden;
|
|
1050
|
-
border-collapse: separate;
|
|
1051
889
|
}
|
|
1052
890
|
.e-gantt .e-gantt-chart .e-left-resize-gripper,
|
|
1053
891
|
.e-gantt .e-gantt-chart .e-right-resize-gripper {
|
|
@@ -1092,6 +930,7 @@
|
|
|
1092
930
|
border-radius: 3px;
|
|
1093
931
|
font-weight: 500;
|
|
1094
932
|
height: 30px;
|
|
933
|
+
left: 5px;
|
|
1095
934
|
line-height: 1.2;
|
|
1096
935
|
padding: 7px 12px;
|
|
1097
936
|
position: absolute;
|
|
@@ -1300,7 +1139,7 @@
|
|
|
1300
1139
|
.e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
1301
1140
|
border-radius: 50%;
|
|
1302
1141
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
1303
|
-
width: auto;
|
|
1142
|
+
width: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
1304
1143
|
}
|
|
1305
1144
|
|
|
1306
1145
|
.e-icon-rowselect::before {
|
|
@@ -1479,7 +1318,6 @@
|
|
|
1479
1318
|
font-size: 12px;
|
|
1480
1319
|
font-weight: 400;
|
|
1481
1320
|
line-height: 1.8;
|
|
1482
|
-
color: #000;
|
|
1483
1321
|
}
|
|
1484
1322
|
|
|
1485
1323
|
/*! Gantt theme */
|
|
@@ -1536,7 +1374,6 @@
|
|
|
1536
1374
|
border-bottom-color: #757575;
|
|
1537
1375
|
border-bottom-width: 1px;
|
|
1538
1376
|
border-right-color: #757575;
|
|
1539
|
-
border-left-color: #757575;
|
|
1540
1377
|
color: #000;
|
|
1541
1378
|
height: 64px;
|
|
1542
1379
|
}
|
|
@@ -1579,7 +1416,7 @@
|
|
|
1579
1416
|
}
|
|
1580
1417
|
.e-gantt .e-gantt-chart .e-gantt-child-taskbar-inner-div {
|
|
1581
1418
|
background-color: #3e047d;
|
|
1582
|
-
|
|
1419
|
+
border: 1px solid #000;
|
|
1583
1420
|
border-radius: 0px;
|
|
1584
1421
|
}
|
|
1585
1422
|
.e-gantt .e-gantt-chart .e-collapse-parent .e-gantt-child-taskbar-inner-div {
|
|
@@ -1601,7 +1438,7 @@
|
|
|
1601
1438
|
}
|
|
1602
1439
|
.e-gantt .e-gantt-chart .e-gantt-parent-taskbar-inner-div {
|
|
1603
1440
|
background-color: #007d01;
|
|
1604
|
-
|
|
1441
|
+
border: 1px solid #000;
|
|
1605
1442
|
border-radius: 0px;
|
|
1606
1443
|
}
|
|
1607
1444
|
.e-gantt .e-gantt-chart .e-gantt-parent-progressbar-inner-div {
|
|
@@ -1657,7 +1494,6 @@
|
|
|
1657
1494
|
}
|
|
1658
1495
|
.e-gantt .e-gantt-chart .e-event-markers .e-gantt-right-arrow {
|
|
1659
1496
|
border-right-color: #000;
|
|
1660
|
-
border-left-color: #000 !important; /* stylelint-disable-line declaration-no-important */
|
|
1661
1497
|
}
|
|
1662
1498
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar {
|
|
1663
1499
|
background: linear-gradient(to right, rgba(62, 4, 125, 0.2), #3e047d 30%, #3e047d 70%, #3e047d 70%, rgba(62, 4, 125, 0.2) 100%);
|
|
@@ -1750,16 +1586,14 @@
|
|
|
1750
1586
|
border-width: 3px;
|
|
1751
1587
|
}
|
|
1752
1588
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar-right {
|
|
1753
|
-
border-
|
|
1754
|
-
border-bottom-left-radius: 0;
|
|
1755
|
-
border-top-right-radius: 2px;
|
|
1589
|
+
border-bottom-left-radius: 0px;
|
|
1756
1590
|
border-bottom-right-radius: 2px;
|
|
1591
|
+
border-top-left-radius: 0px;
|
|
1592
|
+
border-top-right-radius: 2px;
|
|
1757
1593
|
}
|
|
1758
1594
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar-left {
|
|
1759
1595
|
border-bottom-left-radius: 2px;
|
|
1760
1596
|
border-top-left-radius: 2px;
|
|
1761
|
-
border-bottom-right-radius: 0;
|
|
1762
|
-
border-top-right-radius: 0;
|
|
1763
1597
|
}
|
|
1764
1598
|
.e-gantt .e-gantt-chart .e-task-label {
|
|
1765
1599
|
color: #000;
|
|
@@ -1912,9 +1746,6 @@
|
|
|
1912
1746
|
color: #000 !important; /* stylelint-disable-line declaration-no-important */
|
|
1913
1747
|
}
|
|
1914
1748
|
|
|
1915
|
-
.e-gantt-dialog .e-dlg-content .e-rte-quick-popup.e-hide {
|
|
1916
|
-
border: none !important; /* stylelint-disable-line declaration-no-important */
|
|
1917
|
-
}
|
|
1918
1749
|
.e-gantt-dialog .e-dlg-header {
|
|
1919
1750
|
color: #000;
|
|
1920
1751
|
}
|