@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,21 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/highcontrast-light-definition.scss';
|
|
2
|
+
@import 'ej2-grids/styles/grid/highcontrast-light-definition.scss';
|
|
3
|
+
@import 'ej2-treegrid/styles/treegrid/highcontrast-light-definition.scss';
|
|
4
|
+
@import 'ej2-richtexteditor/styles/rich-text-editor/highcontrast-light-definition.scss';
|
|
5
|
+
@import 'ej2-calendars/styles/datepicker/highcontrast-light-definition.scss';
|
|
6
|
+
@import 'ej2-calendars/styles/datetimepicker/highcontrast-light-definition.scss';
|
|
7
|
+
@import 'ej2-buttons/styles/button/highcontrast-light-definition.scss';
|
|
8
|
+
@import 'ej2-dropdowns/styles/drop-down-list/highcontrast-light-definition.scss';
|
|
9
|
+
@import 'ej2-dropdowns/styles/combo-box/highcontrast-light-definition.scss';
|
|
10
|
+
@import 'ej2-dropdowns/styles/multi-select/highcontrast-light-definition.scss';
|
|
11
|
+
@import 'ej2-navigations/styles/toolbar/highcontrast-light-definition.scss';
|
|
12
|
+
@import 'ej2-navigations/styles/tab/highcontrast-light-definition.scss';
|
|
13
|
+
@import 'ej2-navigations/styles/context-menu/highcontrast-light-definition.scss';
|
|
14
|
+
@import 'ej2-inputs/styles/input/highcontrast-light-definition.scss';
|
|
15
|
+
@import 'ej2-inputs/styles/numerictextbox/highcontrast-light-definition.scss';
|
|
16
|
+
@import 'ej2-popups/styles/dialog/highcontrast-light-definition.scss';
|
|
17
|
+
@import 'ej2-popups/styles/spinner/highcontrast-light-definition.scss';
|
|
18
|
+
@import 'ej2-popups/styles/tooltip/highcontrast-light-definition.scss';
|
|
19
|
+
@import 'ej2-layouts/styles/splitter/highcontrast-light-definition.scss';
|
|
20
|
+
@import 'highcontrast-light-definition.scss';
|
|
21
|
+
@import 'all.scss';
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
@charset "UTF-8";
|
|
1
2
|
.e-bigger .e-ddl.e-popup .e-input-group .e-clear-icon {
|
|
2
3
|
height: 36px;
|
|
3
4
|
}
|
|
@@ -229,7 +230,7 @@
|
|
|
229
230
|
content: "\e953";
|
|
230
231
|
}
|
|
231
232
|
.e-gantt .e-notes-info::before {
|
|
232
|
-
content: "
|
|
233
|
+
content: "🛈";
|
|
233
234
|
}
|
|
234
235
|
.e-gantt .e-expandall::before {
|
|
235
236
|
content: "\e557";
|
|
@@ -381,7 +382,7 @@
|
|
|
381
382
|
border-radius: 0px !important;
|
|
382
383
|
padding: 20px 18px 0px 18px !important;
|
|
383
384
|
}
|
|
384
|
-
.e-bigger .e-
|
|
385
|
+
.e-bigger .e-columnmenu {
|
|
385
386
|
top: 45px;
|
|
386
387
|
}
|
|
387
388
|
.e-bigger .e-gantt-dialog .e-dialog {
|
|
@@ -507,75 +508,6 @@
|
|
|
507
508
|
font-size: 12px;
|
|
508
509
|
font-weight: 400;
|
|
509
510
|
line-height: 1.8;
|
|
510
|
-
color: #fff;
|
|
511
|
-
}
|
|
512
|
-
|
|
513
|
-
.e-blazor-gantt-tooltip .e-tip-content {
|
|
514
|
-
overflow-wrap: unset !important; /* stylelint-disable-line declaration-no-important */
|
|
515
|
-
white-space: nowrap !important; /* stylelint-disable-line declaration-no-important */
|
|
516
|
-
word-break: unset !important; /* stylelint-disable-line declaration-no-important */
|
|
517
|
-
}
|
|
518
|
-
|
|
519
|
-
.e-gantt-tooltip .e-tip-content {
|
|
520
|
-
text-align: left !important; /* stylelint-disable-line declaration-no-important */
|
|
521
|
-
}
|
|
522
|
-
|
|
523
|
-
.e-gantt.e-gantt-rtl .e-connector-line-right-arrow {
|
|
524
|
-
border-left: none !important; /* stylelint-disable-line declaration-no-important */
|
|
525
|
-
border-right-color: #29c400;
|
|
526
|
-
}
|
|
527
|
-
.e-gantt.e-gantt-rtl .e-connector-line-left-arrow {
|
|
528
|
-
border-right: none !important; /* stylelint-disable-line declaration-no-important */
|
|
529
|
-
border-left-color: #29c400;
|
|
530
|
-
}
|
|
531
|
-
.e-gantt.e-gantt-rtl .e-toolbar-right {
|
|
532
|
-
left: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
533
|
-
right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
534
|
-
}
|
|
535
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-timeline-header-container {
|
|
536
|
-
border-right: none !important; /* stylelint-disable-line declaration-no-important */
|
|
537
|
-
border-left: 1px solid !important; /* stylelint-disable-line declaration-no-important */
|
|
538
|
-
border-left-color: #969696 !important; /* stylelint-disable-line declaration-no-important */
|
|
539
|
-
}
|
|
540
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-timeline-top-header-cell .e-gantt-top-cell-text {
|
|
541
|
-
padding-right: 11px !important; /* stylelint-disable-line declaration-no-important */
|
|
542
|
-
padding-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
543
|
-
text-align: right !important; /* stylelint-disable-line declaration-no-important */
|
|
544
|
-
}
|
|
545
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-element {
|
|
546
|
-
right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
547
|
-
}
|
|
548
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-after {
|
|
549
|
-
right: 1px !important; /* stylelint-disable-line declaration-no-important */
|
|
550
|
-
}
|
|
551
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-connectorpoint-right {
|
|
552
|
-
margin-right: 2px !important; /* stylelint-disable-line declaration-no-important */
|
|
553
|
-
}
|
|
554
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-event-markers .e-gantt-right-arrow {
|
|
555
|
-
border-left: 5px solid;
|
|
556
|
-
border-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
557
|
-
}
|
|
558
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-holiday .e-span {
|
|
559
|
-
transform: rotate(90deg) !important; /* stylelint-disable-line declaration-no-important */
|
|
560
|
-
}
|
|
561
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-left-label-container {
|
|
562
|
-
padding-left: 25px !important; /* stylelint-disable-line declaration-no-important */
|
|
563
|
-
padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
564
|
-
}
|
|
565
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-right-label-container {
|
|
566
|
-
margin-right: 25px !important; /* stylelint-disable-line declaration-no-important */
|
|
567
|
-
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
568
|
-
}
|
|
569
|
-
|
|
570
|
-
.e-gantt-rtl .e-gantt-tooltip-label {
|
|
571
|
-
text-align: right !important; /* stylelint-disable-line declaration-no-important */
|
|
572
|
-
}
|
|
573
|
-
.e-gantt-rtl .e-tip-content {
|
|
574
|
-
text-align: right !important; /* stylelint-disable-line declaration-no-important */
|
|
575
|
-
}
|
|
576
|
-
|
|
577
|
-
.e-gantt-dialog.e-rtl .e-dlg-closeicon-btn {
|
|
578
|
-
padding: 4px 8px !important; /* stylelint-disable-line declaration-no-important */
|
|
579
511
|
}
|
|
580
512
|
|
|
581
513
|
.e-gantt {
|
|
@@ -687,7 +619,6 @@
|
|
|
687
619
|
border-top-style: none;
|
|
688
620
|
border-top-width: 0;
|
|
689
621
|
padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
690
|
-
padding-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
691
622
|
}
|
|
692
623
|
.e-gantt .e-gantt-tree-grid-pane .e-columnheader,
|
|
693
624
|
.e-gantt .e-gantt-tree-grid-pane .e-headercell {
|
|
@@ -696,9 +627,6 @@
|
|
|
696
627
|
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content {
|
|
697
628
|
overflow-x: scroll !important; /* stylelint-disable-line declaration-no-important */
|
|
698
629
|
}
|
|
699
|
-
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-gantt-frozen {
|
|
700
|
-
overflow-x: hidden !important; /* stylelint-disable-line declaration-no-important */
|
|
701
|
-
}
|
|
702
630
|
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content.e-gantt-scroll-padding {
|
|
703
631
|
width: calc(100% + 17px);
|
|
704
632
|
}
|
|
@@ -718,12 +646,6 @@
|
|
|
718
646
|
position: relative;
|
|
719
647
|
width: 100%;
|
|
720
648
|
}
|
|
721
|
-
.e-gantt .e-gantt-chart .e-chart-empty-row {
|
|
722
|
-
border: 0.5px solid;
|
|
723
|
-
position: absolute;
|
|
724
|
-
background-color: rgba(0, 120, 222, 0.15);
|
|
725
|
-
border-color: rgba(0, 120, 222, 0.65) !important;
|
|
726
|
-
}
|
|
727
649
|
.e-gantt .e-gantt-chart .e-chart-root-container {
|
|
728
650
|
border-right: 0 solid;
|
|
729
651
|
}
|
|
@@ -818,10 +740,10 @@
|
|
|
818
740
|
box-sizing: border-box;
|
|
819
741
|
}
|
|
820
742
|
.e-gantt .e-gantt-chart .e-zero-spacing {
|
|
821
|
-
border-spacing: 0
|
|
743
|
+
border-spacing: 0;
|
|
822
744
|
}
|
|
823
745
|
.e-gantt .e-gantt-chart .e-chart-row:first-child .e-chart-row-border {
|
|
824
|
-
border-top:
|
|
746
|
+
border-top-color: transparent;
|
|
825
747
|
}
|
|
826
748
|
.e-gantt .e-gantt-chart .e-chart-row .e-chart-row-border {
|
|
827
749
|
border-collapse: separate;
|
|
@@ -972,88 +894,6 @@
|
|
|
972
894
|
.e-gantt .e-gantt-chart .e-chart-rows-container {
|
|
973
895
|
line-height: initial;
|
|
974
896
|
}
|
|
975
|
-
.e-gantt .e-gantt-chart .e-masked-tbody {
|
|
976
|
-
table-layout: fixed;
|
|
977
|
-
width: 100%;
|
|
978
|
-
}
|
|
979
|
-
.e-gantt .e-gantt-chart .e-div-background {
|
|
980
|
-
border-color: #e1dfdd;
|
|
981
|
-
border-right-style: solid;
|
|
982
|
-
border-right-width: 1px;
|
|
983
|
-
height: 100%;
|
|
984
|
-
position: absolute;
|
|
985
|
-
}
|
|
986
|
-
.e-gantt .e-gantt-chart .e-innerHTML {
|
|
987
|
-
height: 16px;
|
|
988
|
-
width: 16px;
|
|
989
|
-
left: 14px;
|
|
990
|
-
background: #e1dfdd;
|
|
991
|
-
}
|
|
992
|
-
.e-gantt .e-gantt-chart .e-innerHTML1 {
|
|
993
|
-
height: 16px;
|
|
994
|
-
width: 16px;
|
|
995
|
-
left: 30px;
|
|
996
|
-
background: #e1dfdd;
|
|
997
|
-
}
|
|
998
|
-
.e-gantt .e-gantt-chart .e-innerHTML2 {
|
|
999
|
-
height: 16px;
|
|
1000
|
-
width: 16px;
|
|
1001
|
-
left: 60px;
|
|
1002
|
-
background: #e1dfdd;
|
|
1003
|
-
}
|
|
1004
|
-
.e-gantt .e-gantt-chart .e-timelineHeader {
|
|
1005
|
-
height: 16px;
|
|
1006
|
-
width: 82px;
|
|
1007
|
-
left: 20px;
|
|
1008
|
-
background: #e1dfdd;
|
|
1009
|
-
}
|
|
1010
|
-
.e-gantt .e-gantt-chart .e-maskcell01 {
|
|
1011
|
-
height: 12px;
|
|
1012
|
-
width: 88px;
|
|
1013
|
-
left: 14px;
|
|
1014
|
-
border-radius: 0;
|
|
1015
|
-
background: #e1dfdd;
|
|
1016
|
-
}
|
|
1017
|
-
.e-gantt .e-gantt-chart .e-maskcell02 {
|
|
1018
|
-
height: 18px;
|
|
1019
|
-
width: 410px;
|
|
1020
|
-
border-radius: 0;
|
|
1021
|
-
background: #e1dfdd;
|
|
1022
|
-
}
|
|
1023
|
-
.e-gantt .e-gantt-chart .e-maskcell03 {
|
|
1024
|
-
height: 12px;
|
|
1025
|
-
width: 88px;
|
|
1026
|
-
left: 14px;
|
|
1027
|
-
border-radius: 0;
|
|
1028
|
-
background: #e1dfdd;
|
|
1029
|
-
}
|
|
1030
|
-
.e-gantt .e-gantt-chart .e-maskcell04 {
|
|
1031
|
-
height: 18px;
|
|
1032
|
-
width: 208px;
|
|
1033
|
-
border-radius: 0;
|
|
1034
|
-
background: #e1dfdd;
|
|
1035
|
-
}
|
|
1036
|
-
.e-gantt .e-gantt-chart .e-maskcell05 {
|
|
1037
|
-
height: 12px;
|
|
1038
|
-
width: 108px;
|
|
1039
|
-
left: 64px;
|
|
1040
|
-
border-radius: 0;
|
|
1041
|
-
background: #e1dfdd;
|
|
1042
|
-
}
|
|
1043
|
-
.e-gantt .e-gantt-chart .e-maskcell06 {
|
|
1044
|
-
height: 18px;
|
|
1045
|
-
width: 195px;
|
|
1046
|
-
left: 192px;
|
|
1047
|
-
border-radius: 0;
|
|
1048
|
-
background: #e1dfdd;
|
|
1049
|
-
}
|
|
1050
|
-
.e-gantt .e-gantt-chart .e-maskcell07 {
|
|
1051
|
-
height: 18px;
|
|
1052
|
-
width: 156px;
|
|
1053
|
-
left: 388px;
|
|
1054
|
-
border-radius: 0;
|
|
1055
|
-
background: #e1dfdd;
|
|
1056
|
-
}
|
|
1057
897
|
.e-gantt .e-gantt-chart .e-taskbar-left-resizer,
|
|
1058
898
|
.e-gantt .e-gantt-chart .e-taskbar-right-resizer {
|
|
1059
899
|
display: inline-block;
|
|
@@ -1088,7 +928,7 @@
|
|
|
1088
928
|
border-right: 7px solid transparent;
|
|
1089
929
|
cursor: col-resize;
|
|
1090
930
|
height: 0;
|
|
1091
|
-
left:
|
|
931
|
+
left: 0;
|
|
1092
932
|
position: absolute;
|
|
1093
933
|
top: -7px;
|
|
1094
934
|
width: 0;
|
|
@@ -1100,7 +940,7 @@
|
|
|
1100
940
|
border-right: 6px solid transparent;
|
|
1101
941
|
cursor: col-resize;
|
|
1102
942
|
height: 0;
|
|
1103
|
-
left:
|
|
943
|
+
left: 1px;
|
|
1104
944
|
position: absolute;
|
|
1105
945
|
top: -7px;
|
|
1106
946
|
width: 0;
|
|
@@ -1148,7 +988,6 @@
|
|
|
1148
988
|
}
|
|
1149
989
|
.e-gantt .e-gantt-chart .e-task-table {
|
|
1150
990
|
overflow: hidden;
|
|
1151
|
-
border-collapse: separate;
|
|
1152
991
|
}
|
|
1153
992
|
.e-gantt .e-gantt-chart .e-left-resize-gripper,
|
|
1154
993
|
.e-gantt .e-gantt-chart .e-right-resize-gripper {
|
|
@@ -1193,6 +1032,7 @@
|
|
|
1193
1032
|
border-radius: 3px;
|
|
1194
1033
|
font-weight: 500;
|
|
1195
1034
|
height: 30px;
|
|
1035
|
+
left: 5px;
|
|
1196
1036
|
line-height: 1.2;
|
|
1197
1037
|
padding: 7px 12px;
|
|
1198
1038
|
position: absolute;
|
|
@@ -1401,7 +1241,7 @@
|
|
|
1401
1241
|
.e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
1402
1242
|
border-radius: 50%;
|
|
1403
1243
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
1404
|
-
width: auto;
|
|
1244
|
+
width: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
1405
1245
|
}
|
|
1406
1246
|
|
|
1407
1247
|
.e-icon-rowselect::before {
|
|
@@ -1580,7 +1420,6 @@
|
|
|
1580
1420
|
font-size: 12px;
|
|
1581
1421
|
font-weight: 400;
|
|
1582
1422
|
line-height: 1.8;
|
|
1583
|
-
color: #fff;
|
|
1584
1423
|
}
|
|
1585
1424
|
|
|
1586
1425
|
/*! Gantt theme */
|
|
@@ -1637,7 +1476,6 @@
|
|
|
1637
1476
|
border-bottom-color: #969696;
|
|
1638
1477
|
border-bottom-width: 1px;
|
|
1639
1478
|
border-right-color: #969696;
|
|
1640
|
-
border-left-color: #969696;
|
|
1641
1479
|
color: #fff;
|
|
1642
1480
|
height: 64px;
|
|
1643
1481
|
}
|
|
@@ -1680,7 +1518,7 @@
|
|
|
1680
1518
|
}
|
|
1681
1519
|
.e-gantt .e-gantt-chart .e-gantt-child-taskbar-inner-div {
|
|
1682
1520
|
background-color: #6e06f1;
|
|
1683
|
-
|
|
1521
|
+
border: 1px solid #fff;
|
|
1684
1522
|
border-radius: 0px;
|
|
1685
1523
|
}
|
|
1686
1524
|
.e-gantt .e-gantt-chart .e-collapse-parent .e-gantt-child-taskbar-inner-div {
|
|
@@ -1702,7 +1540,7 @@
|
|
|
1702
1540
|
}
|
|
1703
1541
|
.e-gantt .e-gantt-chart .e-gantt-parent-taskbar-inner-div {
|
|
1704
1542
|
background-color: #007d01;
|
|
1705
|
-
|
|
1543
|
+
border: 1px solid #fff;
|
|
1706
1544
|
border-radius: 0px;
|
|
1707
1545
|
}
|
|
1708
1546
|
.e-gantt .e-gantt-chart .e-gantt-parent-progressbar-inner-div {
|
|
@@ -1758,7 +1596,6 @@
|
|
|
1758
1596
|
}
|
|
1759
1597
|
.e-gantt .e-gantt-chart .e-event-markers .e-gantt-right-arrow {
|
|
1760
1598
|
border-right-color: #fff;
|
|
1761
|
-
border-left-color: #fff !important; /* stylelint-disable-line declaration-no-important */
|
|
1762
1599
|
}
|
|
1763
1600
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar {
|
|
1764
1601
|
background: linear-gradient(to right, rgba(62, 4, 125, 0.2), #3e047d 30%, #3e047d 70%, #3e047d 70%, rgba(62, 4, 125, 0.2) 100%);
|
|
@@ -1851,16 +1688,14 @@
|
|
|
1851
1688
|
border-width: 3px;
|
|
1852
1689
|
}
|
|
1853
1690
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar-right {
|
|
1854
|
-
border-
|
|
1855
|
-
border-bottom-left-radius: 0;
|
|
1856
|
-
border-top-right-radius: 2px;
|
|
1691
|
+
border-bottom-left-radius: 0px;
|
|
1857
1692
|
border-bottom-right-radius: 2px;
|
|
1693
|
+
border-top-left-radius: 0px;
|
|
1694
|
+
border-top-right-radius: 2px;
|
|
1858
1695
|
}
|
|
1859
1696
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar-left {
|
|
1860
1697
|
border-bottom-left-radius: 2px;
|
|
1861
1698
|
border-top-left-radius: 2px;
|
|
1862
|
-
border-bottom-right-radius: 0;
|
|
1863
|
-
border-top-right-radius: 0;
|
|
1864
1699
|
}
|
|
1865
1700
|
.e-gantt .e-gantt-chart .e-task-label {
|
|
1866
1701
|
color: #fff;
|
|
@@ -2013,9 +1848,6 @@
|
|
|
2013
1848
|
color: #fff !important; /* stylelint-disable-line declaration-no-important */
|
|
2014
1849
|
}
|
|
2015
1850
|
|
|
2016
|
-
.e-gantt-dialog .e-dlg-content .e-rte-quick-popup.e-hide {
|
|
2017
|
-
border: none !important; /* stylelint-disable-line declaration-no-important */
|
|
2018
|
-
}
|
|
2019
1851
|
.e-gantt-dialog .e-dlg-header {
|
|
2020
1852
|
color: #000;
|
|
2021
1853
|
}
|
|
@@ -1 +1,22 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/highcontrast-definition.scss';
|
|
2
|
+
@import 'ej2-grids/styles/grid/highcontrast-definition.scss';
|
|
3
|
+
@import 'ej2-treegrid/styles/treegrid/highcontrast-definition.scss';
|
|
4
|
+
@import 'ej2-richtexteditor/styles/rich-text-editor/highcontrast-definition.scss';
|
|
5
|
+
@import 'ej2-calendars/styles/datepicker/highcontrast-definition.scss';
|
|
6
|
+
@import 'ej2-calendars/styles/datetimepicker/highcontrast-definition.scss';
|
|
7
|
+
@import 'ej2-buttons/styles/button/highcontrast-definition.scss';
|
|
8
|
+
@import 'ej2-dropdowns/styles/drop-down-list/highcontrast-definition.scss';
|
|
9
|
+
@import 'ej2-dropdowns/styles/combo-box/highcontrast-definition.scss';
|
|
10
|
+
@import 'ej2-dropdowns/styles/multi-select/highcontrast-definition.scss';
|
|
11
|
+
@import 'ej2-navigations/styles/toolbar/highcontrast-definition.scss';
|
|
12
|
+
@import 'ej2-navigations/styles/tab/highcontrast-definition.scss';
|
|
13
|
+
@import 'ej2-navigations/styles/context-menu/highcontrast-definition.scss';
|
|
14
|
+
@import 'ej2-inputs/styles/input/highcontrast-definition.scss';
|
|
15
|
+
@import 'ej2-inputs/styles/numerictextbox/highcontrast-definition.scss';
|
|
16
|
+
@import 'ej2-popups/styles/dialog/highcontrast-definition.scss';
|
|
17
|
+
@import 'ej2-popups/styles/spinner/highcontrast-definition.scss';
|
|
18
|
+
@import 'ej2-popups/styles/tooltip/highcontrast-definition.scss';
|
|
19
|
+
@import 'ej2-layouts/styles/splitter/highcontrast-definition.scss';
|
|
20
|
+
@import 'highcontrast-definition.scss';
|
|
21
|
+
@import 'icons/highcontrast.scss';
|
|
22
|
+
@import 'all.scss';
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
@include export-module('gantt-bootstrap-dark-icons') {
|
|
2
|
+
#{&}.e-gantt {
|
|
3
|
+
.e-add::before {
|
|
4
|
+
content: '\e823';
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.e-critical-path::before {
|
|
8
|
+
content: '\e93a';
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.e-edit::before {
|
|
12
|
+
content: '\e944';
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.e-delete::before {
|
|
16
|
+
content: '\e84e';
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.e-cancel::before {
|
|
20
|
+
content: '\e842';
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.e-save::before {
|
|
24
|
+
content: '\e964';
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.e-update::before {
|
|
28
|
+
content: '\e735';
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.e-search-icon::before {
|
|
32
|
+
content: '\e961';
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.e-cancel-icon::before {
|
|
36
|
+
content: '\e842';
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.e-notes-info::before {
|
|
40
|
+
content: '\1F6C8';
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.e-left-resize-gripper::before,
|
|
44
|
+
.e-right-resize-gripper::before {
|
|
45
|
+
content: '\ebc7';
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.e-expandall::before {
|
|
49
|
+
content: '\e558';
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.e-collapseall::before {
|
|
53
|
+
content: '\e557';
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.e-prevtimespan::before {
|
|
57
|
+
content: '\e85b';
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.e-nexttimespan::before {
|
|
61
|
+
content: '\e85f';
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.e-zoomin::before {
|
|
65
|
+
content: '\e349';
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.e-zoomout::before {
|
|
69
|
+
content: '\e351';
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.e-zoomtofit::before {
|
|
73
|
+
content: '\e657';
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.e-add-above::before {
|
|
77
|
+
content: '\e658';
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.e-add-below::before {
|
|
81
|
+
content: '\e659';
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.e-indent::before {
|
|
85
|
+
content: '\e33f';
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.e-outdent::before {
|
|
89
|
+
content: '\e35d';
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.e-csvexport::before {
|
|
93
|
+
content: '\e241';
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.e-excelexport::before {
|
|
97
|
+
content: '\e242';
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.e-pdfexport::before {
|
|
101
|
+
content: '\e240';
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
#{&}.e-gantt.e-device {
|
|
106
|
+
.e-backarrowspan::before,
|
|
107
|
+
.e-icon-dlg-close::before {
|
|
108
|
+
content: '\e85b';
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.e-left-resize-gripper::before,
|
|
112
|
+
.e-right-resize-gripper::before {
|
|
113
|
+
content: '\e903';
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.e-gantt-tooltip-arrow-left::before {
|
|
118
|
+
content: '\e85b';
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.e-gantt-tooltip-arrow-right::before {
|
|
122
|
+
content: '\e85f';
|
|
123
|
+
}
|
|
124
|
+
}
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
@include export-module('gantt-bootstrap-icons') {
|
|
2
|
+
#{&}.e-gantt {
|
|
3
|
+
.e-add::before {
|
|
4
|
+
content: '\e823';
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.e-critical-path::before {
|
|
8
|
+
content: '\e93a';
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.e-edit::before {
|
|
12
|
+
content: '\e944';
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.e-delete::before {
|
|
16
|
+
content: '\e84e';
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.e-cancel::before {
|
|
20
|
+
content: '\e842';
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.e-save::before {
|
|
24
|
+
content: '\e964';
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.e-update::before {
|
|
28
|
+
content: '\e735';
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.e-search-icon::before {
|
|
32
|
+
content: '\e961';
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.e-cancel-icon::before {
|
|
36
|
+
content: '\e842';
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.e-notes-info::before {
|
|
40
|
+
content: '\1F6C8';
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.e-left-resize-gripper::before,
|
|
44
|
+
.e-right-resize-gripper::before {
|
|
45
|
+
content: '\ebc7';
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.e-expandall::before {
|
|
49
|
+
content: '\e558';
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.e-collapseall::before {
|
|
53
|
+
content: '\e557';
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.e-prevtimespan::before {
|
|
57
|
+
content: '\e85b';
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.e-nexttimespan::before {
|
|
61
|
+
content: '\e85f';
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.e-zoomin::before {
|
|
65
|
+
content: '\e349';
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.e-zoomout::before {
|
|
69
|
+
content: '\e351';
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.e-zoomtofit::before {
|
|
73
|
+
content: '\e657';
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.e-csvexport::before {
|
|
77
|
+
content: '\e241';
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.e-excelexport::before {
|
|
81
|
+
content: '\e242';
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.e-pdfexport::before {
|
|
85
|
+
content: '\e240';
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.e-indent::before {
|
|
89
|
+
content: '\e33f';
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.e-outdent::before {
|
|
93
|
+
content: '\e35d';
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.e-add-above::before {
|
|
97
|
+
content: '\e658';
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.e-add-below::before {
|
|
101
|
+
content: '\e659';
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
#{&}.e-gantt.e-device {
|
|
106
|
+
.e-backarrowspan::before,
|
|
107
|
+
.e-icon-dlg-close::before {
|
|
108
|
+
content: '\e85b';
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.e-left-resize-gripper::before,
|
|
112
|
+
.e-right-resize-gripper::before {
|
|
113
|
+
content: '\e903';
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.e-gantt-tooltip-arrow-left::before {
|
|
118
|
+
content: '\e85b';
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.e-gantt-tooltip-arrow-right::before {
|
|
122
|
+
content: '\e85f';
|
|
123
|
+
}
|
|
124
|
+
}
|