@syncfusion/ej2-angular-gantt 20.2.44-ngcc → 20.2.45
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 +29 -15
- 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 +61 -58
- package/styles/bootstrap.css +61 -58
- package/styles/bootstrap4.css +61 -58
- package/styles/bootstrap5-dark.css +65 -59
- package/styles/bootstrap5.css +65 -59
- package/styles/fabric-dark.css +61 -58
- package/styles/fabric.css +61 -58
- package/styles/fluent-dark.css +61 -58
- package/styles/fluent.css +61 -58
- package/styles/gantt/_all.scss +2 -0
- package/styles/gantt/_bootstrap-dark-definition.scss +207 -0
- package/styles/gantt/_bootstrap-definition.scss +208 -0
- package/styles/gantt/_bootstrap4-definition.scss +210 -0
- package/styles/gantt/_bootstrap5-dark-definition.scss +1 -0
- package/styles/gantt/_bootstrap5-definition.scss +212 -0
- package/styles/gantt/_fabric-dark-definition.scss +208 -0
- package/styles/gantt/_fabric-definition.scss +208 -0
- package/styles/gantt/_fluent-dark-definition.scss +1 -0
- package/styles/gantt/_fluent-definition.scss +212 -0
- package/styles/gantt/_fusionnew-definition.scss +211 -0
- package/styles/gantt/_highcontrast-definition.scss +208 -0
- package/styles/gantt/_highcontrast-light-definition.scss +208 -0
- package/styles/gantt/_layout.scss +1354 -0
- package/styles/gantt/_material-dark-definition.scss +209 -0
- package/styles/gantt/_material-definition.scss +209 -0
- package/styles/gantt/_material3-definition.scss +212 -0
- package/styles/gantt/_tailwind-dark-definition.scss +1 -0
- package/styles/gantt/_tailwind-definition.scss +212 -0
- package/styles/gantt/_theme.scss +702 -0
- package/styles/gantt/bootstrap-dark.css +61 -58
- package/styles/gantt/bootstrap-dark.scss +22 -1
- package/styles/gantt/bootstrap.css +61 -58
- package/styles/gantt/bootstrap.scss +22 -1
- package/styles/gantt/bootstrap4.css +61 -58
- package/styles/gantt/bootstrap4.scss +22 -1
- package/styles/gantt/bootstrap5-dark.css +65 -59
- package/styles/gantt/bootstrap5-dark.scss +22 -1
- package/styles/gantt/bootstrap5.css +65 -59
- package/styles/gantt/bootstrap5.scss +22 -1
- package/styles/gantt/fabric-dark.css +61 -58
- package/styles/gantt/fabric-dark.scss +22 -1
- package/styles/gantt/fabric.css +61 -58
- package/styles/gantt/fabric.scss +22 -1
- package/styles/gantt/fluent-dark.css +61 -58
- package/styles/gantt/fluent-dark.scss +22 -1
- package/styles/gantt/fluent.css +61 -58
- package/styles/gantt/fluent.scss +22 -1
- package/styles/gantt/highcontrast-light.css +64 -58
- package/styles/gantt/highcontrast-light.scss +21 -1
- package/styles/gantt/highcontrast.css +64 -58
- 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 +64 -61
- package/styles/gantt/material-dark.scss +22 -1
- package/styles/gantt/material.css +64 -61
- package/styles/gantt/material.scss +22 -1
- package/styles/gantt/tailwind-dark.css +63 -60
- package/styles/gantt/tailwind-dark.scss +22 -1
- package/styles/gantt/tailwind.css +63 -60
- package/styles/gantt/tailwind.scss +22 -1
- package/styles/highcontrast-light.css +64 -58
- package/styles/highcontrast.css +64 -58
- package/styles/material-dark.css +64 -61
- package/styles/material.css +64 -61
- package/styles/tailwind-dark.css +63 -60
- package/styles/tailwind.css +63 -60
- 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 -1326
- package/dist/ej2-angular-gantt.umd.js +0 -908
- 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
- package/schematics/collection.json +0 -30
- package/schematics/generators/gantt-daymarkers/index.d.ts +0 -3
- package/schematics/generators/gantt-daymarkers/index.js +0 -8
- package/schematics/generators/gantt-daymarkers/sample-details.d.ts +0 -5
- package/schematics/generators/gantt-daymarkers/sample-details.js +0 -7
- package/schematics/generators/gantt-daymarkers/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -9
- package/schematics/generators/gantt-daymarkers/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -6
- package/schematics/generators/gantt-daymarkers/schema.d.ts +0 -3
- package/schematics/generators/gantt-daymarkers/schema.js +0 -2
- package/schematics/generators/gantt-daymarkers/schema.json +0 -125
- package/schematics/generators/gantt-default/index.d.ts +0 -3
- package/schematics/generators/gantt-default/index.js +0 -8
- package/schematics/generators/gantt-default/sample-details.d.ts +0 -5
- package/schematics/generators/gantt-default/sample-details.js +0 -7
- package/schematics/generators/gantt-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -5
- package/schematics/generators/gantt-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -4
- package/schematics/generators/gantt-default/schema.d.ts +0 -3
- package/schematics/generators/gantt-default/schema.js +0 -2
- package/schematics/generators/gantt-default/schema.json +0 -125
- package/schematics/generators/gantt-editing/index.d.ts +0 -3
- package/schematics/generators/gantt-editing/index.js +0 -8
- package/schematics/generators/gantt-editing/sample-details.d.ts +0 -5
- package/schematics/generators/gantt-editing/sample-details.js +0 -7
- package/schematics/generators/gantt-editing/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -4
- package/schematics/generators/gantt-editing/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -5
- package/schematics/generators/gantt-editing/schema.d.ts +0 -3
- package/schematics/generators/gantt-editing/schema.js +0 -2
- package/schematics/generators/gantt-editing/schema.json +0 -125
- package/schematics/generators/gantt-localdata/index.d.ts +0 -3
- package/schematics/generators/gantt-localdata/index.js +0 -8
- package/schematics/generators/gantt-localdata/sample-details.d.ts +0 -5
- package/schematics/generators/gantt-localdata/sample-details.js +0 -7
- package/schematics/generators/gantt-localdata/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -4
- package/schematics/generators/gantt-localdata/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -5
- package/schematics/generators/gantt-localdata/schema.d.ts +0 -3
- package/schematics/generators/gantt-localdata/schema.js +0 -2
- package/schematics/generators/gantt-localdata/schema.json +0 -125
- package/schematics/ng-add/index.d.ts +0 -3
- package/schematics/ng-add/index.js +0 -9
- package/schematics/ng-add/schema.d.ts +0 -13
- package/schematics/ng-add/schema.js +0 -2
- package/schematics/ng-add/schema.json +0 -34
- package/schematics/tsconfig.json +0 -25
- package/schematics/utils/lib-details.d.ts +0 -4
- package/schematics/utils/lib-details.js +0 -6
|
@@ -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
|
+
}
|
|
@@ -133,12 +133,14 @@
|
|
|
133
133
|
box-shadow: 0 0 0 200px rgba(0, 0, 0, 0.12);
|
|
134
134
|
}
|
|
135
135
|
}
|
|
136
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
136
137
|
@keyframes e-input-ripple {
|
|
137
138
|
100% {
|
|
138
139
|
opacity: 0;
|
|
139
140
|
transform: scale(4);
|
|
140
141
|
}
|
|
141
142
|
}
|
|
143
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
142
144
|
@keyframes material-spinner-rotate {
|
|
143
145
|
0% {
|
|
144
146
|
transform: rotate(0deg);
|
|
@@ -155,6 +157,7 @@
|
|
|
155
157
|
transform: rotate(360deg);
|
|
156
158
|
}
|
|
157
159
|
}
|
|
160
|
+
/* stylelint-disable */
|
|
158
161
|
.e-gantt .e-add::before {
|
|
159
162
|
content: "\e7f9";
|
|
160
163
|
}
|
|
@@ -304,10 +307,10 @@
|
|
|
304
307
|
height: 241px !important;
|
|
305
308
|
}
|
|
306
309
|
.e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
|
|
307
|
-
height: 63px !important;
|
|
310
|
+
height: 63px !important; /* stylelint-disable-line declaration-no-important */
|
|
308
311
|
}
|
|
309
312
|
.e-bigger .e-gantt .e-dialog .e-dlg-header-content {
|
|
310
|
-
padding: 16px 4px 17px 16px !important;
|
|
313
|
+
padding: 16px 4px 17px 16px !important; /* stylelint-disable-line declaration-no-important */
|
|
311
314
|
}
|
|
312
315
|
.e-bigger .e-gantt .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
313
316
|
left: 1px !important;
|
|
@@ -343,7 +346,7 @@
|
|
|
343
346
|
width: 550px !important;
|
|
344
347
|
}
|
|
345
348
|
.e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
346
|
-
padding: 0 16px !important;
|
|
349
|
+
padding: 0 16px !important; /* stylelint-disable-line declaration-no-important */
|
|
347
350
|
}
|
|
348
351
|
.e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(odd) {
|
|
349
352
|
padding: 16px 9px 0 16px;
|
|
@@ -361,10 +364,10 @@
|
|
|
361
364
|
height: 78px !important;
|
|
362
365
|
}
|
|
363
366
|
.e-bigger .e-gantt-dialog .e-dlg-header-content {
|
|
364
|
-
border-bottom: 0 !important;
|
|
367
|
+
border-bottom: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
365
368
|
}
|
|
366
369
|
.e-bigger .e-gantt-dialog > .e-dlg-content {
|
|
367
|
-
border-radius: 0 !important;
|
|
370
|
+
border-radius: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
368
371
|
}
|
|
369
372
|
.e-bigger .e-gantt-dialog .e-dlg-header-content {
|
|
370
373
|
border-radius: 6px 6px 0px 0px;
|
|
@@ -372,28 +375,28 @@
|
|
|
372
375
|
}
|
|
373
376
|
.e-bigger .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
374
377
|
border-radius: 50%;
|
|
375
|
-
height: auto !important;
|
|
378
|
+
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
376
379
|
width: auto;
|
|
377
380
|
}
|
|
378
381
|
.e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
379
382
|
margin-left: 4px !important;
|
|
380
383
|
}
|
|
381
384
|
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
382
|
-
font-size: 16px !important;
|
|
385
|
+
font-size: 16px !important; /* stylelint-disable-line declaration-no-important */
|
|
383
386
|
}
|
|
384
387
|
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
385
388
|
min-height: 26px !important;
|
|
386
|
-
min-width: 35.82px !important;
|
|
389
|
+
min-width: 35.82px !important; /* stylelint-disable-line declaration-no-important */
|
|
387
390
|
}
|
|
388
391
|
.e-bigger .e-gantt-dialog .e-btn.e-flat {
|
|
389
392
|
line-height: 24px;
|
|
390
|
-
padding: 6px 16px 6px 15px !important;
|
|
393
|
+
padding: 6px 16px 6px 15px !important; /* stylelint-disable-line declaration-no-important */
|
|
391
394
|
}
|
|
392
395
|
.e-bigger .e-gantt-dialog .e-btn.e-primary {
|
|
393
|
-
padding: 6px 21px 6px 23px !important;
|
|
396
|
+
padding: 6px 21px 6px 23px !important; /* stylelint-disable-line declaration-no-important */
|
|
394
397
|
}
|
|
395
398
|
.e-bigger .e-gantt-dialog .e-datetime-wrapper .e-time-icon.e-icons::before {
|
|
396
|
-
font-size: 16px !important;
|
|
399
|
+
font-size: 16px !important; /* stylelint-disable-line declaration-no-important */
|
|
397
400
|
}
|
|
398
401
|
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text {
|
|
399
402
|
font-size: 14px;
|
|
@@ -405,27 +408,27 @@
|
|
|
405
408
|
}
|
|
406
409
|
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input {
|
|
407
410
|
height: 27px !important;
|
|
408
|
-
padding: 5px 0 11px !important;
|
|
411
|
+
padding: 5px 0 11px !important; /* stylelint-disable-line declaration-no-important */
|
|
409
412
|
}
|
|
410
413
|
.e-bigger .e-gantt-dialog .e-numeric.e-control-wrapper.e-input-group .e-input-group-icon {
|
|
411
414
|
min-height: 26px !important;
|
|
412
|
-
min-width: 35.82px !important;
|
|
415
|
+
min-width: 35.82px !important; /* stylelint-disable-line declaration-no-important */
|
|
413
416
|
}
|
|
414
417
|
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-time-icon {
|
|
415
418
|
min-height: 26px !important;
|
|
416
|
-
min-width: 35.82px !important;
|
|
419
|
+
min-width: 35.82px !important; /* stylelint-disable-line declaration-no-important */
|
|
417
420
|
}
|
|
418
421
|
.e-bigger .e-gantt-dialog .e-input-group.e-control-wrapper {
|
|
419
422
|
height: 44px;
|
|
420
423
|
}
|
|
421
424
|
.e-bigger .e-gantt-dialog .e-input-group-icon.e-date-icon {
|
|
422
|
-
min-width: 36px !important;
|
|
425
|
+
min-width: 36px !important; /* stylelint-disable-line declaration-no-important */
|
|
423
426
|
}
|
|
424
427
|
.e-bigger .e-gantt-dialog .e-datetime-wrapper .e-input-group-icon.e-time-icon {
|
|
425
|
-
margin: 5px 0 6px !important;
|
|
428
|
+
margin: 5px 0 6px !important; /* stylelint-disable-line declaration-no-important */
|
|
426
429
|
}
|
|
427
430
|
.e-bigger .e-gantt-dialog .e-input-group.e-control-wrapper .e-input-group-icon {
|
|
428
|
-
margin-right: 0 !important;
|
|
431
|
+
margin-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
429
432
|
}
|
|
430
433
|
.e-bigger .e-predecessor-tooltip {
|
|
431
434
|
background-color: #000;
|
|
@@ -437,7 +440,7 @@
|
|
|
437
440
|
color: #757575 !important;
|
|
438
441
|
}
|
|
439
442
|
.e-bigger .e-predecessor-tooltip .e-tip-content {
|
|
440
|
-
padding: 3px !important;
|
|
443
|
+
padding: 3px !important; /* stylelint-disable-line declaration-no-important */
|
|
441
444
|
}
|
|
442
445
|
.e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type {
|
|
443
446
|
background-color: #000;
|
|
@@ -539,7 +542,7 @@
|
|
|
539
542
|
margin: 0;
|
|
540
543
|
}
|
|
541
544
|
.e-gantt .e-gantt-splitter .e-pane {
|
|
542
|
-
overflow: hidden !important;
|
|
545
|
+
overflow: hidden !important; /* stylelint-disable-line declaration-no-important */
|
|
543
546
|
}
|
|
544
547
|
.e-gantt .e-temp-content {
|
|
545
548
|
border-left: 1px solid;
|
|
@@ -566,19 +569,19 @@
|
|
|
566
569
|
height: 45px;
|
|
567
570
|
}
|
|
568
571
|
.e-gantt .e-gantt-tree-grid-pane .e-headercontent {
|
|
569
|
-
border-right-width: 0 !important;
|
|
572
|
+
border-right-width: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
570
573
|
}
|
|
571
574
|
.e-gantt .e-gantt-tree-grid-pane .e-gridheader {
|
|
572
575
|
border-top-style: none;
|
|
573
576
|
border-top-width: 0;
|
|
574
|
-
padding-right: 0 !important;
|
|
577
|
+
padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
575
578
|
}
|
|
576
579
|
.e-gantt .e-gantt-tree-grid-pane .e-columnheader,
|
|
577
580
|
.e-gantt .e-gantt-tree-grid-pane .e-headercell {
|
|
578
|
-
height: 63px !important;
|
|
581
|
+
height: 63px !important; /* stylelint-disable-line declaration-no-important */
|
|
579
582
|
}
|
|
580
583
|
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content {
|
|
581
|
-
overflow-x: scroll !important;
|
|
584
|
+
overflow-x: scroll !important; /* stylelint-disable-line declaration-no-important */
|
|
582
585
|
}
|
|
583
586
|
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content.e-gantt-scroll-padding {
|
|
584
587
|
width: calc(100% + 17px);
|
|
@@ -603,7 +606,7 @@
|
|
|
603
606
|
border-right: 0 solid;
|
|
604
607
|
}
|
|
605
608
|
.e-gantt .e-gantt-chart .e-chart-root-container .e-content {
|
|
606
|
-
-webkit-overflow-scrolling: touch;
|
|
609
|
+
-webkit-overflow-scrolling: touch; /* stylelint-disable-line property-no-vendor-prefix */
|
|
607
610
|
overflow-x: scroll;
|
|
608
611
|
overflow-y: auto;
|
|
609
612
|
position: relative;
|
|
@@ -1170,7 +1173,7 @@
|
|
|
1170
1173
|
}
|
|
1171
1174
|
.e-gantt-dialog .e-richtexteditor {
|
|
1172
1175
|
border-bottom-width: 1px;
|
|
1173
|
-
height: 241px !important;
|
|
1176
|
+
height: 241px !important; /* stylelint-disable-line declaration-no-important */
|
|
1174
1177
|
overflow: hidden;
|
|
1175
1178
|
}
|
|
1176
1179
|
.e-gantt-dialog .e-richtexteditor.e-rte-tb-expand {
|
|
@@ -1182,10 +1185,10 @@
|
|
|
1182
1185
|
overflow: hidden;
|
|
1183
1186
|
}
|
|
1184
1187
|
.e-gantt-dialog > .e-dlg-content {
|
|
1185
|
-
padding: 0 !important;
|
|
1188
|
+
padding: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
1186
1189
|
}
|
|
1187
1190
|
.e-gantt-dialog .e-dlg-header-content {
|
|
1188
|
-
border-bottom: 0 !important;
|
|
1191
|
+
border-bottom: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
1189
1192
|
}
|
|
1190
1193
|
.e-gantt-dialog .e-dlg-header-content {
|
|
1191
1194
|
border-radius: 0px;
|
|
@@ -1193,8 +1196,8 @@
|
|
|
1193
1196
|
}
|
|
1194
1197
|
.e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
1195
1198
|
border-radius: 50%;
|
|
1196
|
-
height: auto !important;
|
|
1197
|
-
width: auto !important;
|
|
1199
|
+
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
1200
|
+
width: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
1198
1201
|
}
|
|
1199
1202
|
|
|
1200
1203
|
.e-icon-rowselect::before {
|
|
@@ -1202,9 +1205,9 @@
|
|
|
1202
1205
|
}
|
|
1203
1206
|
|
|
1204
1207
|
.e-ganttpopup {
|
|
1205
|
-
-moz-user-select: none;
|
|
1206
|
-
-ms-user-select: none;
|
|
1207
|
-
-webkit-user-select: none;
|
|
1208
|
+
-moz-user-select: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
1209
|
+
-ms-user-select: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
1210
|
+
-webkit-user-select: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
1208
1211
|
font-weight: normal;
|
|
1209
1212
|
position: absolute;
|
|
1210
1213
|
user-select: none;
|
|
@@ -1358,7 +1361,7 @@
|
|
|
1358
1361
|
border-top-right-radius: 0px;
|
|
1359
1362
|
}
|
|
1360
1363
|
.e-gantt .e-grid .e-focused:not(.e-menu-item) {
|
|
1361
|
-
box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5) inset !important;
|
|
1364
|
+
box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5) inset !important; /* stylelint-disable-line declaration-no-important */
|
|
1362
1365
|
}
|
|
1363
1366
|
.e-gantt .e-temp-content {
|
|
1364
1367
|
border-color: #616161;
|
|
@@ -1373,7 +1376,7 @@
|
|
|
1373
1376
|
border-color: #616161;
|
|
1374
1377
|
}
|
|
1375
1378
|
.e-gantt .e-gantt-tree-grid-pane .e-timeline-single-header-outer-div {
|
|
1376
|
-
height: 45px !important;
|
|
1379
|
+
height: 45px !important; /* stylelint-disable-line declaration-no-important */
|
|
1377
1380
|
}
|
|
1378
1381
|
.e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active {
|
|
1379
1382
|
background: rgba(255, 255, 255, 0.28);
|
|
@@ -1397,7 +1400,7 @@
|
|
|
1397
1400
|
line-height: 46px;
|
|
1398
1401
|
}
|
|
1399
1402
|
.e-gantt .e-gantt-chart .e-timeline-single-header-outer-div {
|
|
1400
|
-
height: 46px !important;
|
|
1403
|
+
height: 46px !important; /* stylelint-disable-line declaration-no-important */
|
|
1401
1404
|
}
|
|
1402
1405
|
.e-gantt .e-gantt-chart .e-timeline-top-header-cell {
|
|
1403
1406
|
height: 32px;
|
|
@@ -1687,73 +1690,73 @@
|
|
|
1687
1690
|
color: transparent;
|
|
1688
1691
|
}
|
|
1689
1692
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-task-label {
|
|
1690
|
-
color: transparent !important;
|
|
1693
|
+
color: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1691
1694
|
}
|
|
1692
1695
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-line {
|
|
1693
|
-
border-color: #8A8A8A !important;
|
|
1696
|
+
border-color: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
|
|
1694
1697
|
}
|
|
1695
1698
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-connector-line-right-arrow {
|
|
1696
|
-
border-left-color: #8A8A8A !important;
|
|
1699
|
+
border-left-color: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
|
|
1697
1700
|
}
|
|
1698
1701
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-connector-line-left-arrow {
|
|
1699
|
-
border-right-color: #8A8A8A !important;
|
|
1702
|
+
border-right-color: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
|
|
1700
1703
|
}
|
|
1701
1704
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-child-taskbar-inner-div {
|
|
1702
|
-
background: #D5D5D5 !important;
|
|
1703
|
-
border: #D5D5D5 !important;
|
|
1705
|
+
background: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
|
|
1706
|
+
border: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
|
|
1704
1707
|
}
|
|
1705
1708
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-child-progressbar-inner-div {
|
|
1706
|
-
background-color: transparent !important;
|
|
1707
|
-
border: transparent !important;
|
|
1709
|
+
background-color: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1710
|
+
border: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1708
1711
|
}
|
|
1709
1712
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-milestone-top {
|
|
1710
|
-
border-bottom-color: #D5D5D5 !important;
|
|
1713
|
+
border-bottom-color: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
|
|
1711
1714
|
}
|
|
1712
1715
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-milestone-bottom {
|
|
1713
|
-
border-top-color: #D5D5D5 !important;
|
|
1716
|
+
border-top-color: #D5D5D5 !important; /* stylelint-disable-line declaration-no-important */
|
|
1714
1717
|
}
|
|
1715
1718
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-parent-taskbar-inner-div {
|
|
1716
|
-
background-color: #8A8A8A !important;
|
|
1717
|
-
border: #8A8A8A !important;
|
|
1719
|
+
background-color: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
|
|
1720
|
+
border: #8A8A8A !important; /* stylelint-disable-line declaration-no-important */
|
|
1718
1721
|
}
|
|
1719
1722
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-parent-progressbar-inner-div {
|
|
1720
|
-
background-color: transparent !important;
|
|
1721
|
-
border: transparent !important;
|
|
1723
|
+
background-color: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1724
|
+
border: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1722
1725
|
}
|
|
1723
1726
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-gantt-child-taskbar-inner-div {
|
|
1724
|
-
background: #7280ce !important;
|
|
1725
|
-
border: #7280ce !important;
|
|
1727
|
+
background: #7280ce !important; /* stylelint-disable-line declaration-no-important */
|
|
1728
|
+
border: #7280ce !important; /* stylelint-disable-line declaration-no-important */
|
|
1726
1729
|
}
|
|
1727
1730
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-milestone-top {
|
|
1728
|
-
border-bottom-color: #7280ce !important;
|
|
1731
|
+
border-bottom-color: #7280ce !important; /* stylelint-disable-line declaration-no-important */
|
|
1729
1732
|
}
|
|
1730
1733
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-milestone-bottom {
|
|
1731
|
-
border-top-color: #7280ce !important;
|
|
1734
|
+
border-top-color: #7280ce !important; /* stylelint-disable-line declaration-no-important */
|
|
1732
1735
|
}
|
|
1733
1736
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-gantt-child-taskbar-inner-div {
|
|
1734
|
-
background: #8591d5 !important;
|
|
1735
|
-
border: #8591d5 !important;
|
|
1737
|
+
background: #8591d5 !important; /* stylelint-disable-line declaration-no-important */
|
|
1738
|
+
border: #8591d5 !important; /* stylelint-disable-line declaration-no-important */
|
|
1736
1739
|
}
|
|
1737
1740
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-milestone-top {
|
|
1738
|
-
border-bottom-color: #8591d5 !important;
|
|
1741
|
+
border-bottom-color: #8591d5 !important; /* stylelint-disable-line declaration-no-important */
|
|
1739
1742
|
}
|
|
1740
1743
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-milestone-bottom {
|
|
1741
|
-
border-top-color: #8591d5 !important;
|
|
1744
|
+
border-top-color: #8591d5 !important; /* stylelint-disable-line declaration-no-important */
|
|
1742
1745
|
}
|
|
1743
1746
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-line {
|
|
1744
|
-
border-color: #7280ce !important;
|
|
1747
|
+
border-color: #7280ce !important; /* stylelint-disable-line declaration-no-important */
|
|
1745
1748
|
}
|
|
1746
1749
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-connector-line-right-arrow {
|
|
1747
|
-
border-left-color: #7280ce !important;
|
|
1750
|
+
border-left-color: #7280ce !important; /* stylelint-disable-line declaration-no-important */
|
|
1748
1751
|
}
|
|
1749
1752
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-connector-line-left-arrow {
|
|
1750
|
-
border-right-color: #7280ce !important;
|
|
1753
|
+
border-right-color: #7280ce !important; /* stylelint-disable-line declaration-no-important */
|
|
1751
1754
|
}
|
|
1752
1755
|
.e-gantt .e-icons {
|
|
1753
1756
|
color: #fff;
|
|
1754
1757
|
}
|
|
1755
1758
|
.e-gantt .e-grid .e-icons:not(.e-stop):not(.e-check):not(.e-icon-left):not(.e-date-icon) {
|
|
1756
|
-
color: rgba(255, 255, 255, 0.7) !important;
|
|
1759
|
+
color: rgba(255, 255, 255, 0.7) !important; /* stylelint-disable-line declaration-no-important */
|
|
1757
1760
|
}
|
|
1758
1761
|
|
|
1759
1762
|
.e-gantt-dialog .e-dlg-header {
|
|
@@ -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';
|