@syncfusion/ej2-gantt 19.2.62 → 19.3.46
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 -1
- package/CHANGELOG.md +38 -0
- 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 +124 -105
- package/dist/es6/ej2-gantt.es2015.js.map +1 -1
- package/dist/es6/ej2-gantt.es5.js +127 -107
- 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 +18 -18
- package/src/gantt/actions/cell-edit.js +1 -0
- package/src/gantt/actions/dialog-edit.js +6 -1
- package/src/gantt/actions/edit.js +12 -5
- package/src/gantt/actions/filter.js +1 -1
- package/src/gantt/actions/taskbar-edit.js +3 -3
- package/src/gantt/base/gantt-chart.js +1 -1
- package/src/gantt/base/gantt-model.d.ts +3 -30
- package/src/gantt/base/gantt.d.ts +2 -30
- package/src/gantt/base/gantt.js +59 -4
- package/src/gantt/base/interface.d.ts +4 -22
- package/src/gantt/base/splitter.js +7 -2
- package/src/gantt/base/task-processor.js +11 -3
- package/src/gantt/base/tree-grid.js +8 -2
- package/src/gantt/base/utils.js +2 -2
- package/src/gantt/export/export-helper.js +12 -14
- package/src/gantt/models/column.d.ts +11 -6
- package/src/gantt/models/day-working-time-model.d.ts +0 -4
- package/src/gantt/models/day-working-time.d.ts +0 -4
- package/src/gantt/models/selection-settings-model.d.ts +0 -4
- package/src/gantt/models/selection-settings.d.ts +0 -4
- package/src/gantt/renderer/chart-rows.d.ts +0 -1
- package/src/gantt/renderer/chart-rows.js +3 -71
- package/src/gantt/renderer/nonworking-day.js +1 -1
- package/styles/bootstrap-dark.css +17 -0
- package/styles/bootstrap.css +17 -0
- package/styles/bootstrap4.css +22 -0
- package/styles/bootstrap5-dark.css +1922 -0
- package/styles/bootstrap5-dark.scss +1 -0
- package/styles/bootstrap5.css +1922 -0
- package/styles/bootstrap5.scss +1 -0
- package/styles/fabric-dark.css +17 -0
- package/styles/fabric.css +17 -0
- package/styles/gantt/_bootstrap-dark-definition.scss +3 -0
- package/styles/gantt/_bootstrap-definition.scss +3 -0
- package/styles/gantt/_bootstrap4-definition.scss +3 -0
- package/styles/gantt/_bootstrap5-dark-definition.scss +1 -0
- package/styles/gantt/_bootstrap5-definition.scss +164 -0
- package/styles/gantt/_fabric-dark-definition.scss +3 -0
- package/styles/gantt/_fabric-definition.scss +3 -0
- package/styles/gantt/_highcontrast-definition.scss +3 -0
- package/styles/gantt/_highcontrast-light-definition.scss +3 -0
- package/styles/gantt/_layout.scss +15 -3
- package/styles/gantt/_material-dark-definition.scss +3 -0
- package/styles/gantt/_material-definition.scss +3 -0
- package/styles/gantt/_tailwind-dark-definition.scss +1 -156
- package/styles/gantt/_tailwind-definition.scss +67 -60
- package/styles/gantt/_theme.scss +8 -1
- package/styles/gantt/bootstrap-dark.css +17 -0
- package/styles/gantt/bootstrap.css +17 -0
- package/styles/gantt/bootstrap4.css +22 -0
- package/styles/gantt/bootstrap5-dark.css +1922 -0
- package/styles/gantt/bootstrap5-dark.scss +22 -0
- package/styles/gantt/bootstrap5.css +1922 -0
- package/styles/gantt/bootstrap5.scss +22 -0
- package/styles/gantt/fabric-dark.css +17 -0
- package/styles/gantt/fabric.css +17 -0
- package/styles/gantt/highcontrast-light.css +17 -0
- package/styles/gantt/highcontrast.css +17 -0
- package/styles/gantt/icons/_bootstrap5-dark.scss +1 -0
- package/styles/gantt/icons/_bootstrap5.scss +112 -0
- package/styles/gantt/icons/_tailwind-dark.scss +112 -112
- package/styles/gantt/material-dark.css +19 -2
- package/styles/gantt/material.css +17 -0
- package/styles/gantt/tailwind-dark.css +41 -25
- package/styles/gantt/tailwind.css +39 -23
- package/styles/highcontrast-light.css +17 -0
- package/styles/highcontrast.css +17 -0
- package/styles/material-dark.css +19 -2
- package/styles/material.css +17 -0
- package/styles/tailwind-dark.css +41 -25
- package/styles/tailwind.css +39 -23
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import 'gantt/bootstrap5.scss';
|
package/styles/fabric-dark.css
CHANGED
|
@@ -692,6 +692,10 @@
|
|
|
692
692
|
user-select: none;
|
|
693
693
|
}
|
|
694
694
|
|
|
695
|
+
.e-gantt .e-gantt-chart .e-chart-rows-container {
|
|
696
|
+
line-height: initial;
|
|
697
|
+
}
|
|
698
|
+
|
|
695
699
|
.e-gantt .e-gantt-chart .e-taskbar-left-resizer,
|
|
696
700
|
.e-gantt .e-gantt-chart .e-taskbar-right-resizer {
|
|
697
701
|
display: inline-block;
|
|
@@ -1137,6 +1141,14 @@
|
|
|
1137
1141
|
opacity: 1;
|
|
1138
1142
|
}
|
|
1139
1143
|
|
|
1144
|
+
.e-gantt .e-cloneproperties.e-draganddrop .e-row .e-rowcell .e-treecolumn-container .e-icons.e-none::before {
|
|
1145
|
+
content: '';
|
|
1146
|
+
}
|
|
1147
|
+
|
|
1148
|
+
.e-bigger .e-gantt .e-gantt-chart .e-label {
|
|
1149
|
+
font-size: 14px;
|
|
1150
|
+
}
|
|
1151
|
+
|
|
1140
1152
|
.e-gantt-tooltip-label {
|
|
1141
1153
|
padding-bottom: 2px;
|
|
1142
1154
|
padding-right: 2px;
|
|
@@ -1226,6 +1238,10 @@
|
|
|
1226
1238
|
border-radius: 0px;
|
|
1227
1239
|
}
|
|
1228
1240
|
|
|
1241
|
+
.e-gantt .e-gantt-splitter-height {
|
|
1242
|
+
height: calc(100% - 40px) !important;
|
|
1243
|
+
}
|
|
1244
|
+
|
|
1229
1245
|
.e-gantt .e-cloneproperties.e-draganddrop {
|
|
1230
1246
|
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.26);
|
|
1231
1247
|
opacity: .95;
|
|
@@ -1335,6 +1351,7 @@
|
|
|
1335
1351
|
|
|
1336
1352
|
.e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active {
|
|
1337
1353
|
background: #514f4f;
|
|
1354
|
+
opacity: 1;
|
|
1338
1355
|
}
|
|
1339
1356
|
|
|
1340
1357
|
.e-gantt .e-gantt-chart .e-timeline-header-container {
|
package/styles/fabric.css
CHANGED
|
@@ -690,6 +690,10 @@
|
|
|
690
690
|
user-select: none;
|
|
691
691
|
}
|
|
692
692
|
|
|
693
|
+
.e-gantt .e-gantt-chart .e-chart-rows-container {
|
|
694
|
+
line-height: initial;
|
|
695
|
+
}
|
|
696
|
+
|
|
693
697
|
.e-gantt .e-gantt-chart .e-taskbar-left-resizer,
|
|
694
698
|
.e-gantt .e-gantt-chart .e-taskbar-right-resizer {
|
|
695
699
|
display: inline-block;
|
|
@@ -1135,6 +1139,14 @@
|
|
|
1135
1139
|
opacity: 1;
|
|
1136
1140
|
}
|
|
1137
1141
|
|
|
1142
|
+
.e-gantt .e-cloneproperties.e-draganddrop .e-row .e-rowcell .e-treecolumn-container .e-icons.e-none::before {
|
|
1143
|
+
content: '';
|
|
1144
|
+
}
|
|
1145
|
+
|
|
1146
|
+
.e-bigger .e-gantt .e-gantt-chart .e-label {
|
|
1147
|
+
font-size: 14px;
|
|
1148
|
+
}
|
|
1149
|
+
|
|
1138
1150
|
.e-gantt-tooltip-label {
|
|
1139
1151
|
padding-bottom: 2px;
|
|
1140
1152
|
padding-right: 2px;
|
|
@@ -1224,6 +1236,10 @@
|
|
|
1224
1236
|
border-radius: 0px;
|
|
1225
1237
|
}
|
|
1226
1238
|
|
|
1239
|
+
.e-gantt .e-gantt-splitter-height {
|
|
1240
|
+
height: calc(100% - 40px) !important;
|
|
1241
|
+
}
|
|
1242
|
+
|
|
1227
1243
|
.e-gantt .e-cloneproperties.e-draganddrop {
|
|
1228
1244
|
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
|
|
1229
1245
|
opacity: .95;
|
|
@@ -1333,6 +1349,7 @@
|
|
|
1333
1349
|
|
|
1334
1350
|
.e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active {
|
|
1335
1351
|
background: #d1ebff;
|
|
1352
|
+
opacity: 1;
|
|
1336
1353
|
}
|
|
1337
1354
|
|
|
1338
1355
|
.e-gantt .e-gantt-chart .e-timeline-header-container {
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
$gantt-header-bg-color: $grey-base !default;
|
|
2
2
|
$gantt-header-border-color: $grey-88 !default;
|
|
3
3
|
$gantt-header-color: $grey-dark-font !default;
|
|
4
|
+
$gantt-context-menu-icon-color: $grey-dark-font !default;
|
|
4
5
|
$gantt-grid-line-color: $grey-88 !default;
|
|
5
6
|
$gantt-label-color: rgba($grey-light-font, .87) !default;
|
|
6
7
|
$gantt-content-color: rgba($grey-light-font, .87) !default;
|
|
@@ -62,6 +63,7 @@ $gantt-connector-point-right-margin-left: 2px !default;
|
|
|
62
63
|
$gantt-right-label-container-margin-left: 25px !default;
|
|
63
64
|
$gantt-task-label-font-size: 12px !default;
|
|
64
65
|
$gantt-label-font-size: 14px !default;
|
|
66
|
+
$gantt-bigger-label-font-size: 14px !default;
|
|
65
67
|
$gantt-label-font-color: $grey-dark-font !default;
|
|
66
68
|
$gantt-task-label-font-color: $brand-primary-font !default;
|
|
67
69
|
$gantt-tab-header-active-font-color: $grey-light-font !default;
|
|
@@ -116,6 +118,7 @@ $gantt-timeline-top-header-cell-height: 33px !default;
|
|
|
116
118
|
$gantt-header-border-radius: 4px !default;
|
|
117
119
|
$gantt-splitter-border-top-right-radius: 0px !default;
|
|
118
120
|
$gantt-splitter-border-top-left-radius: 0px !default;
|
|
121
|
+
$gantt-splitter-height: calc(100% - 41px) !important;
|
|
119
122
|
$gantt-dialog-general-padding-bottom: 16px !default;
|
|
120
123
|
$gantt-filter-menu-value-div-padding: 24px !default;
|
|
121
124
|
$gantt-dialog-tab-hover-border-bottom: 0px !default;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
$gantt-header-bg-color: $grey-white !default;
|
|
2
2
|
$gantt-header-border-color: $grey-dd !default;
|
|
3
3
|
$gantt-header-color: $grey-light-font !default;
|
|
4
|
+
$gantt-context-menu-icon-color: $grey-light-font !default;
|
|
4
5
|
$gantt-grid-line-color: #ddd !default;
|
|
5
6
|
$gantt-label-color: rgba($grey-light-font, .87) !default;
|
|
6
7
|
$gantt-content-color: rgba($grey-light-font, .87) !default;
|
|
@@ -62,6 +63,7 @@ $gantt-connector-point-right-margin-left: 2px !default;
|
|
|
62
63
|
$gantt-right-label-container-margin-left: 25px !default;
|
|
63
64
|
$gantt-task-label-font-size: 12px !default;
|
|
64
65
|
$gantt-label-font-size: 14px !default;
|
|
66
|
+
$gantt-bigger-label-font-size: 14px !default;
|
|
65
67
|
$gantt-label-font-color: $grey-light-font !default;
|
|
66
68
|
$gantt-task-label-font-color: $brand-primary-font !default;
|
|
67
69
|
$gantt-tab-header-active-font-color: $grey-light-font !default;
|
|
@@ -116,6 +118,7 @@ $gantt-timeline-top-header-cell-height: 33px !default;
|
|
|
116
118
|
$gantt-header-border-radius: 4px !default;
|
|
117
119
|
$gantt-splitter-border-top-right-radius: 0px !default;
|
|
118
120
|
$gantt-splitter-border-top-left-radius: 0px !default;
|
|
121
|
+
$gantt-splitter-height: calc(100% - 41px) !important;
|
|
119
122
|
$gantt-dialog-general-padding-bottom: 16px !default;
|
|
120
123
|
$gantt-filter-menu-value-div-padding: 24px !default;
|
|
121
124
|
$gantt-dialog-tab-hover-border-bottom: 0px !default;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
$gantt-header-bg-color: $white !default;
|
|
2
2
|
$gantt-header-border-color: $gray-300 !default;
|
|
3
3
|
$gantt-header-color: $gray-900 !default;
|
|
4
|
+
$gantt-context-menu-icon-color: $gray-900 !default;
|
|
4
5
|
$gantt-grid-line-color: $gray-300 !default;
|
|
5
6
|
$gantt-label-color: $gray-900 !default;
|
|
6
7
|
$gantt-content-color: rgb(0, 0, 0) !default;
|
|
@@ -62,6 +63,7 @@ $gantt-right-label-container-margin-left: 25px !default;
|
|
|
62
63
|
$gantt-task-label-font-size: 12px !default;
|
|
63
64
|
$gantt-task-label-font-color: $primary-font !default;
|
|
64
65
|
$gantt-label-font-size: 14px !default;
|
|
66
|
+
$gantt-bigger-label-font-size: 16px !default;
|
|
65
67
|
$gantt-tab-header-active-font-color: $gray-700 !default;
|
|
66
68
|
$gantt-tab-header-font-color: $primary-font !default;
|
|
67
69
|
$gantt-label-font-color: $gray-900 !default;
|
|
@@ -116,6 +118,7 @@ $gantt-timeline-top-header-cell-height: 33px !default;
|
|
|
116
118
|
$gantt-header-border-radius: 0px !default;
|
|
117
119
|
$gantt-splitter-border-top-right-radius: 0px !default;
|
|
118
120
|
$gantt-splitter-border-top-left-radius: 0px !default;
|
|
121
|
+
$gantt-splitter-height: calc(100% - 38px) !important;
|
|
119
122
|
$gantt-dialog-general-padding-bottom: 12px !default;
|
|
120
123
|
$gantt-filter-menu-value-div-padding: 16px !default;
|
|
121
124
|
$gantt-dialog-tab-hover-border-bottom: 0px !default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import './bootstrap5-definition.scss';
|
|
@@ -0,0 +1,164 @@
|
|
|
1
|
+
// color
|
|
2
|
+
|
|
3
|
+
$gantt-header-bg-color: $content-bg-color !default;
|
|
4
|
+
$gantt-header-border-color: $border-light !default;
|
|
5
|
+
$gantt-header-color: $content-text-color !default;
|
|
6
|
+
$gantt-context-menu-icon-color: rgb(108, 117, 125) !default;
|
|
7
|
+
$gantt-grid-line-color: $border-light !default;
|
|
8
|
+
$gantt-label-color: $content-text-color-alt2 !default;
|
|
9
|
+
$gantt-content-color: $content-text-color-alt2 !default;
|
|
10
|
+
$holiday-background: $content-bg-color-alt1 !default;
|
|
11
|
+
$progress-handler-outline: $white !default;
|
|
12
|
+
$progress-handler-background: $content-text-color !default;
|
|
13
|
+
$holiday-label-color: $content-text-color-alt2 !default;
|
|
14
|
+
$weekend-background: $content-bg-color-alt1 !default;
|
|
15
|
+
$event-marker-line-color: $primary !default;
|
|
16
|
+
$event-marker-label-color: $warning-light !default;
|
|
17
|
+
$event-marker-label-font-color: $warning-dark !default;
|
|
18
|
+
$connector-line-color: $primary !default;
|
|
19
|
+
$connector-line-hover-color: $primary !default;
|
|
20
|
+
$connector-false-line-color: $primary !default;
|
|
21
|
+
$connector-point-hover-color: $icon-color !default;
|
|
22
|
+
$connector-point-border-color: $content-bg-color !default;
|
|
23
|
+
$connector-point-hover-bg-color: $icon-color-hover !default;
|
|
24
|
+
$connector-point-hover-border-color: $content-bg-color !default;
|
|
25
|
+
$gantt-line-container-cell-border-color: $border-light !default;
|
|
26
|
+
// sass-lint:disable-all
|
|
27
|
+
$gantt-unscheduled-taskbar-background: linear-gradient(to right, $primary-light, $primary 30%, $primary 70%, $primary 70%, $primary-light 100%) !default;
|
|
28
|
+
$gantt-unscheduled-taskbar-background-color: rgba(63,81,181, .2) !default;
|
|
29
|
+
$gantt-unscheduled-milestone-top-border: $content-bg-color-alt5 !default;
|
|
30
|
+
$gantt-unscheduled-milestone-bottom-border: $content-bg-color-alt5 !default;
|
|
31
|
+
$gantt-resize-gripper: rgba(249, 146, 11, .2) !default;
|
|
32
|
+
$gantt-child-task-bar: $primary-light !default;
|
|
33
|
+
$gantt-child-progress-bar: $primary !default;
|
|
34
|
+
$gantt-manualchild-task-bar: $success-light !default;
|
|
35
|
+
$gantt-manualchild-task-bar-border: 1px solid $success;
|
|
36
|
+
$gantt-manualchild-progress-bar: $success;
|
|
37
|
+
$gantt-manualparent-background-color: $content-bg-color-alt5;
|
|
38
|
+
$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;
|
|
39
|
+
$gantt-unscheduled-manualtaskbar-background: linear-gradient(to right, $success-light, $success 30%, $success 70%, $success 70%, $success-light 100%) !default;
|
|
40
|
+
$gantt-parent-task-bar: $content-bg-color-alt4 !default;
|
|
41
|
+
$gantt-parent-progress-bar: $content-bg-color-alt5 !default;
|
|
42
|
+
$gantt-milestone-border-color: $content-bg-color-alt5 !default;
|
|
43
|
+
$gantt-parent-milestone-border-color: $content-bg-color-alt5 !default;
|
|
44
|
+
$gantt-label-font-color: $content-text-color-alt2 !default;
|
|
45
|
+
$gantt-task-label-font-color: $primary-text-color !default;
|
|
46
|
+
$gantt-tab-header-active-font-color: $primary !default;
|
|
47
|
+
$gantt-tab-header-font-color: $content-text-color-alt2 !default;
|
|
48
|
+
$gantt-edit-icon-color: $white !default;
|
|
49
|
+
$gantt-icons-color: $icon-color !default;
|
|
50
|
+
$gantt-cell-border-color: $border !default;
|
|
51
|
+
$gantt-dialog-active-tab-background: $transparent !default;
|
|
52
|
+
$gantt-dialog-tab-background: $content-bg-color-alt1 !default;
|
|
53
|
+
$gantt-dialog-header-font-color: $content-text-color !default;
|
|
54
|
+
$gantt-dialog-icon-color: $icon-color !default;
|
|
55
|
+
$gantt-dialog-icon-hover-color: $content-bg-color-alt1 !default;
|
|
56
|
+
$gantt-dialog-close-icon-hover-color: $icon-color !default;
|
|
57
|
+
$gantt-dialog-tab-hover-border-color: $transparent !default;
|
|
58
|
+
$gantt-dialog-tab-header-border-no-color: $transparent !default;
|
|
59
|
+
$gantt-tab-selection-indicator-color: $primary !default;
|
|
60
|
+
$gantt-tab-header-hover-color: $transparent !default;
|
|
61
|
+
$gantt-tab-header-hover-font-color: $content-text-color-alt2 !default;
|
|
62
|
+
$gantt-active-background: $table-bg-color-selected;
|
|
63
|
+
$gantt-active-color: $table-text-color-selected !default;
|
|
64
|
+
$gantt-table-background: $content-bg-color !default;
|
|
65
|
+
$gantt-baseline-color: $content-bg-color-alt5 !default;
|
|
66
|
+
$gantt-inactive-parent: $content-bg-color-alt4 !default;
|
|
67
|
+
$gantt-inactive-child: $primary-light !default;
|
|
68
|
+
$gantt-connected-task: lighten($primary, 20%) !default;
|
|
69
|
+
$gantt-active-parent-task: lighten($black, 10%) !default;
|
|
70
|
+
$gantt-uptail-border: $border-light !default;
|
|
71
|
+
$gantt-gridpopup-span: $black !default;
|
|
72
|
+
$gantt-active-parent-shadow: rgba($gantt-gridpopup-span, 0.5) !default;
|
|
73
|
+
$gantt-left-resize-gripper-border: $content-bg-color-alt4 !default;
|
|
74
|
+
$gantt-left-resize-gripper-color: $primary-text-color !default;
|
|
75
|
+
$gantt-drag-clone-bg-color: $content-bg-color !default;
|
|
76
|
+
$gantt-drag-clone-border-color: $border-light !default;
|
|
77
|
+
$gantt-drag-clone-color: $content-text-color !default;
|
|
78
|
+
$gantt-content-font-color: $content-text-color !default;
|
|
79
|
+
$gantt-table-background-color: $content-bg-color !default;
|
|
80
|
+
$gantt-clone-dragdrop-bg-color: $gantt-table-background-color !default;
|
|
81
|
+
$error-elem-color: $danger;
|
|
82
|
+
$gantt-active-container-border: $border !default;
|
|
83
|
+
$rangecontainer-border-color: $border-warning;
|
|
84
|
+
|
|
85
|
+
// Layout
|
|
86
|
+
$holiday-label-font-size: 13px !default;
|
|
87
|
+
$event-marker-label-font-size: 14px !default;
|
|
88
|
+
$event-marker-label-padding: 3px 12px !default;
|
|
89
|
+
$event-marker-label-height: 28px !default;
|
|
90
|
+
$event-marker-label-arrow-top: 56px !default;
|
|
91
|
+
$gantt-connector-point-margin-top: 7.5px !default;
|
|
92
|
+
$gantt-connector-point-margin-radius: 4px !default;
|
|
93
|
+
$gantt-connector-point-left: 8px !default;
|
|
94
|
+
$gantt-unscheduled-taskbar-left: 3px !default;
|
|
95
|
+
$gantt-unscheduled-taskbar-right-radius: 2px !default;
|
|
96
|
+
$gantt-label-size: 13px !default;
|
|
97
|
+
$gantt-header-border-spacing: 0 !default;
|
|
98
|
+
// sass-lint:disable-all
|
|
99
|
+
$gantt-child-progress-bar-border: 0px !default;
|
|
100
|
+
$gantt-child-task-bar-border: 1px solid $primary !default;
|
|
101
|
+
$gantt-manualchild-progress-bar-border: 0px !default;
|
|
102
|
+
$gantt-parent-progress-bar-border: 0px !default;
|
|
103
|
+
$gantt-parent-task-bar-border: 1px solid $border-dark !default;
|
|
104
|
+
$gantt-progress-bar-left-radius: 2px !default;
|
|
105
|
+
$gantt-unscheduled-taskbar-left-radius: 0px !default;
|
|
106
|
+
$gantt-connector-point-right-margin-left: 2px !default;
|
|
107
|
+
$gantt-right-label-container-margin-left: 16px !default;
|
|
108
|
+
$gantt-task-label-font-size: 12px !default;
|
|
109
|
+
$gantt-label-font-size: 14px !default;
|
|
110
|
+
$gantt-bigger-label-font-size: 16px !default;
|
|
111
|
+
$gantt-unscheduled-taskbar-border: 0px !default;
|
|
112
|
+
$gantt-unscheduled-taskbar-border-radius: 4px !default;
|
|
113
|
+
$gantt-dialog-general-height: 241px !default;
|
|
114
|
+
$gantt-dialog-edit-form-odd-padding: 16px 18px 0 18px !default;
|
|
115
|
+
$gantt-dialog-edit-form-even-padding: 16px 16px 0 0 !default;
|
|
116
|
+
$gantt-dialog-edit-form-scroll-padding: 16px 16px 0 0 !default;
|
|
117
|
+
$gantt-dialog-dependent-height: 161px !default;
|
|
118
|
+
$gantt-dialog-resource-height: 202px !default;
|
|
119
|
+
$gantt-dialog-rte-height: 241px !default;
|
|
120
|
+
$gantt-dialog-rte-content-height: 200px !default;
|
|
121
|
+
$gantt-dialog-padding-bottom: 20px !default;
|
|
122
|
+
$gantt-dialog-tab-padding-left: 12px !default;
|
|
123
|
+
$gantt-tab-header-border-width: 1px;
|
|
124
|
+
$gantt-depedent-div-border-bottom: 0px !default;
|
|
125
|
+
$gantt-resource-div-border-bottom: 0px !default;
|
|
126
|
+
$gantt-richtext-border-bottom: 0px !default;
|
|
127
|
+
$gantt-richtext-content-border-bottom: 0px !default;
|
|
128
|
+
$gantt-connector-point-width: 12px !default;
|
|
129
|
+
$gantt-connector-point-height: 8px !default;
|
|
130
|
+
$gantt-connector-left-point-left: -12px !default;
|
|
131
|
+
$gantt-parent-progress-bar-border-radius: 4px !default;
|
|
132
|
+
$gantt-timeline-top-headercell-font-size: 14px !default;
|
|
133
|
+
$gantt-timeline-top-headercell-font-weight: bold !default;
|
|
134
|
+
$gantt-active-color-opacity: 0.9 !default;
|
|
135
|
+
$gantt-child-progress-margin-left: 0.5px !default;
|
|
136
|
+
$gantt-timeline-single-header-outer-div: 45px !default;
|
|
137
|
+
$gantt-chart-timeline-single-header-outer-div: 46px !default;
|
|
138
|
+
$gantt-header-border-height: 64px !default;
|
|
139
|
+
$gantt-treegrid-header-border-height: 63px !default;
|
|
140
|
+
$gantt-header-border-bottom-width: 1px !default;
|
|
141
|
+
$gantt-timeline-top-header-cell-height: 33px !default;
|
|
142
|
+
$gantt-header-border-radius: 0px !default;
|
|
143
|
+
$gantt-splitter-border-top-right-radius: 0px !default;
|
|
144
|
+
$gantt-splitter-border-top-left-radius: 0px !default;
|
|
145
|
+
$gantt-splitter-height: calc(100% - 37px) !important;
|
|
146
|
+
$gantt-dialog-general-padding-bottom: 12px !default;
|
|
147
|
+
$gantt-filter-menu-value-div-padding: 16px !default;
|
|
148
|
+
$gantt-dialog-tab-hover-border-bottom: 0px !default;
|
|
149
|
+
$gantt-dialog-tab-hover-border-bottom-radius: 0px !default;
|
|
150
|
+
$gantt-dialog-border-radius: 3px 3px 0px 0px !default;
|
|
151
|
+
$event-marker-line-height: 1.5 !default;
|
|
152
|
+
$gantt-clone-padding: 2px 8px 1px !default;
|
|
153
|
+
$gantt-bigger-clone-padding: $gantt-clone-padding !default;
|
|
154
|
+
$gantt-group-clone-box-shadow: 0 0 !default;
|
|
155
|
+
$gantt-header-font-size: 12px !default;
|
|
156
|
+
$gantt-header-font-weight: bold !default;
|
|
157
|
+
$gantt-drag-clone-font-weight: $gantt-header-font-weight !default;
|
|
158
|
+
$gantt-drag-clone-opacity: 1 !default;
|
|
159
|
+
$gantt-group-clone-text-align: center !default;
|
|
160
|
+
$gantt-clone-prop-box-shadow: 0 6px 12px rgba($black, .175) !default;
|
|
161
|
+
$gantt-border-size: 1px !default;
|
|
162
|
+
$grid-active-container-border: 0 0 0 1px $border inset !default;
|
|
163
|
+
$gantt-collapse-progress-width: 0px !important;
|
|
164
|
+
$gantt-range-container-arc-radius: 2px !default;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
$gantt-header-bg-color: $neutral-white !default;
|
|
2
2
|
$gantt-header-border-color: $neutral-light !default;
|
|
3
3
|
$gantt-header-color: $neutral-light-font !default;
|
|
4
|
+
$gantt-context-menu-icon-color: $neutral-light-font !default;
|
|
4
5
|
$gantt-grid-line-color: $neutral-light !default;
|
|
5
6
|
$gantt-label-color: $neutral-light-font !default;
|
|
6
7
|
$gantt-content-color: rgb(0, 0, 0) !default;
|
|
@@ -60,6 +61,7 @@ $gantt-right-label-container-margin-left: 25px !default;
|
|
|
60
61
|
$gantt-task-label-font-size: 12px !default;
|
|
61
62
|
$gantt-task-label-font-color: $theme-primary-font !default;
|
|
62
63
|
$gantt-label-font-size: 13px !default;
|
|
64
|
+
$gantt-bigger-label-font-size: 14px !default;
|
|
63
65
|
$gantt-label-font-color: $neutral-light-font !default;
|
|
64
66
|
$gantt-tab-header-active-font-color: $theme-primary-font !default;
|
|
65
67
|
$gantt-tab-header-font-color: $theme-primary-font !default;
|
|
@@ -116,6 +118,7 @@ $gantt-header-border-bottom-width: 1px !default;
|
|
|
116
118
|
$gantt-header-border-radius: 0px !default;
|
|
117
119
|
$gantt-splitter-border-top-right-radius: 0px !default;
|
|
118
120
|
$gantt-splitter-border-top-left-radius: 0px !default;
|
|
121
|
+
$gantt-splitter-height: calc(100% - 40px) !important;
|
|
119
122
|
$gantt-dialog-general-padding-bottom: 16px !default;
|
|
120
123
|
$gantt-filter-menu-value-div-padding: 24px !default;
|
|
121
124
|
$gantt-dialog-tab-hover-border-bottom: 0px !default;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
$gantt-header-bg-color: $neutral-white !default;
|
|
2
2
|
$gantt-header-border-color: $neutral-light !default;
|
|
3
3
|
$gantt-header-color: $neutral-secondary !default;
|
|
4
|
+
$gantt-context-menu-icon-color: $neutral-secondary !default;
|
|
4
5
|
$gantt-grid-line-color: #e0e0e0 !default;
|
|
5
6
|
$gantt-label-color: $neutral-light-font !default;
|
|
6
7
|
$gantt-content-color: rgb(0, 0, 0) !default;
|
|
@@ -60,6 +61,7 @@ $gantt-right-label-container-margin-left: 25px !default;
|
|
|
60
61
|
$gantt-task-label-font-size: 12px !default;
|
|
61
62
|
$gantt-task-label-font-color: $theme-primary-font !default;
|
|
62
63
|
$gantt-label-font-size: 13px !default;
|
|
64
|
+
$gantt-bigger-label-font-size: 14px !default;
|
|
63
65
|
$gantt-label-font-color: $neutral-primary !default;
|
|
64
66
|
$gantt-tab-header-active-font-color: $theme-primary-font !default;
|
|
65
67
|
$gantt-tab-header-font-color: rgba($theme-primary-font, .80) !default;
|
|
@@ -116,6 +118,7 @@ $gantt-header-border-bottom-width: 1px !default;
|
|
|
116
118
|
$gantt-header-border-radius: 0px !default;
|
|
117
119
|
$gantt-splitter-border-top-right-radius: 0px !default;
|
|
118
120
|
$gantt-splitter-border-top-left-radius: 0px !default;
|
|
121
|
+
$gantt-splitter-height: calc(100% - 40px) !important;
|
|
119
122
|
$gantt-dialog-general-padding-bottom: 16px !default;
|
|
120
123
|
$gantt-filter-menu-value-div-padding: 24px !default;
|
|
121
124
|
$gantt-dialog-tab-hover-border-bottom: 0px !default;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
$gantt-header-bg-color: $bg-base-0 !default;
|
|
2
2
|
$gantt-header-border-color: $border-default !default;
|
|
3
3
|
$gantt-header-color: $hover-font !default;
|
|
4
|
+
$gantt-context-menu-icon-color: $hover-font !default;
|
|
4
5
|
$gantt-grid-line-color: $border-default !default;
|
|
5
6
|
$gantt-label-color: rgba($content-font, .87) !default;
|
|
6
7
|
$gantt-content-color: rgb(0, 0, 0) !default;
|
|
@@ -62,6 +63,7 @@ $gantt-task-label-font-color: $hover-font !default;
|
|
|
62
63
|
$gantt-tab-header-active-font-color: $selection-font !default;
|
|
63
64
|
$gantt-tab-header-font-color: rgba($selection-font, .70) !default;
|
|
64
65
|
$gantt-label-font-size: 13px !default;
|
|
66
|
+
$gantt-bigger-label-font-size: 13px !default;
|
|
65
67
|
$gantt-label-font-color: $content-font !default;
|
|
66
68
|
$gantt-edit-icon-color: $content-font !default;
|
|
67
69
|
$gantt-icons-color: #fff;
|
|
@@ -116,6 +118,7 @@ $progress-handler-outline: #fff !default;
|
|
|
116
118
|
$gantt-header-border-radius: 0px !default;
|
|
117
119
|
$gantt-splitter-border-top-right-radius: 0px !default;
|
|
118
120
|
$gantt-splitter-border-top-left-radius: 0px !default;
|
|
121
|
+
$gantt-splitter-height: calc(100% - 40px) !important;
|
|
119
122
|
$gantt-dialog-general-padding-bottom: 16px !default;
|
|
120
123
|
$gantt-filter-menu-value-div-padding: 24px !default;
|
|
121
124
|
$gantt-dialog-tab-hover-border-bottom: 0px !default;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
$gantt-header-bg-color: $bg-base-0 !default;
|
|
2
2
|
$gantt-header-border-color: $border-default !default;
|
|
3
3
|
$gantt-header-color: $hover-font !default;
|
|
4
|
+
$gantt-context-menu-icon-color: $hover-font !default;
|
|
4
5
|
$gantt-grid-line-color: $border-default !default;
|
|
5
6
|
$gantt-label-color: rgba($content-font, .87) !default;
|
|
6
7
|
$gantt-content-color: rgb(0, 0, 0) !default;
|
|
@@ -62,6 +63,7 @@ $gantt-task-label-font-color: $hover-font;
|
|
|
62
63
|
$gantt-tab-header-active-font-color: $hover-font !default;
|
|
63
64
|
$gantt-tab-header-font-color: $hover-font !default;
|
|
64
65
|
$gantt-label-font-size: 13px !default;
|
|
66
|
+
$gantt-bigger-label-font-size: 13px !default;
|
|
65
67
|
$gantt-label-font-color: $content-font !default;
|
|
66
68
|
$gantt-edit-icon-color: $content-font !default;
|
|
67
69
|
$gantt-icons-color: rgba(0, 0, 0, .87) !default;
|
|
@@ -116,6 +118,7 @@ $gantt-timeline-top-header-cell-height: 32px !default;
|
|
|
116
118
|
$gantt-header-border-radius: 0px !default;
|
|
117
119
|
$gantt-splitter-border-top-right-radius: 0px !default;
|
|
118
120
|
$gantt-splitter-border-top-left-radius: 0px !default;
|
|
121
|
+
$gantt-splitter-height: calc(100% - 42px) !important;
|
|
119
122
|
$gantt-dialog-general-padding-bottom: 16px !default;
|
|
120
123
|
$gantt-filter-menu-value-div-padding: 24px !default;
|
|
121
124
|
$gantt-dialog-tab-hover-border-bottom: 0px !default;
|
|
@@ -310,7 +310,7 @@
|
|
|
310
310
|
border-bottom-width: 1px;
|
|
311
311
|
}
|
|
312
312
|
|
|
313
|
-
@if $
|
|
313
|
+
@if $skin-name == 'tailwind' or $skin-name == 'tailwind-dark' {
|
|
314
314
|
line-height: normal;
|
|
315
315
|
}
|
|
316
316
|
}
|
|
@@ -456,6 +456,10 @@
|
|
|
456
456
|
user-select: none;
|
|
457
457
|
}
|
|
458
458
|
|
|
459
|
+
.e-chart-rows-container {
|
|
460
|
+
line-height: initial;
|
|
461
|
+
}
|
|
462
|
+
|
|
459
463
|
.e-taskbar-left-resizer,
|
|
460
464
|
.e-taskbar-right-resizer {
|
|
461
465
|
display: inline-block;
|
|
@@ -661,7 +665,7 @@
|
|
|
661
665
|
}
|
|
662
666
|
|
|
663
667
|
.e-connector-line-z-index {
|
|
664
|
-
@if $
|
|
668
|
+
@if $skin-name == 'tailwind' or $skin-name == 'tailwind-dark' {
|
|
665
669
|
z-index: 2;
|
|
666
670
|
}
|
|
667
671
|
@else {
|
|
@@ -840,7 +844,7 @@
|
|
|
840
844
|
|
|
841
845
|
> .e-dlg-content {
|
|
842
846
|
padding: 0 !important; // sass-lint:disable-line no-important
|
|
843
|
-
@if $
|
|
847
|
+
@if $skin-name == 'tailwind' or $skin-name == 'tailwind-dark' {
|
|
844
848
|
height: 291px;
|
|
845
849
|
}
|
|
846
850
|
}
|
|
@@ -915,6 +919,14 @@
|
|
|
915
919
|
opacity: 1;
|
|
916
920
|
}
|
|
917
921
|
|
|
922
|
+
.e-gantt .e-cloneproperties.e-draganddrop .e-row .e-rowcell .e-treecolumn-container .e-icons.e-none::before {
|
|
923
|
+
content: '';
|
|
924
|
+
}
|
|
925
|
+
|
|
926
|
+
.e-bigger .e-gantt .e-gantt-chart .e-label {
|
|
927
|
+
font-size: $gantt-bigger-label-font-size;
|
|
928
|
+
}
|
|
929
|
+
|
|
918
930
|
.e-gantt-tooltip-label {
|
|
919
931
|
padding-bottom: 2px;
|
|
920
932
|
padding-right: 2px;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
$gantt-header-bg-color: $grey-dark !default;
|
|
2
2
|
$gantt-header-border-color: $grey-700 !default;
|
|
3
3
|
$gantt-header-color: rgba($grey-dark-font, .7) !default;
|
|
4
|
+
$gantt-context-menu-icon-color: rgba($grey-dark-font, .7) !default;
|
|
4
5
|
$gantt-grid-line-color: $grey-700 !default;
|
|
5
6
|
$gantt-label-color: rgba($grey-light-font, .87) !default;
|
|
6
7
|
$gantt-content-color: rgb(0, 0, 0) !default;
|
|
@@ -62,6 +63,7 @@ $gantt-right-label-container-margin-left: 25px !default;
|
|
|
62
63
|
$gantt-task-label-font-size: 12px !default;
|
|
63
64
|
$gantt-task-label-font-color: $primary-font !default;
|
|
64
65
|
$gantt-label-font-size: 13px !default;
|
|
66
|
+
$gantt-bigger-label-font-size: 14px !default;
|
|
65
67
|
$gantt-label-font-color: $grey-dark-font !default;
|
|
66
68
|
$gantt-tab-header-active-font-color: #fff !default;
|
|
67
69
|
$gantt-tab-header-font-color: rgba(255, 255, 255, 0.64) !default;
|
|
@@ -116,6 +118,7 @@ $gantt-timeline-top-header-cell-height: 32px !default;
|
|
|
116
118
|
$gantt-header-border-radius: 0px !default;
|
|
117
119
|
$gantt-splitter-border-top-right-radius: 0px !default;
|
|
118
120
|
$gantt-splitter-border-top-left-radius: 0px !default;
|
|
121
|
+
$gantt-splitter-height: calc(100% - 42px) !important;
|
|
119
122
|
$gantt-dialog-general-padding-bottom: 16px !default;
|
|
120
123
|
$gantt-filter-menu-value-div-padding: 24px !default;
|
|
121
124
|
$gantt-dialog-tab-hover-border-bottom: 0px !default;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
$gantt-header-bg-color: $grey-white !default;
|
|
2
2
|
$gantt-header-border-color: $grey-300 !default;
|
|
3
3
|
$gantt-header-color: rgba(0, 0, 0, .54) !default;
|
|
4
|
+
$gantt-context-menu-icon-color: rgba(0, 0, 0, .54) !default;
|
|
4
5
|
$gantt-grid-line-color: #e0e0e0 !default;
|
|
5
6
|
$gantt-label-color: rgba($grey-light-font, .87) !default;
|
|
6
7
|
$gantt-content-color: rgb(0, 0, 0) !default;
|
|
@@ -61,6 +62,7 @@ $gantt-connector-point-right-margin-left: 2px !default;
|
|
|
61
62
|
$gantt-right-label-container-margin-left: 25px !default;
|
|
62
63
|
$gantt-task-label-font-size: 12px !default;
|
|
63
64
|
$gantt-label-font-size: 13px !default;
|
|
65
|
+
$gantt-bigger-label-font-size: 14px !default;
|
|
64
66
|
$gantt-label-font-color: rgba($grey-light-font, .87) !default;
|
|
65
67
|
$gantt-task-label-font-color: $primary-font !default;
|
|
66
68
|
$gantt-tab-header-active-font-color: $primary-font !default;
|
|
@@ -116,6 +118,7 @@ $gantt-timeline-top-header-cell-height: 32px !default;
|
|
|
116
118
|
$gantt-header-border-radius: 0px !default;
|
|
117
119
|
$gantt-splitter-border-top-right-radius: 0px !default;
|
|
118
120
|
$gantt-splitter-border-top-left-radius: 0px !default;
|
|
121
|
+
$gantt-splitter-height: calc(100% - 42px) !important;
|
|
119
122
|
$gantt-dialog-general-padding-bottom: 16px !default;
|
|
120
123
|
$gantt-filter-menu-value-div-padding: 24px !default;
|
|
121
124
|
$gantt-dialog-tab-hover-border-bottom: 0px !default;
|