@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
|
@@ -162,6 +162,9 @@
|
|
|
162
162
|
.e-gantt .e-add::before {
|
|
163
163
|
content: "\e823";
|
|
164
164
|
}
|
|
165
|
+
.e-gantt .e-critical-path::before {
|
|
166
|
+
content: "\e93a";
|
|
167
|
+
}
|
|
165
168
|
.e-gantt .e-edit::before {
|
|
166
169
|
content: "\e944";
|
|
167
170
|
}
|
|
@@ -256,11 +259,13 @@
|
|
|
256
259
|
.e-bigger .e-gantt .e-gantt-chart .e-timeline-top-header-cell {
|
|
257
260
|
height: 32px;
|
|
258
261
|
}
|
|
259
|
-
.e-bigger .e-gantt .e-gantt-chart .e-taskbar-left-resizer
|
|
262
|
+
.e-bigger .e-gantt .e-gantt-chart .e-taskbar-left-resizer {
|
|
263
|
+
padding-right: 10px;
|
|
264
|
+
width: 25px;
|
|
265
|
+
}
|
|
260
266
|
.e-bigger .e-gantt .e-gantt-chart .e-taskbar-right-resizer {
|
|
261
267
|
padding-left: 10px;
|
|
262
|
-
|
|
263
|
-
width: 30px;
|
|
268
|
+
width: 25px;
|
|
264
269
|
}
|
|
265
270
|
.e-bigger .e-gantt .e-gantt-chart .e-event-markers .e-span-label {
|
|
266
271
|
border-radius: 4px !important;
|
|
@@ -272,7 +277,7 @@
|
|
|
272
277
|
.e-bigger .e-gantt .e-gantt-chart .e-event-markers .e-gantt-right-arrow {
|
|
273
278
|
border-bottom: 6px solid transparent;
|
|
274
279
|
border-right: 6px solid transparent;
|
|
275
|
-
border-right-color: #
|
|
280
|
+
border-right-color: #d9edf7;
|
|
276
281
|
border-top: 6px solid transparent;
|
|
277
282
|
top: 73px !important;
|
|
278
283
|
}
|
|
@@ -307,33 +312,40 @@
|
|
|
307
312
|
border-color: #1a1a1a;
|
|
308
313
|
outline: 2px solid #75ACDB;
|
|
309
314
|
}
|
|
315
|
+
.e-bigger .e-gantt .e-tab .e-content {
|
|
316
|
+
height: 242px !important;
|
|
317
|
+
}
|
|
310
318
|
.e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
|
|
311
319
|
height: 63px !important;
|
|
312
320
|
}
|
|
313
|
-
.e-bigger .e-
|
|
314
|
-
|
|
315
|
-
border-color: #000000;
|
|
316
|
-
color: #F9FAFB;
|
|
317
|
-
font-size: 12px;
|
|
318
|
-
line-height: 18px;
|
|
319
|
-
padding: 0 8px 0 0;
|
|
321
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header-content {
|
|
322
|
+
padding: 16px 4px 16px 16px !important;
|
|
320
323
|
}
|
|
321
|
-
.e-bigger .e-
|
|
322
|
-
|
|
323
|
-
border-color: #000000;
|
|
324
|
-
color: #F9FAFB;
|
|
325
|
-
font-size: 12px;
|
|
326
|
-
line-height: 18px;
|
|
327
|
-
padding: 0 0 0 8px;
|
|
324
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
325
|
+
left: 0 !important;
|
|
328
326
|
}
|
|
329
|
-
.e-bigger .e-
|
|
330
|
-
|
|
327
|
+
.e-bigger .e-gantt .e-dialog .e-btn .e-btn-icon.e-icon-dlg-close {
|
|
328
|
+
font-size: 12px !important;
|
|
331
329
|
}
|
|
332
|
-
.e-bigger .e-
|
|
330
|
+
.e-bigger .e-gantt .e-dialog .e-footer-content {
|
|
331
|
+
height: 70px !important;
|
|
332
|
+
padding: 16px !important;
|
|
333
|
+
}
|
|
334
|
+
.e-bigger .e-gantt .e-dialog .e-footer-content .e-btn {
|
|
335
|
+
margin-left: 12px;
|
|
336
|
+
}
|
|
337
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header {
|
|
338
|
+
line-height: 28px;
|
|
339
|
+
}
|
|
340
|
+
.e-bigger .e-gantt .e-filter-popup {
|
|
341
|
+
width: 350px !important;
|
|
342
|
+
}
|
|
343
|
+
.e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
|
|
333
344
|
padding: 16px 0 0 !important;
|
|
334
345
|
}
|
|
335
|
-
.e-bigger .e-
|
|
336
|
-
|
|
346
|
+
.e-bigger .e-gantt .e-filter-popup .e-dlg-content {
|
|
347
|
+
border-radius: 6px !important;
|
|
348
|
+
padding: 32px 16px 16px !important;
|
|
337
349
|
}
|
|
338
350
|
.e-bigger .e-columnmenu {
|
|
339
351
|
top: 40px;
|
|
@@ -342,6 +354,9 @@
|
|
|
342
354
|
border-radius: 6px;
|
|
343
355
|
width: 556px !important;
|
|
344
356
|
}
|
|
357
|
+
.e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
358
|
+
padding: 0 16px !important;
|
|
359
|
+
}
|
|
345
360
|
.e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(odd) {
|
|
346
361
|
padding: 16px 12px 0 16px;
|
|
347
362
|
}
|
|
@@ -370,100 +385,90 @@
|
|
|
370
385
|
.e-bigger .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
371
386
|
border-radius: 50%;
|
|
372
387
|
height: auto !important;
|
|
373
|
-
width: auto
|
|
388
|
+
width: auto;
|
|
374
389
|
}
|
|
375
390
|
.e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
376
391
|
margin-left: 5px !important;
|
|
377
392
|
}
|
|
378
|
-
.e-bigger .e-
|
|
379
|
-
font-size: 16px !important;
|
|
380
|
-
}
|
|
381
|
-
.e-bigger .e-float-input.e-control-wrapper {
|
|
393
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper {
|
|
382
394
|
width: 250px !important;
|
|
383
395
|
}
|
|
384
|
-
.e-bigger .e-
|
|
385
|
-
|
|
386
|
-
}
|
|
387
|
-
.e-bigger .e-predecessor-dialog {
|
|
388
|
-
background-color: #f5f5f5;
|
|
389
|
-
}
|
|
390
|
-
.e-bigger .e-predecessor-dialog .e-dlg-content {
|
|
391
|
-
background-color: #f5f5f5;
|
|
392
|
-
padding: 10px 9px 9px 14px !important;
|
|
393
|
-
}
|
|
394
|
-
.e-bigger .e-dialog .e-dlg-header-content {
|
|
395
|
-
padding: 16px 4px 16px 16px !important;
|
|
396
|
-
}
|
|
397
|
-
.e-bigger .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
398
|
-
left: 0 !important;
|
|
399
|
-
}
|
|
400
|
-
.e-bigger .e-dialog .e-btn .e-btn-icon.e-icon-dlg-close {
|
|
401
|
-
font-size: 12px !important;
|
|
402
|
-
}
|
|
403
|
-
.e-bigger .e-dialog .e-footer-content {
|
|
404
|
-
height: 70px !important;
|
|
405
|
-
padding: 16px !important;
|
|
406
|
-
}
|
|
407
|
-
.e-bigger .e-dialog .e-footer-content .e-btn {
|
|
408
|
-
margin-left: 12px;
|
|
396
|
+
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
397
|
+
font-size: 16px !important;
|
|
409
398
|
}
|
|
410
|
-
.e-bigger .e-dialog .e-
|
|
411
|
-
|
|
399
|
+
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
400
|
+
min-height: 35px !important;
|
|
401
|
+
min-width: 35.82px !important;
|
|
412
402
|
}
|
|
413
|
-
.e-bigger .e-
|
|
414
|
-
height:
|
|
403
|
+
.e-bigger .e-gantt-dialog .e-btn.e-flat {
|
|
404
|
+
line-height: 24px;
|
|
405
|
+
padding: 6px 16px 6px 15px !important;
|
|
415
406
|
}
|
|
416
|
-
.e-bigger .e-
|
|
417
|
-
|
|
407
|
+
.e-bigger .e-gantt-dialog .e-btn.e-primary {
|
|
408
|
+
padding: 6px 21px 6px 23px !important;
|
|
418
409
|
}
|
|
419
|
-
.e-bigger .e-
|
|
420
|
-
|
|
421
|
-
padding: 32px 16px 16px !important;
|
|
410
|
+
.e-bigger .e-gantt-dialog .e-datetime-wrapper .e-time-icon.e-icons::before {
|
|
411
|
+
font-size: 16px !important;
|
|
422
412
|
}
|
|
423
|
-
.e-bigger .e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text {
|
|
413
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text {
|
|
424
414
|
font-size: 14px;
|
|
425
415
|
line-height: 22px;
|
|
426
416
|
}
|
|
427
|
-
.e-bigger .e-float-input.e-control-wrapper input[disabled] ~ label.e-label-top.e-float-text {
|
|
417
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input[disabled] ~ label.e-label-top.e-float-text {
|
|
428
418
|
font-size: 14px;
|
|
429
419
|
line-height: 22px;
|
|
430
420
|
}
|
|
431
|
-
.e-bigger .e-float-input.e-control-wrapper input {
|
|
421
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input {
|
|
432
422
|
height: 34px !important;
|
|
433
423
|
}
|
|
434
|
-
.e-bigger .e-
|
|
435
|
-
color: #adadad !important;
|
|
436
|
-
}
|
|
437
|
-
.e-bigger .e-right-btn:disabled {
|
|
438
|
-
color: #adadad !important;
|
|
439
|
-
}
|
|
440
|
-
.e-bigger .e-input-group-icon.e-date-icon {
|
|
441
|
-
min-width: 36px !important;
|
|
442
|
-
}
|
|
443
|
-
.e-bigger .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
444
|
-
min-height: 35px !important;
|
|
445
|
-
min-width: 35.82px !important;
|
|
446
|
-
}
|
|
447
|
-
.e-bigger .e-numeric.e-control-wrapper.e-input-group .e-input-group-icon {
|
|
424
|
+
.e-bigger .e-gantt-dialog .e-numeric.e-control-wrapper.e-input-group .e-input-group-icon {
|
|
448
425
|
min-height: 35px !important;
|
|
449
426
|
min-width: 35.82px !important;
|
|
450
427
|
}
|
|
451
|
-
.e-bigger .e-control-wrapper .e-input-group-icon.e-time-icon {
|
|
428
|
+
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-time-icon {
|
|
452
429
|
min-height: 35px !important;
|
|
453
430
|
min-width: 35.82px !important;
|
|
454
431
|
}
|
|
455
|
-
.e-bigger .e-input-group.e-control-wrapper {
|
|
432
|
+
.e-bigger .e-gantt-dialog .e-input-group.e-control-wrapper {
|
|
456
433
|
height: 36px;
|
|
457
434
|
}
|
|
458
|
-
.e-bigger .e-
|
|
459
|
-
|
|
435
|
+
.e-bigger .e-gantt-dialog .e-input-group-icon.e-date-icon {
|
|
436
|
+
min-width: 36px !important;
|
|
460
437
|
}
|
|
461
|
-
.e-bigger .e-
|
|
462
|
-
|
|
463
|
-
padding: 6px 16px 6px 15px !important;
|
|
438
|
+
.e-bigger .e-predecessor-tooltip {
|
|
439
|
+
background-color: #000;
|
|
464
440
|
}
|
|
465
|
-
.e-bigger .e-
|
|
466
|
-
|
|
441
|
+
.e-bigger .e-predecessor-tooltip .e-left-btn:disabled {
|
|
442
|
+
color: #adadad !important;
|
|
443
|
+
}
|
|
444
|
+
.e-bigger .e-predecessor-tooltip .e-right-btn:disabled {
|
|
445
|
+
color: #adadad !important;
|
|
446
|
+
}
|
|
447
|
+
.e-bigger .e-predecessor-tooltip .e-tip-content {
|
|
448
|
+
padding: 3px !important;
|
|
449
|
+
}
|
|
450
|
+
.e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type {
|
|
451
|
+
background-color: #000;
|
|
452
|
+
border-color: #000;
|
|
453
|
+
color: #fff;
|
|
454
|
+
font-size: 12px;
|
|
455
|
+
line-height: 18px;
|
|
456
|
+
padding: 0 8px 0 0;
|
|
457
|
+
}
|
|
458
|
+
.e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:last-of-type {
|
|
459
|
+
background-color: #000;
|
|
460
|
+
border-color: #000;
|
|
461
|
+
color: #fff;
|
|
462
|
+
font-size: 12px;
|
|
463
|
+
line-height: 18px;
|
|
464
|
+
padding: 0 0 0 8px;
|
|
465
|
+
}
|
|
466
|
+
.e-bigger .e-predecessor-dialog {
|
|
467
|
+
background-color: #fff;
|
|
468
|
+
}
|
|
469
|
+
.e-bigger .e-predecessor-dialog .e-dlg-content {
|
|
470
|
+
background-color: #fff;
|
|
471
|
+
padding: 10px 9px 9px 14px !important;
|
|
467
472
|
}
|
|
468
473
|
|
|
469
474
|
.e-gantt {
|
|
@@ -1034,6 +1039,9 @@
|
|
|
1034
1039
|
.e-gantt .e-gantt-chart .e-connector-line-hover {
|
|
1035
1040
|
outline: 1px solid;
|
|
1036
1041
|
}
|
|
1042
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-hover {
|
|
1043
|
+
outline: 1px solid;
|
|
1044
|
+
}
|
|
1037
1045
|
.e-gantt .e-gantt-chart .e-connector-line-hover-z-index {
|
|
1038
1046
|
z-index: 100;
|
|
1039
1047
|
}
|
|
@@ -1472,6 +1480,10 @@
|
|
|
1472
1480
|
background-color: #67c1b2;
|
|
1473
1481
|
border: #4fb29f;
|
|
1474
1482
|
}
|
|
1483
|
+
.e-gantt .e-gantt-chart .e-gantt-critical-child-manualprogressbar {
|
|
1484
|
+
background-color: #67c1b2;
|
|
1485
|
+
border: #4fb29f;
|
|
1486
|
+
}
|
|
1475
1487
|
.e-gantt .e-gantt-chart .e-holiday {
|
|
1476
1488
|
background: #393939;
|
|
1477
1489
|
}
|
|
@@ -1503,7 +1515,6 @@
|
|
|
1503
1515
|
}
|
|
1504
1516
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar {
|
|
1505
1517
|
background: linear-gradient(to right, rgba(0, 112, 240, 0.2), #0070f0 30%, #0070f0 70%, #0070f0 70%, rgba(0, 112, 240, 0.2) 100%);
|
|
1506
|
-
background-color: rgba(0, 112, 240, 0.2);
|
|
1507
1518
|
border: 0px;
|
|
1508
1519
|
border-radius: 4px;
|
|
1509
1520
|
}
|
|
@@ -1514,10 +1525,10 @@
|
|
|
1514
1525
|
border-top-color: #dadada;
|
|
1515
1526
|
}
|
|
1516
1527
|
.e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler {
|
|
1517
|
-
background: #
|
|
1528
|
+
background: #2a2a2a;
|
|
1518
1529
|
}
|
|
1519
1530
|
.e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-after {
|
|
1520
|
-
border-bottom-color: #
|
|
1531
|
+
border-bottom-color: #2a2a2a;
|
|
1521
1532
|
}
|
|
1522
1533
|
.e-gantt .e-gantt-chart .e-gantt-dependency-view-container {
|
|
1523
1534
|
display: block;
|
|
@@ -1804,4 +1815,56 @@
|
|
|
1804
1815
|
}
|
|
1805
1816
|
.e-gantt.e-device .e-backarrowspan {
|
|
1806
1817
|
color: #000;
|
|
1818
|
+
}
|
|
1819
|
+
|
|
1820
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line {
|
|
1821
|
+
border-color: #d13438;
|
|
1822
|
+
}
|
|
1823
|
+
|
|
1824
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line-right-arrow {
|
|
1825
|
+
border-left-color: #d13438;
|
|
1826
|
+
}
|
|
1827
|
+
|
|
1828
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line-left-arrow {
|
|
1829
|
+
border-right-color: #d13438;
|
|
1830
|
+
}
|
|
1831
|
+
|
|
1832
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-hover {
|
|
1833
|
+
border-color: #f3d8da;
|
|
1834
|
+
outline-color: #f3d8da;
|
|
1835
|
+
}
|
|
1836
|
+
|
|
1837
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-right-arrow-hover {
|
|
1838
|
+
border-left-color: #f3d8da;
|
|
1839
|
+
}
|
|
1840
|
+
|
|
1841
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-left-arrow-hover {
|
|
1842
|
+
border-right-color: #f3d8da;
|
|
1843
|
+
}
|
|
1844
|
+
|
|
1845
|
+
.e-gantt .e-gantt-chart .e-gantt-child-critical-taskbar-inner-div {
|
|
1846
|
+
background-color: #F3D8DA;
|
|
1847
|
+
border: 1px solid #F3D8DA;
|
|
1848
|
+
border-radius: 4px;
|
|
1849
|
+
}
|
|
1850
|
+
|
|
1851
|
+
.e-gantt .e-gantt-chart .e-gantt-child-critical-progressbar-inner-div {
|
|
1852
|
+
background-color: #D13438;
|
|
1853
|
+
border: 1px solid #0070f0;
|
|
1854
|
+
border-radius: 4px;
|
|
1855
|
+
}
|
|
1856
|
+
|
|
1857
|
+
.e-gantt .e-gantt-chart .e-gantt-critical-unscheduled-taskbar {
|
|
1858
|
+
background: linear-gradient(to right, rgba(255, 85, 85, 0.2), #D13438 30%, #D13438 70%, #D13438 70%, rgba(255, 85, 85, 0.2) 100%);
|
|
1859
|
+
background-color: rgba(255, 85, 85, 0.2);
|
|
1860
|
+
border: 0px;
|
|
1861
|
+
border-radius: 4px;
|
|
1862
|
+
}
|
|
1863
|
+
|
|
1864
|
+
.e-gantt .e-gantt-chart .e-critical-milestone-top {
|
|
1865
|
+
border-bottom-color: #D13438;
|
|
1866
|
+
}
|
|
1867
|
+
|
|
1868
|
+
.e-gantt .e-gantt-chart .e-critical-milestone-bottom {
|
|
1869
|
+
border-top-color: #D13438;
|
|
1807
1870
|
}
|
package/styles/bootstrap.css
CHANGED
|
@@ -306,6 +306,9 @@
|
|
|
306
306
|
.e-gantt .e-add::before {
|
|
307
307
|
content: "\e823";
|
|
308
308
|
}
|
|
309
|
+
.e-gantt .e-critical-path::before {
|
|
310
|
+
content: "\e93a";
|
|
311
|
+
}
|
|
309
312
|
.e-gantt .e-edit::before {
|
|
310
313
|
content: "\e944";
|
|
311
314
|
}
|
|
@@ -400,11 +403,13 @@
|
|
|
400
403
|
.e-bigger .e-gantt .e-gantt-chart .e-timeline-top-header-cell {
|
|
401
404
|
height: 32px;
|
|
402
405
|
}
|
|
403
|
-
.e-bigger .e-gantt .e-gantt-chart .e-taskbar-left-resizer
|
|
406
|
+
.e-bigger .e-gantt .e-gantt-chart .e-taskbar-left-resizer {
|
|
407
|
+
padding-right: 10px;
|
|
408
|
+
width: 25px;
|
|
409
|
+
}
|
|
404
410
|
.e-bigger .e-gantt .e-gantt-chart .e-taskbar-right-resizer {
|
|
405
411
|
padding-left: 10px;
|
|
406
|
-
|
|
407
|
-
width: 30px;
|
|
412
|
+
width: 25px;
|
|
408
413
|
}
|
|
409
414
|
.e-bigger .e-gantt .e-gantt-chart .e-event-markers .e-span-label {
|
|
410
415
|
border-radius: 4px !important;
|
|
@@ -451,33 +456,40 @@
|
|
|
451
456
|
border-color: #fff;
|
|
452
457
|
outline: 2px solid #75acdb;
|
|
453
458
|
}
|
|
459
|
+
.e-bigger .e-gantt .e-tab .e-content {
|
|
460
|
+
height: 242px !important;
|
|
461
|
+
}
|
|
454
462
|
.e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
|
|
455
463
|
height: 63px !important;
|
|
456
464
|
}
|
|
457
|
-
.e-bigger .e-
|
|
458
|
-
|
|
459
|
-
border-color: #000000;
|
|
460
|
-
color: #F9FAFB;
|
|
461
|
-
font-size: 12px;
|
|
462
|
-
line-height: 18px;
|
|
463
|
-
padding: 0 8px 0 0;
|
|
465
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header-content {
|
|
466
|
+
padding: 16px 4px 16px 16px !important;
|
|
464
467
|
}
|
|
465
|
-
.e-bigger .e-
|
|
466
|
-
|
|
467
|
-
border-color: #000000;
|
|
468
|
-
color: #F9FAFB;
|
|
469
|
-
font-size: 12px;
|
|
470
|
-
line-height: 18px;
|
|
471
|
-
padding: 0 0 0 8px;
|
|
468
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
469
|
+
left: 0 !important;
|
|
472
470
|
}
|
|
473
|
-
.e-bigger .e-
|
|
474
|
-
|
|
471
|
+
.e-bigger .e-gantt .e-dialog .e-btn .e-btn-icon.e-icon-dlg-close {
|
|
472
|
+
font-size: 12px !important;
|
|
475
473
|
}
|
|
476
|
-
.e-bigger .e-
|
|
474
|
+
.e-bigger .e-gantt .e-dialog .e-footer-content {
|
|
475
|
+
height: 70px !important;
|
|
476
|
+
padding: 16px !important;
|
|
477
|
+
}
|
|
478
|
+
.e-bigger .e-gantt .e-dialog .e-footer-content .e-btn {
|
|
479
|
+
margin-left: 12px;
|
|
480
|
+
}
|
|
481
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header {
|
|
482
|
+
line-height: 28px;
|
|
483
|
+
}
|
|
484
|
+
.e-bigger .e-gantt .e-filter-popup {
|
|
485
|
+
width: 350px !important;
|
|
486
|
+
}
|
|
487
|
+
.e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
|
|
477
488
|
padding: 16px 0 0 !important;
|
|
478
489
|
}
|
|
479
|
-
.e-bigger .e-
|
|
480
|
-
|
|
490
|
+
.e-bigger .e-gantt .e-filter-popup .e-dlg-content {
|
|
491
|
+
border-radius: 6px !important;
|
|
492
|
+
padding: 32px 16px 16px !important;
|
|
481
493
|
}
|
|
482
494
|
.e-bigger .e-columnmenu {
|
|
483
495
|
top: 40px;
|
|
@@ -486,6 +498,9 @@
|
|
|
486
498
|
border-radius: 6px;
|
|
487
499
|
width: 556px !important;
|
|
488
500
|
}
|
|
501
|
+
.e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
502
|
+
padding: 0 16px !important;
|
|
503
|
+
}
|
|
489
504
|
.e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(odd) {
|
|
490
505
|
padding: 16px 12px 0 16px;
|
|
491
506
|
}
|
|
@@ -514,100 +529,90 @@
|
|
|
514
529
|
.e-bigger .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
515
530
|
border-radius: 50%;
|
|
516
531
|
height: auto !important;
|
|
517
|
-
width: auto
|
|
532
|
+
width: auto;
|
|
518
533
|
}
|
|
519
534
|
.e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
520
535
|
margin-left: 5px !important;
|
|
521
536
|
}
|
|
522
|
-
.e-bigger .e-
|
|
523
|
-
font-size: 16px !important;
|
|
524
|
-
}
|
|
525
|
-
.e-bigger .e-float-input.e-control-wrapper {
|
|
537
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper {
|
|
526
538
|
width: 250px !important;
|
|
527
539
|
}
|
|
528
|
-
.e-bigger .e-
|
|
529
|
-
|
|
530
|
-
}
|
|
531
|
-
.e-bigger .e-predecessor-dialog {
|
|
532
|
-
background-color: #f5f5f5;
|
|
533
|
-
}
|
|
534
|
-
.e-bigger .e-predecessor-dialog .e-dlg-content {
|
|
535
|
-
background-color: #f5f5f5;
|
|
536
|
-
padding: 10px 9px 9px 14px !important;
|
|
537
|
-
}
|
|
538
|
-
.e-bigger .e-dialog .e-dlg-header-content {
|
|
539
|
-
padding: 16px 4px 16px 16px !important;
|
|
540
|
-
}
|
|
541
|
-
.e-bigger .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
542
|
-
left: 0 !important;
|
|
543
|
-
}
|
|
544
|
-
.e-bigger .e-dialog .e-btn .e-btn-icon.e-icon-dlg-close {
|
|
545
|
-
font-size: 12px !important;
|
|
546
|
-
}
|
|
547
|
-
.e-bigger .e-dialog .e-footer-content {
|
|
548
|
-
height: 70px !important;
|
|
549
|
-
padding: 16px !important;
|
|
550
|
-
}
|
|
551
|
-
.e-bigger .e-dialog .e-footer-content .e-btn {
|
|
552
|
-
margin-left: 12px;
|
|
540
|
+
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
541
|
+
font-size: 16px !important;
|
|
553
542
|
}
|
|
554
|
-
.e-bigger .e-dialog .e-
|
|
555
|
-
|
|
543
|
+
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
544
|
+
min-height: 35px !important;
|
|
545
|
+
min-width: 35.82px !important;
|
|
556
546
|
}
|
|
557
|
-
.e-bigger .e-
|
|
558
|
-
height:
|
|
547
|
+
.e-bigger .e-gantt-dialog .e-btn.e-flat {
|
|
548
|
+
line-height: 24px;
|
|
549
|
+
padding: 6px 16px 6px 15px !important;
|
|
559
550
|
}
|
|
560
|
-
.e-bigger .e-
|
|
561
|
-
|
|
551
|
+
.e-bigger .e-gantt-dialog .e-btn.e-primary {
|
|
552
|
+
padding: 6px 21px 6px 23px !important;
|
|
562
553
|
}
|
|
563
|
-
.e-bigger .e-
|
|
564
|
-
|
|
565
|
-
padding: 32px 16px 16px !important;
|
|
554
|
+
.e-bigger .e-gantt-dialog .e-datetime-wrapper .e-time-icon.e-icons::before {
|
|
555
|
+
font-size: 16px !important;
|
|
566
556
|
}
|
|
567
|
-
.e-bigger .e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text {
|
|
557
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text {
|
|
568
558
|
font-size: 14px;
|
|
569
559
|
line-height: 22px;
|
|
570
560
|
}
|
|
571
|
-
.e-bigger .e-float-input.e-control-wrapper input[disabled] ~ label.e-label-top.e-float-text {
|
|
561
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input[disabled] ~ label.e-label-top.e-float-text {
|
|
572
562
|
font-size: 14px;
|
|
573
563
|
line-height: 22px;
|
|
574
564
|
}
|
|
575
|
-
.e-bigger .e-float-input.e-control-wrapper input {
|
|
565
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input {
|
|
576
566
|
height: 34px !important;
|
|
577
567
|
}
|
|
578
|
-
.e-bigger .e-
|
|
579
|
-
color: #ADADAD !important;
|
|
580
|
-
}
|
|
581
|
-
.e-bigger .e-right-btn:disabled {
|
|
582
|
-
color: #ADADAD !important;
|
|
583
|
-
}
|
|
584
|
-
.e-bigger .e-input-group-icon.e-date-icon {
|
|
585
|
-
min-width: 36px !important;
|
|
586
|
-
}
|
|
587
|
-
.e-bigger .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
568
|
+
.e-bigger .e-gantt-dialog .e-numeric.e-control-wrapper.e-input-group .e-input-group-icon {
|
|
588
569
|
min-height: 35px !important;
|
|
589
570
|
min-width: 35.82px !important;
|
|
590
571
|
}
|
|
591
|
-
.e-bigger .e-
|
|
572
|
+
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-time-icon {
|
|
592
573
|
min-height: 35px !important;
|
|
593
574
|
min-width: 35.82px !important;
|
|
594
575
|
}
|
|
595
|
-
.e-bigger .e-
|
|
596
|
-
min-height: 35px !important;
|
|
597
|
-
min-width: 35.82px !important;
|
|
598
|
-
}
|
|
599
|
-
.e-bigger .e-input-group.e-control-wrapper {
|
|
576
|
+
.e-bigger .e-gantt-dialog .e-input-group.e-control-wrapper {
|
|
600
577
|
height: 36px;
|
|
601
578
|
}
|
|
602
|
-
.e-bigger .e-
|
|
603
|
-
|
|
579
|
+
.e-bigger .e-gantt-dialog .e-input-group-icon.e-date-icon {
|
|
580
|
+
min-width: 36px !important;
|
|
604
581
|
}
|
|
605
|
-
.e-bigger .e-
|
|
606
|
-
|
|
607
|
-
padding: 6px 16px 6px 15px !important;
|
|
582
|
+
.e-bigger .e-predecessor-tooltip {
|
|
583
|
+
background-color: #000;
|
|
608
584
|
}
|
|
609
|
-
.e-bigger .e-
|
|
610
|
-
|
|
585
|
+
.e-bigger .e-predecessor-tooltip .e-left-btn:disabled {
|
|
586
|
+
color: #adadad !important;
|
|
587
|
+
}
|
|
588
|
+
.e-bigger .e-predecessor-tooltip .e-right-btn:disabled {
|
|
589
|
+
color: #adadad !important;
|
|
590
|
+
}
|
|
591
|
+
.e-bigger .e-predecessor-tooltip .e-tip-content {
|
|
592
|
+
padding: 3px !important;
|
|
593
|
+
}
|
|
594
|
+
.e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type {
|
|
595
|
+
background-color: #000;
|
|
596
|
+
border-color: #000;
|
|
597
|
+
color: #fff;
|
|
598
|
+
font-size: 12px;
|
|
599
|
+
line-height: 18px;
|
|
600
|
+
padding: 0 8px 0 0;
|
|
601
|
+
}
|
|
602
|
+
.e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:last-of-type {
|
|
603
|
+
background-color: #000;
|
|
604
|
+
border-color: #000;
|
|
605
|
+
color: #fff;
|
|
606
|
+
font-size: 12px;
|
|
607
|
+
line-height: 18px;
|
|
608
|
+
padding: 0 0 0 8px;
|
|
609
|
+
}
|
|
610
|
+
.e-bigger .e-predecessor-dialog {
|
|
611
|
+
background-color: #f5f5f5;
|
|
612
|
+
}
|
|
613
|
+
.e-bigger .e-predecessor-dialog .e-dlg-content {
|
|
614
|
+
background-color: #f5f5f5;
|
|
615
|
+
padding: 10px 9px 9px 14px !important;
|
|
611
616
|
}
|
|
612
617
|
|
|
613
618
|
.e-gantt {
|
|
@@ -1178,6 +1183,9 @@
|
|
|
1178
1183
|
.e-gantt .e-gantt-chart .e-connector-line-hover {
|
|
1179
1184
|
outline: 1px solid;
|
|
1180
1185
|
}
|
|
1186
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-hover {
|
|
1187
|
+
outline: 1px solid;
|
|
1188
|
+
}
|
|
1181
1189
|
.e-gantt .e-gantt-chart .e-connector-line-hover-z-index {
|
|
1182
1190
|
z-index: 100;
|
|
1183
1191
|
}
|
|
@@ -1616,6 +1624,10 @@
|
|
|
1616
1624
|
background-color: #572A96;
|
|
1617
1625
|
border: 0px;
|
|
1618
1626
|
}
|
|
1627
|
+
.e-gantt .e-gantt-chart .e-gantt-critical-child-manualprogressbar {
|
|
1628
|
+
background-color: #572A96;
|
|
1629
|
+
border: 0px;
|
|
1630
|
+
}
|
|
1619
1631
|
.e-gantt .e-gantt-chart .e-holiday {
|
|
1620
1632
|
background: #eee;
|
|
1621
1633
|
}
|
|
@@ -1647,7 +1659,6 @@
|
|
|
1647
1659
|
}
|
|
1648
1660
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar {
|
|
1649
1661
|
background: linear-gradient(to right, rgba(49, 122, 185, 0.2), #317ab9 30%, #317ab9 70%, #317ab9 70%, rgba(49, 122, 185, 0.2) 100%);
|
|
1650
|
-
background-color: rgba(49, 122, 185, 0.2);
|
|
1651
1662
|
border: 0px;
|
|
1652
1663
|
border-radius: 4px;
|
|
1653
1664
|
}
|
|
@@ -1948,4 +1959,56 @@
|
|
|
1948
1959
|
}
|
|
1949
1960
|
.e-gantt.e-device .e-backarrowspan {
|
|
1950
1961
|
color: #000;
|
|
1962
|
+
}
|
|
1963
|
+
|
|
1964
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line {
|
|
1965
|
+
border-color: #d13438;
|
|
1966
|
+
}
|
|
1967
|
+
|
|
1968
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line-right-arrow {
|
|
1969
|
+
border-left-color: #d13438;
|
|
1970
|
+
}
|
|
1971
|
+
|
|
1972
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line-left-arrow {
|
|
1973
|
+
border-right-color: #d13438;
|
|
1974
|
+
}
|
|
1975
|
+
|
|
1976
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-hover {
|
|
1977
|
+
border-color: #f3d8da;
|
|
1978
|
+
outline-color: #f3d8da;
|
|
1979
|
+
}
|
|
1980
|
+
|
|
1981
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-right-arrow-hover {
|
|
1982
|
+
border-left-color: #f3d8da;
|
|
1983
|
+
}
|
|
1984
|
+
|
|
1985
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-left-arrow-hover {
|
|
1986
|
+
border-right-color: #f3d8da;
|
|
1987
|
+
}
|
|
1988
|
+
|
|
1989
|
+
.e-gantt .e-gantt-chart .e-gantt-child-critical-taskbar-inner-div {
|
|
1990
|
+
background-color: #F3D8DA;
|
|
1991
|
+
border: 1px solid #F3D8DA;
|
|
1992
|
+
border-radius: 4px;
|
|
1993
|
+
}
|
|
1994
|
+
|
|
1995
|
+
.e-gantt .e-gantt-chart .e-gantt-child-critical-progressbar-inner-div {
|
|
1996
|
+
background-color: #D13438;
|
|
1997
|
+
border: 1px solid #21527d;
|
|
1998
|
+
border-radius: 4px;
|
|
1999
|
+
}
|
|
2000
|
+
|
|
2001
|
+
.e-gantt .e-gantt-chart .e-gantt-critical-unscheduled-taskbar {
|
|
2002
|
+
background: linear-gradient(to right, rgba(255, 85, 85, 0.2), #D13438 30%, #D13438 70%, #D13438 70%, rgba(255, 85, 85, 0.2) 100%);
|
|
2003
|
+
background-color: rgba(255, 85, 85, 0.2);
|
|
2004
|
+
border: 0px;
|
|
2005
|
+
border-radius: 4px;
|
|
2006
|
+
}
|
|
2007
|
+
|
|
2008
|
+
.e-gantt .e-gantt-chart .e-critical-milestone-top {
|
|
2009
|
+
border-bottom-color: #D13438;
|
|
2010
|
+
}
|
|
2011
|
+
|
|
2012
|
+
.e-gantt .e-gantt-chart .e-critical-milestone-bottom {
|
|
2013
|
+
border-top-color: #D13438;
|
|
1951
2014
|
}
|