@syncfusion/ej2-gantt 20.3.61 → 20.4.40
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/.eslintrc.json +16 -1
- package/CHANGELOG.md +19 -0
- package/README.md +64 -52
- package/dist/ej2-gantt.min.js +2 -2
- package/dist/ej2-gantt.umd.min.js +2 -2
- package/dist/ej2-gantt.umd.min.js.map +1 -1
- package/dist/es6/ej2-gantt.es2015.js +1522 -511
- package/dist/es6/ej2-gantt.es2015.js.map +1 -1
- package/dist/es6/ej2-gantt.es5.js +1548 -519
- package/dist/es6/ej2-gantt.es5.js.map +1 -1
- package/dist/global/ej2-gantt.min.js +2 -2
- package/dist/global/ej2-gantt.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +21 -23
- package/src/gantt/actions/chart-scroll.d.ts +5 -1
- package/src/gantt/actions/chart-scroll.js +39 -1
- package/src/gantt/actions/connector-line-edit.js +2 -0
- package/src/gantt/actions/context-menu.js +36 -5
- package/src/gantt/actions/critical-path.d.ts +2 -2
- package/src/gantt/actions/critical-path.js +23 -16
- package/src/gantt/actions/dependency.js +5 -2
- package/src/gantt/actions/dialog-edit.js +37 -14
- package/src/gantt/actions/edit.d.ts +1 -0
- package/src/gantt/actions/edit.js +156 -34
- package/src/gantt/actions/excel-export.js +13 -0
- package/src/gantt/actions/filter.js +3 -0
- package/src/gantt/actions/keyboard.js +1 -0
- package/src/gantt/actions/pdf-export.js +12 -0
- package/src/gantt/actions/rowdragdrop.js +8 -2
- package/src/gantt/actions/taskbar-edit.js +140 -43
- package/src/gantt/actions/toolbar.js +21 -1
- package/src/gantt/base/date-processor.js +1 -1
- package/src/gantt/base/gantt-chart.js +31 -3
- package/src/gantt/base/gantt-model.d.ts +25 -2
- package/src/gantt/base/gantt.d.ts +64 -21
- package/src/gantt/base/gantt.js +405 -29
- package/src/gantt/base/interface.d.ts +0 -4
- package/src/gantt/base/splitter.js +12 -2
- package/src/gantt/base/task-processor.js +21 -6
- package/src/gantt/base/tree-grid.js +37 -0
- package/src/gantt/base/utils.js +1 -0
- package/src/gantt/export/pdf-connector-line.js +185 -187
- package/src/gantt/models/loading-indicator-model.d.ts +20 -0
- package/src/gantt/models/loading-indicator.d.ts +18 -0
- package/src/gantt/models/loading-indicator.js +34 -0
- package/src/gantt/models/models.d.ts +2 -0
- package/src/gantt/models/models.js +1 -0
- package/src/gantt/renderer/chart-rows.js +153 -56
- package/src/gantt/renderer/connector-line.js +100 -97
- package/src/gantt/renderer/edit-tooltip.js +22 -3
- package/src/gantt/renderer/event-marker.js +15 -2
- package/src/gantt/renderer/nonworking-day.js +4 -2
- package/src/gantt/renderer/timeline.js +22 -2
- package/src/gantt/renderer/tooltip.js +1 -0
- package/styles/bootstrap-dark.css +179 -12
- package/styles/bootstrap.css +179 -12
- package/styles/bootstrap4.css +179 -11
- package/styles/bootstrap5-dark.css +178 -10
- package/styles/bootstrap5.css +178 -10
- package/styles/fabric-dark.css +179 -12
- package/styles/fabric.css +179 -12
- package/styles/fluent-dark.css +180 -10
- package/styles/fluent.css +180 -10
- package/styles/gantt/_bootstrap-dark-definition.scss +6 -2
- package/styles/gantt/_bootstrap-definition.scss +6 -3
- package/styles/gantt/_bootstrap4-definition.scss +6 -3
- package/styles/gantt/_bootstrap5-definition.scss +6 -3
- package/styles/gantt/_fabric-dark-definition.scss +6 -3
- package/styles/gantt/_fabric-definition.scss +6 -3
- package/styles/gantt/_fluent-definition.scss +6 -3
- package/styles/gantt/_fusionnew-definition.scss +6 -3
- package/styles/gantt/_highcontrast-definition.scss +7 -4
- package/styles/gantt/_highcontrast-light-definition.scss +6 -3
- package/styles/gantt/_layout.scss +234 -21
- package/styles/gantt/_material-dark-definition.scss +6 -3
- package/styles/gantt/_material-definition.scss +6 -3
- package/styles/gantt/_material3-definition.scss +6 -3
- package/styles/gantt/_tailwind-definition.scss +6 -3
- package/styles/gantt/_theme.scss +17 -8
- package/styles/gantt/bootstrap-dark.css +179 -12
- package/styles/gantt/bootstrap.css +179 -12
- package/styles/gantt/bootstrap4.css +179 -11
- package/styles/gantt/bootstrap5-dark.css +178 -10
- package/styles/gantt/bootstrap5.css +178 -10
- package/styles/gantt/fabric-dark.css +179 -12
- package/styles/gantt/fabric.css +179 -12
- package/styles/gantt/fluent-dark.css +180 -10
- package/styles/gantt/fluent.css +180 -10
- package/styles/gantt/highcontrast-light.css +178 -10
- package/styles/gantt/highcontrast.css +179 -12
- package/styles/gantt/icons/_bootstrap-dark.scss +1 -1
- package/styles/gantt/icons/_bootstrap.scss +1 -1
- package/styles/gantt/icons/_fabric-dark.scss +1 -1
- package/styles/gantt/icons/_fabric.scss +1 -1
- package/styles/gantt/icons/_highcontrast.scss +1 -1
- package/styles/gantt/icons/_material-dark.scss +1 -1
- package/styles/gantt/icons/_material.scss +1 -1
- package/styles/gantt/material-dark.css +177 -12
- package/styles/gantt/material.css +179 -12
- package/styles/gantt/tailwind-dark.css +178 -10
- package/styles/gantt/tailwind.css +178 -10
- package/styles/highcontrast-light.css +178 -10
- package/styles/highcontrast.css +179 -12
- package/styles/material-dark.css +177 -12
- package/styles/material.css +179 -12
- package/styles/tailwind-dark.css +178 -10
- package/styles/tailwind.css +178 -10
|
@@ -81,8 +81,9 @@ var NonWorkingDay = /** @class */ (function () {
|
|
|
81
81
|
var width = (this.parent.holidays[i].from && this.parent.holidays[i].to) ?
|
|
82
82
|
this.parent.dataOperation.getTaskWidth(fromDate, toDate) : this.parent.perDayWidth;
|
|
83
83
|
var left = this.parent.dataOperation.getTaskLeft(fromDate, false);
|
|
84
|
+
var align = this.parent.enableRtl ? "right:" + left + "px;" : "left:" + left + "px;";
|
|
84
85
|
var holidayDiv = createElement('div', {
|
|
85
|
-
className: cls.holidayElement, styles:
|
|
86
|
+
className: cls.holidayElement, styles: align + " width:" + width + "px; height:100%;"
|
|
86
87
|
});
|
|
87
88
|
var spanTop = (viewportHeight < height) ? viewportHeight / 2 : height / 2;
|
|
88
89
|
var spanElement = createElement('span', {
|
|
@@ -151,8 +152,9 @@ var NonWorkingDay = /** @class */ (function () {
|
|
|
151
152
|
this.weekendWidthUpdated = true;
|
|
152
153
|
}
|
|
153
154
|
}
|
|
155
|
+
var align = this.parent.enableRtl ? "right:" + left + "px;" : "left:" + left + "px;";
|
|
154
156
|
var weekendDiv = createElement('div', {
|
|
155
|
-
className: cls.weekend, styles:
|
|
157
|
+
className: cls.weekend, styles: align + " width:" + width + "px;height:100%;"
|
|
156
158
|
});
|
|
157
159
|
container.appendChild(weekendDiv);
|
|
158
160
|
}
|
|
@@ -37,7 +37,7 @@ var Timeline = /** @class */ (function () {
|
|
|
37
37
|
this.totalTimelineWidth = 0;
|
|
38
38
|
this.customTimelineSettings = null;
|
|
39
39
|
this.parent.isTimelineRoundOff = this.isZoomToFit ? false : isNullOrUndefined(this.parent.projectStartDate) ? true : false;
|
|
40
|
-
if (this.parent.enablePersistence) {
|
|
40
|
+
if (this.parent.enablePersistence && this.parent.isLoad) {
|
|
41
41
|
this.parent.timelineSettings = this.parent.currentZoomingLevel;
|
|
42
42
|
}
|
|
43
43
|
};
|
|
@@ -136,6 +136,12 @@ var Timeline = /** @class */ (function () {
|
|
|
136
136
|
cancel: false
|
|
137
137
|
};
|
|
138
138
|
this.parent.trigger('actionBegin', args);
|
|
139
|
+
if (!isNullOrUndefined(this.parent.loadingIndicator) && this.parent.loadingIndicator.indicatorType === "Shimmer") {
|
|
140
|
+
this.parent.showMaskRow();
|
|
141
|
+
}
|
|
142
|
+
else {
|
|
143
|
+
this.parent.showSpinner();
|
|
144
|
+
}
|
|
139
145
|
if (!args.cancel) {
|
|
140
146
|
newTimeline = args.timeline;
|
|
141
147
|
this.changeTimelineSettings(newTimeline);
|
|
@@ -177,6 +183,12 @@ var Timeline = /** @class */ (function () {
|
|
|
177
183
|
timeline: this.parent.currentZoomingLevel
|
|
178
184
|
};
|
|
179
185
|
this.parent.trigger('actionComplete', args);
|
|
186
|
+
if (!isNullOrUndefined(this.parent.loadingIndicator) && this.parent.loadingIndicator.indicatorType === "Shimmer") {
|
|
187
|
+
this.parent.hideMaskRow();
|
|
188
|
+
}
|
|
189
|
+
else {
|
|
190
|
+
this.parent.hideSpinner();
|
|
191
|
+
}
|
|
180
192
|
}
|
|
181
193
|
};
|
|
182
194
|
/**
|
|
@@ -244,6 +256,12 @@ var Timeline = /** @class */ (function () {
|
|
|
244
256
|
this.parent.toolbarModule.enableItems([this.parent.controlId + '_zoomin', this.parent.controlId + '_zoomout'], true);
|
|
245
257
|
}
|
|
246
258
|
this.parent.trigger('actionBegin', args);
|
|
259
|
+
if (!isNullOrUndefined(this.parent.loadingIndicator) && this.parent.loadingIndicator.indicatorType === "Shimmer") {
|
|
260
|
+
this.parent.showMaskRow();
|
|
261
|
+
}
|
|
262
|
+
else {
|
|
263
|
+
this.parent.showSpinner();
|
|
264
|
+
}
|
|
247
265
|
this.changeTimelineSettings(newTimeline);
|
|
248
266
|
};
|
|
249
267
|
Timeline.prototype.bottomTierCellWidthCalc = function (mode, zoomLevel, date) {
|
|
@@ -1355,7 +1373,9 @@ var Timeline = /** @class */ (function () {
|
|
|
1355
1373
|
var validStartLeft = this.parent.dataOperation.getTaskLeft(validStartDate, false);
|
|
1356
1374
|
var validEndLeft = this.parent.dataOperation.getTaskLeft(validEndDate, false);
|
|
1357
1375
|
var isChanged = void 0;
|
|
1358
|
-
if (!isNullOrUndefined(maxStartLeft) && ((minStartDate < this.timelineStartDate) ||
|
|
1376
|
+
if (!isNullOrUndefined(maxStartLeft) && ((minStartDate < this.timelineStartDate) ||
|
|
1377
|
+
(!isNullOrUndefined(this.parent.editModule.taskbarEditModule)) &&
|
|
1378
|
+
(!isNullOrUndefined(this.parent.editModule.taskbarEditModule.taskBarEditAction))) && (maxStartLeft < this.bottomTierCellWidth || maxStartLeft <= validStartLeft)) {
|
|
1359
1379
|
isChanged = 'prevTimeSpan';
|
|
1360
1380
|
minStartDate = minStartDate > this.timelineStartDate ? this.timelineStartDate : minStartDate;
|
|
1361
1381
|
}
|
|
@@ -27,6 +27,7 @@ var Tooltip = /** @class */ (function () {
|
|
|
27
27
|
'.e-taskbar-left-resizer, .e-taskbar-right-resizer, .e-baseline-gantt-milestone, .e-gantt-manualparenttaskbar';
|
|
28
28
|
this.toolTipObj.position = 'BottomCenter';
|
|
29
29
|
this.toolTipObj.openDelay = 700;
|
|
30
|
+
this.toolTipObj.enableRtl = this.parent.enableRtl;
|
|
30
31
|
this.toolTipObj.enableHtmlSanitizer = false;
|
|
31
32
|
this.toolTipObj.cssClass = cls.ganttTooltip;
|
|
32
33
|
this.toolTipObj.animation = { open: { effect: 'None', delay: 0 }, close: { effect: 'None', delay: 0 } };
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
@charset "UTF-8";
|
|
2
1
|
.e-rte-toolbar .e-toolbar-popup .e-rte-backgroundcolor-dropdown.e-active,
|
|
3
2
|
.e-rte-toolbar .e-toolbar-popup .e-rte-fontcolor-dropdown.e-active,
|
|
4
3
|
.e-rte-toolbar .e-toolbar-popup .e-rte-numberformatlist-dropdown.e-active,
|
|
@@ -190,7 +189,7 @@
|
|
|
190
189
|
content: "\e842";
|
|
191
190
|
}
|
|
192
191
|
.e-gantt .e-notes-info::before {
|
|
193
|
-
content: "
|
|
192
|
+
content: "\e607";
|
|
194
193
|
}
|
|
195
194
|
.e-gantt .e-left-resize-gripper::before,
|
|
196
195
|
.e-gantt .e-right-resize-gripper::before {
|
|
@@ -342,7 +341,7 @@
|
|
|
342
341
|
border-radius: 6px !important;
|
|
343
342
|
padding: 32px 16px 16px !important;
|
|
344
343
|
}
|
|
345
|
-
.e-bigger .e-columnmenu {
|
|
344
|
+
.e-bigger .e-grid .e-columnmenu {
|
|
346
345
|
top: 40px;
|
|
347
346
|
}
|
|
348
347
|
.e-bigger .e-gantt-dialog .e-dialog {
|
|
@@ -467,6 +466,75 @@
|
|
|
467
466
|
font-size: 12px;
|
|
468
467
|
font-weight: 400;
|
|
469
468
|
line-height: 1.8;
|
|
469
|
+
color: #000;
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
.e-blazor-gantt-tooltip .e-tip-content {
|
|
473
|
+
overflow-wrap: unset !important; /* stylelint-disable-line declaration-no-important */
|
|
474
|
+
white-space: nowrap !important; /* stylelint-disable-line declaration-no-important */
|
|
475
|
+
word-break: unset !important; /* stylelint-disable-line declaration-no-important */
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
.e-gantt-tooltip .e-tip-content {
|
|
479
|
+
text-align: left !important; /* stylelint-disable-line declaration-no-important */
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
.e-gantt.e-gantt-rtl .e-connector-line-right-arrow {
|
|
483
|
+
border-left: none !important; /* stylelint-disable-line declaration-no-important */
|
|
484
|
+
border-right-color: #0070f0;
|
|
485
|
+
}
|
|
486
|
+
.e-gantt.e-gantt-rtl .e-connector-line-left-arrow {
|
|
487
|
+
border-right: none !important; /* stylelint-disable-line declaration-no-important */
|
|
488
|
+
border-left-color: #0070f0;
|
|
489
|
+
}
|
|
490
|
+
.e-gantt.e-gantt-rtl .e-toolbar-right {
|
|
491
|
+
left: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
492
|
+
right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
493
|
+
}
|
|
494
|
+
.e-gantt.e-gantt-rtl .e-gantt-chart .e-timeline-header-container {
|
|
495
|
+
border-right: none !important; /* stylelint-disable-line declaration-no-important */
|
|
496
|
+
border-left: 1px solid !important; /* stylelint-disable-line declaration-no-important */
|
|
497
|
+
border-left-color: #484848 !important; /* stylelint-disable-line declaration-no-important */
|
|
498
|
+
}
|
|
499
|
+
.e-gantt.e-gantt-rtl .e-gantt-chart .e-timeline-top-header-cell .e-gantt-top-cell-text {
|
|
500
|
+
padding-right: 11px !important; /* stylelint-disable-line declaration-no-important */
|
|
501
|
+
padding-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
502
|
+
text-align: right !important; /* stylelint-disable-line declaration-no-important */
|
|
503
|
+
}
|
|
504
|
+
.e-gantt.e-gantt-rtl .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-element {
|
|
505
|
+
right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
506
|
+
}
|
|
507
|
+
.e-gantt.e-gantt-rtl .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-after {
|
|
508
|
+
right: 1px !important; /* stylelint-disable-line declaration-no-important */
|
|
509
|
+
}
|
|
510
|
+
.e-gantt.e-gantt-rtl .e-gantt-chart .e-connectorpoint-right {
|
|
511
|
+
margin-right: 2px !important; /* stylelint-disable-line declaration-no-important */
|
|
512
|
+
}
|
|
513
|
+
.e-gantt.e-gantt-rtl .e-gantt-chart .e-event-markers .e-gantt-right-arrow {
|
|
514
|
+
border-left: 5px solid;
|
|
515
|
+
border-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
516
|
+
}
|
|
517
|
+
.e-gantt.e-gantt-rtl .e-gantt-chart .e-holiday .e-span {
|
|
518
|
+
transform: rotate(90deg) !important; /* stylelint-disable-line declaration-no-important */
|
|
519
|
+
}
|
|
520
|
+
.e-gantt.e-gantt-rtl .e-gantt-chart .e-left-label-container {
|
|
521
|
+
padding-left: 25px !important; /* stylelint-disable-line declaration-no-important */
|
|
522
|
+
padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
523
|
+
}
|
|
524
|
+
.e-gantt.e-gantt-rtl .e-gantt-chart .e-right-label-container {
|
|
525
|
+
margin-right: 25px !important; /* stylelint-disable-line declaration-no-important */
|
|
526
|
+
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
.e-gantt-rtl .e-gantt-tooltip-label {
|
|
530
|
+
text-align: right !important; /* stylelint-disable-line declaration-no-important */
|
|
531
|
+
}
|
|
532
|
+
.e-gantt-rtl .e-tip-content {
|
|
533
|
+
text-align: right !important; /* stylelint-disable-line declaration-no-important */
|
|
534
|
+
}
|
|
535
|
+
|
|
536
|
+
.e-gantt-dialog.e-rtl .e-dlg-closeicon-btn {
|
|
537
|
+
padding: 4px 8px !important; /* stylelint-disable-line declaration-no-important */
|
|
470
538
|
}
|
|
471
539
|
|
|
472
540
|
.e-gantt {
|
|
@@ -578,6 +646,7 @@
|
|
|
578
646
|
border-top-style: none;
|
|
579
647
|
border-top-width: 0;
|
|
580
648
|
padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
649
|
+
padding-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
581
650
|
}
|
|
582
651
|
.e-gantt .e-gantt-tree-grid-pane .e-columnheader,
|
|
583
652
|
.e-gantt .e-gantt-tree-grid-pane .e-headercell {
|
|
@@ -586,6 +655,9 @@
|
|
|
586
655
|
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content {
|
|
587
656
|
overflow-x: scroll !important; /* stylelint-disable-line declaration-no-important */
|
|
588
657
|
}
|
|
658
|
+
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-gantt-frozen {
|
|
659
|
+
overflow-x: hidden !important; /* stylelint-disable-line declaration-no-important */
|
|
660
|
+
}
|
|
589
661
|
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content.e-gantt-scroll-padding {
|
|
590
662
|
width: calc(100% + 17px);
|
|
591
663
|
}
|
|
@@ -605,6 +677,12 @@
|
|
|
605
677
|
position: relative;
|
|
606
678
|
width: 100%;
|
|
607
679
|
}
|
|
680
|
+
.e-gantt .e-gantt-chart .e-chart-empty-row {
|
|
681
|
+
border: 0.5px solid;
|
|
682
|
+
position: absolute;
|
|
683
|
+
background-color: rgba(0, 112, 240, 0.15);
|
|
684
|
+
border-color: rgba(0, 112, 240, 0.65) !important;
|
|
685
|
+
}
|
|
608
686
|
.e-gantt .e-gantt-chart .e-chart-root-container {
|
|
609
687
|
border-right: 0 solid;
|
|
610
688
|
}
|
|
@@ -853,6 +931,88 @@
|
|
|
853
931
|
.e-gantt .e-gantt-chart .e-chart-rows-container {
|
|
854
932
|
line-height: initial;
|
|
855
933
|
}
|
|
934
|
+
.e-gantt .e-gantt-chart .e-masked-tbody {
|
|
935
|
+
table-layout: fixed;
|
|
936
|
+
width: 100%;
|
|
937
|
+
}
|
|
938
|
+
.e-gantt .e-gantt-chart .e-div-background {
|
|
939
|
+
border-color: #e1dfdd;
|
|
940
|
+
border-right-style: solid;
|
|
941
|
+
border-right-width: 1px;
|
|
942
|
+
height: 100%;
|
|
943
|
+
position: absolute;
|
|
944
|
+
}
|
|
945
|
+
.e-gantt .e-gantt-chart .e-innerHTML {
|
|
946
|
+
height: 16px;
|
|
947
|
+
width: 16px;
|
|
948
|
+
left: 14px;
|
|
949
|
+
background: #e1dfdd;
|
|
950
|
+
}
|
|
951
|
+
.e-gantt .e-gantt-chart .e-innerHTML1 {
|
|
952
|
+
height: 16px;
|
|
953
|
+
width: 16px;
|
|
954
|
+
left: 30px;
|
|
955
|
+
background: #e1dfdd;
|
|
956
|
+
}
|
|
957
|
+
.e-gantt .e-gantt-chart .e-innerHTML2 {
|
|
958
|
+
height: 16px;
|
|
959
|
+
width: 16px;
|
|
960
|
+
left: 60px;
|
|
961
|
+
background: #e1dfdd;
|
|
962
|
+
}
|
|
963
|
+
.e-gantt .e-gantt-chart .e-timelineHeader {
|
|
964
|
+
height: 16px;
|
|
965
|
+
width: 82px;
|
|
966
|
+
left: 20px;
|
|
967
|
+
background: #e1dfdd;
|
|
968
|
+
}
|
|
969
|
+
.e-gantt .e-gantt-chart .e-maskcell01 {
|
|
970
|
+
height: 12px;
|
|
971
|
+
width: 88px;
|
|
972
|
+
left: 14px;
|
|
973
|
+
border-radius: 0;
|
|
974
|
+
background: #e1dfdd;
|
|
975
|
+
}
|
|
976
|
+
.e-gantt .e-gantt-chart .e-maskcell02 {
|
|
977
|
+
height: 18px;
|
|
978
|
+
width: 410px;
|
|
979
|
+
border-radius: 0;
|
|
980
|
+
background: #e1dfdd;
|
|
981
|
+
}
|
|
982
|
+
.e-gantt .e-gantt-chart .e-maskcell03 {
|
|
983
|
+
height: 12px;
|
|
984
|
+
width: 88px;
|
|
985
|
+
left: 14px;
|
|
986
|
+
border-radius: 0;
|
|
987
|
+
background: #e1dfdd;
|
|
988
|
+
}
|
|
989
|
+
.e-gantt .e-gantt-chart .e-maskcell04 {
|
|
990
|
+
height: 18px;
|
|
991
|
+
width: 208px;
|
|
992
|
+
border-radius: 0;
|
|
993
|
+
background: #e1dfdd;
|
|
994
|
+
}
|
|
995
|
+
.e-gantt .e-gantt-chart .e-maskcell05 {
|
|
996
|
+
height: 12px;
|
|
997
|
+
width: 108px;
|
|
998
|
+
left: 64px;
|
|
999
|
+
border-radius: 0;
|
|
1000
|
+
background: #e1dfdd;
|
|
1001
|
+
}
|
|
1002
|
+
.e-gantt .e-gantt-chart .e-maskcell06 {
|
|
1003
|
+
height: 18px;
|
|
1004
|
+
width: 195px;
|
|
1005
|
+
left: 192px;
|
|
1006
|
+
border-radius: 0;
|
|
1007
|
+
background: #e1dfdd;
|
|
1008
|
+
}
|
|
1009
|
+
.e-gantt .e-gantt-chart .e-maskcell07 {
|
|
1010
|
+
height: 18px;
|
|
1011
|
+
width: 156px;
|
|
1012
|
+
left: 388px;
|
|
1013
|
+
border-radius: 0;
|
|
1014
|
+
background: #e1dfdd;
|
|
1015
|
+
}
|
|
856
1016
|
.e-gantt .e-gantt-chart .e-taskbar-left-resizer,
|
|
857
1017
|
.e-gantt .e-gantt-chart .e-taskbar-right-resizer {
|
|
858
1018
|
display: inline-block;
|
|
@@ -887,7 +1047,7 @@
|
|
|
887
1047
|
border-right: 7px solid transparent;
|
|
888
1048
|
cursor: col-resize;
|
|
889
1049
|
height: 0;
|
|
890
|
-
left:
|
|
1050
|
+
left: 1px;
|
|
891
1051
|
position: absolute;
|
|
892
1052
|
top: -7px;
|
|
893
1053
|
width: 0;
|
|
@@ -899,7 +1059,7 @@
|
|
|
899
1059
|
border-right: 6px solid transparent;
|
|
900
1060
|
cursor: col-resize;
|
|
901
1061
|
height: 0;
|
|
902
|
-
left:
|
|
1062
|
+
left: 2px;
|
|
903
1063
|
position: absolute;
|
|
904
1064
|
top: -7px;
|
|
905
1065
|
width: 0;
|
|
@@ -992,7 +1152,6 @@
|
|
|
992
1152
|
border-radius: 3px;
|
|
993
1153
|
font-weight: 500;
|
|
994
1154
|
height: 30px;
|
|
995
|
-
left: 5px;
|
|
996
1155
|
line-height: 1.5;
|
|
997
1156
|
padding: 7px 12px;
|
|
998
1157
|
position: absolute;
|
|
@@ -1201,7 +1360,7 @@
|
|
|
1201
1360
|
.e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
1202
1361
|
border-radius: 50%;
|
|
1203
1362
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
1204
|
-
width: auto
|
|
1363
|
+
width: auto;
|
|
1205
1364
|
}
|
|
1206
1365
|
|
|
1207
1366
|
.e-icon-rowselect::before {
|
|
@@ -1379,6 +1538,7 @@
|
|
|
1379
1538
|
font-size: 12px;
|
|
1380
1539
|
font-weight: 400;
|
|
1381
1540
|
line-height: 1.8;
|
|
1541
|
+
color: #000;
|
|
1382
1542
|
}
|
|
1383
1543
|
|
|
1384
1544
|
/*! Gantt theme */
|
|
@@ -1435,6 +1595,7 @@
|
|
|
1435
1595
|
border-bottom-color: #484848;
|
|
1436
1596
|
border-bottom-width: 0px;
|
|
1437
1597
|
border-right-color: #484848;
|
|
1598
|
+
border-left-color: #484848;
|
|
1438
1599
|
color: #f0f0f0;
|
|
1439
1600
|
height: 64px;
|
|
1440
1601
|
}
|
|
@@ -1477,7 +1638,7 @@
|
|
|
1477
1638
|
}
|
|
1478
1639
|
.e-gantt .e-gantt-chart .e-gantt-child-taskbar-inner-div {
|
|
1479
1640
|
background-color: #248aff;
|
|
1480
|
-
|
|
1641
|
+
outline: 1px solid #0070f0;
|
|
1481
1642
|
border-radius: 4px;
|
|
1482
1643
|
}
|
|
1483
1644
|
.e-gantt .e-gantt-chart .e-collapse-parent .e-gantt-child-taskbar-inner-div {
|
|
@@ -1499,7 +1660,7 @@
|
|
|
1499
1660
|
}
|
|
1500
1661
|
.e-gantt .e-gantt-chart .e-gantt-parent-taskbar-inner-div {
|
|
1501
1662
|
background-color: #029f90;
|
|
1502
|
-
|
|
1663
|
+
outline: 1px solid #4cc7ba;
|
|
1503
1664
|
border-radius: 4px;
|
|
1504
1665
|
}
|
|
1505
1666
|
.e-gantt .e-gantt-chart .e-gantt-parent-progressbar-inner-div {
|
|
@@ -1555,6 +1716,7 @@
|
|
|
1555
1716
|
}
|
|
1556
1717
|
.e-gantt .e-gantt-chart .e-event-markers .e-gantt-right-arrow {
|
|
1557
1718
|
border-right-color: #cae8ff;
|
|
1719
|
+
border-left-color: #cae8ff !important; /* stylelint-disable-line declaration-no-important */
|
|
1558
1720
|
}
|
|
1559
1721
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar {
|
|
1560
1722
|
background: linear-gradient(to right, rgba(0, 112, 240, 0.2), #0070f0 30%, #0070f0 70%, #0070f0 70%, rgba(0, 112, 240, 0.2) 100%);
|
|
@@ -1647,14 +1809,16 @@
|
|
|
1647
1809
|
border-width: 3px;
|
|
1648
1810
|
}
|
|
1649
1811
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar-right {
|
|
1650
|
-
border-
|
|
1651
|
-
border-bottom-
|
|
1652
|
-
border-top-left-radius: 0px;
|
|
1812
|
+
border-top-left-radius: 0;
|
|
1813
|
+
border-bottom-left-radius: 0;
|
|
1653
1814
|
border-top-right-radius: 2px;
|
|
1815
|
+
border-bottom-right-radius: 2px;
|
|
1654
1816
|
}
|
|
1655
1817
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar-left {
|
|
1656
1818
|
border-bottom-left-radius: 2px;
|
|
1657
1819
|
border-top-left-radius: 2px;
|
|
1820
|
+
border-bottom-right-radius: 0;
|
|
1821
|
+
border-top-right-radius: 0;
|
|
1658
1822
|
}
|
|
1659
1823
|
.e-gantt .e-gantt-chart .e-task-label {
|
|
1660
1824
|
color: #fff;
|
|
@@ -1807,6 +1971,9 @@
|
|
|
1807
1971
|
color: #f0f0f0 !important; /* stylelint-disable-line declaration-no-important */
|
|
1808
1972
|
}
|
|
1809
1973
|
|
|
1974
|
+
.e-gantt-dialog .e-dlg-content .e-rte-quick-popup.e-hide {
|
|
1975
|
+
border: none !important; /* stylelint-disable-line declaration-no-important */
|
|
1976
|
+
}
|
|
1810
1977
|
.e-gantt-dialog .e-dlg-header {
|
|
1811
1978
|
color: #fff;
|
|
1812
1979
|
}
|