@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
|
@@ -166,6 +166,9 @@
|
|
|
166
166
|
.e-gantt .e-add::before {
|
|
167
167
|
content: "\e805";
|
|
168
168
|
}
|
|
169
|
+
.e-gantt .e-critical-path::before {
|
|
170
|
+
content: "\e88c";
|
|
171
|
+
}
|
|
169
172
|
.e-gantt .e-edit::before {
|
|
170
173
|
content: "\e730";
|
|
171
174
|
}
|
|
@@ -260,11 +263,13 @@
|
|
|
260
263
|
.e-bigger .e-gantt .e-gantt-chart .e-timeline-top-header-cell {
|
|
261
264
|
height: 32px;
|
|
262
265
|
}
|
|
263
|
-
.e-bigger .e-gantt .e-gantt-chart .e-taskbar-left-resizer
|
|
266
|
+
.e-bigger .e-gantt .e-gantt-chart .e-taskbar-left-resizer {
|
|
267
|
+
padding-right: 10px;
|
|
268
|
+
width: 25px;
|
|
269
|
+
}
|
|
264
270
|
.e-bigger .e-gantt .e-gantt-chart .e-taskbar-right-resizer {
|
|
265
271
|
padding-left: 10px;
|
|
266
|
-
|
|
267
|
-
width: 30px;
|
|
272
|
+
width: 25px;
|
|
268
273
|
}
|
|
269
274
|
.e-bigger .e-gantt .e-gantt-chart .e-event-markers .e-span-label {
|
|
270
275
|
border-radius: 4px !important;
|
|
@@ -276,7 +281,7 @@
|
|
|
276
281
|
.e-bigger .e-gantt .e-gantt-chart .e-event-markers .e-gantt-right-arrow {
|
|
277
282
|
border-bottom: 6px solid transparent;
|
|
278
283
|
border-right: 6px solid transparent;
|
|
279
|
-
border-right-color: #
|
|
284
|
+
border-right-color: #ffedd5;
|
|
280
285
|
border-top: 6px solid transparent;
|
|
281
286
|
top: 43px !important;
|
|
282
287
|
}
|
|
@@ -302,42 +307,52 @@
|
|
|
302
307
|
}
|
|
303
308
|
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover,
|
|
304
309
|
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
|
|
305
|
-
background-color: #
|
|
310
|
+
background-color: #10b4cd;
|
|
306
311
|
border-color: #1f2937;
|
|
307
312
|
}
|
|
308
313
|
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover:hover,
|
|
309
314
|
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover:hover {
|
|
310
|
-
background-color: #
|
|
315
|
+
background-color: #10b4cd;
|
|
311
316
|
border-color: #1f2937;
|
|
312
|
-
outline: 2px solid #
|
|
317
|
+
outline: 2px solid #0891b2;
|
|
318
|
+
}
|
|
319
|
+
.e-bigger .e-gantt .e-tab .e-content {
|
|
320
|
+
height: 242px !important;
|
|
313
321
|
}
|
|
314
322
|
.e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
|
|
315
323
|
height: 63px !important;
|
|
316
324
|
}
|
|
317
|
-
.e-bigger .e-
|
|
318
|
-
|
|
319
|
-
border-color: #000000;
|
|
320
|
-
color: #FFFFFF;
|
|
321
|
-
font-size: 12px;
|
|
322
|
-
line-height: 18px;
|
|
323
|
-
padding: 0 8px 0 0;
|
|
325
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header-content {
|
|
326
|
+
padding: 16px 4px 16px 24px !important;
|
|
324
327
|
}
|
|
325
|
-
.e-bigger .e-
|
|
326
|
-
|
|
327
|
-
border-color: #000000;
|
|
328
|
-
color: #FFFFFF;
|
|
329
|
-
font-size: 12px;
|
|
330
|
-
line-height: 18px;
|
|
331
|
-
padding: 0 0 0 8px;
|
|
328
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
329
|
+
left: -2px !important;
|
|
332
330
|
}
|
|
333
|
-
.e-bigger .e-
|
|
334
|
-
|
|
331
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header-content {
|
|
332
|
+
height: 68px !important;
|
|
333
|
+
}
|
|
334
|
+
.e-bigger .e-gantt .e-dialog .e-btn .e-btn-icon.e-icon-dlg-close {
|
|
335
|
+
font-size: 16px !important;
|
|
336
|
+
}
|
|
337
|
+
.e-bigger .e-gantt .e-dialog .e-footer-content {
|
|
338
|
+
height: 62px !important;
|
|
339
|
+
padding: 12px 24px 12px 12px !important;
|
|
340
|
+
}
|
|
341
|
+
.e-bigger .e-gantt .e-dialog .e-footer-content .e-btn {
|
|
342
|
+
margin-left: 12px;
|
|
343
|
+
}
|
|
344
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header {
|
|
345
|
+
line-height: 28px;
|
|
346
|
+
}
|
|
347
|
+
.e-bigger .e-gantt .e-filter-popup {
|
|
348
|
+
width: 319px !important;
|
|
335
349
|
}
|
|
336
|
-
.e-bigger .e-grid .e-flmenu-valuediv {
|
|
350
|
+
.e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
|
|
337
351
|
padding: 24px 0 0 !important;
|
|
338
352
|
}
|
|
339
|
-
.e-bigger .e-
|
|
340
|
-
|
|
353
|
+
.e-bigger .e-gantt .e-filter-popup .e-dlg-content {
|
|
354
|
+
border-radius: 6px !important;
|
|
355
|
+
padding: 23px 24px 15px 24px !important;
|
|
341
356
|
}
|
|
342
357
|
.e-bigger .e-columnmenu {
|
|
343
358
|
top: 35px;
|
|
@@ -346,6 +361,9 @@
|
|
|
346
361
|
border-radius: 6px;
|
|
347
362
|
width: 564px !important;
|
|
348
363
|
}
|
|
364
|
+
.e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
365
|
+
padding: 0 16px !important;
|
|
366
|
+
}
|
|
349
367
|
.e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(odd) {
|
|
350
368
|
padding: 16px 8px 0 24px;
|
|
351
369
|
}
|
|
@@ -374,106 +392,93 @@
|
|
|
374
392
|
.e-bigger .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
375
393
|
border-radius: 50%;
|
|
376
394
|
height: auto !important;
|
|
377
|
-
width: auto
|
|
395
|
+
width: auto;
|
|
378
396
|
}
|
|
379
397
|
.e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
380
398
|
margin-left: 12px !important;
|
|
381
399
|
}
|
|
382
|
-
.e-bigger .e-
|
|
383
|
-
padding: 7px 0 !important;
|
|
384
|
-
}
|
|
385
|
-
.e-bigger .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
386
|
-
font-size: 16px !important;
|
|
387
|
-
}
|
|
388
|
-
.e-bigger .e-float-input.e-control-wrapper {
|
|
400
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper {
|
|
389
401
|
width: 250px !important;
|
|
390
402
|
}
|
|
391
|
-
.e-bigger .e-
|
|
392
|
-
background-color: #000000;
|
|
393
|
-
}
|
|
394
|
-
.e-bigger .e-predecessor-dialog {
|
|
395
|
-
background-color: #f9fafb;
|
|
396
|
-
}
|
|
397
|
-
.e-bigger .e-predecessor-dialog .e-dlg-content {
|
|
398
|
-
background-color: #f9fafb;
|
|
399
|
-
padding: 10px 9px 9px 14px !important;
|
|
400
|
-
}
|
|
401
|
-
.e-bigger .e-dialog .e-dlg-header-content {
|
|
402
|
-
padding: 16px 4px 16px 24px !important;
|
|
403
|
-
}
|
|
404
|
-
.e-bigger .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
405
|
-
left: -2px !important;
|
|
406
|
-
}
|
|
407
|
-
.e-bigger .e-dialog .e-dlg-header-content {
|
|
408
|
-
height: 68px !important;
|
|
409
|
-
}
|
|
410
|
-
.e-bigger .e-dialog .e-btn .e-btn-icon.e-icon-dlg-close {
|
|
403
|
+
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
411
404
|
font-size: 16px !important;
|
|
412
405
|
}
|
|
413
|
-
.e-bigger .e-dialog .e-
|
|
414
|
-
height:
|
|
415
|
-
|
|
416
|
-
}
|
|
417
|
-
.e-bigger .e-dialog .e-footer-content .e-btn {
|
|
418
|
-
margin-left: 12px;
|
|
419
|
-
}
|
|
420
|
-
.e-bigger .e-dialog .e-dlg-header {
|
|
421
|
-
line-height: 28px;
|
|
406
|
+
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
407
|
+
min-height: 18px !important;
|
|
408
|
+
min-width: 35.82px !important;
|
|
422
409
|
}
|
|
423
|
-
.e-bigger .e-
|
|
424
|
-
height:
|
|
410
|
+
.e-bigger .e-gantt-dialog .e-btn.e-flat {
|
|
411
|
+
line-height: 24px;
|
|
412
|
+
padding: 6px 16px 6px 15px !important;
|
|
425
413
|
}
|
|
426
|
-
.e-bigger .e-
|
|
427
|
-
|
|
414
|
+
.e-bigger .e-gantt-dialog .e-btn.e-primary {
|
|
415
|
+
padding: 6px 21px 6px 23px !important;
|
|
428
416
|
}
|
|
429
|
-
.e-bigger .e-
|
|
430
|
-
|
|
431
|
-
padding: 23px 24px 15px 24px !important;
|
|
417
|
+
.e-bigger .e-gantt-dialog .e-datetime-wrapper .e-time-icon.e-icons::before {
|
|
418
|
+
font-size: 16px !important;
|
|
432
419
|
}
|
|
433
|
-
.e-bigger .e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text {
|
|
420
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text {
|
|
434
421
|
font-size: 14px;
|
|
435
422
|
line-height: 22px;
|
|
436
423
|
}
|
|
437
|
-
.e-bigger .e-float-input.e-control-wrapper input[disabled] ~ label.e-label-top.e-float-text {
|
|
424
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input[disabled] ~ label.e-label-top.e-float-text {
|
|
438
425
|
font-size: 14px;
|
|
439
426
|
line-height: 22px;
|
|
440
427
|
}
|
|
441
|
-
.e-bigger .e-float-input.e-control-wrapper input {
|
|
428
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input {
|
|
442
429
|
height: 36px !important;
|
|
443
430
|
}
|
|
444
|
-
.e-bigger .e-
|
|
445
|
-
color: #9CA3Af !important;
|
|
446
|
-
}
|
|
447
|
-
.e-bigger .e-right-btn:disabled {
|
|
448
|
-
color: #9CA3Af !important;
|
|
449
|
-
}
|
|
450
|
-
.e-bigger .e-input-group-icon.e-date-icon {
|
|
451
|
-
min-width: 36px !important;
|
|
452
|
-
}
|
|
453
|
-
.e-bigger .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
431
|
+
.e-bigger .e-gantt-dialog .e-numeric.e-control-wrapper.e-input-group .e-input-group-icon {
|
|
454
432
|
min-height: 18px !important;
|
|
455
433
|
min-width: 35.82px !important;
|
|
456
434
|
}
|
|
457
|
-
.e-bigger .e-
|
|
435
|
+
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-time-icon {
|
|
458
436
|
min-height: 18px !important;
|
|
459
437
|
min-width: 35.82px !important;
|
|
460
438
|
}
|
|
461
|
-
.e-bigger .e-
|
|
462
|
-
min-height: 18px !important;
|
|
463
|
-
min-width: 35.82px !important;
|
|
464
|
-
}
|
|
465
|
-
.e-bigger .e-input-group.e-control-wrapper {
|
|
439
|
+
.e-bigger .e-gantt-dialog .e-input-group.e-control-wrapper {
|
|
466
440
|
height: 38px;
|
|
467
441
|
}
|
|
468
|
-
.e-bigger .e-
|
|
469
|
-
|
|
442
|
+
.e-bigger .e-gantt-dialog .e-input-group-icon.e-date-icon {
|
|
443
|
+
min-width: 36px !important;
|
|
470
444
|
}
|
|
471
|
-
.e-bigger .e-
|
|
472
|
-
|
|
473
|
-
padding: 6px 16px 6px 15px !important;
|
|
445
|
+
.e-bigger .e-gantt-dialog .e-input-group.e-control-wrapper .e-input-group-icon {
|
|
446
|
+
padding: 7px 0 !important;
|
|
474
447
|
}
|
|
475
|
-
.e-bigger .e-
|
|
476
|
-
|
|
448
|
+
.e-bigger .e-predecessor-tooltip {
|
|
449
|
+
background-color: #000;
|
|
450
|
+
}
|
|
451
|
+
.e-bigger .e-predecessor-tooltip .e-left-btn:disabled {
|
|
452
|
+
color: #9ca3af !important;
|
|
453
|
+
}
|
|
454
|
+
.e-bigger .e-predecessor-tooltip .e-right-btn:disabled {
|
|
455
|
+
color: #9ca3af !important;
|
|
456
|
+
}
|
|
457
|
+
.e-bigger .e-predecessor-tooltip .e-tip-content {
|
|
458
|
+
padding: 3px !important;
|
|
459
|
+
}
|
|
460
|
+
.e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type {
|
|
461
|
+
background-color: #000;
|
|
462
|
+
border-color: #000;
|
|
463
|
+
color: #fff;
|
|
464
|
+
font-size: 12px;
|
|
465
|
+
line-height: 18px;
|
|
466
|
+
padding: 0 8px 0 0;
|
|
467
|
+
}
|
|
468
|
+
.e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:last-of-type {
|
|
469
|
+
background-color: #000;
|
|
470
|
+
border-color: #000;
|
|
471
|
+
color: #fff;
|
|
472
|
+
font-size: 12px;
|
|
473
|
+
line-height: 18px;
|
|
474
|
+
padding: 0 0 0 8px;
|
|
475
|
+
}
|
|
476
|
+
.e-bigger .e-predecessor-dialog {
|
|
477
|
+
background-color: #232e3e;
|
|
478
|
+
}
|
|
479
|
+
.e-bigger .e-predecessor-dialog .e-dlg-content {
|
|
480
|
+
background-color: #232e3e;
|
|
481
|
+
padding: 10px 9px 9px 14px !important;
|
|
477
482
|
}
|
|
478
483
|
|
|
479
484
|
.e-gantt {
|
|
@@ -1047,6 +1052,9 @@
|
|
|
1047
1052
|
.e-gantt .e-gantt-chart .e-connector-line-hover {
|
|
1048
1053
|
outline: 1px solid;
|
|
1049
1054
|
}
|
|
1055
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-hover {
|
|
1056
|
+
outline: 1px solid;
|
|
1057
|
+
}
|
|
1050
1058
|
.e-gantt .e-gantt-chart .e-connector-line-hover-z-index {
|
|
1051
1059
|
z-index: 100;
|
|
1052
1060
|
}
|
|
@@ -1486,6 +1494,10 @@
|
|
|
1486
1494
|
background-color: #22c55e;
|
|
1487
1495
|
border: 0px;
|
|
1488
1496
|
}
|
|
1497
|
+
.e-gantt .e-gantt-chart .e-gantt-critical-child-manualprogressbar {
|
|
1498
|
+
background-color: #22c55e;
|
|
1499
|
+
border: 0px;
|
|
1500
|
+
}
|
|
1489
1501
|
.e-gantt .e-gantt-chart .e-holiday {
|
|
1490
1502
|
background: #232e3e;
|
|
1491
1503
|
}
|
|
@@ -1517,7 +1529,6 @@
|
|
|
1517
1529
|
}
|
|
1518
1530
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar {
|
|
1519
1531
|
background: linear-gradient(to right, #0891b2, #22d3ee 30%, #22d3ee 70%, #22d3ee 70%, #0891b2 100%);
|
|
1520
|
-
background-color: rgba(63, 81, 181, 0.2);
|
|
1521
1532
|
border: 0px;
|
|
1522
1533
|
border-radius: 2px;
|
|
1523
1534
|
}
|
|
@@ -1561,7 +1572,7 @@
|
|
|
1561
1572
|
}
|
|
1562
1573
|
.e-gantt .e-gantt-chart .e-connectorpoint-left-hover,
|
|
1563
1574
|
.e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
|
|
1564
|
-
background-color: #
|
|
1575
|
+
background-color: #10b4cd;
|
|
1565
1576
|
border-color: #1f2937;
|
|
1566
1577
|
}
|
|
1567
1578
|
.e-gantt .e-gantt-chart .e-connectorpoint-left-hover:hover,
|
|
@@ -1621,7 +1632,7 @@
|
|
|
1621
1632
|
font-size: 12px;
|
|
1622
1633
|
}
|
|
1623
1634
|
.e-gantt .e-gantt-chart .e-icon {
|
|
1624
|
-
color: #
|
|
1635
|
+
color: #000;
|
|
1625
1636
|
}
|
|
1626
1637
|
.e-gantt .e-gantt-chart .e-milestone-top {
|
|
1627
1638
|
border-bottom-color: #9ca3af;
|
|
@@ -1669,13 +1680,13 @@
|
|
|
1669
1680
|
border-bottom-color: #4b5563;
|
|
1670
1681
|
}
|
|
1671
1682
|
.e-gantt .e-gantt-chart .e-downtail::after {
|
|
1672
|
-
border-top-color: #
|
|
1683
|
+
border-top-color: #000;
|
|
1673
1684
|
}
|
|
1674
1685
|
.e-gantt .e-gantt-chart .e-downtail::before {
|
|
1675
1686
|
border-top-color: #4b5563;
|
|
1676
1687
|
}
|
|
1677
1688
|
.e-gantt .e-gantt-chart .e-ganttpopup .e-content {
|
|
1678
|
-
background-color: #
|
|
1689
|
+
background-color: #000;
|
|
1679
1690
|
border-color: #4b5563;
|
|
1680
1691
|
}
|
|
1681
1692
|
.e-gantt .e-gantt-chart .e-spanclicked,
|
|
@@ -1818,4 +1829,56 @@
|
|
|
1818
1829
|
}
|
|
1819
1830
|
.e-gantt.e-device .e-backarrowspan {
|
|
1820
1831
|
color: #000;
|
|
1832
|
+
}
|
|
1833
|
+
|
|
1834
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line {
|
|
1835
|
+
border-color: #f87171;
|
|
1836
|
+
}
|
|
1837
|
+
|
|
1838
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line-right-arrow {
|
|
1839
|
+
border-left-color: #f87171;
|
|
1840
|
+
}
|
|
1841
|
+
|
|
1842
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line-left-arrow {
|
|
1843
|
+
border-right-color: #f87171;
|
|
1844
|
+
}
|
|
1845
|
+
|
|
1846
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-hover {
|
|
1847
|
+
border-color: #fee2e2;
|
|
1848
|
+
outline-color: #fee2e2;
|
|
1849
|
+
}
|
|
1850
|
+
|
|
1851
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-right-arrow-hover {
|
|
1852
|
+
border-left-color: #fee2e2;
|
|
1853
|
+
}
|
|
1854
|
+
|
|
1855
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-left-arrow-hover {
|
|
1856
|
+
border-right-color: #fee2e2;
|
|
1857
|
+
}
|
|
1858
|
+
|
|
1859
|
+
.e-gantt .e-gantt-chart .e-gantt-child-critical-taskbar-inner-div {
|
|
1860
|
+
background-color: #fee2e2;
|
|
1861
|
+
border: 1px solid #fee2e2;
|
|
1862
|
+
border-radius: 4px;
|
|
1863
|
+
}
|
|
1864
|
+
|
|
1865
|
+
.e-gantt .e-gantt-chart .e-gantt-child-critical-progressbar-inner-div {
|
|
1866
|
+
background-color: #f87171;
|
|
1867
|
+
border: 0px;
|
|
1868
|
+
border-radius: 4px;
|
|
1869
|
+
}
|
|
1870
|
+
|
|
1871
|
+
.e-gantt .e-gantt-chart .e-gantt-critical-unscheduled-taskbar {
|
|
1872
|
+
background: linear-gradient(to right, rgba(255, 85, 85, 0.2), #f87171 30%, #f87171 70%, #f87171 70%, rgba(255, 85, 85, 0.2) 100%);
|
|
1873
|
+
background-color: rgba(255, 85, 85, 0.2);
|
|
1874
|
+
border: 0px;
|
|
1875
|
+
border-radius: 2px;
|
|
1876
|
+
}
|
|
1877
|
+
|
|
1878
|
+
.e-gantt .e-gantt-chart .e-critical-milestone-top {
|
|
1879
|
+
border-bottom-color: #f87171;
|
|
1880
|
+
}
|
|
1881
|
+
|
|
1882
|
+
.e-gantt .e-gantt-chart .e-critical-milestone-bottom {
|
|
1883
|
+
border-top-color: #f87171;
|
|
1821
1884
|
}
|
|
@@ -1 +1,22 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/tailwind-dark-definition.scss';
|
|
2
|
+
@import 'ej2-grids/styles/grid/tailwind-dark-definition.scss';
|
|
3
|
+
@import 'ej2-treegrid/styles/treegrid/tailwind-dark-definition.scss';
|
|
4
|
+
@import 'ej2-richtexteditor/styles/rich-text-editor/tailwind-dark-definition.scss';
|
|
5
|
+
@import 'ej2-calendars/styles/datepicker/tailwind-dark-definition.scss';
|
|
6
|
+
@import 'ej2-calendars/styles/datetimepicker/tailwind-dark-definition.scss';
|
|
7
|
+
@import 'ej2-buttons/styles/button/tailwind-dark-definition.scss';
|
|
8
|
+
@import 'ej2-dropdowns/styles/drop-down-list/tailwind-dark-definition.scss';
|
|
9
|
+
@import 'ej2-dropdowns/styles/combo-box/tailwind-dark-definition.scss';
|
|
10
|
+
@import 'ej2-dropdowns/styles/multi-select/tailwind-dark-definition.scss';
|
|
11
|
+
@import 'ej2-navigations/styles/toolbar/tailwind-dark-definition.scss';
|
|
12
|
+
@import 'ej2-navigations/styles/tab/tailwind-dark-definition.scss';
|
|
13
|
+
@import 'ej2-navigations/styles/context-menu/tailwind-dark-definition.scss';
|
|
14
|
+
@import 'ej2-inputs/styles/input/tailwind-dark-definition.scss';
|
|
15
|
+
@import 'ej2-inputs/styles/numerictextbox/tailwind-dark-definition.scss';
|
|
16
|
+
@import 'ej2-popups/styles/dialog/tailwind-dark-definition.scss';
|
|
17
|
+
@import 'ej2-popups/styles/spinner/tailwind-dark-definition.scss';
|
|
18
|
+
@import 'ej2-popups/styles/tooltip/tailwind-dark-definition.scss';
|
|
19
|
+
@import 'ej2-layouts/styles/splitter/tailwind-dark-definition.scss';
|
|
20
|
+
@import 'tailwind-dark-definition.scss';
|
|
21
|
+
@import 'icons/tailwind-dark.scss';
|
|
22
|
+
@import 'all.scss';
|