@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/fabric.css
CHANGED
|
@@ -116,6 +116,9 @@
|
|
|
116
116
|
.e-gantt .e-add::before {
|
|
117
117
|
content: "\e7d5";
|
|
118
118
|
}
|
|
119
|
+
.e-gantt .e-critical-path::before {
|
|
120
|
+
content: "\e931";
|
|
121
|
+
}
|
|
119
122
|
.e-gantt .e-edit::before {
|
|
120
123
|
content: "\e97c";
|
|
121
124
|
}
|
|
@@ -210,11 +213,13 @@
|
|
|
210
213
|
.e-bigger .e-gantt .e-gantt-chart .e-timeline-top-header-cell {
|
|
211
214
|
height: 32px;
|
|
212
215
|
}
|
|
213
|
-
.e-bigger .e-gantt .e-gantt-chart .e-taskbar-left-resizer
|
|
216
|
+
.e-bigger .e-gantt .e-gantt-chart .e-taskbar-left-resizer {
|
|
217
|
+
padding-right: 10px;
|
|
218
|
+
width: 25px;
|
|
219
|
+
}
|
|
214
220
|
.e-bigger .e-gantt .e-gantt-chart .e-taskbar-right-resizer {
|
|
215
221
|
padding-left: 10px;
|
|
216
|
-
|
|
217
|
-
width: 30px;
|
|
222
|
+
width: 25px;
|
|
218
223
|
}
|
|
219
224
|
.e-bigger .e-gantt .e-gantt-chart .e-event-markers .e-span-label {
|
|
220
225
|
border-radius: 4px !important;
|
|
@@ -226,7 +231,7 @@
|
|
|
226
231
|
.e-bigger .e-gantt .e-gantt-chart .e-event-markers .e-gantt-right-arrow {
|
|
227
232
|
border-bottom: 6px solid transparent;
|
|
228
233
|
border-right: 6px solid transparent;
|
|
229
|
-
border-right-color: #
|
|
234
|
+
border-right-color: #deecf9;
|
|
230
235
|
border-top: 6px solid transparent;
|
|
231
236
|
top: 73px !important;
|
|
232
237
|
}
|
|
@@ -261,33 +266,40 @@
|
|
|
261
266
|
border-color: #fff;
|
|
262
267
|
outline: 2px solid #b7e0ff;
|
|
263
268
|
}
|
|
269
|
+
.e-bigger .e-gantt .e-tab .e-content {
|
|
270
|
+
height: 242px !important;
|
|
271
|
+
}
|
|
264
272
|
.e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
|
|
265
273
|
height: 63px !important;
|
|
266
274
|
}
|
|
267
|
-
.e-bigger .e-
|
|
268
|
-
|
|
269
|
-
border-color: #000000;
|
|
270
|
-
color: #F9FAFB;
|
|
271
|
-
font-size: 12px;
|
|
272
|
-
line-height: 18px;
|
|
273
|
-
padding: 0 8px 0 0;
|
|
275
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header-content {
|
|
276
|
+
padding: 16px 4px 16px 16px !important;
|
|
274
277
|
}
|
|
275
|
-
.e-bigger .e-
|
|
276
|
-
|
|
277
|
-
border-color: #000000;
|
|
278
|
-
color: #F9FAFB;
|
|
279
|
-
font-size: 12px;
|
|
280
|
-
line-height: 18px;
|
|
281
|
-
padding: 0 0 0 8px;
|
|
278
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
279
|
+
left: 0 !important;
|
|
282
280
|
}
|
|
283
|
-
.e-bigger .e-
|
|
284
|
-
|
|
281
|
+
.e-bigger .e-gantt .e-dialog .e-btn .e-btn-icon.e-icon-dlg-close {
|
|
282
|
+
font-size: 12px !important;
|
|
285
283
|
}
|
|
286
|
-
.e-bigger .e-
|
|
284
|
+
.e-bigger .e-gantt .e-dialog .e-footer-content {
|
|
285
|
+
height: 70px !important;
|
|
286
|
+
padding: 16px !important;
|
|
287
|
+
}
|
|
288
|
+
.e-bigger .e-gantt .e-dialog .e-footer-content .e-btn {
|
|
289
|
+
margin-left: 12px;
|
|
290
|
+
}
|
|
291
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header {
|
|
292
|
+
line-height: 28px;
|
|
293
|
+
}
|
|
294
|
+
.e-bigger .e-gantt .e-filter-popup {
|
|
295
|
+
width: 350px !important;
|
|
296
|
+
}
|
|
297
|
+
.e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
|
|
287
298
|
padding: 16px 0 0 !important;
|
|
288
299
|
}
|
|
289
|
-
.e-bigger .e-
|
|
290
|
-
|
|
300
|
+
.e-bigger .e-gantt .e-filter-popup .e-dlg-content {
|
|
301
|
+
border-radius: 6px !important;
|
|
302
|
+
padding: 32px 16px 16px !important;
|
|
291
303
|
}
|
|
292
304
|
.e-bigger .e-columnmenu {
|
|
293
305
|
top: 45px;
|
|
@@ -296,6 +308,9 @@
|
|
|
296
308
|
border-radius: 6px;
|
|
297
309
|
width: 556px !important;
|
|
298
310
|
}
|
|
311
|
+
.e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
312
|
+
padding: 0 16px !important;
|
|
313
|
+
}
|
|
299
314
|
.e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(odd) {
|
|
300
315
|
padding: 16px 12px 0 16px;
|
|
301
316
|
}
|
|
@@ -324,100 +339,90 @@
|
|
|
324
339
|
.e-bigger .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
325
340
|
border-radius: 50%;
|
|
326
341
|
height: auto !important;
|
|
327
|
-
width: auto
|
|
342
|
+
width: auto;
|
|
328
343
|
}
|
|
329
344
|
.e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
330
345
|
margin-left: 5px !important;
|
|
331
346
|
}
|
|
332
|
-
.e-bigger .e-
|
|
333
|
-
font-size: 16px !important;
|
|
334
|
-
}
|
|
335
|
-
.e-bigger .e-float-input.e-control-wrapper {
|
|
347
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper {
|
|
336
348
|
width: 250px !important;
|
|
337
349
|
}
|
|
338
|
-
.e-bigger .e-
|
|
339
|
-
|
|
340
|
-
}
|
|
341
|
-
.e-bigger .e-predecessor-dialog {
|
|
342
|
-
background-color: #f8f8f8;
|
|
343
|
-
}
|
|
344
|
-
.e-bigger .e-predecessor-dialog .e-dlg-content {
|
|
345
|
-
background-color: #f8f8f8;
|
|
346
|
-
padding: 10px 9px 9px 14px !important;
|
|
347
|
-
}
|
|
348
|
-
.e-bigger .e-dialog .e-dlg-header-content {
|
|
349
|
-
padding: 16px 4px 16px 16px !important;
|
|
350
|
-
}
|
|
351
|
-
.e-bigger .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
352
|
-
left: 0 !important;
|
|
353
|
-
}
|
|
354
|
-
.e-bigger .e-dialog .e-btn .e-btn-icon.e-icon-dlg-close {
|
|
355
|
-
font-size: 12px !important;
|
|
356
|
-
}
|
|
357
|
-
.e-bigger .e-dialog .e-footer-content {
|
|
358
|
-
height: 70px !important;
|
|
359
|
-
padding: 16px !important;
|
|
360
|
-
}
|
|
361
|
-
.e-bigger .e-dialog .e-footer-content .e-btn {
|
|
362
|
-
margin-left: 12px;
|
|
350
|
+
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
351
|
+
font-size: 16px !important;
|
|
363
352
|
}
|
|
364
|
-
.e-bigger .e-dialog .e-
|
|
365
|
-
|
|
353
|
+
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
354
|
+
min-height: 35px !important;
|
|
355
|
+
min-width: 35.82px !important;
|
|
366
356
|
}
|
|
367
|
-
.e-bigger .e-
|
|
368
|
-
height:
|
|
357
|
+
.e-bigger .e-gantt-dialog .e-btn.e-flat {
|
|
358
|
+
line-height: 24px;
|
|
359
|
+
padding: 6px 16px 6px 15px !important;
|
|
369
360
|
}
|
|
370
|
-
.e-bigger .e-
|
|
371
|
-
|
|
361
|
+
.e-bigger .e-gantt-dialog .e-btn.e-primary {
|
|
362
|
+
padding: 6px 21px 6px 23px !important;
|
|
372
363
|
}
|
|
373
|
-
.e-bigger .e-
|
|
374
|
-
|
|
375
|
-
padding: 32px 16px 16px !important;
|
|
364
|
+
.e-bigger .e-gantt-dialog .e-datetime-wrapper .e-time-icon.e-icons::before {
|
|
365
|
+
font-size: 16px !important;
|
|
376
366
|
}
|
|
377
|
-
.e-bigger .e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text {
|
|
367
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text {
|
|
378
368
|
font-size: 14px;
|
|
379
369
|
line-height: 22px;
|
|
380
370
|
}
|
|
381
|
-
.e-bigger .e-float-input.e-control-wrapper input[disabled] ~ label.e-label-top.e-float-text {
|
|
371
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input[disabled] ~ label.e-label-top.e-float-text {
|
|
382
372
|
font-size: 14px;
|
|
383
373
|
line-height: 22px;
|
|
384
374
|
}
|
|
385
|
-
.e-bigger .e-float-input.e-control-wrapper input {
|
|
375
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input {
|
|
386
376
|
height: 34px !important;
|
|
387
377
|
}
|
|
388
|
-
.e-bigger .e-
|
|
389
|
-
color: #A6A6A6 !important;
|
|
390
|
-
}
|
|
391
|
-
.e-bigger .e-right-btn:disabled {
|
|
392
|
-
color: #A6A6A6 !important;
|
|
393
|
-
}
|
|
394
|
-
.e-bigger .e-input-group-icon.e-date-icon {
|
|
395
|
-
min-width: 36px !important;
|
|
396
|
-
}
|
|
397
|
-
.e-bigger .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
398
|
-
min-height: 35px !important;
|
|
399
|
-
min-width: 35.82px !important;
|
|
400
|
-
}
|
|
401
|
-
.e-bigger .e-numeric.e-control-wrapper.e-input-group .e-input-group-icon {
|
|
378
|
+
.e-bigger .e-gantt-dialog .e-numeric.e-control-wrapper.e-input-group .e-input-group-icon {
|
|
402
379
|
min-height: 35px !important;
|
|
403
380
|
min-width: 35.82px !important;
|
|
404
381
|
}
|
|
405
|
-
.e-bigger .e-control-wrapper .e-input-group-icon.e-time-icon {
|
|
382
|
+
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-time-icon {
|
|
406
383
|
min-height: 35px !important;
|
|
407
384
|
min-width: 35.82px !important;
|
|
408
385
|
}
|
|
409
|
-
.e-bigger .e-input-group.e-control-wrapper {
|
|
386
|
+
.e-bigger .e-gantt-dialog .e-input-group.e-control-wrapper {
|
|
410
387
|
height: 36px;
|
|
411
388
|
}
|
|
412
|
-
.e-bigger .e-
|
|
413
|
-
|
|
389
|
+
.e-bigger .e-gantt-dialog .e-input-group-icon.e-date-icon {
|
|
390
|
+
min-width: 36px !important;
|
|
414
391
|
}
|
|
415
|
-
.e-bigger .e-
|
|
416
|
-
|
|
417
|
-
padding: 6px 16px 6px 15px !important;
|
|
392
|
+
.e-bigger .e-predecessor-tooltip {
|
|
393
|
+
background-color: #000;
|
|
418
394
|
}
|
|
419
|
-
.e-bigger .e-
|
|
420
|
-
|
|
395
|
+
.e-bigger .e-predecessor-tooltip .e-left-btn:disabled {
|
|
396
|
+
color: #a6a6a6 !important;
|
|
397
|
+
}
|
|
398
|
+
.e-bigger .e-predecessor-tooltip .e-right-btn:disabled {
|
|
399
|
+
color: #a6a6a6 !important;
|
|
400
|
+
}
|
|
401
|
+
.e-bigger .e-predecessor-tooltip .e-tip-content {
|
|
402
|
+
padding: 3px !important;
|
|
403
|
+
}
|
|
404
|
+
.e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type {
|
|
405
|
+
background-color: #000;
|
|
406
|
+
border-color: #000;
|
|
407
|
+
color: #fff;
|
|
408
|
+
font-size: 12px;
|
|
409
|
+
line-height: 18px;
|
|
410
|
+
padding: 0 8px 0 0;
|
|
411
|
+
}
|
|
412
|
+
.e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:last-of-type {
|
|
413
|
+
background-color: #000;
|
|
414
|
+
border-color: #000;
|
|
415
|
+
color: #fff;
|
|
416
|
+
font-size: 12px;
|
|
417
|
+
line-height: 18px;
|
|
418
|
+
padding: 0 0 0 8px;
|
|
419
|
+
}
|
|
420
|
+
.e-bigger .e-predecessor-dialog {
|
|
421
|
+
background-color: #f8f8f8;
|
|
422
|
+
}
|
|
423
|
+
.e-bigger .e-predecessor-dialog .e-dlg-content {
|
|
424
|
+
background-color: #f8f8f8;
|
|
425
|
+
padding: 10px 9px 9px 14px !important;
|
|
421
426
|
}
|
|
422
427
|
|
|
423
428
|
.e-gantt {
|
|
@@ -988,6 +993,9 @@
|
|
|
988
993
|
.e-gantt .e-gantt-chart .e-connector-line-hover {
|
|
989
994
|
outline: 1px solid;
|
|
990
995
|
}
|
|
996
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-hover {
|
|
997
|
+
outline: 1px solid;
|
|
998
|
+
}
|
|
991
999
|
.e-gantt .e-gantt-chart .e-connector-line-hover-z-index {
|
|
992
1000
|
z-index: 100;
|
|
993
1001
|
}
|
|
@@ -1364,13 +1372,13 @@
|
|
|
1364
1372
|
border-spacing: 0;
|
|
1365
1373
|
}
|
|
1366
1374
|
.e-gantt .e-gantt-chart .e-chart-row-border {
|
|
1367
|
-
border-top-color: #
|
|
1375
|
+
border-top-color: #eaeaea;
|
|
1368
1376
|
}
|
|
1369
1377
|
.e-gantt .e-gantt-chart .e-chart-row-cell {
|
|
1370
|
-
color:
|
|
1378
|
+
color: #000;
|
|
1371
1379
|
}
|
|
1372
1380
|
.e-gantt .e-gantt-chart .e-chart-row-border.e-lastrow {
|
|
1373
|
-
border-bottom-color: #
|
|
1381
|
+
border-bottom-color: #eaeaea;
|
|
1374
1382
|
}
|
|
1375
1383
|
.e-gantt .e-gantt-chart .e-line-container-cell {
|
|
1376
1384
|
border-color: #e0e0e0;
|
|
@@ -1426,6 +1434,10 @@
|
|
|
1426
1434
|
background-color: #6D1888;
|
|
1427
1435
|
border: 0px;
|
|
1428
1436
|
}
|
|
1437
|
+
.e-gantt .e-gantt-chart .e-gantt-critical-child-manualprogressbar {
|
|
1438
|
+
background-color: #6D1888;
|
|
1439
|
+
border: 0px;
|
|
1440
|
+
}
|
|
1429
1441
|
.e-gantt .e-gantt-chart .e-holiday {
|
|
1430
1442
|
background: #f4f4f4;
|
|
1431
1443
|
}
|
|
@@ -1457,7 +1469,6 @@
|
|
|
1457
1469
|
}
|
|
1458
1470
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar {
|
|
1459
1471
|
background: linear-gradient(to right, rgba(0, 91, 163, 0.2), #005ba3 30%, #005ba3 70%, #005ba3 70%, rgba(0, 91, 163, 0.2) 100%);
|
|
1460
|
-
background-color: rgba(0, 91, 163, 0.2);
|
|
1461
1472
|
border: 0px;
|
|
1462
1473
|
border-radius: 0px;
|
|
1463
1474
|
}
|
|
@@ -1597,13 +1608,13 @@
|
|
|
1597
1608
|
color: #333;
|
|
1598
1609
|
}
|
|
1599
1610
|
.e-gantt .e-gantt-chart .e-baseline-bar {
|
|
1600
|
-
background-color: #
|
|
1611
|
+
background-color: #d83b01;
|
|
1601
1612
|
}
|
|
1602
1613
|
.e-gantt .e-gantt-chart .e-baseline-milestone-top {
|
|
1603
|
-
border-bottom-color: #
|
|
1614
|
+
border-bottom-color: #d83b01;
|
|
1604
1615
|
}
|
|
1605
1616
|
.e-gantt .e-gantt-chart .e-baseline-milestone-bottom {
|
|
1606
|
-
border-top-color: #
|
|
1617
|
+
border-top-color: #d83b01;
|
|
1607
1618
|
}
|
|
1608
1619
|
.e-gantt .e-gantt-chart .e-uptail::before {
|
|
1609
1620
|
border-bottom-color: #e0e0e0;
|
|
@@ -1758,4 +1769,56 @@
|
|
|
1758
1769
|
}
|
|
1759
1770
|
.e-gantt.e-device .e-backarrowspan {
|
|
1760
1771
|
color: #000;
|
|
1772
|
+
}
|
|
1773
|
+
|
|
1774
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line {
|
|
1775
|
+
border-color: #d13438;
|
|
1776
|
+
}
|
|
1777
|
+
|
|
1778
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line-right-arrow {
|
|
1779
|
+
border-left-color: #d13438;
|
|
1780
|
+
}
|
|
1781
|
+
|
|
1782
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line-left-arrow {
|
|
1783
|
+
border-right-color: #d13438;
|
|
1784
|
+
}
|
|
1785
|
+
|
|
1786
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-hover {
|
|
1787
|
+
border-color: #f3d8da;
|
|
1788
|
+
outline-color: #f3d8da;
|
|
1789
|
+
}
|
|
1790
|
+
|
|
1791
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-right-arrow-hover {
|
|
1792
|
+
border-left-color: #f3d8da;
|
|
1793
|
+
}
|
|
1794
|
+
|
|
1795
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-left-arrow-hover {
|
|
1796
|
+
border-right-color: #f3d8da;
|
|
1797
|
+
}
|
|
1798
|
+
|
|
1799
|
+
.e-gantt .e-gantt-chart .e-gantt-child-critical-taskbar-inner-div {
|
|
1800
|
+
background-color: #f3d8da;
|
|
1801
|
+
border: 1px solid #f3d8da;
|
|
1802
|
+
border-radius: 0px;
|
|
1803
|
+
}
|
|
1804
|
+
|
|
1805
|
+
.e-gantt .e-gantt-chart .e-gantt-child-critical-progressbar-inner-div {
|
|
1806
|
+
background-color: #d13438;
|
|
1807
|
+
border: 0px;
|
|
1808
|
+
border-radius: 4px;
|
|
1809
|
+
}
|
|
1810
|
+
|
|
1811
|
+
.e-gantt .e-gantt-chart .e-gantt-critical-unscheduled-taskbar {
|
|
1812
|
+
background: linear-gradient(to right, rgba(255, 85, 85, 0.2), #d13438 30%, #d13438 70%, #d13438 70%, rgba(255, 85, 85, 0.2) 100%);
|
|
1813
|
+
background-color: rgba(255, 85, 85, 0.2);
|
|
1814
|
+
border: 0px;
|
|
1815
|
+
border-radius: 0px;
|
|
1816
|
+
}
|
|
1817
|
+
|
|
1818
|
+
.e-gantt .e-gantt-chart .e-critical-milestone-top {
|
|
1819
|
+
border-bottom-color: #D13438;
|
|
1820
|
+
}
|
|
1821
|
+
|
|
1822
|
+
.e-gantt .e-gantt-chart .e-critical-milestone-bottom {
|
|
1823
|
+
border-top-color: #D13438;
|
|
1761
1824
|
}
|
package/styles/gantt/fabric.scss
CHANGED
|
@@ -1 +1,22 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/fabric-definition.scss';
|
|
2
|
+
@import 'ej2-grids/styles/grid/fabric-definition.scss';
|
|
3
|
+
@import 'ej2-treegrid/styles/treegrid/fabric-definition.scss';
|
|
4
|
+
@import 'ej2-richtexteditor/styles/rich-text-editor/fabric-definition.scss';
|
|
5
|
+
@import 'ej2-calendars/styles/datepicker/fabric-definition.scss';
|
|
6
|
+
@import 'ej2-calendars/styles/datetimepicker/fabric-definition.scss';
|
|
7
|
+
@import 'ej2-buttons/styles/button/fabric-definition.scss';
|
|
8
|
+
@import 'ej2-dropdowns/styles/drop-down-list/fabric-definition.scss';
|
|
9
|
+
@import 'ej2-dropdowns/styles/combo-box/fabric-definition.scss';
|
|
10
|
+
@import 'ej2-dropdowns/styles/multi-select/fabric-definition.scss';
|
|
11
|
+
@import 'ej2-navigations/styles/toolbar/fabric-definition.scss';
|
|
12
|
+
@import 'ej2-navigations/styles/tab/fabric-definition.scss';
|
|
13
|
+
@import 'ej2-navigations/styles/context-menu/fabric-definition.scss';
|
|
14
|
+
@import 'ej2-inputs/styles/input/fabric-definition.scss';
|
|
15
|
+
@import 'ej2-inputs/styles/numerictextbox/fabric-definition.scss';
|
|
16
|
+
@import 'ej2-popups/styles/dialog/fabric-definition.scss';
|
|
17
|
+
@import 'ej2-popups/styles/spinner/fabric-definition.scss';
|
|
18
|
+
@import 'ej2-popups/styles/tooltip/fabric-definition.scss';
|
|
19
|
+
@import 'ej2-layouts/styles/splitter/fabric-definition.scss';
|
|
20
|
+
@import 'fabric-definition.scss';
|
|
21
|
+
@import 'icons/fabric.scss';
|
|
22
|
+
@import 'all.scss';
|