@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
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
@include export-module('gantt-tailwind-icons') {
|
|
2
|
+
#{&}.e-gantt {
|
|
3
|
+
.e-add::before {
|
|
4
|
+
content: '\e805';
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.e-critical-path::before {
|
|
8
|
+
content: '\e88c';
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.e-edit::before {
|
|
12
|
+
content: '\e730';
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.e-delete::before {
|
|
16
|
+
content: '\e820';
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.e-cancel::before {
|
|
20
|
+
content: '\e7e7';
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.e-save::before {
|
|
24
|
+
content: '\e7c8';
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.e-update::before {
|
|
28
|
+
content: '\e7c8';
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.e-search-icon::before {
|
|
32
|
+
content: '\e754';
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.e-cancel-icon::before {
|
|
36
|
+
content: '\e7e7';
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.e-notes-info::before {
|
|
40
|
+
content: '\e72d';
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.e-left-resize-gripper::before,
|
|
44
|
+
.e-right-resize-gripper::before {
|
|
45
|
+
content: '\e770';
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.e-expandall::before {
|
|
49
|
+
content: '\e7c9';
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.e-collapseall::before {
|
|
53
|
+
content: '\e80f';
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.e-prevtimespan::before {
|
|
57
|
+
content: '\e773';
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.e-nexttimespan::before {
|
|
61
|
+
content: '\e7f9';
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.e-zoomin::before {
|
|
65
|
+
content: '\e795';
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.e-zoomout::before {
|
|
69
|
+
content: '\e825';
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.e-zoomtofit::before {
|
|
73
|
+
content: '\e838';
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.e-csvexport::before {
|
|
77
|
+
content: '\e7ba';
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.e-excelexport::before {
|
|
81
|
+
content: '\e7c1';
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.e-pdfexport::before {
|
|
85
|
+
content: '\e700';
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.e-indent::before {
|
|
89
|
+
content: '\e810';
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.e-outdent::before {
|
|
93
|
+
content: '\e72a';
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.e-add-above::before {
|
|
97
|
+
content: '\e836';
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.e-add-below::before {
|
|
101
|
+
content: '\e801';
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
#{&}.e-gantt.e-device {
|
|
106
|
+
.e-backarrowspan::before,
|
|
107
|
+
.e-icon-dlg-close::before {
|
|
108
|
+
content: '\e773';
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.e-left-resize-gripper::before,
|
|
112
|
+
.e-right-resize-gripper::before {
|
|
113
|
+
content: '\e770';
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.e-gantt-tooltip-arrow-left::before {
|
|
118
|
+
content: '\e773';
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.e-gantt-tooltip-arrow-right::before {
|
|
122
|
+
content: '\e7f9';
|
|
123
|
+
}
|
|
124
|
+
}
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
@include export-module('gantt-tailwind-icons') {
|
|
2
|
+
#{&}.e-gantt {
|
|
3
|
+
.e-add::before {
|
|
4
|
+
content: '\e805';
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.e-critical-path::before {
|
|
8
|
+
content: '\e88c';
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.e-edit::before {
|
|
12
|
+
content: '\e730';
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.e-delete::before {
|
|
16
|
+
content: '\e820';
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.e-cancel::before {
|
|
20
|
+
content: '\e7e7';
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.e-save::before {
|
|
24
|
+
content: '\e7c8';
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.e-update::before {
|
|
28
|
+
content: '\e7c8';
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.e-search-icon::before {
|
|
32
|
+
content: '\e754';
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.e-cancel-icon::before {
|
|
36
|
+
content: '\e7e7';
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.e-notes-info::before {
|
|
40
|
+
content: '\e72d';
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.e-left-resize-gripper::before,
|
|
44
|
+
.e-right-resize-gripper::before {
|
|
45
|
+
content: '\e770';
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.e-expandall::before {
|
|
49
|
+
content: '\e7c9';
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.e-collapseall::before {
|
|
53
|
+
content: '\e80f';
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.e-prevtimespan::before {
|
|
57
|
+
content: '\e773';
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.e-nexttimespan::before {
|
|
61
|
+
content: '\e7f9';
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.e-zoomin::before {
|
|
65
|
+
content: '\e795';
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.e-zoomout::before {
|
|
69
|
+
content: '\e825';
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.e-zoomtofit::before {
|
|
73
|
+
content: '\e838';
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.e-csvexport::before {
|
|
77
|
+
content: '\e7ba';
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.e-excelexport::before {
|
|
81
|
+
content: '\e7c1';
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.e-pdfexport::before {
|
|
85
|
+
content: '\e700';
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.e-indent::before {
|
|
89
|
+
content: '\e810';
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.e-outdent::before {
|
|
93
|
+
content: '\e72a';
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.e-add-above::before {
|
|
97
|
+
content: '\e836';
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.e-add-below::before {
|
|
101
|
+
content: '\e801';
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
#{&}.e-gantt.e-device {
|
|
106
|
+
.e-backarrowspan::before,
|
|
107
|
+
.e-icon-dlg-close::before {
|
|
108
|
+
content: '\e773';
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.e-left-resize-gripper::before,
|
|
112
|
+
.e-right-resize-gripper::before {
|
|
113
|
+
content: '\e770';
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.e-gantt-tooltip-arrow-left::before {
|
|
118
|
+
content: '\e773';
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.e-gantt-tooltip-arrow-right::before {
|
|
122
|
+
content: '\e7f9';
|
|
123
|
+
}
|
|
124
|
+
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
@charset "UTF-8";
|
|
1
2
|
@import url("https://fonts.googleapis.com/css?family=Roboto:400,500");
|
|
2
3
|
.e-ddl.e-control-wrapper .e-ddl-icon::before {
|
|
3
4
|
transform: rotate(0deg);
|
|
@@ -185,7 +186,7 @@
|
|
|
185
186
|
content: "\e825";
|
|
186
187
|
}
|
|
187
188
|
.e-gantt .e-notes-info::before {
|
|
188
|
-
content: "
|
|
189
|
+
content: "🛈";
|
|
189
190
|
}
|
|
190
191
|
.e-gantt .e-left-resize-gripper::before,
|
|
191
192
|
.e-gantt .e-right-resize-gripper::before {
|
|
@@ -337,7 +338,7 @@
|
|
|
337
338
|
border-radius: 6px !important;
|
|
338
339
|
padding: 20px 16px 6px 16px !important;
|
|
339
340
|
}
|
|
340
|
-
.e-bigger .e-
|
|
341
|
+
.e-bigger .e-columnmenu {
|
|
341
342
|
top: 38px;
|
|
342
343
|
}
|
|
343
344
|
.e-bigger .e-gantt-dialog .e-dialog {
|
|
@@ -472,74 +473,6 @@
|
|
|
472
473
|
color: #000;
|
|
473
474
|
}
|
|
474
475
|
|
|
475
|
-
.e-blazor-gantt-tooltip .e-tip-content {
|
|
476
|
-
overflow-wrap: unset !important; /* stylelint-disable-line declaration-no-important */
|
|
477
|
-
white-space: nowrap !important; /* stylelint-disable-line declaration-no-important */
|
|
478
|
-
word-break: unset !important; /* stylelint-disable-line declaration-no-important */
|
|
479
|
-
}
|
|
480
|
-
|
|
481
|
-
.e-gantt-tooltip .e-tip-content {
|
|
482
|
-
text-align: left !important; /* stylelint-disable-line declaration-no-important */
|
|
483
|
-
}
|
|
484
|
-
|
|
485
|
-
.e-gantt.e-gantt-rtl .e-connector-line-right-arrow {
|
|
486
|
-
border-left: none !important; /* stylelint-disable-line declaration-no-important */
|
|
487
|
-
border-right-color: #7280ce;
|
|
488
|
-
}
|
|
489
|
-
.e-gantt.e-gantt-rtl .e-connector-line-left-arrow {
|
|
490
|
-
border-right: none !important; /* stylelint-disable-line declaration-no-important */
|
|
491
|
-
border-left-color: #7280ce;
|
|
492
|
-
}
|
|
493
|
-
.e-gantt.e-gantt-rtl .e-toolbar-right {
|
|
494
|
-
left: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
495
|
-
right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
496
|
-
}
|
|
497
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-timeline-header-container {
|
|
498
|
-
border-right: none !important; /* stylelint-disable-line declaration-no-important */
|
|
499
|
-
border-left: 1px solid !important; /* stylelint-disable-line declaration-no-important */
|
|
500
|
-
border-left-color: #616161 !important; /* stylelint-disable-line declaration-no-important */
|
|
501
|
-
}
|
|
502
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-timeline-top-header-cell .e-gantt-top-cell-text {
|
|
503
|
-
padding-right: 11px !important; /* stylelint-disable-line declaration-no-important */
|
|
504
|
-
padding-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
505
|
-
text-align: right !important; /* stylelint-disable-line declaration-no-important */
|
|
506
|
-
}
|
|
507
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-element {
|
|
508
|
-
right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
509
|
-
}
|
|
510
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-after {
|
|
511
|
-
right: 1px !important; /* stylelint-disable-line declaration-no-important */
|
|
512
|
-
}
|
|
513
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-connectorpoint-right {
|
|
514
|
-
margin-right: 2px !important; /* stylelint-disable-line declaration-no-important */
|
|
515
|
-
}
|
|
516
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-event-markers .e-gantt-right-arrow {
|
|
517
|
-
border-left: 5px solid;
|
|
518
|
-
border-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
519
|
-
}
|
|
520
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-holiday .e-span {
|
|
521
|
-
transform: rotate(90deg) !important; /* stylelint-disable-line declaration-no-important */
|
|
522
|
-
}
|
|
523
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-left-label-container {
|
|
524
|
-
padding-left: 25px !important; /* stylelint-disable-line declaration-no-important */
|
|
525
|
-
padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
526
|
-
}
|
|
527
|
-
.e-gantt.e-gantt-rtl .e-gantt-chart .e-right-label-container {
|
|
528
|
-
margin-right: 25px !important; /* stylelint-disable-line declaration-no-important */
|
|
529
|
-
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
530
|
-
}
|
|
531
|
-
|
|
532
|
-
.e-gantt-rtl .e-gantt-tooltip-label {
|
|
533
|
-
text-align: right !important; /* stylelint-disable-line declaration-no-important */
|
|
534
|
-
}
|
|
535
|
-
.e-gantt-rtl .e-tip-content {
|
|
536
|
-
text-align: right !important; /* stylelint-disable-line declaration-no-important */
|
|
537
|
-
}
|
|
538
|
-
|
|
539
|
-
.e-gantt-dialog.e-rtl .e-dlg-closeicon-btn {
|
|
540
|
-
padding: 4px 8px !important; /* stylelint-disable-line declaration-no-important */
|
|
541
|
-
}
|
|
542
|
-
|
|
543
476
|
.e-gantt {
|
|
544
477
|
display: block;
|
|
545
478
|
width: 100%;
|
|
@@ -649,7 +582,6 @@
|
|
|
649
582
|
border-top-style: none;
|
|
650
583
|
border-top-width: 0;
|
|
651
584
|
padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
652
|
-
padding-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
653
585
|
}
|
|
654
586
|
.e-gantt .e-gantt-tree-grid-pane .e-columnheader,
|
|
655
587
|
.e-gantt .e-gantt-tree-grid-pane .e-headercell {
|
|
@@ -658,9 +590,6 @@
|
|
|
658
590
|
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content {
|
|
659
591
|
overflow-x: scroll !important; /* stylelint-disable-line declaration-no-important */
|
|
660
592
|
}
|
|
661
|
-
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-gantt-frozen {
|
|
662
|
-
overflow-x: hidden !important; /* stylelint-disable-line declaration-no-important */
|
|
663
|
-
}
|
|
664
593
|
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content.e-gantt-scroll-padding {
|
|
665
594
|
width: calc(100% + 17px);
|
|
666
595
|
}
|
|
@@ -680,12 +609,6 @@
|
|
|
680
609
|
position: relative;
|
|
681
610
|
width: 100%;
|
|
682
611
|
}
|
|
683
|
-
.e-gantt .e-gantt-chart .e-chart-empty-row {
|
|
684
|
-
border: 0.5px solid;
|
|
685
|
-
position: absolute;
|
|
686
|
-
background-color: rgba(0, 120, 222, 0.15);
|
|
687
|
-
border-color: rgba(0, 120, 222, 0.65) !important;
|
|
688
|
-
}
|
|
689
612
|
.e-gantt .e-gantt-chart .e-chart-root-container {
|
|
690
613
|
border-right: 0 solid;
|
|
691
614
|
}
|
|
@@ -780,10 +703,10 @@
|
|
|
780
703
|
box-sizing: border-box;
|
|
781
704
|
}
|
|
782
705
|
.e-gantt .e-gantt-chart .e-zero-spacing {
|
|
783
|
-
border-spacing: 0
|
|
706
|
+
border-spacing: 0;
|
|
784
707
|
}
|
|
785
708
|
.e-gantt .e-gantt-chart .e-chart-row:first-child .e-chart-row-border {
|
|
786
|
-
border-top:
|
|
709
|
+
border-top-color: transparent;
|
|
787
710
|
}
|
|
788
711
|
.e-gantt .e-gantt-chart .e-chart-row .e-chart-row-border {
|
|
789
712
|
border-collapse: separate;
|
|
@@ -934,88 +857,6 @@
|
|
|
934
857
|
.e-gantt .e-gantt-chart .e-chart-rows-container {
|
|
935
858
|
line-height: initial;
|
|
936
859
|
}
|
|
937
|
-
.e-gantt .e-gantt-chart .e-masked-tbody {
|
|
938
|
-
table-layout: fixed;
|
|
939
|
-
width: 100%;
|
|
940
|
-
}
|
|
941
|
-
.e-gantt .e-gantt-chart .e-div-background {
|
|
942
|
-
border-color: #e1dfdd;
|
|
943
|
-
border-right-style: solid;
|
|
944
|
-
border-right-width: 1px;
|
|
945
|
-
height: 100%;
|
|
946
|
-
position: absolute;
|
|
947
|
-
}
|
|
948
|
-
.e-gantt .e-gantt-chart .e-innerHTML {
|
|
949
|
-
height: 16px;
|
|
950
|
-
width: 16px;
|
|
951
|
-
left: 14px;
|
|
952
|
-
background: #e1dfdd;
|
|
953
|
-
}
|
|
954
|
-
.e-gantt .e-gantt-chart .e-innerHTML1 {
|
|
955
|
-
height: 16px;
|
|
956
|
-
width: 16px;
|
|
957
|
-
left: 30px;
|
|
958
|
-
background: #e1dfdd;
|
|
959
|
-
}
|
|
960
|
-
.e-gantt .e-gantt-chart .e-innerHTML2 {
|
|
961
|
-
height: 16px;
|
|
962
|
-
width: 16px;
|
|
963
|
-
left: 60px;
|
|
964
|
-
background: #e1dfdd;
|
|
965
|
-
}
|
|
966
|
-
.e-gantt .e-gantt-chart .e-timelineHeader {
|
|
967
|
-
height: 16px;
|
|
968
|
-
width: 82px;
|
|
969
|
-
left: 20px;
|
|
970
|
-
background: #e1dfdd;
|
|
971
|
-
}
|
|
972
|
-
.e-gantt .e-gantt-chart .e-maskcell01 {
|
|
973
|
-
height: 12px;
|
|
974
|
-
width: 88px;
|
|
975
|
-
left: 14px;
|
|
976
|
-
border-radius: 0;
|
|
977
|
-
background: #e1dfdd;
|
|
978
|
-
}
|
|
979
|
-
.e-gantt .e-gantt-chart .e-maskcell02 {
|
|
980
|
-
height: 18px;
|
|
981
|
-
width: 410px;
|
|
982
|
-
border-radius: 0;
|
|
983
|
-
background: #e1dfdd;
|
|
984
|
-
}
|
|
985
|
-
.e-gantt .e-gantt-chart .e-maskcell03 {
|
|
986
|
-
height: 12px;
|
|
987
|
-
width: 88px;
|
|
988
|
-
left: 14px;
|
|
989
|
-
border-radius: 0;
|
|
990
|
-
background: #e1dfdd;
|
|
991
|
-
}
|
|
992
|
-
.e-gantt .e-gantt-chart .e-maskcell04 {
|
|
993
|
-
height: 18px;
|
|
994
|
-
width: 208px;
|
|
995
|
-
border-radius: 0;
|
|
996
|
-
background: #e1dfdd;
|
|
997
|
-
}
|
|
998
|
-
.e-gantt .e-gantt-chart .e-maskcell05 {
|
|
999
|
-
height: 12px;
|
|
1000
|
-
width: 108px;
|
|
1001
|
-
left: 64px;
|
|
1002
|
-
border-radius: 0;
|
|
1003
|
-
background: #e1dfdd;
|
|
1004
|
-
}
|
|
1005
|
-
.e-gantt .e-gantt-chart .e-maskcell06 {
|
|
1006
|
-
height: 18px;
|
|
1007
|
-
width: 195px;
|
|
1008
|
-
left: 192px;
|
|
1009
|
-
border-radius: 0;
|
|
1010
|
-
background: #e1dfdd;
|
|
1011
|
-
}
|
|
1012
|
-
.e-gantt .e-gantt-chart .e-maskcell07 {
|
|
1013
|
-
height: 18px;
|
|
1014
|
-
width: 156px;
|
|
1015
|
-
left: 388px;
|
|
1016
|
-
border-radius: 0;
|
|
1017
|
-
background: #e1dfdd;
|
|
1018
|
-
}
|
|
1019
860
|
.e-gantt .e-gantt-chart .e-taskbar-left-resizer,
|
|
1020
861
|
.e-gantt .e-gantt-chart .e-taskbar-right-resizer {
|
|
1021
862
|
display: inline-block;
|
|
@@ -1050,7 +891,7 @@
|
|
|
1050
891
|
border-right: 7px solid transparent;
|
|
1051
892
|
cursor: col-resize;
|
|
1052
893
|
height: 0;
|
|
1053
|
-
left:
|
|
894
|
+
left: 0;
|
|
1054
895
|
position: absolute;
|
|
1055
896
|
top: -7px;
|
|
1056
897
|
width: 0;
|
|
@@ -1062,7 +903,7 @@
|
|
|
1062
903
|
border-right: 6px solid transparent;
|
|
1063
904
|
cursor: col-resize;
|
|
1064
905
|
height: 0;
|
|
1065
|
-
left:
|
|
906
|
+
left: 1px;
|
|
1066
907
|
position: absolute;
|
|
1067
908
|
top: -7px;
|
|
1068
909
|
width: 0;
|
|
@@ -1110,7 +951,6 @@
|
|
|
1110
951
|
}
|
|
1111
952
|
.e-gantt .e-gantt-chart .e-task-table {
|
|
1112
953
|
overflow: hidden;
|
|
1113
|
-
border-collapse: separate;
|
|
1114
954
|
}
|
|
1115
955
|
.e-gantt .e-gantt-chart .e-left-resize-gripper,
|
|
1116
956
|
.e-gantt .e-gantt-chart .e-right-resize-gripper {
|
|
@@ -1155,6 +995,7 @@
|
|
|
1155
995
|
border-radius: 3px;
|
|
1156
996
|
font-weight: 500;
|
|
1157
997
|
height: 30px;
|
|
998
|
+
left: 5px;
|
|
1158
999
|
line-height: 1.4;
|
|
1159
1000
|
padding: 7px 12px;
|
|
1160
1001
|
position: absolute;
|
|
@@ -1363,7 +1204,7 @@
|
|
|
1363
1204
|
.e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
1364
1205
|
border-radius: 50%;
|
|
1365
1206
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
1366
|
-
width: auto;
|
|
1207
|
+
width: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
1367
1208
|
}
|
|
1368
1209
|
|
|
1369
1210
|
.e-icon-rowselect::before {
|
|
@@ -1598,7 +1439,6 @@
|
|
|
1598
1439
|
border-bottom-color: #616161;
|
|
1599
1440
|
border-bottom-width: 1px;
|
|
1600
1441
|
border-right-color: #616161;
|
|
1601
|
-
border-left-color: #616161;
|
|
1602
1442
|
color: rgba(255, 255, 255, 0.7);
|
|
1603
1443
|
height: 64px;
|
|
1604
1444
|
}
|
|
@@ -1641,7 +1481,7 @@
|
|
|
1641
1481
|
}
|
|
1642
1482
|
.e-gantt .e-gantt-chart .e-gantt-child-taskbar-inner-div {
|
|
1643
1483
|
background-color: #3f51b5;
|
|
1644
|
-
|
|
1484
|
+
border: 1px solid #7280ce;
|
|
1645
1485
|
border-radius: 4px;
|
|
1646
1486
|
}
|
|
1647
1487
|
.e-gantt .e-gantt-chart .e-collapse-parent .e-gantt-child-taskbar-inner-div {
|
|
@@ -1663,7 +1503,7 @@
|
|
|
1663
1503
|
}
|
|
1664
1504
|
.e-gantt .e-gantt-chart .e-gantt-parent-taskbar-inner-div {
|
|
1665
1505
|
background-color: #029f90;
|
|
1666
|
-
|
|
1506
|
+
border: 1px solid #4cc7ba;
|
|
1667
1507
|
border-radius: 4px;
|
|
1668
1508
|
}
|
|
1669
1509
|
.e-gantt .e-gantt-chart .e-gantt-parent-progressbar-inner-div {
|
|
@@ -1719,7 +1559,6 @@
|
|
|
1719
1559
|
}
|
|
1720
1560
|
.e-gantt .e-gantt-chart .e-event-markers .e-gantt-right-arrow {
|
|
1721
1561
|
border-right-color: #cae8ff;
|
|
1722
|
-
border-left-color: #cae8ff !important; /* stylelint-disable-line declaration-no-important */
|
|
1723
1562
|
}
|
|
1724
1563
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar {
|
|
1725
1564
|
background: linear-gradient(to right, rgba(63, 81, 181, 0.2), #3f51b5 30%, #3f51b5 70%, #3f51b5 70%, rgba(63, 81, 181, 0.2) 100%);
|
|
@@ -1812,16 +1651,14 @@
|
|
|
1812
1651
|
border-width: 3px;
|
|
1813
1652
|
}
|
|
1814
1653
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar-right {
|
|
1815
|
-
border-
|
|
1816
|
-
border-bottom-left-radius: 0;
|
|
1817
|
-
border-top-right-radius: 2px;
|
|
1654
|
+
border-bottom-left-radius: 0px;
|
|
1818
1655
|
border-bottom-right-radius: 2px;
|
|
1656
|
+
border-top-left-radius: 0px;
|
|
1657
|
+
border-top-right-radius: 2px;
|
|
1819
1658
|
}
|
|
1820
1659
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar-left {
|
|
1821
1660
|
border-bottom-left-radius: 2px;
|
|
1822
1661
|
border-top-left-radius: 2px;
|
|
1823
|
-
border-bottom-right-radius: 0;
|
|
1824
|
-
border-top-right-radius: 0;
|
|
1825
1662
|
}
|
|
1826
1663
|
.e-gantt .e-gantt-chart .e-task-label {
|
|
1827
1664
|
color: #fff;
|
|
@@ -1974,9 +1811,6 @@
|
|
|
1974
1811
|
color: rgba(255, 255, 255, 0.7) !important; /* stylelint-disable-line declaration-no-important */
|
|
1975
1812
|
}
|
|
1976
1813
|
|
|
1977
|
-
.e-gantt-dialog .e-dlg-content .e-rte-quick-popup.e-hide {
|
|
1978
|
-
border: none !important; /* stylelint-disable-line declaration-no-important */
|
|
1979
|
-
}
|
|
1980
1814
|
.e-gantt-dialog .e-dlg-header {
|
|
1981
1815
|
color: #fff;
|
|
1982
1816
|
}
|
|
@@ -1 +1,22 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/material-dark-definition.scss';
|
|
2
|
+
@import 'ej2-grids/styles/grid/material-dark-definition.scss';
|
|
3
|
+
@import 'ej2-treegrid/styles/treegrid/material-dark-definition.scss';
|
|
4
|
+
@import 'ej2-richtexteditor/styles/rich-text-editor/material-dark-definition.scss';
|
|
5
|
+
@import 'ej2-calendars/styles/datepicker/material-dark-definition.scss';
|
|
6
|
+
@import 'ej2-calendars/styles/datetimepicker/material-dark-definition.scss';
|
|
7
|
+
@import 'ej2-buttons/styles/button/material-dark-definition.scss';
|
|
8
|
+
@import 'ej2-dropdowns/styles/drop-down-list/material-dark-definition.scss';
|
|
9
|
+
@import 'ej2-dropdowns/styles/combo-box/material-dark-definition.scss';
|
|
10
|
+
@import 'ej2-dropdowns/styles/multi-select/material-dark-definition.scss';
|
|
11
|
+
@import 'ej2-navigations/styles/toolbar/material-dark-definition.scss';
|
|
12
|
+
@import 'ej2-navigations/styles/tab/material-dark-definition.scss';
|
|
13
|
+
@import 'ej2-navigations/styles/context-menu/material-dark-definition.scss';
|
|
14
|
+
@import 'ej2-inputs/styles/input/material-dark-definition.scss';
|
|
15
|
+
@import 'ej2-inputs/styles/numerictextbox/material-dark-definition.scss';
|
|
16
|
+
@import 'ej2-popups/styles/dialog/material-dark-definition.scss';
|
|
17
|
+
@import 'ej2-popups/styles/spinner/material-dark-definition.scss';
|
|
18
|
+
@import 'ej2-popups/styles/tooltip/material-dark-definition.scss';
|
|
19
|
+
@import 'ej2-layouts/styles/splitter/material-dark-definition.scss';
|
|
20
|
+
@import 'material-dark-definition.scss';
|
|
21
|
+
@import 'icons/material-dark.scss';
|
|
22
|
+
@import 'all.scss';
|