@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
|
@@ -181,6 +181,9 @@
|
|
|
181
181
|
.e-gantt .e-add::before {
|
|
182
182
|
content: "\e805";
|
|
183
183
|
}
|
|
184
|
+
.e-gantt .e-critical-path::before {
|
|
185
|
+
content: "\e88c";
|
|
186
|
+
}
|
|
184
187
|
.e-gantt .e-edit::before {
|
|
185
188
|
content: "\e730";
|
|
186
189
|
}
|
|
@@ -261,26 +264,219 @@
|
|
|
261
264
|
content: "\e770";
|
|
262
265
|
}
|
|
263
266
|
|
|
267
|
+
.e-gantt-tooltip-arrow-left::before {
|
|
268
|
+
content: "\e773";
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
.e-gantt-tooltip-arrow-right::before {
|
|
272
|
+
content: "\e7f9";
|
|
273
|
+
}
|
|
274
|
+
|
|
264
275
|
.e-bigger .e-gantt .e-gantt-chart .e-timeline-header-container {
|
|
265
276
|
height: 64px;
|
|
266
277
|
}
|
|
267
278
|
.e-bigger .e-gantt .e-gantt-chart .e-timeline-top-header-cell {
|
|
268
279
|
height: 32px;
|
|
269
280
|
}
|
|
281
|
+
.e-bigger .e-gantt .e-gantt-chart .e-event-markers .e-span-label {
|
|
282
|
+
border-radius: 4px !important;
|
|
283
|
+
font-size: 12px !important;
|
|
284
|
+
height: 26px !important;
|
|
285
|
+
padding: 4px 8px 4px 8px !important;
|
|
286
|
+
top: 35px !important;
|
|
287
|
+
}
|
|
288
|
+
.e-bigger .e-gantt .e-gantt-chart .e-event-markers .e-gantt-right-arrow {
|
|
289
|
+
border-bottom: 6px solid transparent;
|
|
290
|
+
border-right: 6px solid transparent;
|
|
291
|
+
border-right-color: #fff4ce;
|
|
292
|
+
border-top: 6px solid transparent;
|
|
293
|
+
top: 43px !important;
|
|
294
|
+
}
|
|
295
|
+
.e-bigger .e-gantt .e-gantt-chart .e-left-resize-gripper::before,
|
|
296
|
+
.e-bigger .e-gantt .e-gantt-chart .e-right-resize-gripper::before {
|
|
297
|
+
content: "\e888";
|
|
298
|
+
}
|
|
299
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right,
|
|
300
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left,
|
|
301
|
+
.e-bigger .e-gantt .e-gantt-chart .e-right-connectorpoint-outer-div,
|
|
302
|
+
.e-bigger .e-gantt .e-gantt-chart .e-left-connectorpoint-outer-div {
|
|
303
|
+
border-radius: 50%;
|
|
304
|
+
display: inline-block;
|
|
305
|
+
position: absolute;
|
|
306
|
+
}
|
|
307
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover,
|
|
308
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
|
|
309
|
+
border-style: solid;
|
|
310
|
+
border-width: 1px;
|
|
311
|
+
box-sizing: content-box;
|
|
312
|
+
cursor: pointer;
|
|
313
|
+
display: inline-block;
|
|
314
|
+
}
|
|
315
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover,
|
|
316
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
|
|
317
|
+
background-color: #005ba1;
|
|
318
|
+
border-color: #1b1a19;
|
|
319
|
+
}
|
|
320
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover:hover,
|
|
321
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover:hover {
|
|
322
|
+
background-color: #005ba1;
|
|
323
|
+
border-color: #1b1a19;
|
|
324
|
+
outline: 2px solid #c7e0f4;
|
|
325
|
+
}
|
|
326
|
+
.e-bigger .e-gantt .e-tab .e-content {
|
|
327
|
+
height: 254px !important;
|
|
328
|
+
}
|
|
270
329
|
.e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
|
|
271
330
|
height: 63px !important;
|
|
272
331
|
}
|
|
332
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header-content {
|
|
333
|
+
padding: 16px 4px 16px 28px !important;
|
|
334
|
+
}
|
|
335
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
336
|
+
left: 8px !important;
|
|
337
|
+
}
|
|
338
|
+
.e-bigger .e-gantt .e-dialog .e-btn .e-btn-icon.e-icon-dlg-close {
|
|
339
|
+
font-size: 14px !important;
|
|
340
|
+
}
|
|
341
|
+
.e-bigger .e-gantt .e-dialog .e-footer-content {
|
|
342
|
+
height: 96px !important;
|
|
343
|
+
padding: 28px 28px 28px 28px !important;
|
|
344
|
+
}
|
|
345
|
+
.e-bigger .e-gantt .e-dialog .e-footer-content .e-btn {
|
|
346
|
+
margin-left: 12px;
|
|
347
|
+
}
|
|
348
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header {
|
|
349
|
+
line-height: 28px;
|
|
350
|
+
}
|
|
351
|
+
.e-bigger .e-gantt .e-filter-popup {
|
|
352
|
+
width: 392px !important;
|
|
353
|
+
}
|
|
354
|
+
.e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
|
|
355
|
+
padding: 28px 0 0 !important;
|
|
356
|
+
}
|
|
357
|
+
.e-bigger .e-gantt .e-filter-popup .e-dlg-content {
|
|
358
|
+
border-radius: 2px !important;
|
|
359
|
+
padding: 28px 28px 0px 28px !important;
|
|
360
|
+
}
|
|
273
361
|
.e-bigger .e-columnmenu {
|
|
274
362
|
top: 38px;
|
|
275
363
|
}
|
|
364
|
+
.e-bigger .e-gantt-dialog {
|
|
365
|
+
border-radius: 6px;
|
|
366
|
+
width: 580px !important;
|
|
367
|
+
}
|
|
368
|
+
.e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
369
|
+
padding: 0 16px !important;
|
|
370
|
+
}
|
|
276
371
|
.e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(odd) {
|
|
277
|
-
padding: 16px
|
|
372
|
+
padding: 16px 8px 0 28px;
|
|
278
373
|
}
|
|
279
374
|
.e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(even) {
|
|
280
|
-
padding: 16px
|
|
375
|
+
padding: 16px 28px 0 8px;
|
|
281
376
|
}
|
|
282
377
|
.e-bigger .e-gantt-dialog .e-edit-form-row.e-scroll .e-edit-form-column:nth-child(even) {
|
|
283
|
-
padding: 16px 18px 0
|
|
378
|
+
padding: 16px 18px 0 9px;
|
|
379
|
+
}
|
|
380
|
+
.e-bigger .e-gantt-dialog .e-edit-form-row {
|
|
381
|
+
height: 254px !important;
|
|
382
|
+
}
|
|
383
|
+
.e-bigger .e-gantt-dialog .e-edit-form-column {
|
|
384
|
+
height: 84px !important;
|
|
385
|
+
}
|
|
386
|
+
.e-bigger .e-gantt-dialog .e-dlg-header-content {
|
|
387
|
+
border-bottom: 0 !important;
|
|
388
|
+
}
|
|
389
|
+
.e-bigger .e-gantt-dialog > .e-dlg-content {
|
|
390
|
+
border-radius: 0 !important;
|
|
391
|
+
}
|
|
392
|
+
.e-bigger .e-gantt-dialog .e-dlg-header-content {
|
|
393
|
+
border-radius: 6px 6px 0px 0px;
|
|
394
|
+
padding-bottom: 20px;
|
|
395
|
+
}
|
|
396
|
+
.e-bigger .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
397
|
+
border-radius: 50%;
|
|
398
|
+
height: auto !important;
|
|
399
|
+
width: auto;
|
|
400
|
+
}
|
|
401
|
+
.e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
402
|
+
margin-left: 16px !important;
|
|
403
|
+
}
|
|
404
|
+
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
405
|
+
font-size: 16px !important;
|
|
406
|
+
}
|
|
407
|
+
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
408
|
+
min-height: 35px !important;
|
|
409
|
+
min-width: 35.82px !important;
|
|
410
|
+
}
|
|
411
|
+
.e-bigger .e-gantt-dialog .e-btn.e-flat {
|
|
412
|
+
line-height: 24px;
|
|
413
|
+
padding: 6px 16px 6px 15px !important;
|
|
414
|
+
}
|
|
415
|
+
.e-bigger .e-gantt-dialog .e-btn.e-primary {
|
|
416
|
+
padding: 6px 21px 6px 23px !important;
|
|
417
|
+
}
|
|
418
|
+
.e-bigger .e-gantt-dialog .e-datetime-wrapper .e-time-icon.e-icons::before {
|
|
419
|
+
font-size: 16px !important;
|
|
420
|
+
}
|
|
421
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text {
|
|
422
|
+
font-size: 14px;
|
|
423
|
+
line-height: 22px;
|
|
424
|
+
}
|
|
425
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input[disabled] ~ label.e-label-top.e-float-text {
|
|
426
|
+
font-size: 14px;
|
|
427
|
+
line-height: 22px;
|
|
428
|
+
}
|
|
429
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input {
|
|
430
|
+
height: 38px !important;
|
|
431
|
+
}
|
|
432
|
+
.e-bigger .e-gantt-dialog .e-numeric.e-control-wrapper.e-input-group .e-input-group-icon {
|
|
433
|
+
min-height: 35px !important;
|
|
434
|
+
min-width: 35.82px !important;
|
|
435
|
+
}
|
|
436
|
+
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-time-icon {
|
|
437
|
+
min-height: 35px !important;
|
|
438
|
+
min-width: 35.82px !important;
|
|
439
|
+
}
|
|
440
|
+
.e-bigger .e-gantt-dialog .e-input-group.e-control-wrapper {
|
|
441
|
+
height: 40px;
|
|
442
|
+
}
|
|
443
|
+
.e-bigger .e-gantt-dialog .e-input-group-icon.e-date-icon {
|
|
444
|
+
min-width: 36px !important;
|
|
445
|
+
}
|
|
446
|
+
.e-bigger .e-predecessor-tooltip {
|
|
447
|
+
background-color: #000;
|
|
448
|
+
}
|
|
449
|
+
.e-bigger .e-predecessor-tooltip .e-left-btn:disabled {
|
|
450
|
+
color: #484644 !important;
|
|
451
|
+
}
|
|
452
|
+
.e-bigger .e-predecessor-tooltip .e-right-btn:disabled {
|
|
453
|
+
color: #484644 !important;
|
|
454
|
+
}
|
|
455
|
+
.e-bigger .e-predecessor-tooltip .e-tip-content {
|
|
456
|
+
padding: 3px !important;
|
|
457
|
+
}
|
|
458
|
+
.e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type {
|
|
459
|
+
background-color: #000;
|
|
460
|
+
border-color: #000;
|
|
461
|
+
color: #fff;
|
|
462
|
+
font-size: 12px;
|
|
463
|
+
line-height: 18px;
|
|
464
|
+
padding: 0 8px 0 0;
|
|
465
|
+
}
|
|
466
|
+
.e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:last-of-type {
|
|
467
|
+
background-color: #000;
|
|
468
|
+
border-color: #000;
|
|
469
|
+
color: #fff;
|
|
470
|
+
font-size: 12px;
|
|
471
|
+
line-height: 18px;
|
|
472
|
+
padding: 0 0 0 8px;
|
|
473
|
+
}
|
|
474
|
+
.e-bigger .e-predecessor-dialog {
|
|
475
|
+
background-color: #201f1e;
|
|
476
|
+
}
|
|
477
|
+
.e-bigger .e-predecessor-dialog .e-dlg-content {
|
|
478
|
+
background-color: #201f1e;
|
|
479
|
+
padding: 10px 9px 9px 14px !important;
|
|
284
480
|
}
|
|
285
481
|
|
|
286
482
|
.e-gantt {
|
|
@@ -435,9 +631,11 @@
|
|
|
435
631
|
position: absolute;
|
|
436
632
|
}
|
|
437
633
|
.e-gantt .e-gantt-chart .e-chart-root-container .e-holiday-container {
|
|
634
|
+
height: 100%;
|
|
438
635
|
position: absolute;
|
|
439
636
|
}
|
|
440
637
|
.e-gantt .e-gantt-chart .e-chart-root-container .e-weekend-container {
|
|
638
|
+
height: 100%;
|
|
441
639
|
position: absolute;
|
|
442
640
|
}
|
|
443
641
|
.e-gantt .e-gantt-chart .e-timeline-header-container {
|
|
@@ -686,37 +884,35 @@
|
|
|
686
884
|
cursor: col-resize;
|
|
687
885
|
}
|
|
688
886
|
.e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler {
|
|
689
|
-
border-style: solid;
|
|
690
887
|
border-width: 1px;
|
|
691
888
|
box-sizing: content-box;
|
|
692
889
|
cursor: col-resize;
|
|
693
890
|
height: 2px;
|
|
694
891
|
position: absolute;
|
|
695
892
|
top: 7px;
|
|
696
|
-
width: 12px;
|
|
697
893
|
}
|
|
698
894
|
.e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-element {
|
|
699
895
|
border-bottom-style: solid;
|
|
700
|
-
border-bottom-width:
|
|
896
|
+
border-bottom-width: 8px;
|
|
701
897
|
border-left: 7px solid transparent;
|
|
702
898
|
border-right: 7px solid transparent;
|
|
703
899
|
cursor: col-resize;
|
|
704
900
|
height: 0;
|
|
705
|
-
left:
|
|
901
|
+
left: 0;
|
|
706
902
|
position: absolute;
|
|
707
903
|
top: -7px;
|
|
708
904
|
width: 0;
|
|
709
905
|
}
|
|
710
906
|
.e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-after {
|
|
711
907
|
border-bottom-style: solid;
|
|
712
|
-
border-bottom-width:
|
|
908
|
+
border-bottom-width: 8px;
|
|
713
909
|
border-left: 6px solid transparent;
|
|
714
910
|
border-right: 6px solid transparent;
|
|
715
911
|
cursor: col-resize;
|
|
716
912
|
height: 0;
|
|
717
|
-
left:
|
|
913
|
+
left: 1px;
|
|
718
914
|
position: absolute;
|
|
719
|
-
top: -
|
|
915
|
+
top: -7px;
|
|
720
916
|
width: 0;
|
|
721
917
|
}
|
|
722
918
|
.e-gantt .e-gantt-chart .e-baseline-bar {
|
|
@@ -851,6 +1047,9 @@
|
|
|
851
1047
|
.e-gantt .e-gantt-chart .e-connector-line-hover {
|
|
852
1048
|
outline: 1px solid;
|
|
853
1049
|
}
|
|
1050
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-hover {
|
|
1051
|
+
outline: 1px solid;
|
|
1052
|
+
}
|
|
854
1053
|
.e-gantt .e-gantt-chart .e-connector-line-hover-z-index {
|
|
855
1054
|
z-index: 100;
|
|
856
1055
|
}
|
|
@@ -1143,6 +1342,10 @@
|
|
|
1143
1342
|
height: 100%;
|
|
1144
1343
|
}
|
|
1145
1344
|
|
|
1345
|
+
.e-predecessor-tooltip {
|
|
1346
|
+
visibility: hidden;
|
|
1347
|
+
}
|
|
1348
|
+
|
|
1146
1349
|
/*! Gantt theme */
|
|
1147
1350
|
.e-gantt .e-gantt-splitter {
|
|
1148
1351
|
border-color: #292827;
|
|
@@ -1238,7 +1441,7 @@
|
|
|
1238
1441
|
outline-color: #a19f9d;
|
|
1239
1442
|
}
|
|
1240
1443
|
.e-gantt .e-gantt-chart .e-gantt-child-taskbar-inner-div {
|
|
1241
|
-
background-color: #
|
|
1444
|
+
background-color: #6ec0ff;
|
|
1242
1445
|
border: 1px solid #0078d4;
|
|
1243
1446
|
border-radius: 4px;
|
|
1244
1447
|
}
|
|
@@ -1285,6 +1488,10 @@
|
|
|
1285
1488
|
background-color: #0b6a0b;
|
|
1286
1489
|
border: 0px;
|
|
1287
1490
|
}
|
|
1491
|
+
.e-gantt .e-gantt-chart .e-gantt-critical-child-manualprogressbar {
|
|
1492
|
+
background-color: #0b6a0b;
|
|
1493
|
+
border: 0px;
|
|
1494
|
+
}
|
|
1288
1495
|
.e-gantt .e-gantt-chart .e-holiday {
|
|
1289
1496
|
background: #201f1e;
|
|
1290
1497
|
}
|
|
@@ -1316,7 +1523,6 @@
|
|
|
1316
1523
|
}
|
|
1317
1524
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar {
|
|
1318
1525
|
background: linear-gradient(to right, #005a9e, #0078d4 30%, #0078d4 70%, #0078d4 70%, #005a9e 100%);
|
|
1319
|
-
background-color: rgba(63, 81, 181, 0.2);
|
|
1320
1526
|
border: 0px;
|
|
1321
1527
|
border-radius: 4px;
|
|
1322
1528
|
}
|
|
@@ -1360,7 +1566,7 @@
|
|
|
1360
1566
|
}
|
|
1361
1567
|
.e-gantt .e-gantt-chart .e-connectorpoint-left-hover,
|
|
1362
1568
|
.e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
|
|
1363
|
-
background-color: #
|
|
1569
|
+
background-color: #005ba1;
|
|
1364
1570
|
border-color: #1b1a19;
|
|
1365
1571
|
}
|
|
1366
1572
|
.e-gantt .e-gantt-chart .e-connectorpoint-left-hover:hover,
|
|
@@ -1563,7 +1769,7 @@
|
|
|
1563
1769
|
color: #a19f9d;
|
|
1564
1770
|
}
|
|
1565
1771
|
.e-gantt .e-grid .e-icons:not(.e-stop):not(.e-check):not(.e-icon-left):not(.e-date-icon) {
|
|
1566
|
-
color:
|
|
1772
|
+
color: #a19f9d !important;
|
|
1567
1773
|
}
|
|
1568
1774
|
|
|
1569
1775
|
.e-gantt-dialog .e-dlg-header {
|
|
@@ -1617,4 +1823,56 @@
|
|
|
1617
1823
|
}
|
|
1618
1824
|
.e-gantt.e-device .e-backarrowspan {
|
|
1619
1825
|
color: #000;
|
|
1826
|
+
}
|
|
1827
|
+
|
|
1828
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line {
|
|
1829
|
+
border-color: #d13438;
|
|
1830
|
+
}
|
|
1831
|
+
|
|
1832
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line-right-arrow {
|
|
1833
|
+
border-left-color: #d13438;
|
|
1834
|
+
}
|
|
1835
|
+
|
|
1836
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line-left-arrow {
|
|
1837
|
+
border-right-color: #d13438;
|
|
1838
|
+
}
|
|
1839
|
+
|
|
1840
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-hover {
|
|
1841
|
+
border-color: #fed9cc;
|
|
1842
|
+
outline-color: #fed9cc;
|
|
1843
|
+
}
|
|
1844
|
+
|
|
1845
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-right-arrow-hover {
|
|
1846
|
+
border-left-color: #fed9cc;
|
|
1847
|
+
}
|
|
1848
|
+
|
|
1849
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-left-arrow-hover {
|
|
1850
|
+
border-right-color: #fed9cc;
|
|
1851
|
+
}
|
|
1852
|
+
|
|
1853
|
+
.e-gantt .e-gantt-chart .e-gantt-child-critical-taskbar-inner-div {
|
|
1854
|
+
background-color: #fed9cc;
|
|
1855
|
+
border: 1px solid #fed9cc;
|
|
1856
|
+
border-radius: 4px;
|
|
1857
|
+
}
|
|
1858
|
+
|
|
1859
|
+
.e-gantt .e-gantt-chart .e-gantt-child-critical-progressbar-inner-div {
|
|
1860
|
+
background-color: #d13438;
|
|
1861
|
+
border: 0px;
|
|
1862
|
+
border-radius: 2px;
|
|
1863
|
+
}
|
|
1864
|
+
|
|
1865
|
+
.e-gantt .e-gantt-chart .e-gantt-critical-unscheduled-taskbar {
|
|
1866
|
+
background: linear-gradient(to right, rgba(255, 85, 85, 0.2), #d13438 30%, #d13438 70%, #d13438 70%, rgba(255, 85, 85, 0.2) 100%);
|
|
1867
|
+
background-color: rgba(255, 85, 85, 0.2);
|
|
1868
|
+
border: 0px;
|
|
1869
|
+
border-radius: 4px;
|
|
1870
|
+
}
|
|
1871
|
+
|
|
1872
|
+
.e-gantt .e-gantt-chart .e-critical-milestone-top {
|
|
1873
|
+
border-bottom-color: #d13438;
|
|
1874
|
+
}
|
|
1875
|
+
|
|
1876
|
+
.e-gantt .e-gantt-chart .e-critical-milestone-bottom {
|
|
1877
|
+
border-top-color: #d13438;
|
|
1620
1878
|
}
|