@syncfusion/ej2-vue-gantt 20.3.61 → 20.4.38
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/CHANGELOG.md +8 -0
- package/dist/ej2-vue-gantt.umd.min.js +2 -2
- package/dist/ej2-vue-gantt.umd.min.js.map +1 -1
- package/dist/es6/ej2-vue-gantt.es2015.js +7 -1
- package/dist/es6/ej2-vue-gantt.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-gantt.es5.js +7 -1
- package/dist/es6/ej2-vue-gantt.es5.js.map +1 -1
- package/dist/global/ej2-vue-gantt.min.js +2 -2
- package/package.json +8 -8
- package/src/gantt/gantt.component.d.ts +2 -0
- package/src/gantt/gantt.component.js +7 -1
- package/styles/bootstrap-dark.css +179 -12
- package/styles/bootstrap.css +179 -12
- package/styles/bootstrap4.css +178 -10
- 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.css +179 -12
- package/styles/gantt/bootstrap.css +179 -12
- package/styles/gantt/bootstrap4.css +178 -10
- 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/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
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_from": "@syncfusion/ej2-vue-gantt@*",
|
|
3
|
-
"_id": "@syncfusion/ej2-vue-gantt@20.
|
|
3
|
+
"_id": "@syncfusion/ej2-vue-gantt@20.15.5",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-cAoZYUzhyXkM3aSLvAAtSEEl3svMTBaniNcDFD2pORXnlDlcwYyjydr1KSvRwEV0vx6+wTavxdAsHsw1UU8/xg==",
|
|
6
6
|
"_location": "/@syncfusion/ej2-vue-gantt",
|
|
7
7
|
"_phantomChildren": {},
|
|
8
8
|
"_requested": {
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"_requiredBy": [
|
|
20
20
|
"/"
|
|
21
21
|
],
|
|
22
|
-
"_resolved": "https://nexus.syncfusion.com/repository/ej2-
|
|
23
|
-
"_shasum": "
|
|
22
|
+
"_resolved": "https://nexus.syncfusion.com/repository/ej2-release/@syncfusion/ej2-vue-gantt/-/ej2-vue-gantt-20.15.5.tgz",
|
|
23
|
+
"_shasum": "b317daab457ad5887c4a0f0294f771c984650763",
|
|
24
24
|
"_spec": "@syncfusion/ej2-vue-gantt@*",
|
|
25
25
|
"_where": "/jenkins/workspace/ease-automation_release_19.1.0.1/packages/included",
|
|
26
26
|
"author": {
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
},
|
|
32
32
|
"bundleDependencies": false,
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@syncfusion/ej2-base": "~20.
|
|
35
|
-
"@syncfusion/ej2-gantt": "20.
|
|
36
|
-
"@syncfusion/ej2-vue-base": "~20.
|
|
34
|
+
"@syncfusion/ej2-base": "~20.4.38",
|
|
35
|
+
"@syncfusion/ej2-gantt": "20.4.38",
|
|
36
|
+
"@syncfusion/ej2-vue-base": "~20.4.38"
|
|
37
37
|
},
|
|
38
38
|
"deprecated": false,
|
|
39
39
|
"description": "Essential JS 2 Gantt Component for Vue",
|
|
@@ -66,6 +66,6 @@
|
|
|
66
66
|
"scripts": {
|
|
67
67
|
"postinstall": "node ../ej2-vue-base/postinstall.js"
|
|
68
68
|
},
|
|
69
|
-
"version": "20.
|
|
69
|
+
"version": "20.4.38",
|
|
70
70
|
"sideEffects": false
|
|
71
71
|
}
|
|
@@ -64,6 +64,7 @@ export declare class GanttComponent extends ComponentBase {
|
|
|
64
64
|
getTaskbarHeight(): number;
|
|
65
65
|
getWorkString(work: number, workUnit: string): string;
|
|
66
66
|
hideColumn(keys: string | string[], hideBy?: string): void;
|
|
67
|
+
hideMaskRow(): void;
|
|
67
68
|
hideSpinner(): void;
|
|
68
69
|
indent(): void;
|
|
69
70
|
keyActionHandler(e: Object): void;
|
|
@@ -92,6 +93,7 @@ export declare class GanttComponent extends ComponentBase {
|
|
|
92
93
|
setSplitterPosition(value: string | number, type: string): void;
|
|
93
94
|
showColumn(keys: string | string[], showBy?: string): void;
|
|
94
95
|
showCriticalPath(isCritical: boolean): void;
|
|
96
|
+
showMaskRow(): void;
|
|
95
97
|
showSpinner(): void;
|
|
96
98
|
sortColumn(columnName: string, direction: Object, isMultiSort?: boolean): void;
|
|
97
99
|
splitTask(taskId: number | string, splitDate: Object | Object[]): void;
|
|
@@ -28,7 +28,7 @@ import { DayWorkingTimeCollectionDirective, DayWorkingTimeDirective, DayWorkingT
|
|
|
28
28
|
import { HolidaysDirective, HolidayDirective, HolidaysPlugin, HolidayPlugin } from './holidays.directive';
|
|
29
29
|
import { EventMarkersDirective, EventMarkerDirective, EventMarkersPlugin, EventMarkerPlugin } from './eventmarkers.directive';
|
|
30
30
|
import { Options } from 'vue-class-component';
|
|
31
|
-
export var properties = ['isLazyUpdate', 'plugins', 'addDialogFields', 'allowExcelExport', 'allowFiltering', 'allowKeyboard', 'allowPdfExport', 'allowReordering', 'allowResizing', 'allowRowDragAndDrop', 'allowSelection', 'allowSorting', 'allowUnscheduledTasks', 'autoFocusTasks', 'baselineColor', 'collapseAllParentTasks', 'columnMenuItems', 'columns', 'connectorLineBackground', 'connectorLineWidth', 'contextMenuItems', 'dataSource', 'dateFormat', 'dayWorkingTime', 'disableHtmlEncode', 'durationUnit', 'editDialogFields', 'editSettings', 'enableContextMenu', 'enableCriticalPath', 'enableImmutableMode', 'enableMultiTaskbar', 'enablePersistence', 'enablePredecessorValidation', 'enableRtl', 'enableVirtualization', 'eventMarkers', 'filterSettings', 'gridLines', 'height', 'highlightWeekends', 'holidays', 'includeWeekend', 'labelSettings', 'locale', 'milestoneTemplate', 'parentTaskbarTemplate', 'projectEndDate', 'projectStartDate', 'query', 'readOnly', 'renderBaseline', 'resourceFields', 'resourceIDMapping', 'resourceNameMapping', 'resources', 'rowHeight', 'searchSettings', 'segmentData', 'selectedRowIndex', 'selectionSettings', 'showColumnMenu', 'showInlineNotes', 'showOverAllocation', 'sortSettings', 'splitterSettings', 'taskFields', 'taskMode', 'taskType', 'taskbarHeight', 'taskbarTemplate', 'timelineSettings', 'timezone', 'toolbar', 'tooltipSettings', 'treeColumnIndex', 'validateManualTasksOnLinking', 'viewType', 'width', 'workUnit', 'workWeek', 'actionBegin', 'actionComplete', 'actionFailure', 'beforeExcelExport', 'beforePdfExport', 'beforeTooltipRender', 'cellDeselected', 'cellDeselecting', 'cellEdit', 'cellSelected', 'cellSelecting', 'collapsed', 'collapsing', 'columnDrag', 'columnDragStart', 'columnDrop', 'columnMenuClick', 'columnMenuOpen', 'contextMenuClick', 'contextMenuOpen', 'created', 'dataBound', 'dataStateChange', 'destroyed', 'endEdit', 'excelExportComplete', 'excelHeaderQueryCellInfo', 'excelQueryCellInfo', 'expanded', 'expanding', 'headerCellInfo', 'load', 'onMouseMove', 'onTaskbarClick', 'pdfColumnHeaderQueryCellInfo', 'pdfExportComplete', 'pdfQueryCellInfo', 'pdfQueryTaskbarInfo', 'pdfQueryTimelineCellInfo', 'queryCellInfo', 'queryTaskbarInfo', 'recordDoubleClick', 'resizeStart', 'resizeStop', 'resizing', 'rowDataBound', 'rowDeselected', 'rowDeselecting', 'rowDrag', 'rowDragStart', 'rowDragStartHelper', 'rowDrop', 'rowSelected', 'rowSelecting', 'splitterResizeStart', 'splitterResized', 'splitterResizing', 'taskbarEdited', 'taskbarEditing', 'toolbarClick'];
|
|
31
|
+
export var properties = ['isLazyUpdate', 'plugins', 'addDialogFields', 'allowExcelExport', 'allowFiltering', 'allowKeyboard', 'allowPdfExport', 'allowReordering', 'allowResizing', 'allowRowDragAndDrop', 'allowSelection', 'allowSorting', 'allowUnscheduledTasks', 'autoFocusTasks', 'baselineColor', 'collapseAllParentTasks', 'columnMenuItems', 'columns', 'connectorLineBackground', 'connectorLineWidth', 'contextMenuItems', 'dataSource', 'dateFormat', 'dayWorkingTime', 'disableHtmlEncode', 'durationUnit', 'editDialogFields', 'editSettings', 'enableContextMenu', 'enableCriticalPath', 'enableImmutableMode', 'enableMultiTaskbar', 'enablePersistence', 'enablePredecessorValidation', 'enableRtl', 'enableVirtualMaskRow', 'enableVirtualization', 'eventMarkers', 'filterSettings', 'gridLines', 'height', 'highlightWeekends', 'holidays', 'includeWeekend', 'labelSettings', 'loadingIndicator', 'locale', 'milestoneTemplate', 'parentTaskbarTemplate', 'projectEndDate', 'projectStartDate', 'query', 'readOnly', 'renderBaseline', 'resourceFields', 'resourceIDMapping', 'resourceNameMapping', 'resources', 'rowHeight', 'searchSettings', 'segmentData', 'selectedRowIndex', 'selectionSettings', 'showColumnMenu', 'showInlineNotes', 'showOverAllocation', 'sortSettings', 'splitterSettings', 'taskFields', 'taskMode', 'taskType', 'taskbarHeight', 'taskbarTemplate', 'timelineSettings', 'timezone', 'toolbar', 'tooltipSettings', 'treeColumnIndex', 'validateManualTasksOnLinking', 'viewType', 'width', 'workUnit', 'workWeek', 'actionBegin', 'actionComplete', 'actionFailure', 'beforeExcelExport', 'beforePdfExport', 'beforeTooltipRender', 'cellDeselected', 'cellDeselecting', 'cellEdit', 'cellSelected', 'cellSelecting', 'collapsed', 'collapsing', 'columnDrag', 'columnDragStart', 'columnDrop', 'columnMenuClick', 'columnMenuOpen', 'contextMenuClick', 'contextMenuOpen', 'created', 'dataBound', 'dataStateChange', 'destroyed', 'endEdit', 'excelExportComplete', 'excelHeaderQueryCellInfo', 'excelQueryCellInfo', 'expanded', 'expanding', 'headerCellInfo', 'load', 'onMouseMove', 'onTaskbarClick', 'pdfColumnHeaderQueryCellInfo', 'pdfExportComplete', 'pdfQueryCellInfo', 'pdfQueryTaskbarInfo', 'pdfQueryTimelineCellInfo', 'queryCellInfo', 'queryTaskbarInfo', 'recordDoubleClick', 'resizeStart', 'resizeStop', 'resizing', 'rowDataBound', 'rowDeselected', 'rowDeselecting', 'rowDrag', 'rowDragStart', 'rowDragStartHelper', 'rowDrop', 'rowSelected', 'rowSelecting', 'splitterResizeStart', 'splitterResized', 'splitterResizing', 'taskbarEdited', 'taskbarEditing', 'toolbarClick'];
|
|
32
32
|
export var modelProps = ['dataSource'];
|
|
33
33
|
export var testProp = getProps({ props: properties });
|
|
34
34
|
export var props = testProp[0];
|
|
@@ -263,6 +263,9 @@ var GanttComponent = /** @class */ (function (_super) {
|
|
|
263
263
|
GanttComponent.prototype.hideColumn = function (keys, hideBy) {
|
|
264
264
|
return this.ej2Instances.hideColumn(keys, hideBy);
|
|
265
265
|
};
|
|
266
|
+
GanttComponent.prototype.hideMaskRow = function () {
|
|
267
|
+
return this.ej2Instances.hideMaskRow();
|
|
268
|
+
};
|
|
266
269
|
GanttComponent.prototype.hideSpinner = function () {
|
|
267
270
|
return this.ej2Instances.hideSpinner();
|
|
268
271
|
};
|
|
@@ -347,6 +350,9 @@ var GanttComponent = /** @class */ (function (_super) {
|
|
|
347
350
|
GanttComponent.prototype.showCriticalPath = function (isCritical) {
|
|
348
351
|
return this.ej2Instances.showCriticalPath(isCritical);
|
|
349
352
|
};
|
|
353
|
+
GanttComponent.prototype.showMaskRow = function () {
|
|
354
|
+
return this.ej2Instances.showMaskRow();
|
|
355
|
+
};
|
|
350
356
|
GanttComponent.prototype.showSpinner = function () {
|
|
351
357
|
return this.ej2Instances.showSpinner();
|
|
352
358
|
};
|
|
@@ -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
|
}
|