@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
|
}
|
package/styles/highcontrast.css
CHANGED
|
@@ -199,6 +199,9 @@
|
|
|
199
199
|
.e-gantt .e-add::before {
|
|
200
200
|
content: "\e7d5";
|
|
201
201
|
}
|
|
202
|
+
.e-gantt .e-critical-path::before {
|
|
203
|
+
content: "\e931";
|
|
204
|
+
}
|
|
202
205
|
.e-gantt .e-edit::before {
|
|
203
206
|
content: "\e97c";
|
|
204
207
|
}
|
|
@@ -293,11 +296,13 @@
|
|
|
293
296
|
.e-bigger .e-gantt .e-gantt-chart .e-timeline-top-header-cell {
|
|
294
297
|
height: 32px;
|
|
295
298
|
}
|
|
296
|
-
.e-bigger .e-gantt .e-gantt-chart .e-taskbar-left-resizer
|
|
299
|
+
.e-bigger .e-gantt .e-gantt-chart .e-taskbar-left-resizer {
|
|
300
|
+
padding-right: 10px;
|
|
301
|
+
width: 25px;
|
|
302
|
+
}
|
|
297
303
|
.e-bigger .e-gantt .e-gantt-chart .e-taskbar-right-resizer {
|
|
298
304
|
padding-left: 10px;
|
|
299
|
-
|
|
300
|
-
width: 30px;
|
|
305
|
+
width: 25px;
|
|
301
306
|
}
|
|
302
307
|
.e-bigger .e-gantt .e-gantt-chart .e-event-markers .e-span-label {
|
|
303
308
|
border-radius: 4px !important;
|
|
@@ -309,7 +314,7 @@
|
|
|
309
314
|
.e-bigger .e-gantt .e-gantt-chart .e-event-markers .e-gantt-right-arrow {
|
|
310
315
|
border-bottom: 6px solid transparent;
|
|
311
316
|
border-right: 6px solid transparent;
|
|
312
|
-
border-right-color: #
|
|
317
|
+
border-right-color: #fff;
|
|
313
318
|
border-top: 6px solid transparent;
|
|
314
319
|
top: 43px !important;
|
|
315
320
|
}
|
|
@@ -344,33 +349,40 @@
|
|
|
344
349
|
border-color: #000;
|
|
345
350
|
outline: 2px solid #685708;
|
|
346
351
|
}
|
|
352
|
+
.e-bigger .e-gantt .e-tab .e-content {
|
|
353
|
+
height: 241px !important;
|
|
354
|
+
}
|
|
347
355
|
.e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
|
|
348
356
|
height: 63px !important;
|
|
349
357
|
}
|
|
350
|
-
.e-bigger .e-
|
|
351
|
-
|
|
352
|
-
border-color: #000000;
|
|
353
|
-
color: #F9FAFB;
|
|
354
|
-
font-size: 12px;
|
|
355
|
-
line-height: 18px;
|
|
356
|
-
padding: 0 8px 0 0;
|
|
358
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header-content {
|
|
359
|
+
padding: 16px 4px 12px 18px !important;
|
|
357
360
|
}
|
|
358
|
-
.e-bigger .e-
|
|
359
|
-
|
|
360
|
-
border-color: #000000;
|
|
361
|
-
color: #F9FAFB;
|
|
362
|
-
font-size: 12px;
|
|
363
|
-
line-height: 18px;
|
|
364
|
-
padding: 0 0 0 8px;
|
|
361
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
362
|
+
left: 2px !important;
|
|
365
363
|
}
|
|
366
|
-
.e-bigger .e-
|
|
367
|
-
|
|
364
|
+
.e-bigger .e-gantt .e-dialog .e-btn .e-btn-icon.e-icon-dlg-close {
|
|
365
|
+
font-size: 12px !important;
|
|
366
|
+
}
|
|
367
|
+
.e-bigger .e-gantt .e-dialog .e-footer-content {
|
|
368
|
+
height: 76px !important;
|
|
369
|
+
padding: 19px 18px 19px 16px !important;
|
|
370
|
+
}
|
|
371
|
+
.e-bigger .e-gantt .e-dialog .e-footer-content .e-btn {
|
|
372
|
+
margin-left: 12px;
|
|
373
|
+
}
|
|
374
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header {
|
|
375
|
+
line-height: 28px;
|
|
368
376
|
}
|
|
369
|
-
.e-bigger .e-
|
|
377
|
+
.e-bigger .e-gantt .e-filter-popup {
|
|
378
|
+
width: 307px !important;
|
|
379
|
+
}
|
|
380
|
+
.e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
|
|
370
381
|
padding: 20px 0 0 !important;
|
|
371
382
|
}
|
|
372
|
-
.e-bigger .e-
|
|
373
|
-
|
|
383
|
+
.e-bigger .e-gantt .e-filter-popup .e-dlg-content {
|
|
384
|
+
border-radius: 0px !important;
|
|
385
|
+
padding: 20px 18px 0px 18px !important;
|
|
374
386
|
}
|
|
375
387
|
.e-bigger .e-columnmenu {
|
|
376
388
|
top: 45px;
|
|
@@ -379,6 +391,9 @@
|
|
|
379
391
|
border-radius: 6px;
|
|
380
392
|
width: 554px !important;
|
|
381
393
|
}
|
|
394
|
+
.e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
395
|
+
padding: 0 16px !important;
|
|
396
|
+
}
|
|
382
397
|
.e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(odd) {
|
|
383
398
|
padding: 16px 9px 0 18px;
|
|
384
399
|
}
|
|
@@ -407,100 +422,90 @@
|
|
|
407
422
|
.e-bigger .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
408
423
|
border-radius: 50%;
|
|
409
424
|
height: auto !important;
|
|
410
|
-
width: auto
|
|
425
|
+
width: auto;
|
|
411
426
|
}
|
|
412
427
|
.e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
413
428
|
margin-left: 6px !important;
|
|
414
429
|
}
|
|
415
|
-
.e-bigger .e-
|
|
416
|
-
font-size: 16px !important;
|
|
417
|
-
}
|
|
418
|
-
.e-bigger .e-float-input.e-control-wrapper {
|
|
430
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper {
|
|
419
431
|
width: 250px !important;
|
|
420
432
|
}
|
|
421
|
-
.e-bigger .e-
|
|
422
|
-
|
|
423
|
-
}
|
|
424
|
-
.e-bigger .e-predecessor-dialog {
|
|
425
|
-
background-color: #1a1a1a;
|
|
426
|
-
}
|
|
427
|
-
.e-bigger .e-predecessor-dialog .e-dlg-content {
|
|
428
|
-
background-color: #1a1a1a;
|
|
429
|
-
padding: 10px 9px 9px 14px !important;
|
|
430
|
-
}
|
|
431
|
-
.e-bigger .e-dialog .e-dlg-header-content {
|
|
432
|
-
padding: 16px 4px 12px 18px !important;
|
|
433
|
-
}
|
|
434
|
-
.e-bigger .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
435
|
-
left: 2px !important;
|
|
436
|
-
}
|
|
437
|
-
.e-bigger .e-dialog .e-btn .e-btn-icon.e-icon-dlg-close {
|
|
438
|
-
font-size: 12px !important;
|
|
439
|
-
}
|
|
440
|
-
.e-bigger .e-dialog .e-footer-content {
|
|
441
|
-
height: 76px !important;
|
|
442
|
-
padding: 19px 18px 19px 16px !important;
|
|
443
|
-
}
|
|
444
|
-
.e-bigger .e-dialog .e-footer-content .e-btn {
|
|
445
|
-
margin-left: 12px;
|
|
433
|
+
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
434
|
+
font-size: 16px !important;
|
|
446
435
|
}
|
|
447
|
-
.e-bigger .e-dialog .e-
|
|
448
|
-
|
|
436
|
+
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
437
|
+
min-height: 38px !important;
|
|
438
|
+
min-width: 35.82px !important;
|
|
449
439
|
}
|
|
450
|
-
.e-bigger .e-
|
|
451
|
-
height:
|
|
440
|
+
.e-bigger .e-gantt-dialog .e-btn.e-flat {
|
|
441
|
+
line-height: 24px;
|
|
442
|
+
padding: 6px 16px 6px 15px !important;
|
|
452
443
|
}
|
|
453
|
-
.e-bigger .e-
|
|
454
|
-
|
|
444
|
+
.e-bigger .e-gantt-dialog .e-btn.e-primary {
|
|
445
|
+
padding: 6px 21px 6px 23px !important;
|
|
455
446
|
}
|
|
456
|
-
.e-bigger .e-
|
|
457
|
-
|
|
458
|
-
padding: 20px 18px 0px 18px !important;
|
|
447
|
+
.e-bigger .e-gantt-dialog .e-datetime-wrapper .e-time-icon.e-icons::before {
|
|
448
|
+
font-size: 16px !important;
|
|
459
449
|
}
|
|
460
|
-
.e-bigger .e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text {
|
|
450
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text {
|
|
461
451
|
font-size: 14px;
|
|
462
452
|
line-height: 22px;
|
|
463
453
|
}
|
|
464
|
-
.e-bigger .e-float-input.e-control-wrapper input[disabled] ~ label.e-label-top.e-float-text {
|
|
454
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input[disabled] ~ label.e-label-top.e-float-text {
|
|
465
455
|
font-size: 14px;
|
|
466
456
|
line-height: 22px;
|
|
467
457
|
}
|
|
468
|
-
.e-bigger .e-float-input.e-control-wrapper input {
|
|
458
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input {
|
|
469
459
|
height: 38px !important;
|
|
470
460
|
}
|
|
471
|
-
.e-bigger .e-
|
|
472
|
-
color: #757575 !important;
|
|
473
|
-
}
|
|
474
|
-
.e-bigger .e-right-btn:disabled {
|
|
475
|
-
color: #757575 !important;
|
|
476
|
-
}
|
|
477
|
-
.e-bigger .e-input-group-icon.e-date-icon {
|
|
478
|
-
min-width: 36px !important;
|
|
479
|
-
}
|
|
480
|
-
.e-bigger .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
461
|
+
.e-bigger .e-gantt-dialog .e-numeric.e-control-wrapper.e-input-group .e-input-group-icon {
|
|
481
462
|
min-height: 38px !important;
|
|
482
463
|
min-width: 35.82px !important;
|
|
483
464
|
}
|
|
484
|
-
.e-bigger .e-
|
|
465
|
+
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-time-icon {
|
|
485
466
|
min-height: 38px !important;
|
|
486
467
|
min-width: 35.82px !important;
|
|
487
468
|
}
|
|
488
|
-
.e-bigger .e-
|
|
489
|
-
min-height: 38px !important;
|
|
490
|
-
min-width: 35.82px !important;
|
|
491
|
-
}
|
|
492
|
-
.e-bigger .e-input-group.e-control-wrapper {
|
|
469
|
+
.e-bigger .e-gantt-dialog .e-input-group.e-control-wrapper {
|
|
493
470
|
height: 40px;
|
|
494
471
|
}
|
|
495
|
-
.e-bigger .e-
|
|
496
|
-
|
|
472
|
+
.e-bigger .e-gantt-dialog .e-input-group-icon.e-date-icon {
|
|
473
|
+
min-width: 36px !important;
|
|
497
474
|
}
|
|
498
|
-
.e-bigger .e-
|
|
499
|
-
|
|
500
|
-
padding: 6px 16px 6px 15px !important;
|
|
475
|
+
.e-bigger .e-predecessor-tooltip {
|
|
476
|
+
background-color: #000;
|
|
501
477
|
}
|
|
502
|
-
.e-bigger .e-
|
|
503
|
-
|
|
478
|
+
.e-bigger .e-predecessor-tooltip .e-left-btn:disabled {
|
|
479
|
+
color: #757575 !important;
|
|
480
|
+
}
|
|
481
|
+
.e-bigger .e-predecessor-tooltip .e-right-btn:disabled {
|
|
482
|
+
color: #757575 !important;
|
|
483
|
+
}
|
|
484
|
+
.e-bigger .e-predecessor-tooltip .e-tip-content {
|
|
485
|
+
padding: 3px !important;
|
|
486
|
+
}
|
|
487
|
+
.e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type {
|
|
488
|
+
background-color: #000;
|
|
489
|
+
border-color: #000;
|
|
490
|
+
color: #F9FAFB;
|
|
491
|
+
font-size: 12px;
|
|
492
|
+
line-height: 18px;
|
|
493
|
+
padding: 0 8px 0 0;
|
|
494
|
+
}
|
|
495
|
+
.e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:last-of-type {
|
|
496
|
+
background-color: #000;
|
|
497
|
+
border-color: #000;
|
|
498
|
+
color: #F9FAFB;
|
|
499
|
+
font-size: 12px;
|
|
500
|
+
line-height: 18px;
|
|
501
|
+
padding: 0 0 0 8px;
|
|
502
|
+
}
|
|
503
|
+
.e-bigger .e-predecessor-dialog {
|
|
504
|
+
background-color: #1a1a1a;
|
|
505
|
+
}
|
|
506
|
+
.e-bigger .e-predecessor-dialog .e-dlg-content {
|
|
507
|
+
background-color: #1a1a1a;
|
|
508
|
+
padding: 10px 9px 9px 14px !important;
|
|
504
509
|
}
|
|
505
510
|
|
|
506
511
|
.e-gantt {
|
|
@@ -1071,6 +1076,9 @@
|
|
|
1071
1076
|
.e-gantt .e-gantt-chart .e-connector-line-hover {
|
|
1072
1077
|
outline: 1px solid;
|
|
1073
1078
|
}
|
|
1079
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-hover {
|
|
1080
|
+
outline: 1px solid;
|
|
1081
|
+
}
|
|
1074
1082
|
.e-gantt .e-gantt-chart .e-connector-line-hover-z-index {
|
|
1075
1083
|
z-index: 100;
|
|
1076
1084
|
}
|
|
@@ -1450,7 +1458,7 @@
|
|
|
1450
1458
|
border-top-color: #969696;
|
|
1451
1459
|
}
|
|
1452
1460
|
.e-gantt .e-gantt-chart .e-chart-row-cell {
|
|
1453
|
-
color:
|
|
1461
|
+
color: #fff;
|
|
1454
1462
|
}
|
|
1455
1463
|
.e-gantt .e-gantt-chart .e-chart-row-border.e-lastrow {
|
|
1456
1464
|
border-bottom-color: #969696;
|
|
@@ -1509,6 +1517,10 @@
|
|
|
1509
1517
|
background-color: #1B00F7;
|
|
1510
1518
|
border: 0px;
|
|
1511
1519
|
}
|
|
1520
|
+
.e-gantt .e-gantt-chart .e-gantt-critical-child-manualprogressbar {
|
|
1521
|
+
background-color: #1B00F7;
|
|
1522
|
+
border: 0px;
|
|
1523
|
+
}
|
|
1512
1524
|
.e-gantt .e-gantt-chart .e-holiday {
|
|
1513
1525
|
background: #333;
|
|
1514
1526
|
}
|
|
@@ -1540,7 +1552,6 @@
|
|
|
1540
1552
|
}
|
|
1541
1553
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar {
|
|
1542
1554
|
background: linear-gradient(to right, rgba(62, 4, 125, 0.2), #3e047d 30%, #3e047d 70%, #3e047d 70%, rgba(62, 4, 125, 0.2) 100%);
|
|
1543
|
-
background-color: rgba(255, 207, 6, 0.2);
|
|
1544
1555
|
border: 0px;
|
|
1545
1556
|
border-radius: 0px;
|
|
1546
1557
|
}
|
|
@@ -1841,4 +1852,56 @@
|
|
|
1841
1852
|
}
|
|
1842
1853
|
.e-gantt.e-device .e-backarrowspan {
|
|
1843
1854
|
color: #000;
|
|
1855
|
+
}
|
|
1856
|
+
|
|
1857
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line {
|
|
1858
|
+
border-color: #d13438;
|
|
1859
|
+
}
|
|
1860
|
+
|
|
1861
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line-right-arrow {
|
|
1862
|
+
border-left-color: #d13438;
|
|
1863
|
+
}
|
|
1864
|
+
|
|
1865
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line-left-arrow {
|
|
1866
|
+
border-right-color: #d13438;
|
|
1867
|
+
}
|
|
1868
|
+
|
|
1869
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-hover {
|
|
1870
|
+
border-color: #f3d8da;
|
|
1871
|
+
outline-color: #f3d8da;
|
|
1872
|
+
}
|
|
1873
|
+
|
|
1874
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-right-arrow-hover {
|
|
1875
|
+
border-left-color: #f3d8da;
|
|
1876
|
+
}
|
|
1877
|
+
|
|
1878
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-left-arrow-hover {
|
|
1879
|
+
border-right-color: #f3d8da;
|
|
1880
|
+
}
|
|
1881
|
+
|
|
1882
|
+
.e-gantt .e-gantt-chart .e-gantt-child-critical-taskbar-inner-div {
|
|
1883
|
+
background-color: #F3D8DA;
|
|
1884
|
+
border: 1px solid #F3D8DA;
|
|
1885
|
+
border-radius: 0px;
|
|
1886
|
+
}
|
|
1887
|
+
|
|
1888
|
+
.e-gantt .e-gantt-chart .e-gantt-child-critical-progressbar-inner-div {
|
|
1889
|
+
background-color: #D13438;
|
|
1890
|
+
border: 0px;
|
|
1891
|
+
border-radius: 4px;
|
|
1892
|
+
}
|
|
1893
|
+
|
|
1894
|
+
.e-gantt .e-gantt-chart .e-gantt-critical-unscheduled-taskbar {
|
|
1895
|
+
background: linear-gradient(to right, rgba(255, 85, 85, 0.2), #D13438 30%, #D13438 70%, #D13438 70%, rgba(255, 85, 85, 0.2) 100%);
|
|
1896
|
+
background-color: rgba(255, 85, 85, 0.2);
|
|
1897
|
+
border: 0px;
|
|
1898
|
+
border-radius: 0px;
|
|
1899
|
+
}
|
|
1900
|
+
|
|
1901
|
+
.e-gantt .e-gantt-chart .e-critical-milestone-top {
|
|
1902
|
+
border-bottom-color: #D13438;
|
|
1903
|
+
}
|
|
1904
|
+
|
|
1905
|
+
.e-gantt .e-gantt-chart .e-critical-milestone-bottom {
|
|
1906
|
+
border-top-color: #D13438;
|
|
1844
1907
|
}
|