@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
|
@@ -194,11 +194,13 @@
|
|
|
194
194
|
.e-bigger .e-gantt .e-gantt-chart .e-timeline-top-header-cell {
|
|
195
195
|
height: 32px;
|
|
196
196
|
}
|
|
197
|
-
.e-bigger .e-gantt .e-gantt-chart .e-taskbar-left-resizer
|
|
197
|
+
.e-bigger .e-gantt .e-gantt-chart .e-taskbar-left-resizer {
|
|
198
|
+
padding-right: 10px;
|
|
199
|
+
width: 25px;
|
|
200
|
+
}
|
|
198
201
|
.e-bigger .e-gantt .e-gantt-chart .e-taskbar-right-resizer {
|
|
199
202
|
padding-left: 10px;
|
|
200
|
-
|
|
201
|
-
width: 30px;
|
|
203
|
+
width: 25px;
|
|
202
204
|
}
|
|
203
205
|
.e-bigger .e-gantt .e-gantt-chart .e-event-markers .e-span-label {
|
|
204
206
|
border-radius: 4px !important;
|
|
@@ -210,7 +212,7 @@
|
|
|
210
212
|
.e-bigger .e-gantt .e-gantt-chart .e-event-markers .e-gantt-right-arrow {
|
|
211
213
|
border-bottom: 6px solid transparent;
|
|
212
214
|
border-right: 6px solid transparent;
|
|
213
|
-
border-right-color: #
|
|
215
|
+
border-right-color: #fff;
|
|
214
216
|
border-top: 6px solid transparent;
|
|
215
217
|
top: 43px !important;
|
|
216
218
|
}
|
|
@@ -245,33 +247,40 @@
|
|
|
245
247
|
border-color: #000;
|
|
246
248
|
outline: 2px solid #e7f1ff;
|
|
247
249
|
}
|
|
250
|
+
.e-bigger .e-gantt .e-tab .e-content {
|
|
251
|
+
height: 241px !important;
|
|
252
|
+
}
|
|
248
253
|
.e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
|
|
249
254
|
height: 63px !important;
|
|
250
255
|
}
|
|
251
|
-
.e-bigger .e-
|
|
252
|
-
|
|
253
|
-
border-color: #000000;
|
|
254
|
-
color: #F9FAFB;
|
|
255
|
-
font-size: 12px;
|
|
256
|
-
line-height: 18px;
|
|
257
|
-
padding: 0 8px 0 0;
|
|
256
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header-content {
|
|
257
|
+
padding: 16px 4px 12px 18px !important;
|
|
258
258
|
}
|
|
259
|
-
.e-bigger .e-
|
|
260
|
-
|
|
261
|
-
border-color: #000000;
|
|
262
|
-
color: #F9FAFB;
|
|
263
|
-
font-size: 12px;
|
|
264
|
-
line-height: 18px;
|
|
265
|
-
padding: 0 0 0 8px;
|
|
259
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
260
|
+
left: 2px !important;
|
|
266
261
|
}
|
|
267
|
-
.e-bigger .e-
|
|
268
|
-
|
|
262
|
+
.e-bigger .e-gantt .e-dialog .e-btn .e-btn-icon.e-icon-dlg-close {
|
|
263
|
+
font-size: 12px !important;
|
|
269
264
|
}
|
|
270
|
-
.e-bigger .e-
|
|
265
|
+
.e-bigger .e-gantt .e-dialog .e-footer-content {
|
|
266
|
+
height: 76px !important;
|
|
267
|
+
padding: 19px 18px 19px 16px !important;
|
|
268
|
+
}
|
|
269
|
+
.e-bigger .e-gantt .e-dialog .e-footer-content .e-btn {
|
|
270
|
+
margin-left: 12px;
|
|
271
|
+
}
|
|
272
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header {
|
|
273
|
+
line-height: 28px;
|
|
274
|
+
}
|
|
275
|
+
.e-bigger .e-gantt .e-filter-popup {
|
|
276
|
+
width: 307px !important;
|
|
277
|
+
}
|
|
278
|
+
.e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
|
|
271
279
|
padding: 20px 0 0 !important;
|
|
272
280
|
}
|
|
273
|
-
.e-bigger .e-
|
|
274
|
-
|
|
281
|
+
.e-bigger .e-gantt .e-filter-popup .e-dlg-content {
|
|
282
|
+
border-radius: 0px !important;
|
|
283
|
+
padding: 20px 18px 0px 18px !important;
|
|
275
284
|
}
|
|
276
285
|
.e-bigger .e-columnmenu {
|
|
277
286
|
top: 45px;
|
|
@@ -280,6 +289,9 @@
|
|
|
280
289
|
border-radius: 6px;
|
|
281
290
|
width: 554px !important;
|
|
282
291
|
}
|
|
292
|
+
.e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
293
|
+
padding: 0 16px !important;
|
|
294
|
+
}
|
|
283
295
|
.e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(odd) {
|
|
284
296
|
padding: 16px 9px 0 18px;
|
|
285
297
|
}
|
|
@@ -308,100 +320,90 @@
|
|
|
308
320
|
.e-bigger .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
309
321
|
border-radius: 50%;
|
|
310
322
|
height: auto !important;
|
|
311
|
-
width: auto
|
|
323
|
+
width: auto;
|
|
312
324
|
}
|
|
313
325
|
.e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
314
326
|
margin-left: 6px !important;
|
|
315
327
|
}
|
|
316
|
-
.e-bigger .e-
|
|
317
|
-
font-size: 16px !important;
|
|
318
|
-
}
|
|
319
|
-
.e-bigger .e-float-input.e-control-wrapper {
|
|
328
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper {
|
|
320
329
|
width: 250px !important;
|
|
321
330
|
}
|
|
322
|
-
.e-bigger .e-
|
|
323
|
-
|
|
324
|
-
}
|
|
325
|
-
.e-bigger .e-predecessor-dialog {
|
|
326
|
-
background-color: #1a1a1a;
|
|
327
|
-
}
|
|
328
|
-
.e-bigger .e-predecessor-dialog .e-dlg-content {
|
|
329
|
-
background-color: #1a1a1a;
|
|
330
|
-
padding: 10px 9px 9px 14px !important;
|
|
331
|
-
}
|
|
332
|
-
.e-bigger .e-dialog .e-dlg-header-content {
|
|
333
|
-
padding: 16px 4px 12px 18px !important;
|
|
334
|
-
}
|
|
335
|
-
.e-bigger .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
336
|
-
left: 2px !important;
|
|
337
|
-
}
|
|
338
|
-
.e-bigger .e-dialog .e-btn .e-btn-icon.e-icon-dlg-close {
|
|
339
|
-
font-size: 12px !important;
|
|
340
|
-
}
|
|
341
|
-
.e-bigger .e-dialog .e-footer-content {
|
|
342
|
-
height: 76px !important;
|
|
343
|
-
padding: 19px 18px 19px 16px !important;
|
|
344
|
-
}
|
|
345
|
-
.e-bigger .e-dialog .e-footer-content .e-btn {
|
|
346
|
-
margin-left: 12px;
|
|
331
|
+
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
332
|
+
font-size: 16px !important;
|
|
347
333
|
}
|
|
348
|
-
.e-bigger .e-dialog .e-
|
|
349
|
-
|
|
334
|
+
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
335
|
+
min-height: 38px !important;
|
|
336
|
+
min-width: 35.82px !important;
|
|
350
337
|
}
|
|
351
|
-
.e-bigger .e-
|
|
352
|
-
height:
|
|
338
|
+
.e-bigger .e-gantt-dialog .e-btn.e-flat {
|
|
339
|
+
line-height: 24px;
|
|
340
|
+
padding: 6px 16px 6px 15px !important;
|
|
353
341
|
}
|
|
354
|
-
.e-bigger .e-
|
|
355
|
-
|
|
342
|
+
.e-bigger .e-gantt-dialog .e-btn.e-primary {
|
|
343
|
+
padding: 6px 21px 6px 23px !important;
|
|
356
344
|
}
|
|
357
|
-
.e-bigger .e-
|
|
358
|
-
|
|
359
|
-
padding: 20px 18px 0px 18px !important;
|
|
345
|
+
.e-bigger .e-gantt-dialog .e-datetime-wrapper .e-time-icon.e-icons::before {
|
|
346
|
+
font-size: 16px !important;
|
|
360
347
|
}
|
|
361
|
-
.e-bigger .e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text {
|
|
348
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text {
|
|
362
349
|
font-size: 14px;
|
|
363
350
|
line-height: 22px;
|
|
364
351
|
}
|
|
365
|
-
.e-bigger .e-float-input.e-control-wrapper input[disabled] ~ label.e-label-top.e-float-text {
|
|
352
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input[disabled] ~ label.e-label-top.e-float-text {
|
|
366
353
|
font-size: 14px;
|
|
367
354
|
line-height: 22px;
|
|
368
355
|
}
|
|
369
|
-
.e-bigger .e-float-input.e-control-wrapper input {
|
|
356
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input {
|
|
370
357
|
height: 38px !important;
|
|
371
358
|
}
|
|
372
|
-
.e-bigger .e-
|
|
373
|
-
color: #757575 !important;
|
|
374
|
-
}
|
|
375
|
-
.e-bigger .e-right-btn:disabled {
|
|
376
|
-
color: #757575 !important;
|
|
377
|
-
}
|
|
378
|
-
.e-bigger .e-input-group-icon.e-date-icon {
|
|
379
|
-
min-width: 36px !important;
|
|
380
|
-
}
|
|
381
|
-
.e-bigger .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
382
|
-
min-height: 38px !important;
|
|
383
|
-
min-width: 35.82px !important;
|
|
384
|
-
}
|
|
385
|
-
.e-bigger .e-numeric.e-control-wrapper.e-input-group .e-input-group-icon {
|
|
359
|
+
.e-bigger .e-gantt-dialog .e-numeric.e-control-wrapper.e-input-group .e-input-group-icon {
|
|
386
360
|
min-height: 38px !important;
|
|
387
361
|
min-width: 35.82px !important;
|
|
388
362
|
}
|
|
389
|
-
.e-bigger .e-control-wrapper .e-input-group-icon.e-time-icon {
|
|
363
|
+
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-time-icon {
|
|
390
364
|
min-height: 38px !important;
|
|
391
365
|
min-width: 35.82px !important;
|
|
392
366
|
}
|
|
393
|
-
.e-bigger .e-input-group.e-control-wrapper {
|
|
367
|
+
.e-bigger .e-gantt-dialog .e-input-group.e-control-wrapper {
|
|
394
368
|
height: 40px;
|
|
395
369
|
}
|
|
396
|
-
.e-bigger .e-
|
|
397
|
-
|
|
370
|
+
.e-bigger .e-gantt-dialog .e-input-group-icon.e-date-icon {
|
|
371
|
+
min-width: 36px !important;
|
|
398
372
|
}
|
|
399
|
-
.e-bigger .e-
|
|
400
|
-
|
|
401
|
-
padding: 6px 16px 6px 15px !important;
|
|
373
|
+
.e-bigger .e-predecessor-tooltip {
|
|
374
|
+
background-color: #000;
|
|
402
375
|
}
|
|
403
|
-
.e-bigger .e-
|
|
404
|
-
|
|
376
|
+
.e-bigger .e-predecessor-tooltip .e-left-btn:disabled {
|
|
377
|
+
color: #757575 !important;
|
|
378
|
+
}
|
|
379
|
+
.e-bigger .e-predecessor-tooltip .e-right-btn:disabled {
|
|
380
|
+
color: #757575 !important;
|
|
381
|
+
}
|
|
382
|
+
.e-bigger .e-predecessor-tooltip .e-tip-content {
|
|
383
|
+
padding: 3px !important;
|
|
384
|
+
}
|
|
385
|
+
.e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type {
|
|
386
|
+
background-color: #000;
|
|
387
|
+
border-color: #000;
|
|
388
|
+
color: #F9FAFB;
|
|
389
|
+
font-size: 12px;
|
|
390
|
+
line-height: 18px;
|
|
391
|
+
padding: 0 8px 0 0;
|
|
392
|
+
}
|
|
393
|
+
.e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:last-of-type {
|
|
394
|
+
background-color: #000;
|
|
395
|
+
border-color: #000;
|
|
396
|
+
color: #F9FAFB;
|
|
397
|
+
font-size: 12px;
|
|
398
|
+
line-height: 18px;
|
|
399
|
+
padding: 0 0 0 8px;
|
|
400
|
+
}
|
|
401
|
+
.e-bigger .e-predecessor-dialog {
|
|
402
|
+
background-color: #1a1a1a;
|
|
403
|
+
}
|
|
404
|
+
.e-bigger .e-predecessor-dialog .e-dlg-content {
|
|
405
|
+
background-color: #1a1a1a;
|
|
406
|
+
padding: 10px 9px 9px 14px !important;
|
|
405
407
|
}
|
|
406
408
|
|
|
407
409
|
.e-gantt {
|
|
@@ -972,6 +974,9 @@
|
|
|
972
974
|
.e-gantt .e-gantt-chart .e-connector-line-hover {
|
|
973
975
|
outline: 1px solid;
|
|
974
976
|
}
|
|
977
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-hover {
|
|
978
|
+
outline: 1px solid;
|
|
979
|
+
}
|
|
975
980
|
.e-gantt .e-gantt-chart .e-connector-line-hover-z-index {
|
|
976
981
|
z-index: 100;
|
|
977
982
|
}
|
|
@@ -1351,7 +1356,7 @@
|
|
|
1351
1356
|
border-top-color: #757575;
|
|
1352
1357
|
}
|
|
1353
1358
|
.e-gantt .e-gantt-chart .e-chart-row-cell {
|
|
1354
|
-
color:
|
|
1359
|
+
color: #000;
|
|
1355
1360
|
}
|
|
1356
1361
|
.e-gantt .e-gantt-chart .e-chart-row-border.e-lastrow {
|
|
1357
1362
|
border-bottom-color: #757575;
|
|
@@ -1410,6 +1415,10 @@
|
|
|
1410
1415
|
background-color: #67c1b2;
|
|
1411
1416
|
border: #4fb29f;
|
|
1412
1417
|
}
|
|
1418
|
+
.e-gantt .e-gantt-chart .e-gantt-critical-child-manualprogressbar {
|
|
1419
|
+
background-color: #67c1b2;
|
|
1420
|
+
border: #4fb29f;
|
|
1421
|
+
}
|
|
1413
1422
|
.e-gantt .e-gantt-chart .e-holiday {
|
|
1414
1423
|
background: #ccc;
|
|
1415
1424
|
}
|
|
@@ -1441,7 +1450,6 @@
|
|
|
1441
1450
|
}
|
|
1442
1451
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar {
|
|
1443
1452
|
background: linear-gradient(to right, rgba(62, 4, 125, 0.2), #3e047d 30%, #3e047d 70%, #3e047d 70%, rgba(62, 4, 125, 0.2) 100%);
|
|
1444
|
-
background-color: rgba(36, 0, 65, 0.2);
|
|
1445
1453
|
border: 0px;
|
|
1446
1454
|
border-radius: 0px;
|
|
1447
1455
|
}
|
|
@@ -1742,4 +1750,56 @@
|
|
|
1742
1750
|
}
|
|
1743
1751
|
.e-gantt.e-device .e-backarrowspan {
|
|
1744
1752
|
color: #000;
|
|
1753
|
+
}
|
|
1754
|
+
|
|
1755
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line {
|
|
1756
|
+
border-color: #d13438;
|
|
1757
|
+
}
|
|
1758
|
+
|
|
1759
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line-right-arrow {
|
|
1760
|
+
border-left-color: #d13438;
|
|
1761
|
+
}
|
|
1762
|
+
|
|
1763
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line-left-arrow {
|
|
1764
|
+
border-right-color: #d13438;
|
|
1765
|
+
}
|
|
1766
|
+
|
|
1767
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-hover {
|
|
1768
|
+
border-color: #f3d8da;
|
|
1769
|
+
outline-color: #f3d8da;
|
|
1770
|
+
}
|
|
1771
|
+
|
|
1772
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-right-arrow-hover {
|
|
1773
|
+
border-left-color: #f3d8da;
|
|
1774
|
+
}
|
|
1775
|
+
|
|
1776
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-left-arrow-hover {
|
|
1777
|
+
border-right-color: #f3d8da;
|
|
1778
|
+
}
|
|
1779
|
+
|
|
1780
|
+
.e-gantt .e-gantt-chart .e-gantt-child-critical-taskbar-inner-div {
|
|
1781
|
+
background-color: #F3D8DA;
|
|
1782
|
+
border: 1px solid #F3D8DA;
|
|
1783
|
+
border-radius: 0px;
|
|
1784
|
+
}
|
|
1785
|
+
|
|
1786
|
+
.e-gantt .e-gantt-chart .e-gantt-child-critical-progressbar-inner-div {
|
|
1787
|
+
background-color: #D13438;
|
|
1788
|
+
border: 0px;
|
|
1789
|
+
border-radius: 4px;
|
|
1790
|
+
}
|
|
1791
|
+
|
|
1792
|
+
.e-gantt .e-gantt-chart .e-gantt-critical-unscheduled-taskbar {
|
|
1793
|
+
background: linear-gradient(to right, rgba(255, 85, 85, 0.2), #D13438 30%, #D13438 70%, #D13438 70%, rgba(255, 85, 85, 0.2) 100%);
|
|
1794
|
+
background-color: rgba(255, 85, 85, 0.2);
|
|
1795
|
+
border: 0px;
|
|
1796
|
+
border-radius: 0px;
|
|
1797
|
+
}
|
|
1798
|
+
|
|
1799
|
+
.e-gantt .e-gantt-chart .e-critical-milestone-top {
|
|
1800
|
+
border-bottom-color: #D13438;
|
|
1801
|
+
}
|
|
1802
|
+
|
|
1803
|
+
.e-gantt .e-gantt-chart .e-critical-milestone-bottom {
|
|
1804
|
+
border-top-color: #D13438;
|
|
1745
1805
|
}
|
|
@@ -1 +1,21 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/highcontrast-light-definition.scss';
|
|
2
|
+
@import 'ej2-grids/styles/grid/highcontrast-light-definition.scss';
|
|
3
|
+
@import 'ej2-treegrid/styles/treegrid/highcontrast-light-definition.scss';
|
|
4
|
+
@import 'ej2-richtexteditor/styles/rich-text-editor/highcontrast-light-definition.scss';
|
|
5
|
+
@import 'ej2-calendars/styles/datepicker/highcontrast-light-definition.scss';
|
|
6
|
+
@import 'ej2-calendars/styles/datetimepicker/highcontrast-light-definition.scss';
|
|
7
|
+
@import 'ej2-buttons/styles/button/highcontrast-light-definition.scss';
|
|
8
|
+
@import 'ej2-dropdowns/styles/drop-down-list/highcontrast-light-definition.scss';
|
|
9
|
+
@import 'ej2-dropdowns/styles/combo-box/highcontrast-light-definition.scss';
|
|
10
|
+
@import 'ej2-dropdowns/styles/multi-select/highcontrast-light-definition.scss';
|
|
11
|
+
@import 'ej2-navigations/styles/toolbar/highcontrast-light-definition.scss';
|
|
12
|
+
@import 'ej2-navigations/styles/tab/highcontrast-light-definition.scss';
|
|
13
|
+
@import 'ej2-navigations/styles/context-menu/highcontrast-light-definition.scss';
|
|
14
|
+
@import 'ej2-inputs/styles/input/highcontrast-light-definition.scss';
|
|
15
|
+
@import 'ej2-inputs/styles/numerictextbox/highcontrast-light-definition.scss';
|
|
16
|
+
@import 'ej2-popups/styles/dialog/highcontrast-light-definition.scss';
|
|
17
|
+
@import 'ej2-popups/styles/spinner/highcontrast-light-definition.scss';
|
|
18
|
+
@import 'ej2-popups/styles/tooltip/highcontrast-light-definition.scss';
|
|
19
|
+
@import 'ej2-layouts/styles/splitter/highcontrast-light-definition.scss';
|
|
20
|
+
@import 'highcontrast-light-definition.scss';
|
|
21
|
+
@import 'all.scss';
|