@syncfusion/ej2-angular-gantt 20.1.59 → 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/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 +68 -0
- package/esm2020/src/gantt/gantt.component.mjs +248 -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 +724 -0
- package/fesm2015/syncfusion-ej2-angular-gantt.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-gantt.mjs +724 -0
- package/fesm2020/syncfusion-ej2-angular-gantt.mjs.map +1 -0
- package/package.json +29 -15
- package/schematics/utils/lib-details.ts +2 -2
- package/src/gantt/adddialogfields.directive.d.ts +5 -0
- package/src/gantt/columns.directive.d.ts +5 -0
- package/src/gantt/dayworkingtime.directive.d.ts +5 -0
- package/src/gantt/editdialogfields.directive.d.ts +5 -0
- package/src/gantt/eventmarkers.directive.d.ts +5 -0
- package/src/gantt/gantt-all.module.d.ts +6 -0
- package/src/gantt/gantt.component.d.ts +3 -0
- package/src/gantt/gantt.module.d.ts +12 -0
- package/src/gantt/holidays.directive.d.ts +5 -0
- package/styles/bootstrap-dark.css +154 -91
- package/styles/bootstrap.css +151 -88
- package/styles/bootstrap4.css +152 -89
- package/styles/bootstrap5-dark.css +156 -93
- package/styles/bootstrap5.css +156 -93
- package/styles/fabric-dark.css +153 -90
- package/styles/fabric.css +158 -95
- package/styles/fluent-dark.css +156 -93
- package/styles/fluent.css +156 -93
- 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 +213 -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 +213 -0
- package/styles/gantt/_fusionnew-definition.scss +212 -0
- package/styles/gantt/_highcontrast-definition.scss +208 -0
- package/styles/gantt/_highcontrast-light-definition.scss +208 -0
- package/styles/gantt/_layout.scss +1378 -0
- package/styles/gantt/_material-dark-definition.scss +209 -0
- package/styles/gantt/_material-definition.scss +209 -0
- package/styles/gantt/_material3-definition.scss +213 -0
- package/styles/gantt/_tailwind-dark-definition.scss +1 -0
- package/styles/gantt/_tailwind-definition.scss +213 -0
- package/styles/gantt/_theme.scss +720 -0
- package/styles/gantt/bootstrap-dark.css +154 -91
- package/styles/gantt/bootstrap-dark.scss +22 -1
- package/styles/gantt/bootstrap.css +151 -88
- package/styles/gantt/bootstrap.scss +22 -1
- package/styles/gantt/bootstrap4.css +152 -89
- package/styles/gantt/bootstrap4.scss +22 -1
- package/styles/gantt/bootstrap5-dark.css +156 -93
- package/styles/gantt/bootstrap5-dark.scss +22 -1
- package/styles/gantt/bootstrap5.css +156 -93
- package/styles/gantt/bootstrap5.scss +22 -1
- package/styles/gantt/fabric-dark.css +153 -90
- package/styles/gantt/fabric-dark.scss +22 -1
- package/styles/gantt/fabric.css +158 -95
- package/styles/gantt/fabric.scss +22 -1
- package/styles/gantt/fluent-dark.css +156 -93
- package/styles/gantt/fluent-dark.scss +22 -1
- package/styles/gantt/fluent.css +156 -93
- package/styles/gantt/fluent.scss +22 -1
- package/styles/gantt/highcontrast-light.css +150 -90
- package/styles/gantt/highcontrast-light.scss +21 -1
- package/styles/gantt/highcontrast.css +153 -90
- 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 +157 -94
- package/styles/gantt/material-dark.scss +22 -1
- package/styles/gantt/material.css +159 -96
- package/styles/gantt/material.scss +22 -1
- package/styles/gantt/tailwind-dark.css +164 -101
- package/styles/gantt/tailwind-dark.scss +22 -1
- package/styles/gantt/tailwind.css +160 -97
- package/styles/gantt/tailwind.scss +22 -1
- package/styles/highcontrast-light.css +150 -90
- package/styles/highcontrast.css +153 -90
- package/styles/material-dark.css +157 -94
- package/styles/material.css +159 -96
- package/styles/tailwind-dark.css +164 -101
- package/styles/tailwind.css +160 -97
- package/{ej2-angular-gantt.d.ts → syncfusion-ej2-angular-gantt.d.ts} +1 -1
- package/@syncfusion/ej2-angular-gantt.es5.js +0 -803
- package/@syncfusion/ej2-angular-gantt.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-gantt.js +0 -755
- package/@syncfusion/ej2-angular-gantt.js.map +0 -1
- package/CHANGELOG.md +0 -1243
- package/dist/ej2-angular-gantt.umd.js +0 -897
- 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 -124
- 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 -124
- 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 -124
- 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 -124
- 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
|
@@ -202,6 +202,9 @@
|
|
|
202
202
|
.e-gantt .e-add::before {
|
|
203
203
|
content: "\e805";
|
|
204
204
|
}
|
|
205
|
+
.e-gantt .e-critical-path::before {
|
|
206
|
+
content: "\e88c";
|
|
207
|
+
}
|
|
205
208
|
.e-gantt .e-edit::before {
|
|
206
209
|
content: "\e730";
|
|
207
210
|
}
|
|
@@ -296,11 +299,13 @@
|
|
|
296
299
|
.e-bigger .e-gantt .e-gantt-chart .e-timeline-top-header-cell {
|
|
297
300
|
height: 32px;
|
|
298
301
|
}
|
|
299
|
-
.e-bigger .e-gantt .e-gantt-chart .e-taskbar-left-resizer
|
|
302
|
+
.e-bigger .e-gantt .e-gantt-chart .e-taskbar-left-resizer {
|
|
303
|
+
padding-right: 10px;
|
|
304
|
+
width: 25px;
|
|
305
|
+
}
|
|
300
306
|
.e-bigger .e-gantt .e-gantt-chart .e-taskbar-right-resizer {
|
|
301
307
|
padding-left: 10px;
|
|
302
|
-
|
|
303
|
-
width: 30px;
|
|
308
|
+
width: 25px;
|
|
304
309
|
}
|
|
305
310
|
.e-bigger .e-gantt .e-gantt-chart .e-event-markers .e-span-label {
|
|
306
311
|
border-radius: 4px !important;
|
|
@@ -338,42 +343,49 @@
|
|
|
338
343
|
}
|
|
339
344
|
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover,
|
|
340
345
|
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
|
|
341
|
-
background-color: #
|
|
346
|
+
background-color: #0257d5;
|
|
342
347
|
border-color: #fff;
|
|
343
348
|
}
|
|
344
349
|
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover:hover,
|
|
345
350
|
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover:hover {
|
|
346
|
-
background-color: #
|
|
351
|
+
background-color: #0257d5;
|
|
347
352
|
border-color: #fff;
|
|
348
|
-
outline: 2px solid #
|
|
353
|
+
outline: 2px solid #0d6efd;
|
|
354
|
+
}
|
|
355
|
+
.e-bigger .e-gantt .e-tab .e-content {
|
|
356
|
+
height: 250px !important;
|
|
349
357
|
}
|
|
350
358
|
.e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
|
|
351
359
|
height: 63px !important;
|
|
352
360
|
}
|
|
353
|
-
.e-bigger .e-
|
|
354
|
-
|
|
355
|
-
border-color: #000000;
|
|
356
|
-
color: #F9FAFB;
|
|
357
|
-
font-size: 12px;
|
|
358
|
-
line-height: 18px;
|
|
359
|
-
padding: 0 8px 0 0;
|
|
361
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header-content {
|
|
362
|
+
padding: 16px 4px 16px 16px !important;
|
|
360
363
|
}
|
|
361
|
-
.e-bigger .e-
|
|
362
|
-
|
|
363
|
-
border-color: #000000;
|
|
364
|
-
color: #F9FAFB;
|
|
365
|
-
font-size: 12px;
|
|
366
|
-
line-height: 18px;
|
|
367
|
-
padding: 0 0 0 8px;
|
|
364
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
365
|
+
left: 2px !important;
|
|
368
366
|
}
|
|
369
|
-
.e-bigger .e-
|
|
370
|
-
|
|
367
|
+
.e-bigger .e-gantt .e-dialog .e-btn .e-btn-icon.e-icon-dlg-close {
|
|
368
|
+
font-size: 14px !important;
|
|
371
369
|
}
|
|
372
|
-
.e-bigger .e-
|
|
370
|
+
.e-bigger .e-gantt .e-dialog .e-footer-content {
|
|
371
|
+
height: 70px !important;
|
|
372
|
+
padding: 16px !important;
|
|
373
|
+
}
|
|
374
|
+
.e-bigger .e-gantt .e-dialog .e-footer-content .e-btn {
|
|
375
|
+
margin-left: 12px;
|
|
376
|
+
}
|
|
377
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header {
|
|
378
|
+
line-height: 28px;
|
|
379
|
+
}
|
|
380
|
+
.e-bigger .e-gantt .e-filter-popup {
|
|
381
|
+
width: 350px !important;
|
|
382
|
+
}
|
|
383
|
+
.e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
|
|
373
384
|
padding: 16px 0 0 !important;
|
|
374
385
|
}
|
|
375
|
-
.e-bigger .e-
|
|
376
|
-
|
|
386
|
+
.e-bigger .e-gantt .e-filter-popup .e-dlg-content {
|
|
387
|
+
border-radius: 6px !important;
|
|
388
|
+
padding: 32px 16px 16px !important;
|
|
377
389
|
}
|
|
378
390
|
.e-bigger .e-columnmenu {
|
|
379
391
|
top: 35px;
|
|
@@ -382,6 +394,9 @@
|
|
|
382
394
|
border-radius: 6px;
|
|
383
395
|
width: 556px !important;
|
|
384
396
|
}
|
|
397
|
+
.e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
398
|
+
padding: 0 16px !important;
|
|
399
|
+
}
|
|
385
400
|
.e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(odd) {
|
|
386
401
|
padding: 16px 12px 0 16px;
|
|
387
402
|
}
|
|
@@ -410,100 +425,90 @@
|
|
|
410
425
|
.e-bigger .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
411
426
|
border-radius: 50%;
|
|
412
427
|
height: auto !important;
|
|
413
|
-
width: auto
|
|
428
|
+
width: auto;
|
|
414
429
|
}
|
|
415
430
|
.e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
416
431
|
margin-left: 5px !important;
|
|
417
432
|
}
|
|
418
|
-
.e-bigger .e-
|
|
419
|
-
font-size: 16px !important;
|
|
420
|
-
}
|
|
421
|
-
.e-bigger .e-float-input.e-control-wrapper {
|
|
433
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper {
|
|
422
434
|
width: 250px !important;
|
|
423
435
|
}
|
|
424
|
-
.e-bigger .e-
|
|
425
|
-
|
|
426
|
-
}
|
|
427
|
-
.e-bigger .e-predecessor-dialog {
|
|
428
|
-
background-color: #f8f8fa;
|
|
429
|
-
}
|
|
430
|
-
.e-bigger .e-predecessor-dialog .e-dlg-content {
|
|
431
|
-
background-color: #f8f8fa;
|
|
432
|
-
padding: 10px 9px 9px 14px !important;
|
|
433
|
-
}
|
|
434
|
-
.e-bigger .e-dialog .e-dlg-header-content {
|
|
435
|
-
padding: 16px 4px 16px 16px !important;
|
|
436
|
-
}
|
|
437
|
-
.e-bigger .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
438
|
-
left: 2px !important;
|
|
439
|
-
}
|
|
440
|
-
.e-bigger .e-dialog .e-btn .e-btn-icon.e-icon-dlg-close {
|
|
441
|
-
font-size: 14px !important;
|
|
442
|
-
}
|
|
443
|
-
.e-bigger .e-dialog .e-footer-content {
|
|
444
|
-
height: 70px !important;
|
|
445
|
-
padding: 16px !important;
|
|
446
|
-
}
|
|
447
|
-
.e-bigger .e-dialog .e-footer-content .e-btn {
|
|
448
|
-
margin-left: 12px;
|
|
436
|
+
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
437
|
+
font-size: 16px !important;
|
|
449
438
|
}
|
|
450
|
-
.e-bigger .e-dialog .e-
|
|
451
|
-
|
|
439
|
+
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
440
|
+
min-height: 36px !important;
|
|
441
|
+
min-width: 35.82px !important;
|
|
452
442
|
}
|
|
453
|
-
.e-bigger .e-
|
|
454
|
-
height:
|
|
443
|
+
.e-bigger .e-gantt-dialog .e-btn.e-flat {
|
|
444
|
+
line-height: 24px;
|
|
445
|
+
padding: 6px 16px 6px 15px !important;
|
|
455
446
|
}
|
|
456
|
-
.e-bigger .e-
|
|
457
|
-
|
|
447
|
+
.e-bigger .e-gantt-dialog .e-btn.e-primary {
|
|
448
|
+
padding: 6px 21px 6px 23px !important;
|
|
458
449
|
}
|
|
459
|
-
.e-bigger .e-
|
|
460
|
-
|
|
461
|
-
padding: 32px 16px 16px !important;
|
|
450
|
+
.e-bigger .e-gantt-dialog .e-datetime-wrapper .e-time-icon.e-icons::before {
|
|
451
|
+
font-size: 16px !important;
|
|
462
452
|
}
|
|
463
|
-
.e-bigger .e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text {
|
|
453
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text {
|
|
464
454
|
font-size: 14px;
|
|
465
455
|
line-height: 22px;
|
|
466
456
|
}
|
|
467
|
-
.e-bigger .e-float-input.e-control-wrapper input[disabled] ~ label.e-label-top.e-float-text {
|
|
457
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input[disabled] ~ label.e-label-top.e-float-text {
|
|
468
458
|
font-size: 14px;
|
|
469
459
|
line-height: 22px;
|
|
470
460
|
}
|
|
471
|
-
.e-bigger .e-float-input.e-control-wrapper input {
|
|
461
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input {
|
|
472
462
|
height: 36px !important;
|
|
473
463
|
}
|
|
474
|
-
.e-bigger .e-
|
|
475
|
-
color: #ADB5BD !important;
|
|
476
|
-
}
|
|
477
|
-
.e-bigger .e-right-btn:disabled {
|
|
478
|
-
color: #ADB5BD !important;
|
|
479
|
-
}
|
|
480
|
-
.e-bigger .e-input-group-icon.e-date-icon {
|
|
481
|
-
min-width: 36px !important;
|
|
482
|
-
}
|
|
483
|
-
.e-bigger .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
484
|
-
min-height: 36px !important;
|
|
485
|
-
min-width: 35.82px !important;
|
|
486
|
-
}
|
|
487
|
-
.e-bigger .e-numeric.e-control-wrapper.e-input-group .e-input-group-icon {
|
|
464
|
+
.e-bigger .e-gantt-dialog .e-numeric.e-control-wrapper.e-input-group .e-input-group-icon {
|
|
488
465
|
min-height: 36px !important;
|
|
489
466
|
min-width: 35.82px !important;
|
|
490
467
|
}
|
|
491
|
-
.e-bigger .e-control-wrapper .e-input-group-icon.e-time-icon {
|
|
468
|
+
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-time-icon {
|
|
492
469
|
min-height: 36px !important;
|
|
493
470
|
min-width: 35.82px !important;
|
|
494
471
|
}
|
|
495
|
-
.e-bigger .e-input-group.e-control-wrapper {
|
|
472
|
+
.e-bigger .e-gantt-dialog .e-input-group.e-control-wrapper {
|
|
496
473
|
height: 38px;
|
|
497
474
|
}
|
|
498
|
-
.e-bigger .e-
|
|
499
|
-
|
|
475
|
+
.e-bigger .e-gantt-dialog .e-input-group-icon.e-date-icon {
|
|
476
|
+
min-width: 36px !important;
|
|
500
477
|
}
|
|
501
|
-
.e-bigger .e-
|
|
502
|
-
|
|
503
|
-
padding: 6px 16px 6px 15px !important;
|
|
478
|
+
.e-bigger .e-predecessor-tooltip {
|
|
479
|
+
background-color: #000;
|
|
504
480
|
}
|
|
505
|
-
.e-bigger .e-
|
|
506
|
-
|
|
481
|
+
.e-bigger .e-predecessor-tooltip .e-left-btn:disabled {
|
|
482
|
+
color: #adb5bd !important;
|
|
483
|
+
}
|
|
484
|
+
.e-bigger .e-predecessor-tooltip .e-right-btn:disabled {
|
|
485
|
+
color: #adb5bd !important;
|
|
486
|
+
}
|
|
487
|
+
.e-bigger .e-predecessor-tooltip .e-tip-content {
|
|
488
|
+
padding: 3px !important;
|
|
489
|
+
}
|
|
490
|
+
.e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type {
|
|
491
|
+
background-color: #000;
|
|
492
|
+
border-color: #000;
|
|
493
|
+
color: #fff;
|
|
494
|
+
font-size: 12px;
|
|
495
|
+
line-height: 18px;
|
|
496
|
+
padding: 0 8px 0 0;
|
|
497
|
+
}
|
|
498
|
+
.e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:last-of-type {
|
|
499
|
+
background-color: #000;
|
|
500
|
+
border-color: #000;
|
|
501
|
+
color: #fff;
|
|
502
|
+
font-size: 12px;
|
|
503
|
+
line-height: 18px;
|
|
504
|
+
padding: 0 0 0 8px;
|
|
505
|
+
}
|
|
506
|
+
.e-bigger .e-predecessor-dialog {
|
|
507
|
+
background-color: #fff;
|
|
508
|
+
}
|
|
509
|
+
.e-bigger .e-predecessor-dialog .e-dlg-content {
|
|
510
|
+
background-color: #fff;
|
|
511
|
+
padding: 10px 9px 9px 14px !important;
|
|
507
512
|
}
|
|
508
513
|
|
|
509
514
|
.e-gantt {
|
|
@@ -1074,6 +1079,9 @@
|
|
|
1074
1079
|
.e-gantt .e-gantt-chart .e-connector-line-hover {
|
|
1075
1080
|
outline: 1px solid;
|
|
1076
1081
|
}
|
|
1082
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-hover {
|
|
1083
|
+
outline: 1px solid;
|
|
1084
|
+
}
|
|
1077
1085
|
.e-gantt .e-gantt-chart .e-connector-line-hover-z-index {
|
|
1078
1086
|
z-index: 100;
|
|
1079
1087
|
}
|
|
@@ -1512,6 +1520,10 @@
|
|
|
1512
1520
|
background-color: #198754;
|
|
1513
1521
|
border: 0px;
|
|
1514
1522
|
}
|
|
1523
|
+
.e-gantt .e-gantt-chart .e-gantt-critical-child-manualprogressbar {
|
|
1524
|
+
background-color: #198754;
|
|
1525
|
+
border: 0px;
|
|
1526
|
+
}
|
|
1515
1527
|
.e-gantt .e-gantt-chart .e-holiday {
|
|
1516
1528
|
background: #f8f9fa;
|
|
1517
1529
|
}
|
|
@@ -1543,7 +1555,6 @@
|
|
|
1543
1555
|
}
|
|
1544
1556
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar {
|
|
1545
1557
|
background: linear-gradient(to right, #86b7fe, #0d6efd 30%, #0d6efd 70%, #0d6efd 70%, #86b7fe 100%);
|
|
1546
|
-
background-color: rgba(63, 81, 181, 0.2);
|
|
1547
1558
|
border: 0px;
|
|
1548
1559
|
border-radius: 4px;
|
|
1549
1560
|
}
|
|
@@ -1587,7 +1598,7 @@
|
|
|
1587
1598
|
}
|
|
1588
1599
|
.e-gantt .e-gantt-chart .e-connectorpoint-left-hover,
|
|
1589
1600
|
.e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
|
|
1590
|
-
background-color: #
|
|
1601
|
+
background-color: #0257d5;
|
|
1591
1602
|
border-color: #fff;
|
|
1592
1603
|
}
|
|
1593
1604
|
.e-gantt .e-gantt-chart .e-connectorpoint-left-hover:hover,
|
|
@@ -1790,7 +1801,7 @@
|
|
|
1790
1801
|
color: #6c757d;
|
|
1791
1802
|
}
|
|
1792
1803
|
.e-gantt .e-grid .e-icons:not(.e-stop):not(.e-check):not(.e-icon-left):not(.e-date-icon) {
|
|
1793
|
-
color:
|
|
1804
|
+
color: #6c757d !important;
|
|
1794
1805
|
}
|
|
1795
1806
|
|
|
1796
1807
|
.e-gantt-dialog .e-dlg-header {
|
|
@@ -1844,4 +1855,56 @@
|
|
|
1844
1855
|
}
|
|
1845
1856
|
.e-gantt.e-device .e-backarrowspan {
|
|
1846
1857
|
color: #000;
|
|
1858
|
+
}
|
|
1859
|
+
|
|
1860
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line {
|
|
1861
|
+
border-color: #dc3545;
|
|
1862
|
+
}
|
|
1863
|
+
|
|
1864
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line-right-arrow {
|
|
1865
|
+
border-left-color: #dc3545;
|
|
1866
|
+
}
|
|
1867
|
+
|
|
1868
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line-left-arrow {
|
|
1869
|
+
border-right-color: #dc3545;
|
|
1870
|
+
}
|
|
1871
|
+
|
|
1872
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-hover {
|
|
1873
|
+
border-color: #f8d7da;
|
|
1874
|
+
outline-color: #f8d7da;
|
|
1875
|
+
}
|
|
1876
|
+
|
|
1877
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-right-arrow-hover {
|
|
1878
|
+
border-left-color: #f8d7da;
|
|
1879
|
+
}
|
|
1880
|
+
|
|
1881
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-left-arrow-hover {
|
|
1882
|
+
border-right-color: #f8d7da;
|
|
1883
|
+
}
|
|
1884
|
+
|
|
1885
|
+
.e-gantt .e-gantt-chart .e-gantt-child-critical-taskbar-inner-div {
|
|
1886
|
+
background-color: #f8d7da;
|
|
1887
|
+
border: 1px solid #f8d7da;
|
|
1888
|
+
border-radius: 4px;
|
|
1889
|
+
}
|
|
1890
|
+
|
|
1891
|
+
.e-gantt .e-gantt-chart .e-gantt-child-critical-progressbar-inner-div {
|
|
1892
|
+
background-color: #dc3545;
|
|
1893
|
+
border: 0px;
|
|
1894
|
+
border-radius: 4px;
|
|
1895
|
+
}
|
|
1896
|
+
|
|
1897
|
+
.e-gantt .e-gantt-chart .e-gantt-critical-unscheduled-taskbar {
|
|
1898
|
+
background: linear-gradient(to right, rgba(255, 85, 85, 0.2), #dc3545 30%, #dc3545 70%, #dc3545 70%, rgba(255, 85, 85, 0.2) 100%);
|
|
1899
|
+
background-color: rgba(255, 85, 85, 0.2);
|
|
1900
|
+
border: 0px;
|
|
1901
|
+
border-radius: 4px;
|
|
1902
|
+
}
|
|
1903
|
+
|
|
1904
|
+
.e-gantt .e-gantt-chart .e-critical-milestone-top {
|
|
1905
|
+
border-bottom-color: #dc3545;
|
|
1906
|
+
}
|
|
1907
|
+
|
|
1908
|
+
.e-gantt .e-gantt-chart .e-critical-milestone-bottom {
|
|
1909
|
+
border-top-color: #dc3545;
|
|
1847
1910
|
}
|
|
@@ -1 +1,22 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/bootstrap5-definition.scss';
|
|
2
|
+
@import 'ej2-grids/styles/grid/bootstrap5-definition.scss';
|
|
3
|
+
@import 'ej2-treegrid/styles/treegrid/bootstrap5-definition.scss';
|
|
4
|
+
@import 'ej2-richtexteditor/styles/rich-text-editor/bootstrap5-definition.scss';
|
|
5
|
+
@import 'ej2-calendars/styles/datepicker/bootstrap5-definition.scss';
|
|
6
|
+
@import 'ej2-calendars/styles/datetimepicker/bootstrap5-definition.scss';
|
|
7
|
+
@import 'ej2-buttons/styles/button/bootstrap5-definition.scss';
|
|
8
|
+
@import 'ej2-dropdowns/styles/drop-down-list/bootstrap5-definition.scss';
|
|
9
|
+
@import 'ej2-dropdowns/styles/combo-box/bootstrap5-definition.scss';
|
|
10
|
+
@import 'ej2-dropdowns/styles/multi-select/bootstrap5-definition.scss';
|
|
11
|
+
@import 'ej2-navigations/styles/toolbar/bootstrap5-definition.scss';
|
|
12
|
+
@import 'ej2-navigations/styles/tab/bootstrap5-definition.scss';
|
|
13
|
+
@import 'ej2-navigations/styles/context-menu/bootstrap5-definition.scss';
|
|
14
|
+
@import 'ej2-inputs/styles/input/bootstrap5-definition.scss';
|
|
15
|
+
@import 'ej2-inputs/styles/numerictextbox/bootstrap5-definition.scss';
|
|
16
|
+
@import 'ej2-popups/styles/dialog/bootstrap5-definition.scss';
|
|
17
|
+
@import 'ej2-popups/styles/spinner/bootstrap5-definition.scss';
|
|
18
|
+
@import 'ej2-popups/styles/tooltip/bootstrap5-definition.scss';
|
|
19
|
+
@import 'ej2-layouts/styles/splitter/bootstrap5-definition.scss';
|
|
20
|
+
@import 'bootstrap5-definition.scss';
|
|
21
|
+
@import 'icons/bootstrap5.scss';
|
|
22
|
+
@import 'all.scss';
|