@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
|
@@ -166,6 +166,9 @@
|
|
|
166
166
|
.e-gantt .e-add::before {
|
|
167
167
|
content: "\e805";
|
|
168
168
|
}
|
|
169
|
+
.e-gantt .e-critical-path::before {
|
|
170
|
+
content: "\e88c";
|
|
171
|
+
}
|
|
169
172
|
.e-gantt .e-edit::before {
|
|
170
173
|
content: "\e730";
|
|
171
174
|
}
|
|
@@ -246,26 +249,225 @@
|
|
|
246
249
|
content: "\e770";
|
|
247
250
|
}
|
|
248
251
|
|
|
252
|
+
.e-gantt-tooltip-arrow-left::before {
|
|
253
|
+
content: "\e773";
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
.e-gantt-tooltip-arrow-right::before {
|
|
257
|
+
content: "\e7f9";
|
|
258
|
+
}
|
|
259
|
+
|
|
249
260
|
.e-bigger .e-gantt .e-gantt-chart .e-timeline-header-container {
|
|
250
261
|
height: 64px;
|
|
251
262
|
}
|
|
252
263
|
.e-bigger .e-gantt .e-gantt-chart .e-timeline-top-header-cell {
|
|
253
264
|
height: 32px;
|
|
254
265
|
}
|
|
266
|
+
.e-bigger .e-gantt .e-gantt-chart .e-event-markers .e-span-label {
|
|
267
|
+
border-radius: 4px !important;
|
|
268
|
+
font-size: 12px !important;
|
|
269
|
+
height: 26px !important;
|
|
270
|
+
padding: 4px 8px 4px 8px !important;
|
|
271
|
+
top: 36px !important;
|
|
272
|
+
}
|
|
273
|
+
.e-bigger .e-gantt .e-gantt-chart .e-event-markers .e-gantt-right-arrow {
|
|
274
|
+
border-bottom: 6px solid transparent;
|
|
275
|
+
border-right: 6px solid transparent;
|
|
276
|
+
border-right-color: #ffedd5;
|
|
277
|
+
border-top: 6px solid transparent;
|
|
278
|
+
top: 43px !important;
|
|
279
|
+
}
|
|
280
|
+
.e-bigger .e-gantt .e-gantt-chart .e-left-resize-gripper::before,
|
|
281
|
+
.e-bigger .e-gantt .e-gantt-chart .e-right-resize-gripper::before {
|
|
282
|
+
content: "\e888";
|
|
283
|
+
}
|
|
284
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right,
|
|
285
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left,
|
|
286
|
+
.e-bigger .e-gantt .e-gantt-chart .e-right-connectorpoint-outer-div,
|
|
287
|
+
.e-bigger .e-gantt .e-gantt-chart .e-left-connectorpoint-outer-div {
|
|
288
|
+
border-radius: 50%;
|
|
289
|
+
display: inline-block;
|
|
290
|
+
position: absolute;
|
|
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
|
+
border-style: solid;
|
|
295
|
+
border-width: 1px;
|
|
296
|
+
box-sizing: content-box;
|
|
297
|
+
cursor: pointer;
|
|
298
|
+
display: inline-block;
|
|
299
|
+
}
|
|
300
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover,
|
|
301
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
|
|
302
|
+
background-color: #10b4cd;
|
|
303
|
+
border-color: #1f2937;
|
|
304
|
+
}
|
|
305
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover:hover,
|
|
306
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover:hover {
|
|
307
|
+
background-color: #10b4cd;
|
|
308
|
+
border-color: #1f2937;
|
|
309
|
+
outline: 2px solid #0891b2;
|
|
310
|
+
}
|
|
311
|
+
.e-bigger .e-gantt .e-tab .e-content {
|
|
312
|
+
height: 242px !important;
|
|
313
|
+
}
|
|
255
314
|
.e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
|
|
256
315
|
height: 63px !important;
|
|
257
316
|
}
|
|
317
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header-content {
|
|
318
|
+
padding: 16px 4px 16px 24px !important;
|
|
319
|
+
}
|
|
320
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
321
|
+
left: -2px !important;
|
|
322
|
+
}
|
|
323
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header-content {
|
|
324
|
+
height: 68px !important;
|
|
325
|
+
}
|
|
326
|
+
.e-bigger .e-gantt .e-dialog .e-btn .e-btn-icon.e-icon-dlg-close {
|
|
327
|
+
font-size: 16px !important;
|
|
328
|
+
}
|
|
329
|
+
.e-bigger .e-gantt .e-dialog .e-footer-content {
|
|
330
|
+
height: 62px !important;
|
|
331
|
+
padding: 12px 24px 12px 12px !important;
|
|
332
|
+
}
|
|
333
|
+
.e-bigger .e-gantt .e-dialog .e-footer-content .e-btn {
|
|
334
|
+
margin-left: 12px;
|
|
335
|
+
}
|
|
336
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header {
|
|
337
|
+
line-height: 28px;
|
|
338
|
+
}
|
|
339
|
+
.e-bigger .e-gantt .e-filter-popup {
|
|
340
|
+
width: 319px !important;
|
|
341
|
+
}
|
|
342
|
+
.e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
|
|
343
|
+
padding: 24px 0 0 !important;
|
|
344
|
+
}
|
|
345
|
+
.e-bigger .e-gantt .e-filter-popup .e-dlg-content {
|
|
346
|
+
border-radius: 6px !important;
|
|
347
|
+
padding: 23px 24px 15px 24px !important;
|
|
348
|
+
}
|
|
258
349
|
.e-bigger .e-columnmenu {
|
|
259
350
|
top: 35px;
|
|
260
351
|
}
|
|
352
|
+
.e-bigger .e-gantt-dialog {
|
|
353
|
+
border-radius: 6px;
|
|
354
|
+
width: 564px !important;
|
|
355
|
+
}
|
|
356
|
+
.e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
357
|
+
padding: 0 16px !important;
|
|
358
|
+
}
|
|
261
359
|
.e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(odd) {
|
|
262
|
-
padding: 16px
|
|
360
|
+
padding: 16px 8px 0 24px;
|
|
263
361
|
}
|
|
264
362
|
.e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(even) {
|
|
265
|
-
padding: 16px
|
|
363
|
+
padding: 16px 24px 0 8px;
|
|
266
364
|
}
|
|
267
365
|
.e-bigger .e-gantt-dialog .e-edit-form-row.e-scroll .e-edit-form-column:nth-child(even) {
|
|
268
|
-
padding: 16px 18px 0
|
|
366
|
+
padding: 16px 18px 0 9px;
|
|
367
|
+
}
|
|
368
|
+
.e-bigger .e-gantt-dialog .e-edit-form-row {
|
|
369
|
+
height: 242px !important;
|
|
370
|
+
}
|
|
371
|
+
.e-bigger .e-gantt-dialog .e-edit-form-column {
|
|
372
|
+
height: 75px !important;
|
|
373
|
+
}
|
|
374
|
+
.e-bigger .e-gantt-dialog .e-dlg-header-content {
|
|
375
|
+
border-bottom: 0 !important;
|
|
376
|
+
}
|
|
377
|
+
.e-bigger .e-gantt-dialog > .e-dlg-content {
|
|
378
|
+
border-radius: 0 !important;
|
|
379
|
+
}
|
|
380
|
+
.e-bigger .e-gantt-dialog .e-dlg-header-content {
|
|
381
|
+
border-radius: 6px 6px 0px 0px;
|
|
382
|
+
padding-bottom: 12px;
|
|
383
|
+
}
|
|
384
|
+
.e-bigger .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
385
|
+
border-radius: 50%;
|
|
386
|
+
height: auto !important;
|
|
387
|
+
width: auto;
|
|
388
|
+
}
|
|
389
|
+
.e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
390
|
+
margin-left: 12px !important;
|
|
391
|
+
}
|
|
392
|
+
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
393
|
+
font-size: 16px !important;
|
|
394
|
+
}
|
|
395
|
+
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
396
|
+
min-height: 18px !important;
|
|
397
|
+
min-width: 35.82px !important;
|
|
398
|
+
}
|
|
399
|
+
.e-bigger .e-gantt-dialog .e-btn.e-flat {
|
|
400
|
+
line-height: 24px;
|
|
401
|
+
padding: 6px 16px 6px 15px !important;
|
|
402
|
+
}
|
|
403
|
+
.e-bigger .e-gantt-dialog .e-btn.e-primary {
|
|
404
|
+
padding: 6px 21px 6px 23px !important;
|
|
405
|
+
}
|
|
406
|
+
.e-bigger .e-gantt-dialog .e-datetime-wrapper .e-time-icon.e-icons::before {
|
|
407
|
+
font-size: 16px !important;
|
|
408
|
+
}
|
|
409
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text {
|
|
410
|
+
font-size: 14px;
|
|
411
|
+
line-height: 22px;
|
|
412
|
+
}
|
|
413
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input[disabled] ~ label.e-label-top.e-float-text {
|
|
414
|
+
font-size: 14px;
|
|
415
|
+
line-height: 22px;
|
|
416
|
+
}
|
|
417
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input {
|
|
418
|
+
height: 36px !important;
|
|
419
|
+
}
|
|
420
|
+
.e-bigger .e-gantt-dialog .e-numeric.e-control-wrapper.e-input-group .e-input-group-icon {
|
|
421
|
+
min-height: 18px !important;
|
|
422
|
+
min-width: 35.82px !important;
|
|
423
|
+
}
|
|
424
|
+
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-time-icon {
|
|
425
|
+
min-height: 18px !important;
|
|
426
|
+
min-width: 35.82px !important;
|
|
427
|
+
}
|
|
428
|
+
.e-bigger .e-gantt-dialog .e-input-group.e-control-wrapper {
|
|
429
|
+
height: 38px;
|
|
430
|
+
}
|
|
431
|
+
.e-bigger .e-gantt-dialog .e-input-group-icon.e-date-icon {
|
|
432
|
+
min-width: 36px !important;
|
|
433
|
+
}
|
|
434
|
+
.e-bigger .e-gantt-dialog .e-input-group.e-control-wrapper .e-input-group-icon {
|
|
435
|
+
padding: 7px 0 !important;
|
|
436
|
+
}
|
|
437
|
+
.e-bigger .e-predecessor-tooltip {
|
|
438
|
+
background-color: #000;
|
|
439
|
+
}
|
|
440
|
+
.e-bigger .e-predecessor-tooltip .e-left-btn:disabled {
|
|
441
|
+
color: #9ca3af !important;
|
|
442
|
+
}
|
|
443
|
+
.e-bigger .e-predecessor-tooltip .e-right-btn:disabled {
|
|
444
|
+
color: #9ca3af !important;
|
|
445
|
+
}
|
|
446
|
+
.e-bigger .e-predecessor-tooltip .e-tip-content {
|
|
447
|
+
padding: 3px !important;
|
|
448
|
+
}
|
|
449
|
+
.e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type {
|
|
450
|
+
background-color: #000;
|
|
451
|
+
border-color: #000;
|
|
452
|
+
color: #fff;
|
|
453
|
+
font-size: 12px;
|
|
454
|
+
line-height: 18px;
|
|
455
|
+
padding: 0 8px 0 0;
|
|
456
|
+
}
|
|
457
|
+
.e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:last-of-type {
|
|
458
|
+
background-color: #000;
|
|
459
|
+
border-color: #000;
|
|
460
|
+
color: #fff;
|
|
461
|
+
font-size: 12px;
|
|
462
|
+
line-height: 18px;
|
|
463
|
+
padding: 0 0 0 8px;
|
|
464
|
+
}
|
|
465
|
+
.e-bigger .e-predecessor-dialog {
|
|
466
|
+
background-color: #232e3e;
|
|
467
|
+
}
|
|
468
|
+
.e-bigger .e-predecessor-dialog .e-dlg-content {
|
|
469
|
+
background-color: #232e3e;
|
|
470
|
+
padding: 10px 9px 9px 14px !important;
|
|
269
471
|
}
|
|
270
472
|
|
|
271
473
|
.e-gantt {
|
|
@@ -420,9 +622,11 @@
|
|
|
420
622
|
position: absolute;
|
|
421
623
|
}
|
|
422
624
|
.e-gantt .e-gantt-chart .e-chart-root-container .e-holiday-container {
|
|
625
|
+
height: 100%;
|
|
423
626
|
position: absolute;
|
|
424
627
|
}
|
|
425
628
|
.e-gantt .e-gantt-chart .e-chart-root-container .e-weekend-container {
|
|
629
|
+
height: 100%;
|
|
426
630
|
position: absolute;
|
|
427
631
|
}
|
|
428
632
|
.e-gantt .e-gantt-chart .e-timeline-header-container {
|
|
@@ -674,37 +878,35 @@
|
|
|
674
878
|
cursor: col-resize;
|
|
675
879
|
}
|
|
676
880
|
.e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler {
|
|
677
|
-
border-style: solid;
|
|
678
881
|
border-width: 1px;
|
|
679
882
|
box-sizing: content-box;
|
|
680
883
|
cursor: col-resize;
|
|
681
884
|
height: 2px;
|
|
682
885
|
position: absolute;
|
|
683
886
|
top: 7px;
|
|
684
|
-
width: 12px;
|
|
685
887
|
}
|
|
686
888
|
.e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-element {
|
|
687
889
|
border-bottom-style: solid;
|
|
688
|
-
border-bottom-width:
|
|
890
|
+
border-bottom-width: 8px;
|
|
689
891
|
border-left: 7px solid transparent;
|
|
690
892
|
border-right: 7px solid transparent;
|
|
691
893
|
cursor: col-resize;
|
|
692
894
|
height: 0;
|
|
693
|
-
left:
|
|
895
|
+
left: 0;
|
|
694
896
|
position: absolute;
|
|
695
897
|
top: -7px;
|
|
696
898
|
width: 0;
|
|
697
899
|
}
|
|
698
900
|
.e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-after {
|
|
699
901
|
border-bottom-style: solid;
|
|
700
|
-
border-bottom-width:
|
|
902
|
+
border-bottom-width: 8px;
|
|
701
903
|
border-left: 6px solid transparent;
|
|
702
904
|
border-right: 6px solid transparent;
|
|
703
905
|
cursor: col-resize;
|
|
704
906
|
height: 0;
|
|
705
|
-
left:
|
|
907
|
+
left: 1px;
|
|
706
908
|
position: absolute;
|
|
707
|
-
top: -
|
|
909
|
+
top: -7px;
|
|
708
910
|
width: 0;
|
|
709
911
|
}
|
|
710
912
|
.e-gantt .e-gantt-chart .e-baseline-bar {
|
|
@@ -839,6 +1041,9 @@
|
|
|
839
1041
|
.e-gantt .e-gantt-chart .e-connector-line-hover {
|
|
840
1042
|
outline: 1px solid;
|
|
841
1043
|
}
|
|
1044
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-hover {
|
|
1045
|
+
outline: 1px solid;
|
|
1046
|
+
}
|
|
842
1047
|
.e-gantt .e-gantt-chart .e-connector-line-hover-z-index {
|
|
843
1048
|
z-index: 100;
|
|
844
1049
|
}
|
|
@@ -1132,6 +1337,10 @@
|
|
|
1132
1337
|
height: 100%;
|
|
1133
1338
|
}
|
|
1134
1339
|
|
|
1340
|
+
.e-predecessor-tooltip {
|
|
1341
|
+
visibility: hidden;
|
|
1342
|
+
}
|
|
1343
|
+
|
|
1135
1344
|
/*! Gantt theme */
|
|
1136
1345
|
.e-gantt .e-gantt-splitter {
|
|
1137
1346
|
border-color: #4b5563;
|
|
@@ -1274,6 +1483,10 @@
|
|
|
1274
1483
|
background-color: #22c55e;
|
|
1275
1484
|
border: 0px;
|
|
1276
1485
|
}
|
|
1486
|
+
.e-gantt .e-gantt-chart .e-gantt-critical-child-manualprogressbar {
|
|
1487
|
+
background-color: #22c55e;
|
|
1488
|
+
border: 0px;
|
|
1489
|
+
}
|
|
1277
1490
|
.e-gantt .e-gantt-chart .e-holiday {
|
|
1278
1491
|
background: #232e3e;
|
|
1279
1492
|
}
|
|
@@ -1305,7 +1518,6 @@
|
|
|
1305
1518
|
}
|
|
1306
1519
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar {
|
|
1307
1520
|
background: linear-gradient(to right, #0891b2, #22d3ee 30%, #22d3ee 70%, #22d3ee 70%, #0891b2 100%);
|
|
1308
|
-
background-color: rgba(63, 81, 181, 0.2);
|
|
1309
1521
|
border: 0px;
|
|
1310
1522
|
border-radius: 2px;
|
|
1311
1523
|
}
|
|
@@ -1349,7 +1561,7 @@
|
|
|
1349
1561
|
}
|
|
1350
1562
|
.e-gantt .e-gantt-chart .e-connectorpoint-left-hover,
|
|
1351
1563
|
.e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
|
|
1352
|
-
background-color: #
|
|
1564
|
+
background-color: #10b4cd;
|
|
1353
1565
|
border-color: #1f2937;
|
|
1354
1566
|
}
|
|
1355
1567
|
.e-gantt .e-gantt-chart .e-connectorpoint-left-hover:hover,
|
|
@@ -1409,7 +1621,7 @@
|
|
|
1409
1621
|
font-size: 12px;
|
|
1410
1622
|
}
|
|
1411
1623
|
.e-gantt .e-gantt-chart .e-icon {
|
|
1412
|
-
color: #
|
|
1624
|
+
color: #000;
|
|
1413
1625
|
}
|
|
1414
1626
|
.e-gantt .e-gantt-chart .e-milestone-top {
|
|
1415
1627
|
border-bottom-color: #9ca3af;
|
|
@@ -1457,13 +1669,13 @@
|
|
|
1457
1669
|
border-bottom-color: #4b5563;
|
|
1458
1670
|
}
|
|
1459
1671
|
.e-gantt .e-gantt-chart .e-downtail::after {
|
|
1460
|
-
border-top-color: #
|
|
1672
|
+
border-top-color: #000;
|
|
1461
1673
|
}
|
|
1462
1674
|
.e-gantt .e-gantt-chart .e-downtail::before {
|
|
1463
1675
|
border-top-color: #4b5563;
|
|
1464
1676
|
}
|
|
1465
1677
|
.e-gantt .e-gantt-chart .e-ganttpopup .e-content {
|
|
1466
|
-
background-color: #
|
|
1678
|
+
background-color: #000;
|
|
1467
1679
|
border-color: #4b5563;
|
|
1468
1680
|
}
|
|
1469
1681
|
.e-gantt .e-gantt-chart .e-spanclicked,
|
|
@@ -1606,4 +1818,56 @@
|
|
|
1606
1818
|
}
|
|
1607
1819
|
.e-gantt.e-device .e-backarrowspan {
|
|
1608
1820
|
color: #000;
|
|
1821
|
+
}
|
|
1822
|
+
|
|
1823
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line {
|
|
1824
|
+
border-color: #f87171;
|
|
1825
|
+
}
|
|
1826
|
+
|
|
1827
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line-right-arrow {
|
|
1828
|
+
border-left-color: #f87171;
|
|
1829
|
+
}
|
|
1830
|
+
|
|
1831
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line-left-arrow {
|
|
1832
|
+
border-right-color: #f87171;
|
|
1833
|
+
}
|
|
1834
|
+
|
|
1835
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-hover {
|
|
1836
|
+
border-color: #fee2e2;
|
|
1837
|
+
outline-color: #fee2e2;
|
|
1838
|
+
}
|
|
1839
|
+
|
|
1840
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-right-arrow-hover {
|
|
1841
|
+
border-left-color: #fee2e2;
|
|
1842
|
+
}
|
|
1843
|
+
|
|
1844
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-left-arrow-hover {
|
|
1845
|
+
border-right-color: #fee2e2;
|
|
1846
|
+
}
|
|
1847
|
+
|
|
1848
|
+
.e-gantt .e-gantt-chart .e-gantt-child-critical-taskbar-inner-div {
|
|
1849
|
+
background-color: #fee2e2;
|
|
1850
|
+
border: 1px solid #fee2e2;
|
|
1851
|
+
border-radius: 4px;
|
|
1852
|
+
}
|
|
1853
|
+
|
|
1854
|
+
.e-gantt .e-gantt-chart .e-gantt-child-critical-progressbar-inner-div {
|
|
1855
|
+
background-color: #f87171;
|
|
1856
|
+
border: 0px;
|
|
1857
|
+
border-radius: 4px;
|
|
1858
|
+
}
|
|
1859
|
+
|
|
1860
|
+
.e-gantt .e-gantt-chart .e-gantt-critical-unscheduled-taskbar {
|
|
1861
|
+
background: linear-gradient(to right, rgba(255, 85, 85, 0.2), #f87171 30%, #f87171 70%, #f87171 70%, rgba(255, 85, 85, 0.2) 100%);
|
|
1862
|
+
background-color: rgba(255, 85, 85, 0.2);
|
|
1863
|
+
border: 0px;
|
|
1864
|
+
border-radius: 2px;
|
|
1865
|
+
}
|
|
1866
|
+
|
|
1867
|
+
.e-gantt .e-gantt-chart .e-critical-milestone-top {
|
|
1868
|
+
border-bottom-color: #f87171;
|
|
1869
|
+
}
|
|
1870
|
+
|
|
1871
|
+
.e-gantt .e-gantt-chart .e-critical-milestone-bottom {
|
|
1872
|
+
border-top-color: #f87171;
|
|
1609
1873
|
}
|