@syncfusion/ej2-gantt 20.1.58 → 20.2.36
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/CHANGELOG.md +37 -0
- package/dist/ej2-gantt.umd.min.js +2 -2
- package/dist/ej2-gantt.umd.min.js.map +1 -1
- package/dist/es6/ej2-gantt.es2015.js +1100 -74
- package/dist/es6/ej2-gantt.es2015.js.map +1 -1
- package/dist/es6/ej2-gantt.es5.js +1099 -71
- package/dist/es6/ej2-gantt.es5.js.map +1 -1
- package/dist/global/ej2-gantt.min.js +2 -2
- package/dist/global/ej2-gantt.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +18 -18
- package/src/gantt/actions/actions.d.ts +1 -0
- package/src/gantt/actions/actions.js +1 -0
- package/src/gantt/actions/cell-edit.js +5 -3
- package/src/gantt/actions/connector-line-edit.js +20 -6
- package/src/gantt/actions/context-menu.js +3 -4
- package/src/gantt/actions/critical-path.d.ts +26 -0
- package/src/gantt/actions/critical-path.js +735 -0
- package/src/gantt/actions/dependency.js +3 -0
- package/src/gantt/actions/dialog-edit.js +1 -1
- package/src/gantt/actions/edit.js +29 -3
- package/src/gantt/actions/filter.js +1 -1
- package/src/gantt/actions/keyboard.js +2 -2
- package/src/gantt/actions/selection.js +3 -0
- package/src/gantt/actions/taskbar-edit.js +6 -4
- package/src/gantt/actions/toolbar.js +22 -4
- package/src/gantt/base/css-constants.d.ts +12 -0
- package/src/gantt/base/css-constants.js +12 -0
- package/src/gantt/base/date-processor.d.ts +1 -1
- package/src/gantt/base/date-processor.js +8 -2
- package/src/gantt/base/enum.d.ts +3 -1
- package/src/gantt/base/gantt-chart.js +6 -2
- package/src/gantt/base/gantt-model.d.ts +8 -1
- package/src/gantt/base/gantt.d.ts +32 -1
- package/src/gantt/base/gantt.js +133 -5
- package/src/gantt/base/interface.d.ts +16 -0
- package/src/gantt/base/splitter.js +4 -0
- package/src/gantt/base/task-processor.js +19 -6
- package/src/gantt/base/tree-grid.js +1 -1
- package/src/gantt/export/export-helper.js +19 -6
- package/src/gantt/export/pdf-base/pdf-style/gantt-theme.js +16 -0
- package/src/gantt/renderer/chart-rows.js +16 -5
- package/src/gantt/renderer/nonworking-day.js +5 -2
- package/src/gantt/renderer/timeline.js +35 -14
- package/src/global.js +1 -1
- package/styles/bootstrap-dark.css +272 -14
- package/styles/bootstrap.css +271 -14
- package/styles/bootstrap4.css +273 -12
- package/styles/bootstrap5-dark.css +272 -15
- package/styles/bootstrap5.css +272 -15
- package/styles/fabric-dark.css +270 -12
- package/styles/fabric.css +276 -18
- package/styles/fluent-dark.css +272 -14
- package/styles/fluent.css +272 -14
- package/styles/gantt/_bootstrap-dark-definition.scss +59 -16
- package/styles/gantt/_bootstrap-definition.scss +57 -14
- package/styles/gantt/_bootstrap4-definition.scss +65 -21
- package/styles/gantt/_bootstrap5-definition.scss +55 -12
- package/styles/gantt/_fabric-dark-definition.scss +58 -15
- package/styles/gantt/_fabric-definition.scss +58 -15
- package/styles/gantt/_fluent-definition.scss +53 -10
- package/styles/gantt/_fusionnew-definition.scss +212 -0
- package/styles/gantt/_highcontrast-definition.scss +57 -14
- package/styles/gantt/_highcontrast-light-definition.scss +55 -12
- package/styles/gantt/_layout.scss +293 -7
- package/styles/gantt/_material-dark-definition.scss +60 -16
- package/styles/gantt/_material-definition.scss +65 -21
- package/styles/gantt/_material3-definition.scss +213 -0
- package/styles/gantt/_tailwind-definition.scss +52 -8
- package/styles/gantt/_theme.scss +56 -1
- package/styles/gantt/bootstrap-dark.css +272 -14
- package/styles/gantt/bootstrap.css +271 -14
- package/styles/gantt/bootstrap4.css +273 -12
- package/styles/gantt/bootstrap5-dark.css +272 -15
- package/styles/gantt/bootstrap5.css +272 -15
- package/styles/gantt/fabric-dark.css +270 -12
- package/styles/gantt/fabric.css +276 -18
- package/styles/gantt/fluent-dark.css +272 -14
- package/styles/gantt/fluent.css +272 -14
- package/styles/gantt/highcontrast-light.css +260 -13
- package/styles/gantt/highcontrast.css +271 -13
- package/styles/gantt/icons/_bootstrap-dark.scss +12 -1
- package/styles/gantt/icons/_bootstrap.scss +12 -1
- package/styles/gantt/icons/_bootstrap4.scss +12 -1
- package/styles/gantt/icons/_bootstrap5.scss +12 -0
- package/styles/gantt/icons/_fabric-dark.scss +12 -0
- package/styles/gantt/icons/_fabric.scss +12 -0
- package/styles/gantt/icons/_fluent.scss +12 -0
- package/styles/gantt/icons/_fusionnew.scss +120 -0
- package/styles/gantt/icons/_highcontrast.scss +12 -0
- package/styles/gantt/icons/_material-dark.scss +12 -0
- package/styles/gantt/icons/_material.scss +12 -0
- package/styles/gantt/icons/_material3.scss +124 -0
- package/styles/gantt/icons/_tailwind-dark.scss +12 -0
- package/styles/gantt/icons/_tailwind.scss +12 -0
- package/styles/gantt/material-dark.css +277 -12
- package/styles/gantt/material.css +279 -14
- package/styles/gantt/tailwind-dark.css +279 -15
- package/styles/gantt/tailwind.css +276 -12
- package/styles/highcontrast-light.css +260 -13
- package/styles/highcontrast.css +271 -13
- package/styles/material-dark.css +277 -12
- package/styles/material.css +279 -14
- package/styles/tailwind-dark.css +279 -15
- package/styles/tailwind.css +276 -12
|
@@ -4,6 +4,10 @@
|
|
|
4
4
|
content: '\e7f9';
|
|
5
5
|
}
|
|
6
6
|
|
|
7
|
+
.e-critical-path::before {
|
|
8
|
+
content: '\e93a';
|
|
9
|
+
}
|
|
10
|
+
|
|
7
11
|
.e-edit::before {
|
|
8
12
|
content: '\e81e';
|
|
9
13
|
}
|
|
@@ -109,4 +113,12 @@
|
|
|
109
113
|
content: '\e903';
|
|
110
114
|
}
|
|
111
115
|
}
|
|
116
|
+
|
|
117
|
+
.e-gantt-tooltip-arrow-left::before {
|
|
118
|
+
content: '\e977';
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.e-gantt-tooltip-arrow-right::before {
|
|
122
|
+
content: '\e85f';
|
|
123
|
+
}
|
|
112
124
|
}
|
|
@@ -4,6 +4,10 @@
|
|
|
4
4
|
content: '\e7f9';
|
|
5
5
|
}
|
|
6
6
|
|
|
7
|
+
.e-critical-path::before {
|
|
8
|
+
content: '\e93a';
|
|
9
|
+
}
|
|
10
|
+
|
|
7
11
|
.e-edit::before {
|
|
8
12
|
content: '\e81e';
|
|
9
13
|
}
|
|
@@ -109,4 +113,12 @@
|
|
|
109
113
|
content: '\e903';
|
|
110
114
|
}
|
|
111
115
|
}
|
|
116
|
+
|
|
117
|
+
.e-gantt-tooltip-arrow-left::before {
|
|
118
|
+
content: '\e977';
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.e-gantt-tooltip-arrow-right::before {
|
|
122
|
+
content: '\e85f';
|
|
123
|
+
}
|
|
112
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
|
+
}
|
|
@@ -4,6 +4,10 @@
|
|
|
4
4
|
content: '\e805';
|
|
5
5
|
}
|
|
6
6
|
|
|
7
|
+
.e-critical-path::before {
|
|
8
|
+
content: '\e88c';
|
|
9
|
+
}
|
|
10
|
+
|
|
7
11
|
.e-edit::before {
|
|
8
12
|
content: '\e730';
|
|
9
13
|
}
|
|
@@ -109,4 +113,12 @@
|
|
|
109
113
|
content: '\e770';
|
|
110
114
|
}
|
|
111
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
|
+
}
|
|
112
124
|
}
|
|
@@ -4,6 +4,10 @@
|
|
|
4
4
|
content: '\e805';
|
|
5
5
|
}
|
|
6
6
|
|
|
7
|
+
.e-critical-path::before {
|
|
8
|
+
content: '\e88c';
|
|
9
|
+
}
|
|
10
|
+
|
|
7
11
|
.e-edit::before {
|
|
8
12
|
content: '\e730';
|
|
9
13
|
}
|
|
@@ -109,4 +113,12 @@
|
|
|
109
113
|
content: '\e770';
|
|
110
114
|
}
|
|
111
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
|
+
}
|
|
112
124
|
}
|
|
@@ -158,6 +158,9 @@
|
|
|
158
158
|
.e-gantt .e-add::before {
|
|
159
159
|
content: "\e7f9";
|
|
160
160
|
}
|
|
161
|
+
.e-gantt .e-critical-path::before {
|
|
162
|
+
content: "\e93a";
|
|
163
|
+
}
|
|
161
164
|
.e-gantt .e-edit::before {
|
|
162
165
|
content: "\e81e";
|
|
163
166
|
}
|
|
@@ -238,26 +241,226 @@
|
|
|
238
241
|
content: "\e903";
|
|
239
242
|
}
|
|
240
243
|
|
|
244
|
+
.e-gantt-tooltip-arrow-left::before {
|
|
245
|
+
content: "\e977";
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
.e-gantt-tooltip-arrow-right::before {
|
|
249
|
+
content: "\e85f";
|
|
250
|
+
}
|
|
251
|
+
|
|
241
252
|
.e-bigger .e-gantt .e-gantt-chart .e-timeline-header-container {
|
|
242
253
|
height: 64px;
|
|
243
254
|
}
|
|
244
255
|
.e-bigger .e-gantt .e-gantt-chart .e-timeline-top-header-cell {
|
|
245
256
|
height: 32px;
|
|
246
257
|
}
|
|
258
|
+
.e-bigger .e-gantt .e-gantt-chart .e-event-markers .e-span-label {
|
|
259
|
+
border-radius: 4px !important;
|
|
260
|
+
font-size: 12px !important;
|
|
261
|
+
height: 26px !important;
|
|
262
|
+
padding: 4px 12px 4px 9px !important;
|
|
263
|
+
top: 65px !important;
|
|
264
|
+
}
|
|
265
|
+
.e-bigger .e-gantt .e-gantt-chart .e-event-markers .e-gantt-right-arrow {
|
|
266
|
+
border-bottom: 6px solid transparent;
|
|
267
|
+
border-right: 6px solid transparent;
|
|
268
|
+
border-right-color: #cae8ff;
|
|
269
|
+
border-top: 6px solid transparent;
|
|
270
|
+
top: 73px !important;
|
|
271
|
+
}
|
|
272
|
+
.e-bigger .e-gantt .e-gantt-chart .e-left-resize-gripper::before,
|
|
273
|
+
.e-bigger .e-gantt .e-gantt-chart .e-right-resize-gripper::before {
|
|
274
|
+
content: "\e92c";
|
|
275
|
+
}
|
|
276
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right,
|
|
277
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left,
|
|
278
|
+
.e-bigger .e-gantt .e-gantt-chart .e-right-connectorpoint-outer-div,
|
|
279
|
+
.e-bigger .e-gantt .e-gantt-chart .e-left-connectorpoint-outer-div {
|
|
280
|
+
border-radius: 50%;
|
|
281
|
+
display: inline-block;
|
|
282
|
+
position: absolute;
|
|
283
|
+
}
|
|
284
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover,
|
|
285
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
|
|
286
|
+
border-style: solid;
|
|
287
|
+
border-width: 1px;
|
|
288
|
+
box-sizing: content-box;
|
|
289
|
+
cursor: pointer;
|
|
290
|
+
display: inline-block;
|
|
291
|
+
}
|
|
292
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover,
|
|
293
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
|
|
294
|
+
background-color: #005a9e;
|
|
295
|
+
border-color: #303030;
|
|
296
|
+
}
|
|
297
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover:hover,
|
|
298
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover:hover {
|
|
299
|
+
background-color: #005a9e;
|
|
300
|
+
border-color: #303030;
|
|
301
|
+
outline: 2px solid #9fa8da;
|
|
302
|
+
}
|
|
303
|
+
.e-bigger .e-gantt .e-tab .e-content {
|
|
304
|
+
height: 241px !important;
|
|
305
|
+
}
|
|
247
306
|
.e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
|
|
248
307
|
height: 63px !important;
|
|
249
308
|
}
|
|
309
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header-content {
|
|
310
|
+
padding: 16px 4px 17px 16px !important;
|
|
311
|
+
}
|
|
312
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
313
|
+
left: 1px !important;
|
|
314
|
+
}
|
|
315
|
+
.e-bigger .e-gantt .e-dialog .e-btn .e-btn-icon.e-icon-dlg-close {
|
|
316
|
+
font-size: 12px !important;
|
|
317
|
+
}
|
|
318
|
+
.e-bigger .e-gantt .e-dialog .e-footer-content {
|
|
319
|
+
height: 70px !important;
|
|
320
|
+
padding: 16px !important;
|
|
321
|
+
}
|
|
322
|
+
.e-bigger .e-gantt .e-dialog .e-footer-content .e-btn {
|
|
323
|
+
margin-left: 12px;
|
|
324
|
+
}
|
|
325
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header {
|
|
326
|
+
line-height: 28px;
|
|
327
|
+
}
|
|
328
|
+
.e-bigger .e-gantt .e-filter-popup {
|
|
329
|
+
width: 350px !important;
|
|
330
|
+
}
|
|
331
|
+
.e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
|
|
332
|
+
padding: 14px 0 0 !important;
|
|
333
|
+
}
|
|
334
|
+
.e-bigger .e-gantt .e-filter-popup .e-dlg-content {
|
|
335
|
+
border-radius: 6px !important;
|
|
336
|
+
padding: 20px 16px 6px 16px !important;
|
|
337
|
+
}
|
|
250
338
|
.e-bigger .e-columnmenu {
|
|
251
339
|
top: 38px;
|
|
252
340
|
}
|
|
341
|
+
.e-bigger .e-gantt-dialog {
|
|
342
|
+
border-radius: 6px;
|
|
343
|
+
width: 550px !important;
|
|
344
|
+
}
|
|
345
|
+
.e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
346
|
+
padding: 0 16px !important;
|
|
347
|
+
}
|
|
253
348
|
.e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(odd) {
|
|
254
|
-
padding: 16px
|
|
349
|
+
padding: 16px 9px 0 16px;
|
|
255
350
|
}
|
|
256
351
|
.e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(even) {
|
|
257
|
-
padding: 16px
|
|
352
|
+
padding: 16px 16px 0 9px;
|
|
258
353
|
}
|
|
259
354
|
.e-bigger .e-gantt-dialog .e-edit-form-row.e-scroll .e-edit-form-column:nth-child(even) {
|
|
260
|
-
padding: 16px 18px 0
|
|
355
|
+
padding: 16px 18px 0 9px;
|
|
356
|
+
}
|
|
357
|
+
.e-bigger .e-gantt-dialog .e-edit-form-row {
|
|
358
|
+
height: 241px !important;
|
|
359
|
+
}
|
|
360
|
+
.e-bigger .e-gantt-dialog .e-edit-form-column {
|
|
361
|
+
height: 78px !important;
|
|
362
|
+
}
|
|
363
|
+
.e-bigger .e-gantt-dialog .e-dlg-header-content {
|
|
364
|
+
border-bottom: 0 !important;
|
|
365
|
+
}
|
|
366
|
+
.e-bigger .e-gantt-dialog > .e-dlg-content {
|
|
367
|
+
border-radius: 0 !important;
|
|
368
|
+
}
|
|
369
|
+
.e-bigger .e-gantt-dialog .e-dlg-header-content {
|
|
370
|
+
border-radius: 6px 6px 0px 0px;
|
|
371
|
+
padding-bottom: 4px;
|
|
372
|
+
}
|
|
373
|
+
.e-bigger .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
374
|
+
border-radius: 50%;
|
|
375
|
+
height: auto !important;
|
|
376
|
+
width: auto;
|
|
377
|
+
}
|
|
378
|
+
.e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
379
|
+
margin-left: 4px !important;
|
|
380
|
+
}
|
|
381
|
+
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
382
|
+
font-size: 16px !important;
|
|
383
|
+
}
|
|
384
|
+
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
385
|
+
min-height: 26px !important;
|
|
386
|
+
min-width: 35.82px !important;
|
|
387
|
+
}
|
|
388
|
+
.e-bigger .e-gantt-dialog .e-btn.e-flat {
|
|
389
|
+
line-height: 24px;
|
|
390
|
+
padding: 6px 16px 6px 15px !important;
|
|
391
|
+
}
|
|
392
|
+
.e-bigger .e-gantt-dialog .e-btn.e-primary {
|
|
393
|
+
padding: 6px 21px 6px 23px !important;
|
|
394
|
+
}
|
|
395
|
+
.e-bigger .e-gantt-dialog .e-datetime-wrapper .e-time-icon.e-icons::before {
|
|
396
|
+
font-size: 16px !important;
|
|
397
|
+
}
|
|
398
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text {
|
|
399
|
+
font-size: 14px;
|
|
400
|
+
line-height: 22px;
|
|
401
|
+
}
|
|
402
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input[disabled] ~ label.e-label-top.e-float-text {
|
|
403
|
+
font-size: 14px;
|
|
404
|
+
line-height: 22px;
|
|
405
|
+
}
|
|
406
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input {
|
|
407
|
+
height: 27px !important;
|
|
408
|
+
padding: 5px 0 11px !important;
|
|
409
|
+
}
|
|
410
|
+
.e-bigger .e-gantt-dialog .e-numeric.e-control-wrapper.e-input-group .e-input-group-icon {
|
|
411
|
+
min-height: 26px !important;
|
|
412
|
+
min-width: 35.82px !important;
|
|
413
|
+
}
|
|
414
|
+
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-time-icon {
|
|
415
|
+
min-height: 26px !important;
|
|
416
|
+
min-width: 35.82px !important;
|
|
417
|
+
}
|
|
418
|
+
.e-bigger .e-gantt-dialog .e-input-group.e-control-wrapper {
|
|
419
|
+
height: 44px;
|
|
420
|
+
}
|
|
421
|
+
.e-bigger .e-gantt-dialog .e-input-group-icon.e-date-icon {
|
|
422
|
+
min-width: 36px !important;
|
|
423
|
+
}
|
|
424
|
+
.e-bigger .e-gantt-dialog .e-datetime-wrapper .e-input-group-icon.e-time-icon {
|
|
425
|
+
margin: 5px 0 6px !important;
|
|
426
|
+
}
|
|
427
|
+
.e-bigger .e-gantt-dialog .e-input-group.e-control-wrapper .e-input-group-icon {
|
|
428
|
+
margin-right: 0 !important;
|
|
429
|
+
}
|
|
430
|
+
.e-bigger .e-predecessor-tooltip {
|
|
431
|
+
background-color: #000;
|
|
432
|
+
}
|
|
433
|
+
.e-bigger .e-predecessor-tooltip .e-left-btn:disabled {
|
|
434
|
+
color: #757575 !important;
|
|
435
|
+
}
|
|
436
|
+
.e-bigger .e-predecessor-tooltip .e-right-btn:disabled {
|
|
437
|
+
color: #757575 !important;
|
|
438
|
+
}
|
|
439
|
+
.e-bigger .e-predecessor-tooltip .e-tip-content {
|
|
440
|
+
padding: 3px !important;
|
|
441
|
+
}
|
|
442
|
+
.e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type {
|
|
443
|
+
background-color: #000;
|
|
444
|
+
border-color: #000;
|
|
445
|
+
color: #fff;
|
|
446
|
+
font-size: 12px;
|
|
447
|
+
line-height: 18px;
|
|
448
|
+
padding: 0 8px 0 0;
|
|
449
|
+
}
|
|
450
|
+
.e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:last-of-type {
|
|
451
|
+
background-color: #000;
|
|
452
|
+
border-color: #000;
|
|
453
|
+
color: #fff;
|
|
454
|
+
font-size: 12px;
|
|
455
|
+
line-height: 18px;
|
|
456
|
+
padding: 0 0 0 8px;
|
|
457
|
+
}
|
|
458
|
+
.e-bigger .e-predecessor-dialog {
|
|
459
|
+
background-color: #f3f3f3;
|
|
460
|
+
}
|
|
461
|
+
.e-bigger .e-predecessor-dialog .e-dlg-content {
|
|
462
|
+
background-color: #f3f3f3;
|
|
463
|
+
padding: 10px 9px 9px 14px !important;
|
|
261
464
|
}
|
|
262
465
|
|
|
263
466
|
.e-gantt {
|
|
@@ -412,9 +615,11 @@
|
|
|
412
615
|
position: absolute;
|
|
413
616
|
}
|
|
414
617
|
.e-gantt .e-gantt-chart .e-chart-root-container .e-holiday-container {
|
|
618
|
+
height: 100%;
|
|
415
619
|
position: absolute;
|
|
416
620
|
}
|
|
417
621
|
.e-gantt .e-gantt-chart .e-chart-root-container .e-weekend-container {
|
|
622
|
+
height: 100%;
|
|
418
623
|
position: absolute;
|
|
419
624
|
}
|
|
420
625
|
.e-gantt .e-gantt-chart .e-timeline-header-container {
|
|
@@ -663,37 +868,35 @@
|
|
|
663
868
|
cursor: col-resize;
|
|
664
869
|
}
|
|
665
870
|
.e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler {
|
|
666
|
-
border-style: solid;
|
|
667
871
|
border-width: 1px;
|
|
668
872
|
box-sizing: content-box;
|
|
669
873
|
cursor: col-resize;
|
|
670
874
|
height: 2px;
|
|
671
875
|
position: absolute;
|
|
672
876
|
top: 7px;
|
|
673
|
-
width: 12px;
|
|
674
877
|
}
|
|
675
878
|
.e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-element {
|
|
676
879
|
border-bottom-style: solid;
|
|
677
|
-
border-bottom-width:
|
|
880
|
+
border-bottom-width: 8px;
|
|
678
881
|
border-left: 7px solid transparent;
|
|
679
882
|
border-right: 7px solid transparent;
|
|
680
883
|
cursor: col-resize;
|
|
681
884
|
height: 0;
|
|
682
|
-
left:
|
|
885
|
+
left: 0;
|
|
683
886
|
position: absolute;
|
|
684
887
|
top: -7px;
|
|
685
888
|
width: 0;
|
|
686
889
|
}
|
|
687
890
|
.e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-after {
|
|
688
891
|
border-bottom-style: solid;
|
|
689
|
-
border-bottom-width:
|
|
892
|
+
border-bottom-width: 8px;
|
|
690
893
|
border-left: 6px solid transparent;
|
|
691
894
|
border-right: 6px solid transparent;
|
|
692
895
|
cursor: col-resize;
|
|
693
896
|
height: 0;
|
|
694
|
-
left:
|
|
897
|
+
left: 1px;
|
|
695
898
|
position: absolute;
|
|
696
|
-
top: -
|
|
899
|
+
top: -7px;
|
|
697
900
|
width: 0;
|
|
698
901
|
}
|
|
699
902
|
.e-gantt .e-gantt-chart .e-baseline-bar {
|
|
@@ -828,6 +1031,9 @@
|
|
|
828
1031
|
.e-gantt .e-gantt-chart .e-connector-line-hover {
|
|
829
1032
|
outline: 1px solid;
|
|
830
1033
|
}
|
|
1034
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-hover {
|
|
1035
|
+
outline: 1px solid;
|
|
1036
|
+
}
|
|
831
1037
|
.e-gantt .e-gantt-chart .e-connector-line-hover-z-index {
|
|
832
1038
|
z-index: 100;
|
|
833
1039
|
}
|
|
@@ -1120,6 +1326,10 @@
|
|
|
1120
1326
|
height: 100%;
|
|
1121
1327
|
}
|
|
1122
1328
|
|
|
1329
|
+
.e-predecessor-tooltip {
|
|
1330
|
+
visibility: hidden;
|
|
1331
|
+
}
|
|
1332
|
+
|
|
1123
1333
|
/*! Gantt theme */
|
|
1124
1334
|
.e-gantt .e-gantt-splitter {
|
|
1125
1335
|
border-color: #616161;
|
|
@@ -1262,6 +1472,10 @@
|
|
|
1262
1472
|
background-color: #67c1b2;
|
|
1263
1473
|
border: #4fb29f;
|
|
1264
1474
|
}
|
|
1475
|
+
.e-gantt .e-gantt-chart .e-gantt-critical-child-manualprogressbar {
|
|
1476
|
+
background-color: #67c1b2;
|
|
1477
|
+
border: #4fb29f;
|
|
1478
|
+
}
|
|
1265
1479
|
.e-gantt .e-gantt-chart .e-holiday {
|
|
1266
1480
|
background: #616161;
|
|
1267
1481
|
}
|
|
@@ -1293,7 +1507,6 @@
|
|
|
1293
1507
|
}
|
|
1294
1508
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar {
|
|
1295
1509
|
background: linear-gradient(to right, rgba(63, 81, 181, 0.2), #3f51b5 30%, #3f51b5 70%, #3f51b5 70%, rgba(63, 81, 181, 0.2) 100%);
|
|
1296
|
-
background-color: rgba(63, 81, 181, 0.2);
|
|
1297
1510
|
border: 0px;
|
|
1298
1511
|
border-radius: 0px;
|
|
1299
1512
|
}
|
|
@@ -1337,7 +1550,7 @@
|
|
|
1337
1550
|
}
|
|
1338
1551
|
.e-gantt .e-gantt-chart .e-connectorpoint-left-hover,
|
|
1339
1552
|
.e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
|
|
1340
|
-
background-color: #
|
|
1553
|
+
background-color: #005a9e;
|
|
1341
1554
|
border-color: #303030;
|
|
1342
1555
|
}
|
|
1343
1556
|
.e-gantt .e-gantt-chart .e-connectorpoint-left-hover:hover,
|
|
@@ -1594,4 +1807,56 @@
|
|
|
1594
1807
|
}
|
|
1595
1808
|
.e-gantt.e-device .e-backarrowspan {
|
|
1596
1809
|
color: #000;
|
|
1810
|
+
}
|
|
1811
|
+
|
|
1812
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line {
|
|
1813
|
+
border-color: #d13438;
|
|
1814
|
+
}
|
|
1815
|
+
|
|
1816
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line-right-arrow {
|
|
1817
|
+
border-left-color: #d13438;
|
|
1818
|
+
}
|
|
1819
|
+
|
|
1820
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line-left-arrow {
|
|
1821
|
+
border-right-color: #d13438;
|
|
1822
|
+
}
|
|
1823
|
+
|
|
1824
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-hover {
|
|
1825
|
+
border-color: #f3d8da;
|
|
1826
|
+
outline-color: #f3d8da;
|
|
1827
|
+
}
|
|
1828
|
+
|
|
1829
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-right-arrow-hover {
|
|
1830
|
+
border-left-color: #f3d8da;
|
|
1831
|
+
}
|
|
1832
|
+
|
|
1833
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-left-arrow-hover {
|
|
1834
|
+
border-right-color: #f3d8da;
|
|
1835
|
+
}
|
|
1836
|
+
|
|
1837
|
+
.e-gantt .e-gantt-chart .e-gantt-child-critical-taskbar-inner-div {
|
|
1838
|
+
background-color: #F3D8DA;
|
|
1839
|
+
border: 1px solid #F3D8DA;
|
|
1840
|
+
border-radius: 4px;
|
|
1841
|
+
}
|
|
1842
|
+
|
|
1843
|
+
.e-gantt .e-gantt-chart .e-gantt-child-critical-progressbar-inner-div {
|
|
1844
|
+
background-color: #D13438;
|
|
1845
|
+
border: 0px;
|
|
1846
|
+
border-radius: 4px;
|
|
1847
|
+
}
|
|
1848
|
+
|
|
1849
|
+
.e-gantt .e-gantt-chart .e-gantt-critical-unscheduled-taskbar {
|
|
1850
|
+
background: linear-gradient(to right, rgba(255, 85, 85, 0.2), #D13438 30%, #D13438 70%, #D13438 70%, rgba(255, 85, 85, 0.2) 100%);
|
|
1851
|
+
background-color: rgba(255, 85, 85, 0.2);
|
|
1852
|
+
border: 0px;
|
|
1853
|
+
border-radius: 0px;
|
|
1854
|
+
}
|
|
1855
|
+
|
|
1856
|
+
.e-gantt .e-gantt-chart .e-critical-milestone-top {
|
|
1857
|
+
border-bottom-color: #d13438;
|
|
1858
|
+
}
|
|
1859
|
+
|
|
1860
|
+
.e-gantt .e-gantt-chart .e-critical-milestone-bottom {
|
|
1861
|
+
border-top-color: #d13438;
|
|
1597
1862
|
}
|