@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
package/styles/gantt/fluent.css
CHANGED
|
@@ -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
|
}
|
|
@@ -275,11 +278,13 @@
|
|
|
275
278
|
.e-bigger .e-gantt .e-gantt-chart .e-timeline-top-header-cell {
|
|
276
279
|
height: 32px;
|
|
277
280
|
}
|
|
278
|
-
.e-bigger .e-gantt .e-gantt-chart .e-taskbar-left-resizer
|
|
281
|
+
.e-bigger .e-gantt .e-gantt-chart .e-taskbar-left-resizer {
|
|
282
|
+
padding-right: 10px;
|
|
283
|
+
width: 25px;
|
|
284
|
+
}
|
|
279
285
|
.e-bigger .e-gantt .e-gantt-chart .e-taskbar-right-resizer {
|
|
280
286
|
padding-left: 10px;
|
|
281
|
-
|
|
282
|
-
width: 30px;
|
|
287
|
+
width: 25px;
|
|
283
288
|
}
|
|
284
289
|
.e-bigger .e-gantt .e-gantt-chart .e-event-markers .e-span-label {
|
|
285
290
|
border-radius: 4px !important;
|
|
@@ -317,42 +322,49 @@
|
|
|
317
322
|
}
|
|
318
323
|
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover,
|
|
319
324
|
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
|
|
320
|
-
background-color: #
|
|
325
|
+
background-color: #005ba1;
|
|
321
326
|
border-color: #fff;
|
|
322
327
|
}
|
|
323
328
|
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover:hover,
|
|
324
329
|
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover:hover {
|
|
325
|
-
background-color: #
|
|
330
|
+
background-color: #005ba1;
|
|
326
331
|
border-color: #fff;
|
|
327
332
|
outline: 2px solid #c7e0f4;
|
|
328
333
|
}
|
|
334
|
+
.e-bigger .e-gantt .e-tab .e-content {
|
|
335
|
+
height: 254px !important;
|
|
336
|
+
}
|
|
329
337
|
.e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
|
|
330
338
|
height: 63px !important;
|
|
331
339
|
}
|
|
332
|
-
.e-bigger .e-
|
|
333
|
-
|
|
334
|
-
border-color: #000000;
|
|
335
|
-
color: #FFFFFF;
|
|
336
|
-
font-size: 12px;
|
|
337
|
-
line-height: 18px;
|
|
338
|
-
padding: 0 8px 0 0;
|
|
340
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header-content {
|
|
341
|
+
padding: 16px 4px 16px 28px !important;
|
|
339
342
|
}
|
|
340
|
-
.e-bigger .e-
|
|
341
|
-
|
|
342
|
-
border-color: #000000;
|
|
343
|
-
color: #FFFFFF;
|
|
344
|
-
font-size: 12px;
|
|
345
|
-
line-height: 18px;
|
|
346
|
-
padding: 0 0 0 8px;
|
|
343
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
344
|
+
left: 8px !important;
|
|
347
345
|
}
|
|
348
|
-
.e-bigger .e-
|
|
349
|
-
|
|
346
|
+
.e-bigger .e-gantt .e-dialog .e-btn .e-btn-icon.e-icon-dlg-close {
|
|
347
|
+
font-size: 14px !important;
|
|
350
348
|
}
|
|
351
|
-
.e-bigger .e-
|
|
349
|
+
.e-bigger .e-gantt .e-dialog .e-footer-content {
|
|
350
|
+
height: 96px !important;
|
|
351
|
+
padding: 28px 28px 28px 28px !important;
|
|
352
|
+
}
|
|
353
|
+
.e-bigger .e-gantt .e-dialog .e-footer-content .e-btn {
|
|
354
|
+
margin-left: 12px;
|
|
355
|
+
}
|
|
356
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header {
|
|
357
|
+
line-height: 28px;
|
|
358
|
+
}
|
|
359
|
+
.e-bigger .e-gantt .e-filter-popup {
|
|
360
|
+
width: 392px !important;
|
|
361
|
+
}
|
|
362
|
+
.e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
|
|
352
363
|
padding: 28px 0 0 !important;
|
|
353
364
|
}
|
|
354
|
-
.e-bigger .e-
|
|
355
|
-
|
|
365
|
+
.e-bigger .e-gantt .e-filter-popup .e-dlg-content {
|
|
366
|
+
border-radius: 2px !important;
|
|
367
|
+
padding: 28px 28px 0px 28px !important;
|
|
356
368
|
}
|
|
357
369
|
.e-bigger .e-columnmenu {
|
|
358
370
|
top: 38px;
|
|
@@ -361,6 +373,9 @@
|
|
|
361
373
|
border-radius: 6px;
|
|
362
374
|
width: 580px !important;
|
|
363
375
|
}
|
|
376
|
+
.e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
377
|
+
padding: 0 16px !important;
|
|
378
|
+
}
|
|
364
379
|
.e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(odd) {
|
|
365
380
|
padding: 16px 8px 0 28px;
|
|
366
381
|
}
|
|
@@ -389,100 +404,90 @@
|
|
|
389
404
|
.e-bigger .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
390
405
|
border-radius: 50%;
|
|
391
406
|
height: auto !important;
|
|
392
|
-
width: auto
|
|
407
|
+
width: auto;
|
|
393
408
|
}
|
|
394
409
|
.e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
395
410
|
margin-left: 16px !important;
|
|
396
411
|
}
|
|
397
|
-
.e-bigger .e-
|
|
398
|
-
font-size: 16px !important;
|
|
399
|
-
}
|
|
400
|
-
.e-bigger .e-float-input.e-control-wrapper {
|
|
412
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper {
|
|
401
413
|
width: 254px !important;
|
|
402
414
|
}
|
|
403
|
-
.e-bigger .e-
|
|
404
|
-
|
|
405
|
-
}
|
|
406
|
-
.e-bigger .e-predecessor-dialog {
|
|
407
|
-
background-color: #faf9f8;
|
|
408
|
-
}
|
|
409
|
-
.e-bigger .e-predecessor-dialog .e-dlg-content {
|
|
410
|
-
background-color: #faf9f8;
|
|
411
|
-
padding: 10px 9px 9px 14px !important;
|
|
412
|
-
}
|
|
413
|
-
.e-bigger .e-dialog .e-dlg-header-content {
|
|
414
|
-
padding: 16px 4px 16px 28px !important;
|
|
415
|
-
}
|
|
416
|
-
.e-bigger .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
417
|
-
left: 8px !important;
|
|
418
|
-
}
|
|
419
|
-
.e-bigger .e-dialog .e-btn .e-btn-icon.e-icon-dlg-close {
|
|
420
|
-
font-size: 14px !important;
|
|
421
|
-
}
|
|
422
|
-
.e-bigger .e-dialog .e-footer-content {
|
|
423
|
-
height: 96px !important;
|
|
424
|
-
padding: 28px 28px 28px 28px !important;
|
|
425
|
-
}
|
|
426
|
-
.e-bigger .e-dialog .e-footer-content .e-btn {
|
|
427
|
-
margin-left: 12px;
|
|
415
|
+
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
416
|
+
font-size: 16px !important;
|
|
428
417
|
}
|
|
429
|
-
.e-bigger .e-dialog .e-
|
|
430
|
-
|
|
418
|
+
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
419
|
+
min-height: 35px !important;
|
|
420
|
+
min-width: 35.82px !important;
|
|
431
421
|
}
|
|
432
|
-
.e-bigger .e-
|
|
433
|
-
height:
|
|
422
|
+
.e-bigger .e-gantt-dialog .e-btn.e-flat {
|
|
423
|
+
line-height: 24px;
|
|
424
|
+
padding: 6px 16px 6px 15px !important;
|
|
434
425
|
}
|
|
435
|
-
.e-bigger .e-
|
|
436
|
-
|
|
426
|
+
.e-bigger .e-gantt-dialog .e-btn.e-primary {
|
|
427
|
+
padding: 6px 21px 6px 23px !important;
|
|
437
428
|
}
|
|
438
|
-
.e-bigger .e-
|
|
439
|
-
|
|
440
|
-
padding: 28px 28px 0px 28px !important;
|
|
429
|
+
.e-bigger .e-gantt-dialog .e-datetime-wrapper .e-time-icon.e-icons::before {
|
|
430
|
+
font-size: 16px !important;
|
|
441
431
|
}
|
|
442
|
-
.e-bigger .e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text {
|
|
432
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text {
|
|
443
433
|
font-size: 14px;
|
|
444
434
|
line-height: 22px;
|
|
445
435
|
}
|
|
446
|
-
.e-bigger .e-float-input.e-control-wrapper input[disabled] ~ label.e-label-top.e-float-text {
|
|
436
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input[disabled] ~ label.e-label-top.e-float-text {
|
|
447
437
|
font-size: 14px;
|
|
448
438
|
line-height: 22px;
|
|
449
439
|
}
|
|
450
|
-
.e-bigger .e-float-input.e-control-wrapper input {
|
|
440
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input {
|
|
451
441
|
height: 38px !important;
|
|
452
442
|
}
|
|
453
|
-
.e-bigger .e-
|
|
454
|
-
color: #A19F9D !important;
|
|
455
|
-
}
|
|
456
|
-
.e-bigger .e-right-btn:disabled {
|
|
457
|
-
color: #A19F9D !important;
|
|
458
|
-
}
|
|
459
|
-
.e-bigger .e-input-group-icon.e-date-icon {
|
|
460
|
-
min-width: 36px !important;
|
|
461
|
-
}
|
|
462
|
-
.e-bigger .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
443
|
+
.e-bigger .e-gantt-dialog .e-numeric.e-control-wrapper.e-input-group .e-input-group-icon {
|
|
463
444
|
min-height: 35px !important;
|
|
464
445
|
min-width: 35.82px !important;
|
|
465
446
|
}
|
|
466
|
-
.e-bigger .e-
|
|
447
|
+
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-time-icon {
|
|
467
448
|
min-height: 35px !important;
|
|
468
449
|
min-width: 35.82px !important;
|
|
469
450
|
}
|
|
470
|
-
.e-bigger .e-
|
|
471
|
-
min-height: 35px !important;
|
|
472
|
-
min-width: 35.82px !important;
|
|
473
|
-
}
|
|
474
|
-
.e-bigger .e-input-group.e-control-wrapper {
|
|
451
|
+
.e-bigger .e-gantt-dialog .e-input-group.e-control-wrapper {
|
|
475
452
|
height: 40px;
|
|
476
453
|
}
|
|
477
|
-
.e-bigger .e-
|
|
478
|
-
|
|
454
|
+
.e-bigger .e-gantt-dialog .e-input-group-icon.e-date-icon {
|
|
455
|
+
min-width: 36px !important;
|
|
479
456
|
}
|
|
480
|
-
.e-bigger .e-
|
|
481
|
-
|
|
482
|
-
padding: 6px 16px 6px 15px !important;
|
|
457
|
+
.e-bigger .e-predecessor-tooltip {
|
|
458
|
+
background-color: #000;
|
|
483
459
|
}
|
|
484
|
-
.e-bigger .e-
|
|
485
|
-
|
|
460
|
+
.e-bigger .e-predecessor-tooltip .e-left-btn:disabled {
|
|
461
|
+
color: #a19f9d !important;
|
|
462
|
+
}
|
|
463
|
+
.e-bigger .e-predecessor-tooltip .e-right-btn:disabled {
|
|
464
|
+
color: #a19f9d !important;
|
|
465
|
+
}
|
|
466
|
+
.e-bigger .e-predecessor-tooltip .e-tip-content {
|
|
467
|
+
padding: 3px !important;
|
|
468
|
+
}
|
|
469
|
+
.e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type {
|
|
470
|
+
background-color: #000;
|
|
471
|
+
border-color: #000;
|
|
472
|
+
color: #fff;
|
|
473
|
+
font-size: 12px;
|
|
474
|
+
line-height: 18px;
|
|
475
|
+
padding: 0 8px 0 0;
|
|
476
|
+
}
|
|
477
|
+
.e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:last-of-type {
|
|
478
|
+
background-color: #000;
|
|
479
|
+
border-color: #000;
|
|
480
|
+
color: #fff;
|
|
481
|
+
font-size: 12px;
|
|
482
|
+
line-height: 18px;
|
|
483
|
+
padding: 0 0 0 8px;
|
|
484
|
+
}
|
|
485
|
+
.e-bigger .e-predecessor-dialog {
|
|
486
|
+
background-color: #faf9f8;
|
|
487
|
+
}
|
|
488
|
+
.e-bigger .e-predecessor-dialog .e-dlg-content {
|
|
489
|
+
background-color: #faf9f8;
|
|
490
|
+
padding: 10px 9px 9px 14px !important;
|
|
486
491
|
}
|
|
487
492
|
|
|
488
493
|
.e-gantt {
|
|
@@ -1053,6 +1058,9 @@
|
|
|
1053
1058
|
.e-gantt .e-gantt-chart .e-connector-line-hover {
|
|
1054
1059
|
outline: 1px solid;
|
|
1055
1060
|
}
|
|
1061
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-hover {
|
|
1062
|
+
outline: 1px solid;
|
|
1063
|
+
}
|
|
1056
1064
|
.e-gantt .e-gantt-chart .e-connector-line-hover-z-index {
|
|
1057
1065
|
z-index: 100;
|
|
1058
1066
|
}
|
|
@@ -1444,7 +1452,7 @@
|
|
|
1444
1452
|
outline-color: #605e5c;
|
|
1445
1453
|
}
|
|
1446
1454
|
.e-gantt .e-gantt-chart .e-gantt-child-taskbar-inner-div {
|
|
1447
|
-
background-color: #
|
|
1455
|
+
background-color: #6ec0ff;
|
|
1448
1456
|
border: 1px solid #0078d4;
|
|
1449
1457
|
border-radius: 4px;
|
|
1450
1458
|
}
|
|
@@ -1491,6 +1499,10 @@
|
|
|
1491
1499
|
background-color: #0b6a0b;
|
|
1492
1500
|
border: 0px;
|
|
1493
1501
|
}
|
|
1502
|
+
.e-gantt .e-gantt-chart .e-gantt-critical-child-manualprogressbar {
|
|
1503
|
+
background-color: #0b6a0b;
|
|
1504
|
+
border: 0px;
|
|
1505
|
+
}
|
|
1494
1506
|
.e-gantt .e-gantt-chart .e-holiday {
|
|
1495
1507
|
background: #faf9f8;
|
|
1496
1508
|
}
|
|
@@ -1522,7 +1534,6 @@
|
|
|
1522
1534
|
}
|
|
1523
1535
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar {
|
|
1524
1536
|
background: linear-gradient(to right, #c7e0f4, #0078d4 30%, #0078d4 70%, #0078d4 70%, #c7e0f4 100%);
|
|
1525
|
-
background-color: rgba(63, 81, 181, 0.2);
|
|
1526
1537
|
border: 0px;
|
|
1527
1538
|
border-radius: 4px;
|
|
1528
1539
|
}
|
|
@@ -1566,7 +1577,7 @@
|
|
|
1566
1577
|
}
|
|
1567
1578
|
.e-gantt .e-gantt-chart .e-connectorpoint-left-hover,
|
|
1568
1579
|
.e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
|
|
1569
|
-
background-color: #
|
|
1580
|
+
background-color: #005ba1;
|
|
1570
1581
|
border-color: #fff;
|
|
1571
1582
|
}
|
|
1572
1583
|
.e-gantt .e-gantt-chart .e-connectorpoint-left-hover:hover,
|
|
@@ -1769,7 +1780,7 @@
|
|
|
1769
1780
|
color: #605e5c;
|
|
1770
1781
|
}
|
|
1771
1782
|
.e-gantt .e-grid .e-icons:not(.e-stop):not(.e-check):not(.e-icon-left):not(.e-date-icon) {
|
|
1772
|
-
color:
|
|
1783
|
+
color: #605e5c !important;
|
|
1773
1784
|
}
|
|
1774
1785
|
|
|
1775
1786
|
.e-gantt-dialog .e-dlg-header {
|
|
@@ -1823,4 +1834,56 @@
|
|
|
1823
1834
|
}
|
|
1824
1835
|
.e-gantt.e-device .e-backarrowspan {
|
|
1825
1836
|
color: #000;
|
|
1837
|
+
}
|
|
1838
|
+
|
|
1839
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line {
|
|
1840
|
+
border-color: #d13438;
|
|
1841
|
+
}
|
|
1842
|
+
|
|
1843
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line-right-arrow {
|
|
1844
|
+
border-left-color: #d13438;
|
|
1845
|
+
}
|
|
1846
|
+
|
|
1847
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line-left-arrow {
|
|
1848
|
+
border-right-color: #d13438;
|
|
1849
|
+
}
|
|
1850
|
+
|
|
1851
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-hover {
|
|
1852
|
+
border-color: #fed9cc;
|
|
1853
|
+
outline-color: #fed9cc;
|
|
1854
|
+
}
|
|
1855
|
+
|
|
1856
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-right-arrow-hover {
|
|
1857
|
+
border-left-color: #fed9cc;
|
|
1858
|
+
}
|
|
1859
|
+
|
|
1860
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-left-arrow-hover {
|
|
1861
|
+
border-right-color: #fed9cc;
|
|
1862
|
+
}
|
|
1863
|
+
|
|
1864
|
+
.e-gantt .e-gantt-chart .e-gantt-child-critical-taskbar-inner-div {
|
|
1865
|
+
background-color: #fed9cc;
|
|
1866
|
+
border: 1px solid #fed9cc;
|
|
1867
|
+
border-radius: 4px;
|
|
1868
|
+
}
|
|
1869
|
+
|
|
1870
|
+
.e-gantt .e-gantt-chart .e-gantt-child-critical-progressbar-inner-div {
|
|
1871
|
+
background-color: #d13438;
|
|
1872
|
+
border: 0px;
|
|
1873
|
+
border-radius: 2px;
|
|
1874
|
+
}
|
|
1875
|
+
|
|
1876
|
+
.e-gantt .e-gantt-chart .e-gantt-critical-unscheduled-taskbar {
|
|
1877
|
+
background: linear-gradient(to right, rgba(255, 85, 85, 0.2), #d13438 30%, #d13438 70%, #d13438 70%, rgba(255, 85, 85, 0.2) 100%);
|
|
1878
|
+
background-color: rgba(255, 85, 85, 0.2);
|
|
1879
|
+
border: 0px;
|
|
1880
|
+
border-radius: 4px;
|
|
1881
|
+
}
|
|
1882
|
+
|
|
1883
|
+
.e-gantt .e-gantt-chart .e-critical-milestone-top {
|
|
1884
|
+
border-bottom-color: #d13438;
|
|
1885
|
+
}
|
|
1886
|
+
|
|
1887
|
+
.e-gantt .e-gantt-chart .e-critical-milestone-bottom {
|
|
1888
|
+
border-top-color: #d13438;
|
|
1826
1889
|
}
|
package/styles/gantt/fluent.scss
CHANGED
|
@@ -1 +1,22 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/fluent-definition.scss';
|
|
2
|
+
@import 'ej2-grids/styles/grid/fluent-definition.scss';
|
|
3
|
+
@import 'ej2-treegrid/styles/treegrid/fluent-definition.scss';
|
|
4
|
+
@import 'ej2-richtexteditor/styles/rich-text-editor/fluent-definition.scss';
|
|
5
|
+
@import 'ej2-calendars/styles/datepicker/fluent-definition.scss';
|
|
6
|
+
@import 'ej2-calendars/styles/datetimepicker/fluent-definition.scss';
|
|
7
|
+
@import 'ej2-buttons/styles/button/fluent-definition.scss';
|
|
8
|
+
@import 'ej2-dropdowns/styles/drop-down-list/fluent-definition.scss';
|
|
9
|
+
@import 'ej2-dropdowns/styles/combo-box/fluent-definition.scss';
|
|
10
|
+
@import 'ej2-dropdowns/styles/multi-select/fluent-definition.scss';
|
|
11
|
+
@import 'ej2-navigations/styles/toolbar/fluent-definition.scss';
|
|
12
|
+
@import 'ej2-navigations/styles/tab/fluent-definition.scss';
|
|
13
|
+
@import 'ej2-navigations/styles/context-menu/fluent-definition.scss';
|
|
14
|
+
@import 'ej2-inputs/styles/input/fluent-definition.scss';
|
|
15
|
+
@import 'ej2-inputs/styles/numerictextbox/fluent-definition.scss';
|
|
16
|
+
@import 'ej2-popups/styles/dialog/fluent-definition.scss';
|
|
17
|
+
@import 'ej2-popups/styles/spinner/fluent-definition.scss';
|
|
18
|
+
@import 'ej2-popups/styles/tooltip/fluent-definition.scss';
|
|
19
|
+
@import 'ej2-layouts/styles/splitter/fluent-definition.scss';
|
|
20
|
+
@import 'fluent-definition.scss';
|
|
21
|
+
@import 'icons/fluent.scss';
|
|
22
|
+
@import 'all.scss';
|