@syncfusion/ej2-gantt 21.2.10 → 22.1.34
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 +1 -0
- package/CHANGELOG.md +12 -0
- 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 +734 -711
- package/dist/es6/ej2-gantt.es2015.js.map +1 -1
- package/dist/es6/ej2-gantt.es5.js +773 -751
- 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 +20 -19
- package/src/gantt/actions/connector-line-edit.js +21 -26
- package/src/gantt/actions/context-menu.js +2 -2
- package/src/gantt/actions/critical-path.js +4 -9
- package/src/gantt/actions/day-markers.js +4 -1
- package/src/gantt/actions/edit.js +8 -6
- package/src/gantt/actions/pdf-export.js +1 -1
- package/src/gantt/actions/taskbar-edit.d.ts +6 -0
- package/src/gantt/actions/taskbar-edit.js +120 -45
- package/src/gantt/base/css-constants.d.ts +5 -10
- package/src/gantt/base/css-constants.js +5 -10
- package/src/gantt/base/date-processor.js +1 -19
- package/src/gantt/base/enum.d.ts +215 -231
- package/src/gantt/base/gantt-chart.js +112 -5
- package/src/gantt/base/gantt-model.d.ts +6 -3
- package/src/gantt/base/gantt.d.ts +7 -3
- package/src/gantt/base/gantt.js +17 -13
- package/src/gantt/base/interface.d.ts +36 -1
- package/src/gantt/base/task-processor.js +14 -15
- package/src/gantt/base/tree-grid.js +1 -1
- package/src/gantt/export/export-helper.js +1 -0
- package/src/gantt/export/pdf-connector-line.d.ts +4 -4
- package/src/gantt/export/pdf-connector-line.js +11 -22
- package/src/gantt/export/pdf-gantt.d.ts +1 -2
- package/src/gantt/export/pdf-gantt.js +4 -4
- package/src/gantt/models/column.d.ts +8 -4
- package/src/gantt/models/edit-settings-model.d.ts +1 -0
- package/src/gantt/models/edit-settings.d.ts +1 -0
- package/src/gantt/models/filter-settings-model.d.ts +3 -0
- package/src/gantt/models/filter-settings.d.ts +3 -0
- package/src/gantt/models/search-settings-model.d.ts +1 -0
- package/src/gantt/models/search-settings.d.ts +1 -0
- package/src/gantt/models/sort-settings-model.d.ts +1 -0
- package/src/gantt/models/sort-settings.d.ts +1 -0
- package/src/gantt/models/tooltip-settings-model.d.ts +8 -4
- package/src/gantt/models/tooltip-settings.d.ts +8 -4
- package/src/gantt/renderer/chart-rows.d.ts +1 -1
- package/src/gantt/renderer/chart-rows.js +27 -65
- package/src/gantt/renderer/connector-line.d.ts +23 -0
- package/src/gantt/renderer/connector-line.js +287 -384
- package/src/gantt/renderer/edit-tooltip.js +4 -4
- package/src/gantt/renderer/nonworking-day.js +2 -2
- package/src/gantt/renderer/tooltip.d.ts +3 -3
- package/src/gantt/renderer/tooltip.js +103 -76
- package/styles/bootstrap-dark.css +27 -47
- package/styles/bootstrap.css +29 -49
- package/styles/bootstrap4.css +29 -49
- package/styles/bootstrap5-dark.css +27 -47
- package/styles/bootstrap5.css +27 -47
- package/styles/fabric-dark.css +27 -47
- package/styles/fabric.css +27 -47
- package/styles/fluent-dark.css +28 -47
- package/styles/fluent.css +28 -47
- package/styles/gantt/_layout.scss +53 -7
- package/styles/gantt/_material3-dark-definition.scss +1 -0
- package/styles/gantt/_material3-definition.scss +220 -0
- package/styles/gantt/_theme.scss +53 -53
- package/styles/gantt/bootstrap-dark.css +27 -47
- package/styles/gantt/bootstrap.css +29 -49
- package/styles/gantt/bootstrap4.css +29 -49
- package/styles/gantt/bootstrap5-dark.css +27 -47
- package/styles/gantt/bootstrap5.css +27 -47
- package/styles/gantt/fabric-dark.css +27 -47
- package/styles/gantt/fabric.css +27 -47
- package/styles/gantt/fluent-dark.css +28 -47
- package/styles/gantt/fluent.css +28 -47
- package/styles/gantt/highcontrast-light.css +27 -47
- package/styles/gantt/highcontrast.css +27 -47
- package/styles/gantt/icons/_material3-dark.scss +1 -0
- package/styles/gantt/material-dark.css +27 -47
- package/styles/gantt/material.css +27 -47
- package/styles/gantt/material3-dark.css +2184 -0
- package/styles/gantt/material3-dark.scss +23 -0
- package/styles/gantt/material3.css +2240 -0
- package/styles/gantt/material3.scss +23 -0
- package/styles/gantt/tailwind-dark.css +27 -47
- package/styles/gantt/tailwind.css +27 -47
- package/styles/highcontrast-light.css +27 -47
- package/styles/highcontrast.css +27 -47
- package/styles/material-dark.css +27 -47
- package/styles/material.css +27 -47
- package/styles/material3-dark.css +2184 -0
- package/styles/material3-dark.scss +3 -0
- package/styles/material3.css +2240 -0
- package/styles/material3.scss +3 -0
- package/styles/tailwind-dark.css +27 -47
- package/styles/tailwind.css +27 -47
|
@@ -11,6 +11,10 @@
|
|
|
11
11
|
}
|
|
12
12
|
}
|
|
13
13
|
}
|
|
14
|
+
@if ($skin-name== 'Material3-dark' or $skin-name == 'Material3'){
|
|
15
|
+
.e-toolbar .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon{
|
|
16
|
+
font-size: 18px;
|
|
17
|
+
}}
|
|
14
18
|
.e-gantt-chart {
|
|
15
19
|
.e-timeline-header-container {
|
|
16
20
|
height: $gantt-bigger-header-border-height;
|
|
@@ -107,6 +111,10 @@
|
|
|
107
111
|
@else {
|
|
108
112
|
.e-indicator {
|
|
109
113
|
display: block;
|
|
114
|
+
@if ($skin-name == 'Material3') {
|
|
115
|
+
border-top-left-radius: 4px;
|
|
116
|
+
border-top-right-radius: 4px;
|
|
117
|
+
}
|
|
110
118
|
}
|
|
111
119
|
}
|
|
112
120
|
}
|
|
@@ -131,6 +139,9 @@
|
|
|
131
139
|
|
|
132
140
|
.e-btn .e-btn-icon.e-icon-dlg-close {
|
|
133
141
|
font-size: $gantt-bigger-dialog-close-button-size;
|
|
142
|
+
@if ($skin-name == 'Material3') {
|
|
143
|
+
width: $gantt-bigger-dialog-close-button-size;
|
|
144
|
+
}
|
|
134
145
|
}
|
|
135
146
|
|
|
136
147
|
.e-footer-content {
|
|
@@ -147,10 +158,6 @@
|
|
|
147
158
|
}
|
|
148
159
|
}
|
|
149
160
|
|
|
150
|
-
.e-filter-popup.e-popup {
|
|
151
|
-
width: $gantt-bigger-filter-dialog-width;
|
|
152
|
-
}
|
|
153
|
-
|
|
154
161
|
.e-grid .e-flmenu-valuediv {
|
|
155
162
|
padding: $gantt-bigger-filter-dialog-input-padding;
|
|
156
163
|
}
|
|
@@ -228,6 +235,13 @@
|
|
|
228
235
|
border-radius: 50%;
|
|
229
236
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
230
237
|
width: auto;
|
|
238
|
+
@if ($skin-name=='Material3') {
|
|
239
|
+
line-height: 0px;
|
|
240
|
+
padding: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
241
|
+
}
|
|
242
|
+
@if ($skin-name == 'FluentUI') {
|
|
243
|
+
margin-right: 6px;
|
|
244
|
+
}
|
|
231
245
|
}
|
|
232
246
|
}
|
|
233
247
|
}
|
|
@@ -389,6 +403,11 @@
|
|
|
389
403
|
word-break: unset !important; /* stylelint-disable-line declaration-no-important */
|
|
390
404
|
}
|
|
391
405
|
}
|
|
406
|
+
@if ($skin-name == 'Material3-dark' or $skin-name == 'Material3'){
|
|
407
|
+
.e-toolbar .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon{
|
|
408
|
+
font-size: 16px;
|
|
409
|
+
}}
|
|
410
|
+
|
|
392
411
|
.e-gantt-tooltip{
|
|
393
412
|
.e-tip-content{
|
|
394
413
|
text-align: left !important; /* stylelint-disable-line declaration-no-important */
|
|
@@ -630,6 +649,10 @@
|
|
|
630
649
|
line-height: 10px;
|
|
631
650
|
vertical-align: middle;
|
|
632
651
|
}
|
|
652
|
+
|
|
653
|
+
.e-grid .e-gantt-resource-parent .e-rowdragdrop{
|
|
654
|
+
pointer-events: none;
|
|
655
|
+
}
|
|
633
656
|
}
|
|
634
657
|
|
|
635
658
|
.e-gantt-chart {
|
|
@@ -870,6 +893,13 @@
|
|
|
870
893
|
width: 100%;
|
|
871
894
|
}
|
|
872
895
|
|
|
896
|
+
.e-gantt-milestone{
|
|
897
|
+
@if $skin-name =='Material3'{
|
|
898
|
+
border: 1px;
|
|
899
|
+
border-style: solid;
|
|
900
|
+
}
|
|
901
|
+
}
|
|
902
|
+
|
|
873
903
|
.e-manualparent-main-container {
|
|
874
904
|
background-color: transparent;
|
|
875
905
|
cursor: move;
|
|
@@ -886,10 +916,21 @@
|
|
|
886
916
|
border-color: $gantt-active-background-color;
|
|
887
917
|
}
|
|
888
918
|
@else {
|
|
889
|
-
|
|
919
|
+
@if $skin-name =='Material3'{
|
|
920
|
+
border-color: $gantt-split-container-line-border-color;
|
|
921
|
+
}
|
|
922
|
+
@else{
|
|
923
|
+
border-color: inherit;
|
|
924
|
+
}
|
|
925
|
+
}
|
|
926
|
+
@if $skin-name =='Material3' or $skin-name =='Material3-dark'{
|
|
927
|
+
border-top-style: dashed;
|
|
928
|
+
border-top-width: 2px;
|
|
929
|
+
}
|
|
930
|
+
@else{
|
|
931
|
+
border-top-style: dotted;
|
|
932
|
+
border-top-width: 2px;
|
|
890
933
|
}
|
|
891
|
-
border-top-style: dotted;
|
|
892
|
-
border-top-width: 2px;
|
|
893
934
|
height: 0;
|
|
894
935
|
left: 2px;
|
|
895
936
|
pointer-events: none;
|
|
@@ -1113,6 +1154,11 @@
|
|
|
1113
1154
|
.e-baseline-gantt-milestone-container {
|
|
1114
1155
|
position: absolute;
|
|
1115
1156
|
z-index: 2;
|
|
1157
|
+
@if $skin-name =='Material3'{
|
|
1158
|
+
border: 2px;
|
|
1159
|
+
border-color: $gantt-baseline-color;
|
|
1160
|
+
border-style: solid;
|
|
1161
|
+
}
|
|
1116
1162
|
}
|
|
1117
1163
|
|
|
1118
1164
|
.e-task-label {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import './material3-definition.scss';
|
|
@@ -0,0 +1,220 @@
|
|
|
1
|
+
// color
|
|
2
|
+
|
|
3
|
+
$gantt-header-bg-color: rgba($content-bg-color) !default;
|
|
4
|
+
$gantt-header-border-color: rgba($border-light) !default;
|
|
5
|
+
$gantt-header-color: rgba($content-text-color) !default;
|
|
6
|
+
$gantt-context-menu-icon-color: rgba($icon-color) !default;
|
|
7
|
+
$gantt-grid-line-color: rgba($border-light) !default;
|
|
8
|
+
$gantt-label-color: rgba($content-text-color-alt2) !default;
|
|
9
|
+
$gantt-content-color: rgba($content-text-color-alt2) !default;
|
|
10
|
+
$holiday-background: $content-bg-color-alt1 !default;
|
|
11
|
+
$progress-handler-outline: rgba($primary-text-color) !default;
|
|
12
|
+
$progress-handler-background: rgba($content-text-color) !default;
|
|
13
|
+
$holiday-label-color: rgba($content-text-color-alt2) !default;
|
|
14
|
+
$weekend-background: $content-bg-color-alt1 !default;
|
|
15
|
+
$event-marker-line-color: rgba($primary) !default;
|
|
16
|
+
$event-marker-label-color: rgba($warning-light) !default;
|
|
17
|
+
$event-marker-label-font-color: rgba($warning-dark) !default;
|
|
18
|
+
$connector-line-color: rgba($primary) !default;
|
|
19
|
+
$connector-line-hover-color: rgba($primary) !default;
|
|
20
|
+
$connector-false-line-color: rgba($primary) !default;
|
|
21
|
+
$connector-point-hover-color: rgba($icon-color) !default;
|
|
22
|
+
$connector-point-border-color: rgba($content-bg-color) !default;
|
|
23
|
+
$connector-point-hover-bg-color: rgba($icon-color-hover) !default;
|
|
24
|
+
$connector-point-hover-outerline-color: $connector-point-border-color !default;
|
|
25
|
+
$critical-connector-line-color: rgba($danger) !default;
|
|
26
|
+
$critical-connector-line-hover-color: rgba($danger-light) !default;
|
|
27
|
+
$connector-point-hover-border-color: rgba($content-bg-color) !default;
|
|
28
|
+
$gantt-line-container-cell-border-color: rgba($border-light) !default;
|
|
29
|
+
/* stylelint-disable */
|
|
30
|
+
$gantt-unscheduled-taskbar-background: linear-gradient(to right, rgba($primary-light), rgba($primary) 30%, rgba($primary) 70%, rgba($primary) 70%, rgba($primary-light) 100%) !default;
|
|
31
|
+
$gantt-unscheduled-critical-taskbar-background: linear-gradient(to right, rgba(285,85,85, 0.2), #D13438 30%, #D13438 70%, #D13438 70%, rgba(285,85,85, 0.2) 100%) !default;
|
|
32
|
+
$gantt-unscheduled-critical-taskbar-background-color: rgba(285,85,85, .2) !default;
|
|
33
|
+
$gantt-critical-child-task-bar: linear-gradient(0deg, rgba($warning, .75), rgba($warning, .75)), rgba($content-bg-color) !default;
|
|
34
|
+
$gantt-critical-child-progress-bar: rgba($warning) !default;
|
|
35
|
+
$gantt-critical-child-task-bar-border: 1px solid rgba($danger-light) !default;
|
|
36
|
+
$gantt-unscheduled-milestone-top-border: $content-bg-color-alt5 !default;
|
|
37
|
+
$gantt-unscheduled-milestone-bottom-border: $content-bg-color-alt5 !default;
|
|
38
|
+
$gantt-child-task-bar: $gantt-taskbar-color !default;
|
|
39
|
+
$gantt-child-progress-bar: rgba($primary) !default;
|
|
40
|
+
$gantt-manualchild-task-bar:linear-gradient(0deg, rgba($success, 0.5), rgba($success, 0.5)), rgba($content-bg-color) !default;
|
|
41
|
+
$gantt-manualchild-task-bar-border: 1px solid rgba($success, 0.5);
|
|
42
|
+
$gantt-manualchild-progress-bar: rgba($success);
|
|
43
|
+
$gantt-manualparent-background-color: rgba($on-surface) !default;
|
|
44
|
+
$gantt-unscheduledmanualparent-background-color: linear-gradient(to right, rgba(63, 81, 181, 0.2), #989A9C 30%, #989A9C 70%, #989A9C 70%, rgba(63, 81, 181, 0.2) 100%) !default;
|
|
45
|
+
$gantt-unscheduled-manualtaskbar-background: linear-gradient(to right, rgba($success-light), rgba($success) 30%, rgba($success) 70%, rgba($success) 70%, rgba($success-light) 100%) !default;
|
|
46
|
+
$gantt-parent-task-bar: rgba($content-text-color-alt1, 0.75 ) !default;
|
|
47
|
+
$gantt-parent-progress-bar: rgba($content-text-color-alt1) !default;
|
|
48
|
+
$gantt-milestone-border-color: rgba($surface) !default;
|
|
49
|
+
$gantt-critical-milestone-border-color: rgba($surface) !default;
|
|
50
|
+
$gantt-parent-milestone-border-color: rgba($primary) !default;
|
|
51
|
+
$gantt-empty-taskbar-background-color: rgba(0,120,222,.15);
|
|
52
|
+
$gantt-empty-taskbar-border-color: rgba(0,120,222,.65) !important;
|
|
53
|
+
$gantt-label-font-color: rgba($content-text-color) !default;
|
|
54
|
+
$gantt-task-label-font-color: rgba($primary-text-color) !default;
|
|
55
|
+
$gantt-tab-header-active-font-color: rgba($primary) !default;
|
|
56
|
+
$gantt-tab-header-font-color: rgba($on-surface-variant) !default;
|
|
57
|
+
$gantt-edit-icon-color: rgba($icon-color) !default;
|
|
58
|
+
$gantt-icons-color: rgba($icon-color) !default;
|
|
59
|
+
$gantt-cell-border-color: rgba($border) !default;
|
|
60
|
+
$gantt-dialog-active-tab-background: $transparent !default;
|
|
61
|
+
$gantt-dialog-tab-background: $transparent !default;
|
|
62
|
+
$gantt-dialog-header-font-color: rgba($content-text-color) !default;
|
|
63
|
+
$gantt-dialog-icon-color: rgba($icon-color) !default;
|
|
64
|
+
$gantt-dialog-icon-hover-color: $content-bg-color-alt1 !default;
|
|
65
|
+
$gantt-dialog-close-icon-hover-color: rgba($icon-color) !default;
|
|
66
|
+
$gantt-dialog-tab-hover-border-color: $transparent !default;
|
|
67
|
+
$gantt-dialog-tab-header-border-no-color: $transparent !default;
|
|
68
|
+
$gantt-tab-selection-indicator-color: rgba($primary) !default;
|
|
69
|
+
$gantt-tab-header-hover-color: $transparent !default;
|
|
70
|
+
$gantt-tab-header-hover-font-color: rgba($content-text-color-alt2) !default;
|
|
71
|
+
$gantt-active-background: $table-bg-color-selected;
|
|
72
|
+
$gantt-active-color: rgba($table-text-color-selected) !default;
|
|
73
|
+
$gantt-table-background: rgba($content-bg-color) !default;
|
|
74
|
+
$gantt-baseline-color: rgba($danger) !default;
|
|
75
|
+
$gantt-inactive-parent: $content-bg-color-alt4 !default;
|
|
76
|
+
$gantt-inactive-child: rgba($primary-light) !default;
|
|
77
|
+
$gantt-connected-task: lighten-color(rgba($primary), 20%) !default;
|
|
78
|
+
$gantt-active-parent-task: lighten-color(rgba($warning-text), 10%) !default;
|
|
79
|
+
$gantt-uptail-border: rgba($border-light) !default;
|
|
80
|
+
$gantt-gridpopup-span: rgba($warning-text) !default;
|
|
81
|
+
$gantt-active-parent-shadow: ($gantt-gridpopup-span, 0.5) !default;
|
|
82
|
+
$gantt-left-resize-gripper-border: $content-bg-color-alt4 !default;
|
|
83
|
+
$gantt-left-resize-gripper-color: rgba($primary-text-color) !default;
|
|
84
|
+
$gantt-drag-clone-bg-color: rgba($content-bg-color) !default;
|
|
85
|
+
$gantt-drag-clone-border-color: rgba($border-light) !default;
|
|
86
|
+
$gantt-drag-clone-color: rgba($content-text-color) !default;
|
|
87
|
+
$gantt-content-font-color: rgba($content-text-color) !default;
|
|
88
|
+
$gantt-table-background-color: rgba($content-bg-color) !default;
|
|
89
|
+
$gantt-clone-dragdrop-bg-color: $gantt-table-background-color !default;
|
|
90
|
+
$error-elem-color: rgba($danger) !default;
|
|
91
|
+
$gantt-active-container-border: rgba($border) !default;
|
|
92
|
+
$rangecontainer-border-color: rgba($border-warning) !default;
|
|
93
|
+
|
|
94
|
+
// Layout
|
|
95
|
+
$holiday-label-font-size: 13px !default;
|
|
96
|
+
$event-marker-label-font-size: 14px !default;
|
|
97
|
+
$event-marker-label-padding: 3px 12px !default;
|
|
98
|
+
$event-marker-label-height: 28px !default;
|
|
99
|
+
$event-marker-label-arrow-top: 56px !default;
|
|
100
|
+
$gantt-connector-point-margin-top: 7.5px !default;
|
|
101
|
+
$gantt-connector-point-margin-radius: 4px !default;
|
|
102
|
+
$gantt-connector-point-left: 8px !default;
|
|
103
|
+
$gantt-unscheduled-taskbar-left: 3px !default;
|
|
104
|
+
$gantt-unscheduled-taskbar-straight-radius: 2px !default;
|
|
105
|
+
$gantt-unscheduled-taskbar-curved-radius: 0 !default;
|
|
106
|
+
$gantt-label-size: 13px !default;
|
|
107
|
+
$gantt-header-border-spacing: 0 !default;
|
|
108
|
+
$gantt-child-progress-bar-border: 0px !default;
|
|
109
|
+
$gantt-child-progress-bar-border-radius:3px;
|
|
110
|
+
$gantt-child-task-bar-border: 1px solid rgba($primary) !default;
|
|
111
|
+
$gantt-manualchild-progress-bar-border: 0px !default;
|
|
112
|
+
$gantt-parent-progress-bar-border: 0px !default;
|
|
113
|
+
$gantt-parent-task-bar-border: 1px solid $border-dark !default;
|
|
114
|
+
$gantt-connector-point-right-margin-left: 3px !default;
|
|
115
|
+
$gantt-connector-point-left-margin-right: 3px !default;
|
|
116
|
+
$gantt-right-label-container-margin-left: 25px !default;
|
|
117
|
+
$gantt-task-label-font-size: 12px !default;
|
|
118
|
+
$gantt-label-font-size: 14px !default;
|
|
119
|
+
$gantt-bigger-label-font-size: 16px !default;
|
|
120
|
+
$gantt-unscheduled-taskbar-border: 0px !default;
|
|
121
|
+
$gantt-unscheduled-taskbar-border-radius: 4px !default;
|
|
122
|
+
$gantt-dialog-general-height: 241px !default;
|
|
123
|
+
$gantt-dialog-edit-form-odd-padding: 12px 18px 0 18px !default;
|
|
124
|
+
$gantt-dialog-edit-form-even-padding: 12px 18px 0 0 !default;
|
|
125
|
+
$gantt-dialog-edit-form-scroll-padding: 12px 18px 0 0 !default;
|
|
126
|
+
$gantt-bigger-tooltip-button-color: rgba($tooltip-bg-color) !default;
|
|
127
|
+
$gantt-bigger-tooltip-dialog-color: rgba($tooltip-bg-color) !default;
|
|
128
|
+
$gantt-bigger-tooltip-button-text-color: $toooltip-text-color !default;
|
|
129
|
+
$gantt-bigger-tooltip-dialog-text-color: rgba($tooltip-text-color) !default;
|
|
130
|
+
$gantt-bigger-tooltip-disabled-button-color: $content-bg-color-alt5 !important;
|
|
131
|
+
$gantt-bigger-dialog-edit-form-odd-padding: 16px 12px 0 16px !default;
|
|
132
|
+
$gantt-bigger-dialog-edit-form-even-padding: 16px 16px 0 12px !default;
|
|
133
|
+
$gantt-bigger-dialog-close-button-left: 2px !important;
|
|
134
|
+
$gantt-bigger-dialog-close-button-size: 20px !important;
|
|
135
|
+
$gantt-bigger-dialog-header-padding: 20px !important;
|
|
136
|
+
$gantt-bigger-add-dialog-content-height: 250px !important;
|
|
137
|
+
$gantt-bigger-event-arrow-color: rgba($warning-light) !default;
|
|
138
|
+
$gantt-bigger-event-arrow-font-size: 12px !important;
|
|
139
|
+
$gantt-bigger-event-markers-border-radius: 4px !important;
|
|
140
|
+
$gantt-bigger-event-markers-height: 26px !important;
|
|
141
|
+
$gantt-bigger-event-arrow-bottom: 6px solid transparent;
|
|
142
|
+
$gantt-bigger-event-arrow-right: 6px solid transparent;
|
|
143
|
+
$gantt-bigger-event-arrow-top: 6px solid transparent;
|
|
144
|
+
$gantt-bigger-event-arrow-top-value: 73px !important;
|
|
145
|
+
$gantt-bigger-event-markers-top: 65px !important;
|
|
146
|
+
$gantt-bigger-event-markers-padding: 4px 11px 4px 9px !important;
|
|
147
|
+
$gantt-bigger-add-dialog-input-height: 78px !important;
|
|
148
|
+
$gantt-bigger-add-dialog-input-width: 250px !important;
|
|
149
|
+
$gantt-bigger-add-dialog-input-field-width: 175px !default;
|
|
150
|
+
$gantt-bigger-filter-dialog-footer-padding: 16px !important;
|
|
151
|
+
$gantt-bigger-add-dialog-footer-padding: 16px !important;
|
|
152
|
+
$gantt-bigger-filter-dialog-input-padding: 16px 0 0 !important;
|
|
153
|
+
$gantt-bigger-filter-dialog-footer-height: 70px !important;
|
|
154
|
+
$gantt-bigger-add-dialog-footer-height: 70px !important;
|
|
155
|
+
$gantt-bigger-dialog-width: 556px !important;
|
|
156
|
+
$gantt-bigger-filter-dialog-width: 350px !important;
|
|
157
|
+
$gantt-dialog-bigger-input-field: 38px !default;
|
|
158
|
+
$gantt-dialog-bigger-input-padding-field: 32px 16px 16px !important;
|
|
159
|
+
$gantt-bigger-predecessor-dialog-padding: 10px 9px 9px 14px !important;
|
|
160
|
+
$gantt-bigger-predecessor-dialog-font-size: 12px;
|
|
161
|
+
$gantt-bigger-predecessor-dialog-font-weight: 400 !default;
|
|
162
|
+
$gantt-bigger-predecessor-dialog-line-height: 1.8 !default;
|
|
163
|
+
$gantt-bigger-dialog-input-field-height: 36px !important;
|
|
164
|
+
$gantt-bigger-dialog-input-icon: 36px !important;
|
|
165
|
+
$gantt-dialog-bigger-border-radius: 6px !important;
|
|
166
|
+
$gantt-bigger-dialog-tab-padding-left: 5px !important;
|
|
167
|
+
$gantt-bigger-dialog-border-radius: 16px 16px 0px 0px !default;
|
|
168
|
+
$gantt-bigger-dialog-edit-form-scroll-padding: 16px 18px 0 9px !default;
|
|
169
|
+
$gantt-dialog-dependent-height: 161px !default;
|
|
170
|
+
$gantt-dialog-resource-height: 202px !default;
|
|
171
|
+
$gantt-dialog-rte-height: 241px !default;
|
|
172
|
+
$gantt-dialog-rte-content-height: 200px !default;
|
|
173
|
+
$gantt-dialog-padding-bottom: 12px !default;
|
|
174
|
+
$gantt-dialog-tab-padding-left: 12px !default;
|
|
175
|
+
$gantt-tab-header-border-width: 1px;
|
|
176
|
+
$gantt-depedent-div-border-bottom: 0px !default;
|
|
177
|
+
$gantt-resource-div-border-bottom: 0px !default;
|
|
178
|
+
$gantt-richtext-border-bottom: 0px !default;
|
|
179
|
+
$gantt-richtext-content-border-bottom: 0px !default;
|
|
180
|
+
$gantt-connector-point-width: 12px !default;
|
|
181
|
+
$gantt-connector-point-height: 8px !default;
|
|
182
|
+
$gantt-connector-left-point-left: -12px !default;
|
|
183
|
+
$gantt-parent-progress-bar-border-radius: 4px !default;
|
|
184
|
+
$gantt-timeline-top-headercell-font-size: 14px !default;
|
|
185
|
+
$gantt-timeline-top-headercell-font-weight: bold !default;
|
|
186
|
+
$gantt-active-color-opacity: 0.9 !default;
|
|
187
|
+
$gantt-child-progress-margin-left: 0.5px !default;
|
|
188
|
+
$gantt-timeline-single-header-outer-div: 45px !default;
|
|
189
|
+
$gantt-chart-timeline-single-header-outer-div: 46px !default;
|
|
190
|
+
$gantt-header-border-height: 52px !default;
|
|
191
|
+
$gantt-bigger-header-border-height: 64px !default;
|
|
192
|
+
$gantt-treegrid-header-border-height: 51px !default;
|
|
193
|
+
$gantt-bigger-treegrid-header-border-height: 63px !default;
|
|
194
|
+
$gantt-header-border-bottom-width: 1px !default;
|
|
195
|
+
$gantt-timeline-top-header-cell-height: 26px !default;
|
|
196
|
+
$gantt-bigger-timeline-top-header-cell-height: 32px !default;
|
|
197
|
+
$gantt-header-border-radius: 0px !default;
|
|
198
|
+
$gantt-splitter-border-top-right-radius: 0px !default;
|
|
199
|
+
$gantt-splitter-border-top-left-radius: 0px !default;
|
|
200
|
+
$gantt-filter-menu-value-div-padding: 16px !default;
|
|
201
|
+
$gantt-dialog-tab-hover-border-bottom: 0px !default;
|
|
202
|
+
$gantt-dialog-tab-hover-border-bottom-radius: 0px !default;
|
|
203
|
+
$gantt-dialog-border-radius: 16px 16px 0px 0px !default;
|
|
204
|
+
$event-marker-line-height: 1.5 !default;
|
|
205
|
+
$gantt-clone-padding: 2px 8px 1px !default;
|
|
206
|
+
$gantt-bigger-clone-padding: $gantt-clone-padding !default;
|
|
207
|
+
$gantt-group-clone-box-shadow: 0 0 !default;
|
|
208
|
+
$gantt-header-font-size: 12px !default;
|
|
209
|
+
$gantt-header-font-weight: bold !default;
|
|
210
|
+
$gantt-drag-clone-font-weight: $gantt-header-font-weight !default;
|
|
211
|
+
$gantt-drag-clone-opacity: 1 !default;
|
|
212
|
+
$gantt-group-clone-text-align: center !default;
|
|
213
|
+
$gantt-clone-prop-box-shadow: 0 6px 12px rgba($warning-text, .175) !default;
|
|
214
|
+
$gantt-border-size: 1px !default;
|
|
215
|
+
$grid-active-container-border: 0 0 0 1px rgba($border) inset !default;
|
|
216
|
+
$gantt-collapse-progress-width: 0px !important;
|
|
217
|
+
$gantt-range-container-arc-radius: 2px !default;
|
|
218
|
+
$bigger-column-menu-size: 35px !default;
|
|
219
|
+
$gantt-masked-table-background-color: rgb(225,223,221);
|
|
220
|
+
$gantt-split-container-line-border-color: rgba($outline);
|
package/styles/gantt/_theme.scss
CHANGED
|
@@ -7,12 +7,20 @@
|
|
|
7
7
|
.e-gantt-splitter {
|
|
8
8
|
border-color: $gantt-header-border-color;
|
|
9
9
|
border-radius: $gantt-header-border-radius;
|
|
10
|
+
.e-split-bar.e-split-bar-horizontal.e-resizable-split-bar {
|
|
11
|
+
@if ($skin-name == 'Material3') {
|
|
12
|
+
background: $content-bg-color-alt2;
|
|
13
|
+
border: solid $border-light;
|
|
14
|
+
border-width: 0 1px;
|
|
15
|
+
width: 8px !important; /* stylelint-disable-line declaration-no-important */
|
|
16
|
+
}
|
|
17
|
+
}
|
|
10
18
|
}
|
|
11
19
|
|
|
12
20
|
.e-grid .e-spinner-pane {
|
|
13
21
|
display: none;
|
|
14
22
|
}
|
|
15
|
-
|
|
23
|
+
|
|
16
24
|
.e-cloneproperties.e-draganddrop {
|
|
17
25
|
box-shadow: $gantt-clone-prop-box-shadow;
|
|
18
26
|
opacity: .95;
|
|
@@ -70,7 +78,9 @@
|
|
|
70
78
|
opacity: $gantt-active-color-opacity;
|
|
71
79
|
}
|
|
72
80
|
}
|
|
73
|
-
|
|
81
|
+
.e-taskbar-resize-div {
|
|
82
|
+
border-color: $event-marker-line-color;
|
|
83
|
+
}
|
|
74
84
|
.e-gantt-chart {
|
|
75
85
|
.e-timeline-header-container {
|
|
76
86
|
background: $gantt-header-bg-color;
|
|
@@ -131,7 +141,7 @@
|
|
|
131
141
|
}
|
|
132
142
|
|
|
133
143
|
.e-gantt-child-taskbar-inner-div {
|
|
134
|
-
background
|
|
144
|
+
background: $gantt-child-task-bar;
|
|
135
145
|
outline: $gantt-child-task-bar-border;
|
|
136
146
|
border-radius: $gantt-parent-progress-bar-border-radius;
|
|
137
147
|
}
|
|
@@ -159,6 +169,14 @@
|
|
|
159
169
|
display: none;
|
|
160
170
|
}
|
|
161
171
|
}
|
|
172
|
+
@if $skin-name =='Material3' or $skin-name =='Material3-dark'{
|
|
173
|
+
.e-collapse-parent {
|
|
174
|
+
.e-gantt-child-taskbar-inner-div {
|
|
175
|
+
border-bottom: 0;
|
|
176
|
+
border-top: 0;
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
}
|
|
162
180
|
|
|
163
181
|
.e-gantt-parent-taskbar-inner-div {
|
|
164
182
|
background-color: $gantt-parent-task-bar;
|
|
@@ -181,7 +199,7 @@
|
|
|
181
199
|
}
|
|
182
200
|
|
|
183
201
|
.e-gantt-child-manualtaskbar {
|
|
184
|
-
background
|
|
202
|
+
background: $gantt-manualchild-task-bar;
|
|
185
203
|
outline: $gantt-manualchild-task-bar-border;
|
|
186
204
|
}
|
|
187
205
|
|
|
@@ -398,28 +416,18 @@
|
|
|
398
416
|
color: $gantt-edit-icon-color;
|
|
399
417
|
}
|
|
400
418
|
|
|
401
|
-
.e-milestone
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
.e-milestone-bottom {
|
|
406
|
-
border-top-color: $gantt-milestone-border-color;
|
|
407
|
-
}
|
|
408
|
-
|
|
409
|
-
.e-parent-milestone-top {
|
|
410
|
-
border-bottom-color: $gantt-parent-milestone-border-color;
|
|
411
|
-
}
|
|
412
|
-
|
|
413
|
-
.e-parent-milestone-bottom {
|
|
414
|
-
border-top-color: $gantt-parent-milestone-border-color;
|
|
419
|
+
.e-gantt-milestone {
|
|
420
|
+
background-color: $gantt-milestone-border-color;
|
|
421
|
+
border-color: $gantt-child-progress-bar;
|
|
415
422
|
}
|
|
416
423
|
|
|
417
|
-
.e-
|
|
418
|
-
|
|
424
|
+
.e-gantt-parent-milestone {
|
|
425
|
+
background-color: $gantt-parent-milestone-border-color;
|
|
419
426
|
}
|
|
420
427
|
|
|
421
|
-
.e-manualparent-milestone
|
|
422
|
-
|
|
428
|
+
.e-gantt-manualparent-milestone {
|
|
429
|
+
background-color: $gantt-manualparent-background-color;
|
|
430
|
+
border-color: $gantt-child-progress-bar;
|
|
423
431
|
}
|
|
424
432
|
|
|
425
433
|
.e-gantt-unscheduled-manualtask {
|
|
@@ -445,12 +453,13 @@
|
|
|
445
453
|
background-color: $gantt-baseline-color;
|
|
446
454
|
}
|
|
447
455
|
|
|
448
|
-
.e-baseline-milestone-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
456
|
+
.e-baseline-gantt-milestone-container {
|
|
457
|
+
@if $skin-name =='Material3'{
|
|
458
|
+
background-color: $gantt-milestone-border-color;
|
|
459
|
+
}
|
|
460
|
+
@else{
|
|
461
|
+
background-color: $gantt-baseline-color;
|
|
462
|
+
}
|
|
454
463
|
}
|
|
455
464
|
|
|
456
465
|
.e-uptail::before {
|
|
@@ -522,12 +531,8 @@
|
|
|
522
531
|
border: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
523
532
|
}
|
|
524
533
|
|
|
525
|
-
.e-milestone
|
|
526
|
-
|
|
527
|
-
}
|
|
528
|
-
|
|
529
|
-
.e-milestone-bottom {
|
|
530
|
-
border-top-color: $gantt-inactive-child !important; /* stylelint-disable-line declaration-no-important */
|
|
534
|
+
.e-gantt-milestone {
|
|
535
|
+
background-color: $gantt-inactive-child !important; /* stylelint-disable-line declaration-no-important */
|
|
531
536
|
}
|
|
532
537
|
|
|
533
538
|
.e-gantt-parent-taskbar-inner-div {
|
|
@@ -547,12 +552,8 @@
|
|
|
547
552
|
border: $gantt-child-progress-bar !important; /* stylelint-disable-line declaration-no-important */
|
|
548
553
|
}
|
|
549
554
|
|
|
550
|
-
.e-milestone
|
|
551
|
-
|
|
552
|
-
}
|
|
553
|
-
|
|
554
|
-
.e-milestone-bottom {
|
|
555
|
-
border-top-color: $gantt-child-progress-bar !important; /* stylelint-disable-line declaration-no-important */
|
|
555
|
+
.e-gantt-milestone {
|
|
556
|
+
background-color: $gantt-child-progress-bar !important; /* stylelint-disable-line declaration-no-important */
|
|
556
557
|
}
|
|
557
558
|
}
|
|
558
559
|
|
|
@@ -563,12 +564,8 @@
|
|
|
563
564
|
border: $gantt-connected-task !important; /* stylelint-disable-line declaration-no-important */
|
|
564
565
|
}
|
|
565
566
|
|
|
566
|
-
.e-milestone
|
|
567
|
-
|
|
568
|
-
}
|
|
569
|
-
|
|
570
|
-
.e-milestone-bottom {
|
|
571
|
-
border-top-color: $gantt-connected-task !important; /* stylelint-disable-line declaration-no-important */
|
|
567
|
+
.e-gantt-milestone {
|
|
568
|
+
background-color: $gantt-connected-task !important; /* stylelint-disable-line declaration-no-important */
|
|
572
569
|
}
|
|
573
570
|
|
|
574
571
|
.e-line {
|
|
@@ -633,7 +630,6 @@
|
|
|
633
630
|
|
|
634
631
|
.e-toolbar-item.e-active {
|
|
635
632
|
background-color: $gantt-dialog-active-tab-background;
|
|
636
|
-
|
|
637
633
|
.e-tab-wrap {
|
|
638
634
|
.e-tab-text {
|
|
639
635
|
color: $gantt-tab-header-active-font-color;
|
|
@@ -705,7 +701,7 @@
|
|
|
705
701
|
}
|
|
706
702
|
|
|
707
703
|
.e-gantt .e-gantt-chart .e-gantt-child-critical-taskbar-inner-div {
|
|
708
|
-
background
|
|
704
|
+
background: $gantt-critical-child-task-bar;
|
|
709
705
|
outline: $gantt-critical-child-task-bar-border;
|
|
710
706
|
border-radius: $gantt-parent-progress-bar-border-radius;
|
|
711
707
|
}
|
|
@@ -723,12 +719,16 @@
|
|
|
723
719
|
border: $gantt-unscheduled-taskbar-border;
|
|
724
720
|
border-radius: $gantt-unscheduled-taskbar-border-radius;
|
|
725
721
|
}
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
722
|
+
.e-gantt-dialog .e-tab .e-tab-header .e-indicator {
|
|
723
|
+
@if $skin-name =='Material3' or $skin-name =='Material3-dark'{
|
|
724
|
+
display: none;
|
|
725
|
+
}
|
|
729
726
|
}
|
|
730
727
|
|
|
731
|
-
.e-gantt .e-gantt-chart .e-critical-milestone
|
|
732
|
-
|
|
728
|
+
.e-gantt .e-gantt-chart .e-critical-milestone {
|
|
729
|
+
background-color: $gantt-critical-milestone-border-color;
|
|
730
|
+
@if $skin-name =='Material3'{
|
|
731
|
+
border: 1px solid $gantt-critical-child-progress-bar;
|
|
732
|
+
}
|
|
733
733
|
}
|
|
734
734
|
}
|