@syncfusion/ej2-gantt 20.1.58 → 20.2.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +37 -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 +1100 -74
- package/dist/es6/ej2-gantt.es2015.js.map +1 -1
- package/dist/es6/ej2-gantt.es5.js +1099 -71
- 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/actions.d.ts +1 -0
- package/src/gantt/actions/actions.js +1 -0
- package/src/gantt/actions/cell-edit.js +5 -3
- package/src/gantt/actions/connector-line-edit.js +20 -6
- package/src/gantt/actions/context-menu.js +3 -4
- package/src/gantt/actions/critical-path.d.ts +26 -0
- package/src/gantt/actions/critical-path.js +735 -0
- package/src/gantt/actions/dependency.js +3 -0
- package/src/gantt/actions/dialog-edit.js +1 -1
- package/src/gantt/actions/edit.js +29 -3
- package/src/gantt/actions/filter.js +1 -1
- package/src/gantt/actions/keyboard.js +2 -2
- package/src/gantt/actions/selection.js +3 -0
- package/src/gantt/actions/taskbar-edit.js +6 -4
- package/src/gantt/actions/toolbar.js +22 -4
- package/src/gantt/base/css-constants.d.ts +12 -0
- package/src/gantt/base/css-constants.js +12 -0
- package/src/gantt/base/date-processor.d.ts +1 -1
- package/src/gantt/base/date-processor.js +8 -2
- package/src/gantt/base/enum.d.ts +3 -1
- package/src/gantt/base/gantt-chart.js +6 -2
- package/src/gantt/base/gantt-model.d.ts +8 -1
- package/src/gantt/base/gantt.d.ts +32 -1
- package/src/gantt/base/gantt.js +133 -5
- package/src/gantt/base/interface.d.ts +16 -0
- package/src/gantt/base/splitter.js +4 -0
- package/src/gantt/base/task-processor.js +19 -6
- package/src/gantt/base/tree-grid.js +1 -1
- package/src/gantt/export/export-helper.js +19 -6
- package/src/gantt/export/pdf-base/pdf-style/gantt-theme.js +16 -0
- package/src/gantt/renderer/chart-rows.js +16 -5
- package/src/gantt/renderer/nonworking-day.js +5 -2
- package/src/gantt/renderer/timeline.js +35 -14
- package/src/global.js +1 -1
- package/styles/bootstrap-dark.css +272 -14
- package/styles/bootstrap.css +271 -14
- package/styles/bootstrap4.css +273 -12
- package/styles/bootstrap5-dark.css +272 -15
- package/styles/bootstrap5.css +272 -15
- package/styles/fabric-dark.css +270 -12
- package/styles/fabric.css +276 -18
- package/styles/fluent-dark.css +272 -14
- package/styles/fluent.css +272 -14
- package/styles/gantt/_bootstrap-dark-definition.scss +59 -16
- package/styles/gantt/_bootstrap-definition.scss +57 -14
- package/styles/gantt/_bootstrap4-definition.scss +65 -21
- package/styles/gantt/_bootstrap5-definition.scss +55 -12
- package/styles/gantt/_fabric-dark-definition.scss +58 -15
- package/styles/gantt/_fabric-definition.scss +58 -15
- package/styles/gantt/_fluent-definition.scss +53 -10
- package/styles/gantt/_fusionnew-definition.scss +212 -0
- package/styles/gantt/_highcontrast-definition.scss +57 -14
- package/styles/gantt/_highcontrast-light-definition.scss +55 -12
- package/styles/gantt/_layout.scss +293 -7
- package/styles/gantt/_material-dark-definition.scss +60 -16
- package/styles/gantt/_material-definition.scss +65 -21
- package/styles/gantt/_material3-definition.scss +213 -0
- package/styles/gantt/_tailwind-definition.scss +52 -8
- package/styles/gantt/_theme.scss +56 -1
- package/styles/gantt/bootstrap-dark.css +272 -14
- package/styles/gantt/bootstrap.css +271 -14
- package/styles/gantt/bootstrap4.css +273 -12
- package/styles/gantt/bootstrap5-dark.css +272 -15
- package/styles/gantt/bootstrap5.css +272 -15
- package/styles/gantt/fabric-dark.css +270 -12
- package/styles/gantt/fabric.css +276 -18
- package/styles/gantt/fluent-dark.css +272 -14
- package/styles/gantt/fluent.css +272 -14
- package/styles/gantt/highcontrast-light.css +260 -13
- package/styles/gantt/highcontrast.css +271 -13
- package/styles/gantt/icons/_bootstrap-dark.scss +12 -1
- package/styles/gantt/icons/_bootstrap.scss +12 -1
- package/styles/gantt/icons/_bootstrap4.scss +12 -1
- package/styles/gantt/icons/_bootstrap5.scss +12 -0
- package/styles/gantt/icons/_fabric-dark.scss +12 -0
- package/styles/gantt/icons/_fabric.scss +12 -0
- package/styles/gantt/icons/_fluent.scss +12 -0
- package/styles/gantt/icons/_fusionnew.scss +120 -0
- package/styles/gantt/icons/_highcontrast.scss +12 -0
- package/styles/gantt/icons/_material-dark.scss +12 -0
- package/styles/gantt/icons/_material.scss +12 -0
- package/styles/gantt/icons/_material3.scss +124 -0
- package/styles/gantt/icons/_tailwind-dark.scss +12 -0
- package/styles/gantt/icons/_tailwind.scss +12 -0
- package/styles/gantt/material-dark.css +277 -12
- package/styles/gantt/material.css +279 -14
- package/styles/gantt/tailwind-dark.css +279 -15
- package/styles/gantt/tailwind.css +276 -12
- package/styles/highcontrast-light.css +260 -13
- package/styles/highcontrast.css +271 -13
- package/styles/material-dark.css +277 -12
- package/styles/material.css +279 -14
- package/styles/tailwind-dark.css +279 -15
- package/styles/tailwind.css +276 -12
|
@@ -2,27 +2,30 @@ $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
4
|
$gantt-context-menu-icon-color: rgba(0, 0, 0, .54) !default;
|
|
5
|
-
$gantt-grid-line-color:
|
|
5
|
+
$gantt-grid-line-color: $grey-300 !default;
|
|
6
6
|
$gantt-label-color: rgba($grey-light-font, .87) !default;
|
|
7
|
-
$gantt-content-color:
|
|
7
|
+
$gantt-content-color: $grey-black !default;
|
|
8
8
|
$holiday-background: $grey-200 !default;
|
|
9
|
-
$progress-handler-outline:
|
|
9
|
+
$progress-handler-outline: $accent-font !default;
|
|
10
10
|
$progress-handler-background: #222 !default;
|
|
11
11
|
$holiday-label-color: rgba(0, 0, 0, .87) !default;
|
|
12
12
|
$holiday-label-font-size: 12px !default;
|
|
13
|
-
$weekend-background:
|
|
13
|
+
$weekend-background: $grey-50 !default;
|
|
14
|
+
$connector-point-hover-outerline-color: $primary-200 !default;
|
|
14
15
|
$event-marker-line-color: $accent !default;
|
|
15
16
|
$event-marker-label-color: #fdbf64 !default;
|
|
16
|
-
$event-marker-label-font-color:
|
|
17
|
+
$event-marker-label-font-color: $grey-900 !default;
|
|
17
18
|
$event-marker-label-font-size: 12px !default;
|
|
18
19
|
$event-marker-label-padding: 7px 12px !default;
|
|
19
20
|
$event-marker-label-height: 30px !default;
|
|
20
21
|
$event-marker-label-arrow-top: 60px !default;
|
|
21
22
|
$connector-line-color: $primary !default;
|
|
23
|
+
$critical-connector-line-color: #d13438 !default;
|
|
22
24
|
$connector-line-hover-color: $primary !default;
|
|
25
|
+
$critical-connector-line-hover-color: #f3d8da !default;
|
|
23
26
|
$connector-false-line-color: $primary !default;
|
|
24
|
-
$connector-point-hover-color: #
|
|
25
|
-
$connector-point-border-color:
|
|
27
|
+
$connector-point-hover-color: #005a9e !default;
|
|
28
|
+
$connector-point-border-color: $accent-font !default;
|
|
26
29
|
$connector-point-hover-bg-color: $grey-400 !default;
|
|
27
30
|
$connector-point-hover-border-color: $primary !default;
|
|
28
31
|
$gantt-connector-point-margin-top: 7.5px !default;
|
|
@@ -32,18 +35,21 @@ $gantt-unscheduled-taskbar-left: 3px !default;
|
|
|
32
35
|
$gantt-unscheduled-taskbar-right-radius: 2px !default;
|
|
33
36
|
$gantt-label-size: 13px !default;
|
|
34
37
|
$gantt-header-border-spacing: 0 !default;
|
|
35
|
-
$gantt-line-container-cell-border-color:
|
|
38
|
+
$gantt-line-container-cell-border-color: $grey-300 !default;
|
|
36
39
|
// sass-lint:disable-all
|
|
37
40
|
$gantt-unscheduled-taskbar-background: linear-gradient(to right, rgba(63,81,181, 0.2), #3f51b5 30%, #3f51b5 70%, #3f51b5 70%, rgba(63,81,181, 0.2) 100%) !default;
|
|
38
|
-
$gantt-unscheduled-taskbar-background
|
|
41
|
+
$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;
|
|
42
|
+
$gantt-unscheduled-critical-taskbar-background-color: rgba(285,85,85, .2) !default;
|
|
39
43
|
$gantt-unscheduled-milestone-top-border: rgba(51, 51, 51, .6) !default;
|
|
40
44
|
$gantt-unscheduled-milestone-bottom-border: rgba(51, 51, 51, .6) !default;
|
|
41
|
-
$gantt-resize-gripper: rgba(249, 146, 11, .2) !default;
|
|
42
45
|
$gantt-child-task-bar: lighten($primary, 8%) !default;
|
|
46
|
+
$gantt-critical-child-task-bar: #F3D8DA !default;
|
|
43
47
|
$gantt-child-progress-bar: $primary !default;
|
|
48
|
+
$gantt-critical-child-progress-bar: #D13438 !default;
|
|
44
49
|
$gantt-child-progress-bar-border: 0px !default;
|
|
45
50
|
$gantt-child-progress-bar-border-radious:4px;
|
|
46
51
|
$gantt-child-task-bar-border: 1px solid $primary !default;
|
|
52
|
+
$gantt-critical-child-task-bar-border: 1px solid #F3D8DA !default;
|
|
47
53
|
$gantt-manualchild-task-bar: rgba(#008786, .85) !default;
|
|
48
54
|
$gantt-manualchild-task-bar-border: 1px solid #008786;
|
|
49
55
|
$gantt-manualchild-progress-bar: #008786;
|
|
@@ -54,6 +60,7 @@ $gantt-unscheduled-manualtaskbar-background: linear-gradient(to right, rgba(63,8
|
|
|
54
60
|
$gantt-parent-task-bar: rgba($grey-700, .87) !default;
|
|
55
61
|
$gantt-parent-progress-bar: $grey-700 !default;
|
|
56
62
|
$gantt-milestone-border-color: $grey-700 !default;
|
|
63
|
+
$gantt-critical-milestone-border-color: #D13438 !default;
|
|
57
64
|
$gantt-parent-milestone-border-color: $grey-700 !default;
|
|
58
65
|
$gantt-parent-progress-bar-border: 0px !default;
|
|
59
66
|
$gantt-parent-task-bar-border: 1px solid $grey-700 !default;
|
|
@@ -76,9 +83,46 @@ $gantt-dialog-general-height: 241px !default;
|
|
|
76
83
|
$gantt-dialog-edit-form-odd-padding: 16px 18px 0 18px !default;
|
|
77
84
|
$gantt-dialog-edit-form-even-padding: 16px 16px 0 0 !default;
|
|
78
85
|
$gantt-dialog-edit-form-scroll-padding: 16px 16px 0 0 !default;
|
|
79
|
-
$gantt-bigger-dialog-
|
|
80
|
-
$gantt-bigger-
|
|
81
|
-
$gantt-bigger-dialog-
|
|
86
|
+
$gantt-bigger-predecessor-dialog-padding: 10px 9px 9px 14px !important;
|
|
87
|
+
$gantt-bigger-tooltip-button-color: $grey-black;
|
|
88
|
+
$gantt-bigger-tooltip-dialog-color: #f3f3f3;
|
|
89
|
+
$gantt-bigger-tooltip-button-text-color: $grey-white;
|
|
90
|
+
$gantt-bigger-tooltip-disabled-button-color: $grey-600 !important;
|
|
91
|
+
$gantt-bigger-dialog-edit-form-odd-padding: 16px 9px 0 16px !default;
|
|
92
|
+
$gantt-bigger-dialog-edit-form-even-padding: 16px 16px 0 9px !default;
|
|
93
|
+
$gantt-bigger-dialog-close-button-left: 1px !important;
|
|
94
|
+
$gantt-bigger-dialog-close-button-size: 12px !important;
|
|
95
|
+
$gantt-bigger-dialog-edit-form-odd-padding: 16px 9px 0 16px !default;
|
|
96
|
+
$gantt-bigger-dialog-header-padding: 16px 14px 17px 16px !important;
|
|
97
|
+
$gantt-bigger-add-dialog-content-height: 241px !important;
|
|
98
|
+
$gantt-bigger-event-arrow-color: #cae8ff;
|
|
99
|
+
$gantt-bigger-event-arrow-font-size: 12px !important;
|
|
100
|
+
$gantt-bigger-event-markers-border-radius: 4px !important;
|
|
101
|
+
$gantt-bigger-event-markers-height: 26px !important;
|
|
102
|
+
$gantt-bigger-event-arrow-bottom: 6px solid transparent;
|
|
103
|
+
$gantt-bigger-event-arrow-right: 6px solid transparent;
|
|
104
|
+
$gantt-bigger-event-arrow-top: 6px solid transparent;
|
|
105
|
+
$gantt-bigger-event-arrow-top-value: 73px !important;
|
|
106
|
+
$gantt-bigger-event-markers-top: 65px !important;
|
|
107
|
+
$gantt-bigger-event-markers-padding: 4px 12px 4px 9px !important;
|
|
108
|
+
$gantt-bigger-add-dialog-input-height: 78px !important;
|
|
109
|
+
$gantt-bigger-add-dialog-input-width: 250px !important;
|
|
110
|
+
$gantt-bigger-add-dialog-input-field-width: 175px !default;
|
|
111
|
+
$gantt-bigger-filter-dialog-footer-padding: 16px !important;
|
|
112
|
+
$gantt-bigger-add-dialog-footer-padding: 16px !important;
|
|
113
|
+
$gantt-bigger-filter-dialog-footer-height: 70px !important;
|
|
114
|
+
$gantt-bigger-filter-dialog-input-padding: 14px 0 0 !important;
|
|
115
|
+
$gantt-bigger-add-dialog-footer-height: 70px !important;
|
|
116
|
+
$gantt-bigger-dialog-width: 550px !important;
|
|
117
|
+
$gantt-bigger-filter-dialog-width: 350px !important;
|
|
118
|
+
$gantt-dialog-bigger-input-field: 44px !default;
|
|
119
|
+
$gantt-dialog-bigger-input-padding-field: 20px 16px 6px 16px !important;
|
|
120
|
+
$gantt-bigger-dialog-input-field-height: 27px !important;
|
|
121
|
+
$gantt-bigger-dialog-input-icon: 26px !important;
|
|
122
|
+
$gantt-dialog-bigger-border-radius: 6px !important;
|
|
123
|
+
$gantt-bigger-dialog-tab-padding-left: 4px !important;
|
|
124
|
+
$gantt-bigger-dialog-border-radius: 6px 6px 0px 0px !default;
|
|
125
|
+
$gantt-bigger-dialog-edit-form-scroll-padding: 16px 18px 0 9px !default;
|
|
82
126
|
$gantt-dialog-dependent-height: 153px !default;
|
|
83
127
|
$gantt-dialog-resource-height: 196px !default;
|
|
84
128
|
$gantt-dialog-rte-height: 241px !default;
|
|
@@ -90,7 +134,7 @@ $gantt-dialog-tab-background: $primary !default;
|
|
|
90
134
|
$gantt-dialog-header-font-color: $primary-font !default;
|
|
91
135
|
$gantt-dialog-icon-color: $grey-white !default;
|
|
92
136
|
$gantt-dialog-icon-hover-color: rgba(255, 255, 255, 0.15) !default;
|
|
93
|
-
$gantt-dialog-close-icon-hover-color:
|
|
137
|
+
$gantt-dialog-close-icon-hover-color: $grey-black !default;
|
|
94
138
|
$gantt-dialog-tab-hover-border-color: transparent !default;
|
|
95
139
|
$gantt-dialog-tab-header-border-no-color: transparent !default;
|
|
96
140
|
$gantt-tab-header-border-width: 0px;
|
|
@@ -108,9 +152,9 @@ $gantt-parent-progress-bar-border-radius: 4px !default;
|
|
|
108
152
|
$gantt-timeline-top-headercell-font-size: 12px !default;
|
|
109
153
|
$gantt-timeline-top-headercell-font-weight: 500 !default;
|
|
110
154
|
$gantt-active-background: rgba($primary, .15) !default;
|
|
111
|
-
$gantt-active-color:
|
|
155
|
+
$gantt-active-color: $grey-black !default;
|
|
112
156
|
$gantt-active-color-opacity: 1 !default;
|
|
113
|
-
$gantt-table-background:
|
|
157
|
+
$gantt-table-background: $accent-font !default;
|
|
114
158
|
$gantt-baseline-color: #C15700 !default;
|
|
115
159
|
$gantt-child-progress-margin-left: 0.5px !default;
|
|
116
160
|
$gantt-timeline-single-header-outer-div: 45px !default;
|
|
@@ -134,11 +178,11 @@ $gantt-inactive-parent: #8A8A8A !default;
|
|
|
134
178
|
$gantt-inactive-child:#D5D5D5 !default;
|
|
135
179
|
$gantt-connected-task: lighten($primary, 20%) !default;
|
|
136
180
|
$gantt-active-parent-task: lighten(#000000, 10%) !default;
|
|
137
|
-
$gantt-uptail-border:
|
|
138
|
-
$gantt-gridpopup-span:
|
|
181
|
+
$gantt-uptail-border: $grey-300 !default;
|
|
182
|
+
$gantt-gridpopup-span: $grey-black !default;
|
|
139
183
|
$gantt-active-parent-shadow: rgba($gantt-gridpopup-span, 0.5) !default;
|
|
140
|
-
$gantt-left-resize-gripper-border:
|
|
141
|
-
$gantt-left-resize-gripper-color:
|
|
184
|
+
$gantt-left-resize-gripper-border: $grey-500 !default;
|
|
185
|
+
$gantt-left-resize-gripper-color: $grey-200 !default;
|
|
142
186
|
$gantt-clone-padding: 4px 5px !default;
|
|
143
187
|
$gantt-bigger-clone-padding: $gantt-clone-padding !default;
|
|
144
188
|
$gantt-cell-border-color: $grey-300 !default;
|
|
@@ -155,7 +199,7 @@ $gantt-drag-clone-color: rgba($grey-light-font, .54) !default;
|
|
|
155
199
|
$gantt-content-font-color: $grey-light-font !default;
|
|
156
200
|
$gantt-table-background-color: $content-bg-color !default;
|
|
157
201
|
$gantt-clone-dragdrop-bg-color: $gantt-table-background-color !default;
|
|
158
|
-
$error-elem-color:
|
|
202
|
+
$error-elem-color: $accent;
|
|
159
203
|
$gantt-border-size: $border-size !default;
|
|
160
204
|
$gantt-active-container-border: $grey-500 !default;
|
|
161
205
|
$grid-active-container-border: 0 0 0 1px $grey-500 inset !default;
|
|
@@ -0,0 +1,213 @@
|
|
|
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: $icon-color !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: $primary-text-color !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-outerline-color: #e7f1ff !default;
|
|
25
|
+
$critical-connector-line-color: #d13438 !default;
|
|
26
|
+
$critical-connector-line-hover-color: #f3d8da !default;
|
|
27
|
+
$connector-point-hover-border-color: $content-bg-color !default;
|
|
28
|
+
$gantt-line-container-cell-border-color: $border-light !default;
|
|
29
|
+
// sass-lint:disable-all
|
|
30
|
+
$gantt-unscheduled-taskbar-background: linear-gradient(to right, $primary-light, $primary 30%, $primary 70%, $primary 70%, $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: #F3D8DA !default;
|
|
34
|
+
$gantt-critical-child-progress-bar: #D13438 !default;
|
|
35
|
+
$gantt-critical-child-task-bar-border: 1px solid #F3D8DA !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: $primary-light !default;
|
|
39
|
+
$gantt-child-progress-bar: $primary !default;
|
|
40
|
+
$gantt-manualchild-task-bar: $success-light !default;
|
|
41
|
+
$gantt-manualchild-task-bar-border: 1px solid $success;
|
|
42
|
+
$gantt-manualchild-progress-bar: $success;
|
|
43
|
+
$gantt-manualparent-background-color: $content-bg-color-alt5;
|
|
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, $success-light, $success 30%, $success 70%, $success 70%, $success-light 100%) !default;
|
|
46
|
+
$gantt-parent-task-bar: $content-bg-color-alt4 !default;
|
|
47
|
+
$gantt-parent-progress-bar: $content-bg-color-alt5 !default;
|
|
48
|
+
$gantt-milestone-border-color: $content-bg-color-alt5 !default;
|
|
49
|
+
$gantt-critical-milestone-border-color: #D13438 !default;
|
|
50
|
+
$gantt-parent-milestone-border-color: $content-bg-color-alt5 !default;
|
|
51
|
+
$gantt-label-font-color: $content-text-color-alt2 !default;
|
|
52
|
+
$gantt-task-label-font-color: $primary-text-color !default;
|
|
53
|
+
$gantt-tab-header-active-font-color: $primary !default;
|
|
54
|
+
$gantt-tab-header-font-color: $content-text-color-alt2 !default;
|
|
55
|
+
$gantt-edit-icon-color: $primary-text-color !default;
|
|
56
|
+
$gantt-icons-color: $icon-color !default;
|
|
57
|
+
$gantt-cell-border-color: $border !default;
|
|
58
|
+
$gantt-dialog-active-tab-background: $transparent !default;
|
|
59
|
+
$gantt-dialog-tab-background: $content-bg-color-alt1 !default;
|
|
60
|
+
$gantt-dialog-header-font-color: $content-text-color !default;
|
|
61
|
+
$gantt-dialog-icon-color: $icon-color !default;
|
|
62
|
+
$gantt-dialog-icon-hover-color: $content-bg-color-alt1 !default;
|
|
63
|
+
$gantt-dialog-close-icon-hover-color: $icon-color !default;
|
|
64
|
+
$gantt-dialog-tab-hover-border-color: $transparent !default;
|
|
65
|
+
$gantt-dialog-tab-header-border-no-color: $transparent !default;
|
|
66
|
+
$gantt-tab-selection-indicator-color: $primary !default;
|
|
67
|
+
$gantt-tab-header-hover-color: $transparent !default;
|
|
68
|
+
$gantt-tab-header-hover-font-color: $content-text-color-alt2 !default;
|
|
69
|
+
$gantt-active-background: $table-bg-color-selected;
|
|
70
|
+
$gantt-active-color: $table-text-color-selected !default;
|
|
71
|
+
$gantt-table-background: $content-bg-color !default;
|
|
72
|
+
$gantt-baseline-color: $warning !default;
|
|
73
|
+
$gantt-inactive-parent: $content-bg-color-alt4 !default;
|
|
74
|
+
$gantt-inactive-child: $primary-light !default;
|
|
75
|
+
$gantt-connected-task: lighten($primary, 20%) !default;
|
|
76
|
+
$gantt-active-parent-task: lighten($warning-text, 10%) !default;
|
|
77
|
+
$gantt-uptail-border: $border-light !default;
|
|
78
|
+
$gantt-gridpopup-span: $warning-text !default;
|
|
79
|
+
$gantt-active-parent-shadow: rgba($gantt-gridpopup-span, 0.5) !default;
|
|
80
|
+
$gantt-left-resize-gripper-border: $content-bg-color-alt4 !default;
|
|
81
|
+
$gantt-left-resize-gripper-color: $primary-text-color !default;
|
|
82
|
+
$gantt-drag-clone-bg-color: $content-bg-color !default;
|
|
83
|
+
$gantt-drag-clone-border-color: $border-light !default;
|
|
84
|
+
$gantt-drag-clone-color: $content-text-color !default;
|
|
85
|
+
$gantt-content-font-color: $content-text-color !default;
|
|
86
|
+
$gantt-table-background-color: $content-bg-color !default;
|
|
87
|
+
$gantt-clone-dragdrop-bg-color: $gantt-table-background-color !default;
|
|
88
|
+
$error-elem-color: $danger;
|
|
89
|
+
$gantt-active-container-border: $border !default;
|
|
90
|
+
$rangecontainer-border-color: $border-warning;
|
|
91
|
+
|
|
92
|
+
// Layout
|
|
93
|
+
$holiday-label-font-size: 13px !default;
|
|
94
|
+
$event-marker-label-font-size: 14px !default;
|
|
95
|
+
$event-marker-label-padding: 3px 12px !default;
|
|
96
|
+
$event-marker-label-height: 28px !default;
|
|
97
|
+
$event-marker-label-arrow-top: 56px !default;
|
|
98
|
+
$gantt-connector-point-margin-top: 7.5px !default;
|
|
99
|
+
$gantt-connector-point-margin-radius: 4px !default;
|
|
100
|
+
$gantt-connector-point-left: 8px !default;
|
|
101
|
+
$gantt-unscheduled-taskbar-left: 3px !default;
|
|
102
|
+
$gantt-unscheduled-taskbar-right-radius: 2px !default;
|
|
103
|
+
$gantt-label-size: 13px !default;
|
|
104
|
+
$gantt-header-border-spacing: 0 !default;
|
|
105
|
+
// sass-lint:disable-all
|
|
106
|
+
$gantt-child-progress-bar-border: 0px !default;
|
|
107
|
+
$gantt-child-progress-bar-border-radious:4px;
|
|
108
|
+
$gantt-child-task-bar-border: 1px solid $primary !default;
|
|
109
|
+
$gantt-manualchild-progress-bar-border: 0px !default;
|
|
110
|
+
$gantt-parent-progress-bar-border: 0px !default;
|
|
111
|
+
$gantt-parent-task-bar-border: 1px solid $border-dark !default;
|
|
112
|
+
$gantt-progress-bar-left-radius: 2px !default;
|
|
113
|
+
$gantt-unscheduled-taskbar-left-radius: 0px !default;
|
|
114
|
+
$gantt-connector-point-right-margin-left: 2px !default;
|
|
115
|
+
$gantt-right-label-container-margin-left: 25px !default;
|
|
116
|
+
$gantt-task-label-font-size: 12px !default;
|
|
117
|
+
$gantt-label-font-size: 14px !default;
|
|
118
|
+
$gantt-bigger-label-font-size: 16px !default;
|
|
119
|
+
$gantt-unscheduled-taskbar-border: 0px !default;
|
|
120
|
+
$gantt-unscheduled-taskbar-border-radius: 4px !default;
|
|
121
|
+
$gantt-dialog-general-height: 241px !default;
|
|
122
|
+
$gantt-dialog-edit-form-odd-padding: 12px 18px 0 18px !default;
|
|
123
|
+
$gantt-dialog-edit-form-even-padding: 12px 18px 0 0 !default;
|
|
124
|
+
$gantt-dialog-edit-form-scroll-padding: 12px 18px 0 0 !default;
|
|
125
|
+
$gantt-bigger-tooltip-button-color: $warning-text;
|
|
126
|
+
$gantt-bigger-tooltip-dialog-color: #f3f3f3;
|
|
127
|
+
$gantt-bigger-tooltip-button-text-color: $toooltip-text-color;
|
|
128
|
+
$gantt-bigger-tooltip-disabled-button-color: $content-bg-color-alt5 !important;
|
|
129
|
+
$gantt-bigger-dialog-edit-form-odd-padding: 16px 12px 0 16px !default;
|
|
130
|
+
$gantt-bigger-dialog-edit-form-even-padding: 16px 16px 0 12px !default;
|
|
131
|
+
$gantt-bigger-dialog-close-button-left: 2px !important;
|
|
132
|
+
$gantt-bigger-dialog-close-button-size: 14px !important;
|
|
133
|
+
$gantt-bigger-dialog-header-padding: 16px 4px 16px 16px !important;
|
|
134
|
+
$gantt-bigger-add-dialog-content-height: 250px !important;
|
|
135
|
+
$gantt-bigger-event-arrow-color: #fff3cd;
|
|
136
|
+
$gantt-bigger-event-arrow-font-size: 12px !important;
|
|
137
|
+
$gantt-bigger-event-markers-border-radius: 4px !important;
|
|
138
|
+
$gantt-bigger-event-markers-height: 26px !important;
|
|
139
|
+
$gantt-bigger-event-arrow-bottom: 6px solid transparent;
|
|
140
|
+
$gantt-bigger-event-arrow-right: 6px solid transparent;
|
|
141
|
+
$gantt-bigger-event-arrow-top: 6px solid transparent;
|
|
142
|
+
$gantt-bigger-event-arrow-top-value: 73px !important;
|
|
143
|
+
$gantt-bigger-event-markers-top: 65px !important;
|
|
144
|
+
$gantt-bigger-event-markers-padding: 4px 11px 4px 9px !important;
|
|
145
|
+
$gantt-bigger-add-dialog-input-height: 78px !important;
|
|
146
|
+
$gantt-bigger-add-dialog-input-width: 250px !important;
|
|
147
|
+
$gantt-bigger-add-dialog-input-field-width: 175px !default;
|
|
148
|
+
$gantt-bigger-filter-dialog-footer-padding: 16px !important;
|
|
149
|
+
$gantt-bigger-add-dialog-footer-padding: 16px !important;
|
|
150
|
+
$gantt-bigger-filter-dialog-input-padding: 16px 0 0 !important;
|
|
151
|
+
$gantt-bigger-filter-dialog-footer-height: 70px !important;
|
|
152
|
+
$gantt-bigger-add-dialog-footer-height: 70px !important;
|
|
153
|
+
$gantt-bigger-dialog-width: 556px !important;
|
|
154
|
+
$gantt-bigger-filter-dialog-width: 350px !important;
|
|
155
|
+
$gantt-dialog-bigger-input-field: 38px !default;
|
|
156
|
+
$gantt-dialog-bigger-input-padding-field: 32px 16px 16px !important;
|
|
157
|
+
$gantt-bigger-predecessor-dialog-padding: 10px 9px 9px 14px !important;
|
|
158
|
+
$gantt-bigger-dialog-input-field-height: 36px !important;
|
|
159
|
+
$gantt-bigger-dialog-input-icon: 36px !important;
|
|
160
|
+
$gantt-dialog-bigger-border-radius: 6px !important;
|
|
161
|
+
$gantt-bigger-dialog-tab-padding-left: 5px !important;
|
|
162
|
+
$gantt-bigger-dialog-border-radius: 6px 6px 0px 0px !default;
|
|
163
|
+
$gantt-bigger-dialog-edit-form-scroll-padding: 16px 18px 0 9px !default;
|
|
164
|
+
$gantt-dialog-dependent-height: 161px !default;
|
|
165
|
+
$gantt-dialog-resource-height: 202px !default;
|
|
166
|
+
$gantt-dialog-rte-height: 241px !default;
|
|
167
|
+
$gantt-dialog-rte-content-height: 200px !default;
|
|
168
|
+
$gantt-dialog-padding-bottom: 12px !default;
|
|
169
|
+
$gantt-dialog-tab-padding-left: 12px !default;
|
|
170
|
+
$gantt-tab-header-border-width: 1px;
|
|
171
|
+
$gantt-depedent-div-border-bottom: 0px !default;
|
|
172
|
+
$gantt-resource-div-border-bottom: 0px !default;
|
|
173
|
+
$gantt-richtext-border-bottom: 0px !default;
|
|
174
|
+
$gantt-richtext-content-border-bottom: 0px !default;
|
|
175
|
+
$gantt-connector-point-width: 12px !default;
|
|
176
|
+
$gantt-connector-point-height: 8px !default;
|
|
177
|
+
$gantt-connector-left-point-left: -12px !default;
|
|
178
|
+
$gantt-parent-progress-bar-border-radius: 4px !default;
|
|
179
|
+
$gantt-timeline-top-headercell-font-size: 14px !default;
|
|
180
|
+
$gantt-timeline-top-headercell-font-weight: bold !default;
|
|
181
|
+
$gantt-active-color-opacity: 0.9 !default;
|
|
182
|
+
$gantt-child-progress-margin-left: 0.5px !default;
|
|
183
|
+
$gantt-timeline-single-header-outer-div: 45px !default;
|
|
184
|
+
$gantt-chart-timeline-single-header-outer-div: 46px !default;
|
|
185
|
+
$gantt-header-border-height: 52px !default;
|
|
186
|
+
$gantt-bigger-header-border-height: 64px !default;
|
|
187
|
+
$gantt-treegrid-header-border-height: 51px !default;
|
|
188
|
+
$gantt-bigger-treegrid-header-border-height: 63px !default;
|
|
189
|
+
$gantt-header-border-bottom-width: 1px !default;
|
|
190
|
+
$gantt-timeline-top-header-cell-height: 26px !default;
|
|
191
|
+
$gantt-bigger-timeline-top-header-cell-height: 32px !default;
|
|
192
|
+
$gantt-header-border-radius: 0px !default;
|
|
193
|
+
$gantt-splitter-border-top-right-radius: 0px !default;
|
|
194
|
+
$gantt-splitter-border-top-left-radius: 0px !default;
|
|
195
|
+
$gantt-filter-menu-value-div-padding: 16px !default;
|
|
196
|
+
$gantt-dialog-tab-hover-border-bottom: 0px !default;
|
|
197
|
+
$gantt-dialog-tab-hover-border-bottom-radius: 0px !default;
|
|
198
|
+
$gantt-dialog-border-radius: 3px 3px 0px 0px !default;
|
|
199
|
+
$event-marker-line-height: 1.5 !default;
|
|
200
|
+
$gantt-clone-padding: 2px 8px 1px !default;
|
|
201
|
+
$gantt-bigger-clone-padding: $gantt-clone-padding !default;
|
|
202
|
+
$gantt-group-clone-box-shadow: 0 0 !default;
|
|
203
|
+
$gantt-header-font-size: 12px !default;
|
|
204
|
+
$gantt-header-font-weight: bold !default;
|
|
205
|
+
$gantt-drag-clone-font-weight: $gantt-header-font-weight !default;
|
|
206
|
+
$gantt-drag-clone-opacity: 1 !default;
|
|
207
|
+
$gantt-group-clone-text-align: center !default;
|
|
208
|
+
$gantt-clone-prop-box-shadow: 0 6px 12px rgba($warning-text, .175) !default;
|
|
209
|
+
$gantt-border-size: 1px !default;
|
|
210
|
+
$grid-active-container-border: 0 0 0 1px $border inset !default;
|
|
211
|
+
$gantt-collapse-progress-width: 0px !important;
|
|
212
|
+
$gantt-range-container-arc-radius: 2px !default;
|
|
213
|
+
$bigger-column-menu-size: 35px !default;
|
|
@@ -7,27 +7,33 @@ $gantt-grid-line-color: $border-light !default;
|
|
|
7
7
|
$gantt-label-color: $content-text-color-alt2 !default;
|
|
8
8
|
$gantt-content-color: $content-text-color-alt2 !default;
|
|
9
9
|
$holiday-background: $content-bg-color-alt1 !default;
|
|
10
|
-
$progress-handler-outline: $
|
|
10
|
+
$progress-handler-outline: $primary-text-color !default;
|
|
11
11
|
$progress-handler-background: $content-text-color !default;
|
|
12
12
|
$holiday-label-color: $content-text-color-alt2 !default;
|
|
13
13
|
$weekend-background: $content-bg-color-alt2 !default;
|
|
14
14
|
$event-marker-line-color: $primary !default;
|
|
15
|
+
$connector-point-hover-outerline-color: $primary-light !default;
|
|
15
16
|
$event-marker-label-color: $warning-light !default;
|
|
16
17
|
$event-marker-label-font-color: $warning !default;
|
|
17
18
|
$connector-line-color: $primary !default;
|
|
18
19
|
$connector-line-hover-color: $primary !default;
|
|
20
|
+
$critical-connector-line-color: $danger !default;
|
|
21
|
+
$critical-connector-line-hover-color: $danger-light !default;
|
|
19
22
|
$connector-false-line-color: $primary !default;
|
|
20
|
-
$connector-point-hover-color: $
|
|
23
|
+
$connector-point-hover-color: darken($primary, 10%) !default;
|
|
21
24
|
$connector-point-border-color: $content-bg-color !default;
|
|
22
25
|
$connector-point-hover-bg-color: $icon-color-hover !default;
|
|
23
26
|
$connector-point-hover-border-color: $content-bg-color !default;
|
|
24
27
|
$gantt-line-container-cell-border-color: $border-light !default;
|
|
25
28
|
// sass-lint:disable-all
|
|
26
29
|
$gantt-unscheduled-taskbar-background: linear-gradient(to right, $primary-light, $primary 30%, $primary 70%, $primary 70%, $primary-light 100%) !default;
|
|
27
|
-
$gantt-unscheduled-taskbar-background
|
|
30
|
+
$gantt-unscheduled-critical-taskbar-background: linear-gradient(to right, rgba(285,85,85, 0.2), $danger 30%, $danger 70%, $danger 70%, rgba(285,85,85, 0.2) 100%) !default;
|
|
31
|
+
$gantt-unscheduled-critical-taskbar-background-color: rgba(285,85,85, .2) !default;
|
|
32
|
+
$gantt-critical-child-task-bar: $danger-light !default;
|
|
33
|
+
$gantt-critical-child-progress-bar: $danger !default;
|
|
34
|
+
$gantt-critical-child-task-bar-border: 1px solid $danger-light !default;
|
|
28
35
|
$gantt-unscheduled-milestone-top-border: $content-bg-color-alt5 !default;
|
|
29
36
|
$gantt-unscheduled-milestone-bottom-border: $content-bg-color-alt5 !default;
|
|
30
|
-
$gantt-resize-gripper: rgba(249, 146, 11, .2) !default;
|
|
31
37
|
$gantt-child-task-bar: $primary-light !default;
|
|
32
38
|
$gantt-child-progress-bar: $primary !default;
|
|
33
39
|
$gantt-manualchild-task-bar: $success-light !default;
|
|
@@ -39,12 +45,13 @@ $gantt-unscheduled-manualtaskbar-background: linear-gradient(to right, $success-
|
|
|
39
45
|
$gantt-parent-task-bar: $content-bg-color-alt4 !default;
|
|
40
46
|
$gantt-parent-progress-bar: $content-bg-color-alt5 !default;
|
|
41
47
|
$gantt-milestone-border-color: $content-bg-color-alt5 !default;
|
|
48
|
+
$gantt-critical-milestone-border-color: $danger !default;
|
|
42
49
|
$gantt-parent-milestone-border-color: $content-bg-color-alt5 !default;
|
|
43
50
|
$gantt-label-font-color: $content-text-color-alt2 !default;
|
|
44
51
|
$gantt-task-label-font-color: $primary-text-color !default;
|
|
45
52
|
$gantt-tab-header-active-font-color: $primary !default;
|
|
46
53
|
$gantt-tab-header-font-color: $content-text-color-alt2 !default;
|
|
47
|
-
$gantt-edit-icon-color: $
|
|
54
|
+
$gantt-edit-icon-color: $primary-text-color !default;
|
|
48
55
|
$gantt-icons-color: $icon-color !default;
|
|
49
56
|
$gantt-dialog-active-tab-background: $transparent !default;
|
|
50
57
|
$gantt-dialog-tab-background: $content-bg-color-alt1 !default;
|
|
@@ -113,9 +120,46 @@ $gantt-dialog-general-height: 240px !default;
|
|
|
113
120
|
$gantt-dialog-edit-form-odd-padding: 12px 12px 0 19px !default;
|
|
114
121
|
$gantt-dialog-edit-form-even-padding: 12px 19px 0 0 !default;
|
|
115
122
|
$gantt-dialog-edit-form-scroll-padding: 12px 15px 0 0 !default;
|
|
116
|
-
$gantt-bigger-dialog-
|
|
117
|
-
$gantt-bigger-
|
|
118
|
-
$gantt-bigger-dialog-
|
|
123
|
+
$gantt-bigger-predecessor-dialog-padding: 10px 9px 9px 14px !important;
|
|
124
|
+
$gantt-bigger-tooltip-button-color: $black;
|
|
125
|
+
$gantt-bigger-tooltip-dialog-color: $content-bg-color-alt1;
|
|
126
|
+
$gantt-bigger-tooltip-button-text-color: $white;
|
|
127
|
+
$gantt-bigger-tooltip-disabled-button-color: $content-bg-color-alt5 !important;
|
|
128
|
+
$gantt-bigger-dialog-edit-form-odd-padding: 16px 8px 0 24px !default;
|
|
129
|
+
$gantt-bigger-dialog-edit-form-even-padding: 16px 24px 0 8px !default;
|
|
130
|
+
$gantt-bigger-dialog-close-button-left: -2px !important;
|
|
131
|
+
$gantt-bigger-dialog-close-button-size: 16px !important;
|
|
132
|
+
$gantt-bigger-dialog-edit-form-odd-padding: 16px 8px 0 24px !default;
|
|
133
|
+
$gantt-bigger-dialog-header-padding: 16px 4px 16px 24px !important;
|
|
134
|
+
$gantt-bigger-add-dialog-content-height: 242px !important;
|
|
135
|
+
$gantt-bigger-event-arrow-color: $warning-light;
|
|
136
|
+
$gantt-bigger-event-arrow-font-size: 12px !important;
|
|
137
|
+
$gantt-bigger-event-markers-border-radius: 4px !important;
|
|
138
|
+
$gantt-bigger-event-markers-height: 26px !important;
|
|
139
|
+
$gantt-bigger-event-arrow-bottom: 6px solid transparent;
|
|
140
|
+
$gantt-bigger-event-arrow-right: 6px solid transparent;
|
|
141
|
+
$gantt-bigger-event-arrow-top: 6px solid transparent;
|
|
142
|
+
$gantt-bigger-event-arrow-top-value: 43px !important;
|
|
143
|
+
$gantt-bigger-event-markers-top: 36px !important;
|
|
144
|
+
$gantt-bigger-event-markers-padding: 4px 8px 4px 8px !important;
|
|
145
|
+
$gantt-bigger-add-dialog-input-height: 75px !important;
|
|
146
|
+
$gantt-bigger-add-dialog-input-width: 250px !important;
|
|
147
|
+
$gantt-bigger-add-dialog-input-field-width: 175px !default;
|
|
148
|
+
$gantt-bigger-filter-dialog-footer-padding: 12px 24px 12px 12px !important;
|
|
149
|
+
$gantt-bigger-add-dialog-footer-padding: 12px 24px 12px 24px !important;
|
|
150
|
+
$gantt-bigger-filter-dialog-footer-height: 62px !important;
|
|
151
|
+
$gantt-bigger-add-dialog-footer-height: 70px !important;
|
|
152
|
+
$gantt-bigger-filter-dialog-input-padding: 24px 0 0 !important;
|
|
153
|
+
$gantt-bigger-dialog-width: 564px !important;
|
|
154
|
+
$gantt-bigger-filter-dialog-width: 319px !important;
|
|
155
|
+
$gantt-dialog-bigger-input-field: 38px !default;
|
|
156
|
+
$gantt-dialog-bigger-input-padding-field: 23px 24px 15px 24px !important;
|
|
157
|
+
$gantt-bigger-dialog-input-field-height: 36px !important;
|
|
158
|
+
$gantt-bigger-dialog-input-icon: 18px !important;
|
|
159
|
+
$gantt-dialog-bigger-border-radius: 6px !important;
|
|
160
|
+
$gantt-bigger-dialog-tab-padding-left: 12px !important;
|
|
161
|
+
$gantt-bigger-dialog-border-radius: 6px 6px 0px 0px !default;
|
|
162
|
+
$gantt-bigger-dialog-edit-form-scroll-padding: 16px 18px 0 9px !default;
|
|
119
163
|
$gantt-dialog-dependent-height: 157px !default;
|
|
120
164
|
$gantt-dialog-resource-height: 200px !default;
|
|
121
165
|
$gantt-dialog-rte-height: 259px !default;
|
package/styles/gantt/_theme.scss
CHANGED
|
@@ -191,6 +191,11 @@
|
|
|
191
191
|
border: $gantt-manualchild-progress-bar-border;
|
|
192
192
|
}
|
|
193
193
|
|
|
194
|
+
.e-gantt-critical-child-manualprogressbar {
|
|
195
|
+
background-color: $gantt-manualchild-progress-bar;
|
|
196
|
+
border: $gantt-manualchild-progress-bar-border;
|
|
197
|
+
}
|
|
198
|
+
|
|
194
199
|
.e-holiday {
|
|
195
200
|
background: $holiday-background;
|
|
196
201
|
|
|
@@ -233,7 +238,6 @@
|
|
|
233
238
|
|
|
234
239
|
.e-gantt-unscheduled-taskbar {
|
|
235
240
|
background: $gantt-unscheduled-taskbar-background;
|
|
236
|
-
background-color: $gantt-unscheduled-taskbar-background-color;
|
|
237
241
|
border: $gantt-unscheduled-taskbar-border;
|
|
238
242
|
border-radius: $gantt-unscheduled-taskbar-border-radius;
|
|
239
243
|
}
|
|
@@ -662,4 +666,55 @@
|
|
|
662
666
|
|
|
663
667
|
}
|
|
664
668
|
|
|
669
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line {
|
|
670
|
+
border-color: $critical-connector-line-color;
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line-right-arrow {
|
|
674
|
+
border-left-color: $critical-connector-line-color;
|
|
675
|
+
}
|
|
676
|
+
|
|
677
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line-left-arrow {
|
|
678
|
+
border-right-color: $critical-connector-line-color;
|
|
679
|
+
}
|
|
680
|
+
|
|
681
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-hover {
|
|
682
|
+
border-color: $critical-connector-line-hover-color;
|
|
683
|
+
outline-color: $critical-connector-line-hover-color;
|
|
684
|
+
}
|
|
685
|
+
|
|
686
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-right-arrow-hover {
|
|
687
|
+
border-left-color: $critical-connector-line-hover-color;
|
|
688
|
+
}
|
|
689
|
+
|
|
690
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-left-arrow-hover {
|
|
691
|
+
border-right-color: $critical-connector-line-hover-color;
|
|
692
|
+
}
|
|
693
|
+
|
|
694
|
+
.e-gantt .e-gantt-chart .e-gantt-child-critical-taskbar-inner-div {
|
|
695
|
+
background-color: $gantt-critical-child-task-bar;
|
|
696
|
+
border: $gantt-critical-child-task-bar-border;
|
|
697
|
+
border-radius: $gantt-parent-progress-bar-border-radius;
|
|
698
|
+
}
|
|
699
|
+
|
|
700
|
+
.e-gantt .e-gantt-chart .e-gantt-child-critical-progressbar-inner-div {
|
|
701
|
+
background-color: $gantt-critical-child-progress-bar;
|
|
702
|
+
border: $gantt-child-progress-bar-border;
|
|
703
|
+
border-radius: $gantt-child-progress-bar-border-radious;
|
|
704
|
+
}
|
|
705
|
+
|
|
706
|
+
.e-gantt .e-gantt-chart .e-gantt-critical-unscheduled-taskbar {
|
|
707
|
+
background: $gantt-unscheduled-critical-taskbar-background;
|
|
708
|
+
background-color: $gantt-unscheduled-critical-taskbar-background-color;
|
|
709
|
+
border: $gantt-unscheduled-taskbar-border;
|
|
710
|
+
border-radius: $gantt-unscheduled-taskbar-border-radius;
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
.e-gantt .e-gantt-chart .e-critical-milestone-top {
|
|
714
|
+
border-bottom-color: $gantt-critical-milestone-border-color;
|
|
715
|
+
}
|
|
716
|
+
|
|
717
|
+
.e-gantt .e-gantt-chart .e-critical-milestone-bottom {
|
|
718
|
+
border-top-color: $gantt-critical-milestone-border-color;
|
|
719
|
+
}
|
|
665
720
|
}
|