@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
|
@@ -198,6 +198,9 @@
|
|
|
198
198
|
.e-gantt .e-add::before {
|
|
199
199
|
content: "\e7f9";
|
|
200
200
|
}
|
|
201
|
+
.e-gantt .e-critical-path::before {
|
|
202
|
+
content: "\e93a";
|
|
203
|
+
}
|
|
201
204
|
.e-gantt .e-edit::before {
|
|
202
205
|
content: "\e81e";
|
|
203
206
|
}
|
|
@@ -292,11 +295,13 @@
|
|
|
292
295
|
.e-bigger .e-gantt .e-gantt-chart .e-timeline-top-header-cell {
|
|
293
296
|
height: 32px;
|
|
294
297
|
}
|
|
295
|
-
.e-bigger .e-gantt .e-gantt-chart .e-taskbar-left-resizer
|
|
298
|
+
.e-bigger .e-gantt .e-gantt-chart .e-taskbar-left-resizer {
|
|
299
|
+
padding-right: 10px;
|
|
300
|
+
width: 25px;
|
|
301
|
+
}
|
|
296
302
|
.e-bigger .e-gantt .e-gantt-chart .e-taskbar-right-resizer {
|
|
297
303
|
padding-left: 10px;
|
|
298
|
-
|
|
299
|
-
width: 30px;
|
|
304
|
+
width: 25px;
|
|
300
305
|
}
|
|
301
306
|
.e-bigger .e-gantt .e-gantt-chart .e-event-markers .e-span-label {
|
|
302
307
|
border-radius: 4px !important;
|
|
@@ -343,33 +348,40 @@
|
|
|
343
348
|
border-color: #fff;
|
|
344
349
|
outline: 2px solid #9fa8da;
|
|
345
350
|
}
|
|
351
|
+
.e-bigger .e-gantt .e-tab .e-content {
|
|
352
|
+
height: 241px !important;
|
|
353
|
+
}
|
|
346
354
|
.e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
|
|
347
355
|
height: 63px !important;
|
|
348
356
|
}
|
|
349
|
-
.e-bigger .e-
|
|
350
|
-
|
|
351
|
-
border-color: #000000;
|
|
352
|
-
color: #FFFFFF;
|
|
353
|
-
font-size: 12px;
|
|
354
|
-
line-height: 18px;
|
|
355
|
-
padding: 0 8px 0 0;
|
|
357
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header-content {
|
|
358
|
+
padding: 16px 14px 17px 16px !important;
|
|
356
359
|
}
|
|
357
|
-
.e-bigger .e-
|
|
358
|
-
|
|
359
|
-
border-color: #000000;
|
|
360
|
-
color: #FFFFFF;
|
|
361
|
-
font-size: 12px;
|
|
362
|
-
line-height: 18px;
|
|
363
|
-
padding: 0 0 0 8px;
|
|
360
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
361
|
+
left: 1px !important;
|
|
364
362
|
}
|
|
365
|
-
.e-bigger .e-
|
|
366
|
-
|
|
363
|
+
.e-bigger .e-gantt .e-dialog .e-btn .e-btn-icon.e-icon-dlg-close {
|
|
364
|
+
font-size: 12px !important;
|
|
365
|
+
}
|
|
366
|
+
.e-bigger .e-gantt .e-dialog .e-footer-content {
|
|
367
|
+
height: 70px !important;
|
|
368
|
+
padding: 16px !important;
|
|
367
369
|
}
|
|
368
|
-
.e-bigger .e-
|
|
370
|
+
.e-bigger .e-gantt .e-dialog .e-footer-content .e-btn {
|
|
371
|
+
margin-left: 12px;
|
|
372
|
+
}
|
|
373
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header {
|
|
374
|
+
line-height: 28px;
|
|
375
|
+
}
|
|
376
|
+
.e-bigger .e-gantt .e-filter-popup {
|
|
377
|
+
width: 350px !important;
|
|
378
|
+
}
|
|
379
|
+
.e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
|
|
369
380
|
padding: 14px 0 0 !important;
|
|
370
381
|
}
|
|
371
|
-
.e-bigger .e-
|
|
372
|
-
|
|
382
|
+
.e-bigger .e-gantt .e-filter-popup .e-dlg-content {
|
|
383
|
+
border-radius: 6px !important;
|
|
384
|
+
padding: 20px 16px 6px 16px !important;
|
|
373
385
|
}
|
|
374
386
|
.e-bigger .e-columnmenu {
|
|
375
387
|
top: 38px;
|
|
@@ -378,6 +390,9 @@
|
|
|
378
390
|
border-radius: 6px;
|
|
379
391
|
width: 550px !important;
|
|
380
392
|
}
|
|
393
|
+
.e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
394
|
+
padding: 0 16px !important;
|
|
395
|
+
}
|
|
381
396
|
.e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(odd) {
|
|
382
397
|
padding: 16px 9px 0 16px;
|
|
383
398
|
}
|
|
@@ -406,107 +421,97 @@
|
|
|
406
421
|
.e-bigger .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
407
422
|
border-radius: 50%;
|
|
408
423
|
height: auto !important;
|
|
409
|
-
width: auto
|
|
424
|
+
width: auto;
|
|
410
425
|
}
|
|
411
426
|
.e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
412
427
|
margin-left: 4px !important;
|
|
413
428
|
}
|
|
414
|
-
.e-bigger .e-
|
|
415
|
-
margin: 5px 0 6px !important;
|
|
416
|
-
}
|
|
417
|
-
.e-bigger .e-input-group.e-control-wrapper .e-input-group-icon {
|
|
418
|
-
margin-right: 0 !important;
|
|
419
|
-
}
|
|
420
|
-
.e-bigger .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
421
|
-
font-size: 16px !important;
|
|
422
|
-
}
|
|
423
|
-
.e-bigger .e-float-input.e-control-wrapper {
|
|
429
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper {
|
|
424
430
|
width: 250px !important;
|
|
425
431
|
}
|
|
426
|
-
.e-bigger .e-
|
|
427
|
-
|
|
428
|
-
}
|
|
429
|
-
.e-bigger .e-predecessor-dialog {
|
|
430
|
-
background-color: #f3f3f3;
|
|
431
|
-
}
|
|
432
|
-
.e-bigger .e-predecessor-dialog .e-dlg-content {
|
|
433
|
-
background-color: #f3f3f3;
|
|
434
|
-
padding: 10px 9px 9px 14px !important;
|
|
435
|
-
}
|
|
436
|
-
.e-bigger .e-dialog .e-dlg-header-content {
|
|
437
|
-
padding: 16px 14px 17px 16px !important;
|
|
438
|
-
}
|
|
439
|
-
.e-bigger .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
440
|
-
left: 1px !important;
|
|
441
|
-
}
|
|
442
|
-
.e-bigger .e-dialog .e-btn .e-btn-icon.e-icon-dlg-close {
|
|
443
|
-
font-size: 12px !important;
|
|
444
|
-
}
|
|
445
|
-
.e-bigger .e-dialog .e-footer-content {
|
|
446
|
-
height: 70px !important;
|
|
447
|
-
padding: 16px !important;
|
|
448
|
-
}
|
|
449
|
-
.e-bigger .e-dialog .e-footer-content .e-btn {
|
|
450
|
-
margin-left: 12px;
|
|
432
|
+
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
433
|
+
font-size: 16px !important;
|
|
451
434
|
}
|
|
452
|
-
.e-bigger .e-dialog .e-
|
|
453
|
-
|
|
435
|
+
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
436
|
+
min-height: 26px !important;
|
|
437
|
+
min-width: 35.82px !important;
|
|
454
438
|
}
|
|
455
|
-
.e-bigger .e-
|
|
456
|
-
height:
|
|
439
|
+
.e-bigger .e-gantt-dialog .e-btn.e-flat {
|
|
440
|
+
line-height: 24px;
|
|
441
|
+
padding: 6px 16px 6px 15px !important;
|
|
457
442
|
}
|
|
458
|
-
.e-bigger .e-
|
|
459
|
-
|
|
443
|
+
.e-bigger .e-gantt-dialog .e-btn.e-primary {
|
|
444
|
+
padding: 6px 21px 6px 23px !important;
|
|
460
445
|
}
|
|
461
|
-
.e-bigger .e-
|
|
462
|
-
|
|
463
|
-
padding: 20px 16px 6px 16px !important;
|
|
446
|
+
.e-bigger .e-gantt-dialog .e-datetime-wrapper .e-time-icon.e-icons::before {
|
|
447
|
+
font-size: 16px !important;
|
|
464
448
|
}
|
|
465
|
-
.e-bigger .e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text {
|
|
449
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text {
|
|
466
450
|
font-size: 14px;
|
|
467
451
|
line-height: 22px;
|
|
468
452
|
}
|
|
469
|
-
.e-bigger .e-float-input.e-control-wrapper input[disabled] ~ label.e-label-top.e-float-text {
|
|
453
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input[disabled] ~ label.e-label-top.e-float-text {
|
|
470
454
|
font-size: 14px;
|
|
471
455
|
line-height: 22px;
|
|
472
456
|
}
|
|
473
|
-
.e-bigger .e-float-input.e-control-wrapper input {
|
|
457
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input {
|
|
474
458
|
height: 27px !important;
|
|
475
459
|
padding: 5px 0 11px !important;
|
|
476
460
|
}
|
|
477
|
-
.e-bigger .e-
|
|
478
|
-
color: #757575 !important;
|
|
479
|
-
}
|
|
480
|
-
.e-bigger .e-right-btn:disabled {
|
|
481
|
-
color: #757575 !important;
|
|
482
|
-
}
|
|
483
|
-
.e-bigger .e-input-group-icon.e-date-icon {
|
|
484
|
-
min-width: 36px !important;
|
|
485
|
-
}
|
|
486
|
-
.e-bigger .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
487
|
-
min-height: 26px !important;
|
|
488
|
-
min-width: 35.82px !important;
|
|
489
|
-
}
|
|
490
|
-
.e-bigger .e-numeric.e-control-wrapper.e-input-group .e-input-group-icon {
|
|
461
|
+
.e-bigger .e-gantt-dialog .e-numeric.e-control-wrapper.e-input-group .e-input-group-icon {
|
|
491
462
|
min-height: 26px !important;
|
|
492
463
|
min-width: 35.82px !important;
|
|
493
464
|
}
|
|
494
|
-
.e-bigger .e-control-wrapper .e-input-group-icon.e-time-icon {
|
|
465
|
+
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-time-icon {
|
|
495
466
|
min-height: 26px !important;
|
|
496
467
|
min-width: 35.82px !important;
|
|
497
468
|
}
|
|
498
|
-
.e-bigger .e-input-group.e-control-wrapper {
|
|
469
|
+
.e-bigger .e-gantt-dialog .e-input-group.e-control-wrapper {
|
|
499
470
|
height: 44px;
|
|
500
471
|
}
|
|
501
|
-
.e-bigger .e-
|
|
502
|
-
|
|
472
|
+
.e-bigger .e-gantt-dialog .e-input-group-icon.e-date-icon {
|
|
473
|
+
min-width: 36px !important;
|
|
503
474
|
}
|
|
504
|
-
.e-bigger .e-
|
|
505
|
-
|
|
506
|
-
padding: 6px 16px 6px 15px !important;
|
|
475
|
+
.e-bigger .e-gantt-dialog .e-datetime-wrapper .e-input-group-icon.e-time-icon {
|
|
476
|
+
margin: 5px 0 6px !important;
|
|
507
477
|
}
|
|
508
|
-
.e-bigger .e-
|
|
509
|
-
|
|
478
|
+
.e-bigger .e-gantt-dialog .e-input-group.e-control-wrapper .e-input-group-icon {
|
|
479
|
+
margin-right: 0 !important;
|
|
480
|
+
}
|
|
481
|
+
.e-bigger .e-predecessor-tooltip {
|
|
482
|
+
background-color: #000;
|
|
483
|
+
}
|
|
484
|
+
.e-bigger .e-predecessor-tooltip .e-left-btn:disabled {
|
|
485
|
+
color: #757575 !important;
|
|
486
|
+
}
|
|
487
|
+
.e-bigger .e-predecessor-tooltip .e-right-btn:disabled {
|
|
488
|
+
color: #757575 !important;
|
|
489
|
+
}
|
|
490
|
+
.e-bigger .e-predecessor-tooltip .e-tip-content {
|
|
491
|
+
padding: 3px !important;
|
|
492
|
+
}
|
|
493
|
+
.e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type {
|
|
494
|
+
background-color: #000;
|
|
495
|
+
border-color: #000;
|
|
496
|
+
color: #fff;
|
|
497
|
+
font-size: 12px;
|
|
498
|
+
line-height: 18px;
|
|
499
|
+
padding: 0 8px 0 0;
|
|
500
|
+
}
|
|
501
|
+
.e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:last-of-type {
|
|
502
|
+
background-color: #000;
|
|
503
|
+
border-color: #000;
|
|
504
|
+
color: #fff;
|
|
505
|
+
font-size: 12px;
|
|
506
|
+
line-height: 18px;
|
|
507
|
+
padding: 0 0 0 8px;
|
|
508
|
+
}
|
|
509
|
+
.e-bigger .e-predecessor-dialog {
|
|
510
|
+
background-color: #f3f3f3;
|
|
511
|
+
}
|
|
512
|
+
.e-bigger .e-predecessor-dialog .e-dlg-content {
|
|
513
|
+
background-color: #f3f3f3;
|
|
514
|
+
padding: 10px 9px 9px 14px !important;
|
|
510
515
|
}
|
|
511
516
|
|
|
512
517
|
.e-gantt {
|
|
@@ -1077,6 +1082,9 @@
|
|
|
1077
1082
|
.e-gantt .e-gantt-chart .e-connector-line-hover {
|
|
1078
1083
|
outline: 1px solid;
|
|
1079
1084
|
}
|
|
1085
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-hover {
|
|
1086
|
+
outline: 1px solid;
|
|
1087
|
+
}
|
|
1080
1088
|
.e-gantt .e-gantt-chart .e-connector-line-hover-z-index {
|
|
1081
1089
|
z-index: 100;
|
|
1082
1090
|
}
|
|
@@ -1456,7 +1464,7 @@
|
|
|
1456
1464
|
border-top-color: #e0e0e0;
|
|
1457
1465
|
}
|
|
1458
1466
|
.e-gantt .e-gantt-chart .e-chart-row-cell {
|
|
1459
|
-
color:
|
|
1467
|
+
color: #000;
|
|
1460
1468
|
}
|
|
1461
1469
|
.e-gantt .e-gantt-chart .e-chart-row-border.e-lastrow {
|
|
1462
1470
|
border-bottom-color: #e0e0e0;
|
|
@@ -1515,6 +1523,10 @@
|
|
|
1515
1523
|
background-color: #008786;
|
|
1516
1524
|
border: 0px;
|
|
1517
1525
|
}
|
|
1526
|
+
.e-gantt .e-gantt-chart .e-gantt-critical-child-manualprogressbar {
|
|
1527
|
+
background-color: #008786;
|
|
1528
|
+
border: 0px;
|
|
1529
|
+
}
|
|
1518
1530
|
.e-gantt .e-gantt-chart .e-holiday {
|
|
1519
1531
|
background: #eee;
|
|
1520
1532
|
}
|
|
@@ -1546,7 +1558,6 @@
|
|
|
1546
1558
|
}
|
|
1547
1559
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar {
|
|
1548
1560
|
background: linear-gradient(to right, rgba(63, 81, 181, 0.2), #3f51b5 30%, #3f51b5 70%, #3f51b5 70%, rgba(63, 81, 181, 0.2) 100%);
|
|
1549
|
-
background-color: rgba(63, 81, 181, 0.2);
|
|
1550
1561
|
border: 0px;
|
|
1551
1562
|
border-radius: 2px;
|
|
1552
1563
|
}
|
|
@@ -1809,7 +1820,7 @@
|
|
|
1809
1820
|
background-color: rgba(255, 255, 255, 0.15);
|
|
1810
1821
|
}
|
|
1811
1822
|
.e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover .e-icon-dlg-close {
|
|
1812
|
-
color:
|
|
1823
|
+
color: #000;
|
|
1813
1824
|
}
|
|
1814
1825
|
.e-gantt-dialog .e-tab .e-tab-header {
|
|
1815
1826
|
background: #3f51b5;
|
|
@@ -1847,4 +1858,56 @@
|
|
|
1847
1858
|
}
|
|
1848
1859
|
.e-gantt.e-device .e-backarrowspan {
|
|
1849
1860
|
color: #000;
|
|
1861
|
+
}
|
|
1862
|
+
|
|
1863
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line {
|
|
1864
|
+
border-color: #d13438;
|
|
1865
|
+
}
|
|
1866
|
+
|
|
1867
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line-right-arrow {
|
|
1868
|
+
border-left-color: #d13438;
|
|
1869
|
+
}
|
|
1870
|
+
|
|
1871
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line-left-arrow {
|
|
1872
|
+
border-right-color: #d13438;
|
|
1873
|
+
}
|
|
1874
|
+
|
|
1875
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-hover {
|
|
1876
|
+
border-color: #f3d8da;
|
|
1877
|
+
outline-color: #f3d8da;
|
|
1878
|
+
}
|
|
1879
|
+
|
|
1880
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-right-arrow-hover {
|
|
1881
|
+
border-left-color: #f3d8da;
|
|
1882
|
+
}
|
|
1883
|
+
|
|
1884
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-left-arrow-hover {
|
|
1885
|
+
border-right-color: #f3d8da;
|
|
1886
|
+
}
|
|
1887
|
+
|
|
1888
|
+
.e-gantt .e-gantt-chart .e-gantt-child-critical-taskbar-inner-div {
|
|
1889
|
+
background-color: #F3D8DA;
|
|
1890
|
+
border: 1px solid #F3D8DA;
|
|
1891
|
+
border-radius: 4px;
|
|
1892
|
+
}
|
|
1893
|
+
|
|
1894
|
+
.e-gantt .e-gantt-chart .e-gantt-child-critical-progressbar-inner-div {
|
|
1895
|
+
background-color: #D13438;
|
|
1896
|
+
border: 0px;
|
|
1897
|
+
border-radius: 4px;
|
|
1898
|
+
}
|
|
1899
|
+
|
|
1900
|
+
.e-gantt .e-gantt-chart .e-gantt-critical-unscheduled-taskbar {
|
|
1901
|
+
background: linear-gradient(to right, rgba(255, 85, 85, 0.2), #D13438 30%, #D13438 70%, #D13438 70%, rgba(255, 85, 85, 0.2) 100%);
|
|
1902
|
+
background-color: rgba(255, 85, 85, 0.2);
|
|
1903
|
+
border: 0px;
|
|
1904
|
+
border-radius: 2px;
|
|
1905
|
+
}
|
|
1906
|
+
|
|
1907
|
+
.e-gantt .e-gantt-chart .e-critical-milestone-top {
|
|
1908
|
+
border-bottom-color: #D13438;
|
|
1909
|
+
}
|
|
1910
|
+
|
|
1911
|
+
.e-gantt .e-gantt-chart .e-critical-milestone-bottom {
|
|
1912
|
+
border-top-color: #D13438;
|
|
1850
1913
|
}
|
|
@@ -1 +1,22 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/material-definition.scss';
|
|
2
|
+
@import 'ej2-grids/styles/grid/material-definition.scss';
|
|
3
|
+
@import 'ej2-treegrid/styles/treegrid/material-definition.scss';
|
|
4
|
+
@import 'ej2-richtexteditor/styles/rich-text-editor/material-definition.scss';
|
|
5
|
+
@import 'ej2-calendars/styles/datepicker/material-definition.scss';
|
|
6
|
+
@import 'ej2-calendars/styles/datetimepicker/material-definition.scss';
|
|
7
|
+
@import 'ej2-buttons/styles/button/material-definition.scss';
|
|
8
|
+
@import 'ej2-dropdowns/styles/drop-down-list/material-definition.scss';
|
|
9
|
+
@import 'ej2-dropdowns/styles/combo-box/material-definition.scss';
|
|
10
|
+
@import 'ej2-dropdowns/styles/multi-select/material-definition.scss';
|
|
11
|
+
@import 'ej2-navigations/styles/toolbar/material-definition.scss';
|
|
12
|
+
@import 'ej2-navigations/styles/tab/material-definition.scss';
|
|
13
|
+
@import 'ej2-navigations/styles/context-menu/material-definition.scss';
|
|
14
|
+
@import 'ej2-inputs/styles/input/material-definition.scss';
|
|
15
|
+
@import 'ej2-inputs/styles/numerictextbox/material-definition.scss';
|
|
16
|
+
@import 'ej2-popups/styles/dialog/material-definition.scss';
|
|
17
|
+
@import 'ej2-popups/styles/spinner/material-definition.scss';
|
|
18
|
+
@import 'ej2-popups/styles/tooltip/material-definition.scss';
|
|
19
|
+
@import 'ej2-layouts/styles/splitter/material-definition.scss';
|
|
20
|
+
@import 'material-definition.scss';
|
|
21
|
+
@import 'icons/material.scss';
|
|
22
|
+
@import 'all.scss';
|