@syncfusion/ej2-gantt 19.4.56 → 20.1.47-1460716
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 +1072 -1060
- package/README.md +75 -75
- package/dist/ej2-gantt.umd.min.js +1 -10
- package/dist/ej2-gantt.umd.min.js.map +1 -1
- package/dist/es6/ej2-gantt.es2015.js +274 -176
- package/dist/es6/ej2-gantt.es2015.js.map +1 -1
- package/dist/es6/ej2-gantt.es5.js +642 -534
- package/dist/es6/ej2-gantt.es5.js.map +1 -1
- package/dist/global/ej2-gantt.min.js +1 -10
- package/dist/global/ej2-gantt.min.js.map +1 -1
- package/dist/global/index.d.ts +0 -9
- package/dist/ts/components.ts +4 -0
- package/dist/ts/gantt/actions/actions.ts +18 -0
- package/dist/ts/gantt/actions/cell-edit.ts +606 -0
- package/dist/ts/gantt/actions/chart-scroll.ts +167 -0
- package/dist/ts/gantt/actions/column-menu.ts +35 -0
- package/dist/ts/gantt/actions/column-reorder.ts +52 -0
- package/dist/ts/gantt/actions/column-resize.ts +52 -0
- package/dist/ts/gantt/actions/connector-line-edit.ts +829 -0
- package/dist/ts/gantt/actions/context-menu.ts +754 -0
- package/dist/ts/gantt/actions/day-markers.ts +80 -0
- package/dist/ts/gantt/actions/dependency.ts +692 -0
- package/dist/ts/gantt/actions/dialog-edit.ts +2208 -0
- package/dist/ts/gantt/actions/edit.ts +3499 -0
- package/dist/ts/gantt/actions/excel-export.ts +61 -0
- package/dist/ts/gantt/actions/filter.ts +302 -0
- package/dist/ts/gantt/actions/keyboard.ts +306 -0
- package/dist/ts/gantt/actions/pdf-export.ts +214 -0
- package/dist/ts/gantt/actions/rowdragdrop.ts +839 -0
- package/dist/ts/gantt/actions/selection.ts +536 -0
- package/dist/ts/gantt/actions/sort.ts +98 -0
- package/dist/ts/gantt/actions/taskbar-edit.ts +1940 -0
- package/dist/ts/gantt/actions/toolbar.ts +489 -0
- package/dist/ts/gantt/actions/virtual-scroll.ts +60 -0
- package/dist/ts/gantt/base/common.ts +9 -0
- package/dist/ts/gantt/base/constant.ts +13 -0
- package/dist/ts/gantt/base/css-constants.ts +148 -0
- package/dist/ts/gantt/base/date-processor.ts +1257 -0
- package/dist/ts/gantt/base/enum.ts +372 -0
- package/dist/ts/gantt/base/gantt-chart.ts +1248 -0
- package/dist/ts/gantt/base/gantt.ts +4069 -0
- package/dist/ts/gantt/base/interface.ts +955 -0
- package/dist/ts/gantt/base/splitter.ts +174 -0
- package/dist/ts/gantt/base/task-processor.ts +2217 -0
- package/dist/ts/gantt/base/tree-grid.ts +694 -0
- package/dist/ts/gantt/base/utils.ts +208 -0
- package/dist/ts/gantt/export/export-helper.ts +552 -0
- package/dist/ts/gantt/export/pdf-base/dictionary.ts +152 -0
- package/dist/ts/gantt/export/pdf-base/pdf-borders.ts +277 -0
- package/dist/ts/gantt/export/pdf-base/pdf-grid-table.ts +901 -0
- package/dist/ts/gantt/export/pdf-base/pdf-style/gantt-theme.ts +131 -0
- package/dist/ts/gantt/export/pdf-base/pdf-style/style.ts +91 -0
- package/dist/ts/gantt/export/pdf-base/treegrid-layouter.ts +414 -0
- package/dist/ts/gantt/export/pdf-connector-line.ts +422 -0
- package/dist/ts/gantt/export/pdf-gantt.ts +282 -0
- package/dist/ts/gantt/export/pdf-taskbar.ts +395 -0
- package/dist/ts/gantt/export/pdf-timeline.ts +202 -0
- package/dist/ts/gantt/export/pdf-treegrid.ts +406 -0
- package/dist/ts/gantt/models/add-dialog-field-settings.ts +33 -0
- package/dist/ts/gantt/models/column.ts +464 -0
- package/dist/ts/gantt/models/day-working-time.ts +22 -0
- package/dist/ts/gantt/models/edit-dialog-field-settings.ts +33 -0
- package/dist/ts/gantt/models/edit-settings.ts +79 -0
- package/dist/ts/gantt/models/event-marker.ts +27 -0
- package/dist/ts/gantt/models/filter-settings.ts +53 -0
- package/dist/ts/gantt/models/holiday.ts +34 -0
- package/dist/ts/gantt/models/label-settings.ts +30 -0
- package/dist/ts/gantt/models/models.ts +36 -0
- package/dist/ts/gantt/models/resource-fields.ts +38 -0
- package/dist/ts/gantt/models/search-settings.ts +77 -0
- package/dist/ts/gantt/models/selection-settings.ts +56 -0
- package/dist/ts/gantt/models/sort-settings.ts +50 -0
- package/dist/ts/gantt/models/splitter-settings.ts +47 -0
- package/dist/ts/gantt/models/task-fields.ts +171 -0
- package/dist/ts/gantt/models/timeline-settings.ts +112 -0
- package/dist/ts/gantt/models/tooltip-settings.ts +46 -0
- package/dist/ts/gantt/renderer/chart-rows.ts +1838 -0
- package/dist/ts/gantt/renderer/connector-line.ts +1025 -0
- package/dist/ts/gantt/renderer/edit-tooltip.ts +228 -0
- package/dist/ts/gantt/renderer/event-marker.ts +96 -0
- package/dist/ts/gantt/renderer/nonworking-day.ts +205 -0
- package/dist/ts/gantt/renderer/render.ts +5 -0
- package/dist/ts/gantt/renderer/timeline.ts +1397 -0
- package/dist/ts/gantt/renderer/tooltip.ts +450 -0
- package/dist/ts/gantt/renderer/virtual-content-render.ts +50 -0
- package/license +9 -9
- package/package.json +80 -80
- package/src/gantt/actions/cell-edit.js +2 -1
- package/src/gantt/actions/dialog-edit.js +2 -1
- package/src/gantt/actions/edit.js +11 -2
- package/src/gantt/actions/rowdragdrop.js +37 -15
- package/src/gantt/actions/taskbar-edit.js +24 -24
- package/src/gantt/base/date-processor.js +0 -1
- package/src/gantt/base/gantt-chart.js +9 -4
- package/src/gantt/base/gantt-model.d.ts +779 -779
- package/src/gantt/base/gantt.d.ts +27 -27
- package/src/gantt/base/gantt.js +22 -22
- package/src/gantt/base/splitter.js +1 -0
- package/src/gantt/base/task-processor.js +13 -13
- package/src/gantt/base/tree-grid.js +3 -1
- package/src/gantt/export/pdf-base/treegrid-layouter.js +13 -13
- package/src/gantt/export/pdf-connector-line.js +11 -11
- package/src/gantt/export/pdf-gantt.js +24 -24
- package/src/gantt/export/pdf-taskbar.js +11 -11
- package/src/gantt/export/pdf-treegrid.js +13 -13
- package/src/gantt/models/add-dialog-field-settings-model.d.ts +21 -21
- package/src/gantt/models/add-dialog-field-settings.js +19 -19
- package/src/gantt/models/day-working-time-model.d.ts +11 -11
- package/src/gantt/models/day-working-time.js +19 -19
- package/src/gantt/models/edit-dialog-field-settings-model.d.ts +21 -21
- package/src/gantt/models/edit-dialog-field-settings.js +19 -19
- package/src/gantt/models/edit-settings-model.d.ts +50 -50
- package/src/gantt/models/edit-settings.js +19 -19
- package/src/gantt/models/event-marker-model.d.ts +16 -16
- package/src/gantt/models/event-marker.js +19 -19
- package/src/gantt/models/filter-settings-model.d.ts +34 -34
- package/src/gantt/models/filter-settings.js +19 -19
- package/src/gantt/models/holiday-model.d.ts +21 -21
- package/src/gantt/models/holiday.js +19 -19
- package/src/gantt/models/label-settings-model.d.ts +16 -16
- package/src/gantt/models/label-settings.js +19 -19
- package/src/gantt/models/resource-fields-model.d.ts +21 -21
- package/src/gantt/models/resource-fields.js +19 -19
- package/src/gantt/models/search-settings-model.d.ts +56 -56
- package/src/gantt/models/search-settings.js +19 -19
- package/src/gantt/models/selection-settings-model.d.ts +35 -35
- package/src/gantt/models/selection-settings.js +19 -19
- package/src/gantt/models/sort-settings-model.d.ts +24 -24
- package/src/gantt/models/sort-settings.js +19 -19
- package/src/gantt/models/splitter-settings-model.d.ts +30 -30
- package/src/gantt/models/splitter-settings.js +19 -19
- package/src/gantt/models/task-fields-model.d.ts +110 -110
- package/src/gantt/models/task-fields.js +19 -19
- package/src/gantt/models/timeline-settings-model.d.ts +71 -71
- package/src/gantt/models/timeline-settings.js +19 -19
- package/src/gantt/models/tooltip-settings-model.d.ts +26 -26
- package/src/gantt/models/tooltip-settings.js +19 -19
- package/src/gantt/renderer/chart-rows.js +49 -37
- package/src/gantt/renderer/connector-line.js +22 -18
- package/src/gantt/renderer/event-marker.js +1 -0
- package/src/gantt/renderer/nonworking-day.js +13 -6
- package/src/gantt/renderer/timeline.d.ts +1 -0
- package/src/gantt/renderer/timeline.js +48 -12
- package/src/gantt/renderer/tooltip.js +11 -3
- package/styles/bootstrap-dark.css +442 -427
- package/styles/bootstrap.css +442 -433
- package/styles/bootstrap4.css +454 -479
- package/styles/bootstrap5-dark.css +457 -433
- package/styles/bootstrap5.css +457 -433
- package/styles/fabric-dark.css +438 -421
- package/styles/fabric.css +445 -428
- package/styles/fluent-dark.css +1938 -0
- package/styles/fluent-dark.scss +1 -0
- package/styles/fluent.css +1938 -0
- package/styles/fluent.scss +1 -0
- package/styles/gantt/_all.scss +2 -2
- package/styles/gantt/_bootstrap-dark-definition.scss +210 -156
- package/styles/gantt/_bootstrap-definition.scss +211 -157
- package/styles/gantt/_bootstrap4-definition.scss +213 -158
- package/styles/gantt/_bootstrap5-definition.scss +215 -162
- package/styles/gantt/_fabric-dark-definition.scss +211 -157
- package/styles/gantt/_fabric-definition.scss +211 -157
- package/styles/gantt/_fluent-dark-definition.scss +1 -0
- package/styles/gantt/_fluent-definition.scss +215 -162
- package/styles/gantt/_fusionnew-definition.scss +214 -0
- package/styles/gantt/_highcontrast-definition.scss +211 -157
- package/styles/gantt/_highcontrast-light-definition.scss +211 -157
- package/styles/gantt/_layout.scss +1446 -1027
- package/styles/gantt/_material-dark-definition.scss +212 -157
- package/styles/gantt/_material-definition.scss +212 -157
- package/styles/gantt/_material3-definition.scss +215 -0
- package/styles/gantt/_tailwind-definition.scss +215 -161
- package/styles/gantt/_theme.scss +702 -668
- package/styles/gantt/bootstrap-dark.css +442 -427
- package/styles/gantt/bootstrap.css +442 -433
- package/styles/gantt/bootstrap4.css +454 -479
- package/styles/gantt/bootstrap5-dark.css +457 -433
- package/styles/gantt/bootstrap5.css +457 -433
- package/styles/gantt/fabric-dark.css +438 -421
- package/styles/gantt/fabric.css +445 -428
- package/styles/gantt/fluent-dark.css +1938 -0
- package/styles/gantt/fluent-dark.scss +22 -0
- package/styles/gantt/fluent.css +1938 -0
- package/styles/gantt/fluent.scss +22 -0
- package/styles/gantt/highcontrast-light.css +405 -405
- package/styles/gantt/highcontrast.css +444 -456
- package/styles/gantt/icons/_bootstrap-dark.scss +124 -113
- package/styles/gantt/icons/_bootstrap.scss +124 -113
- package/styles/gantt/icons/_bootstrap4.scss +124 -113
- package/styles/gantt/icons/_bootstrap5.scss +124 -112
- package/styles/gantt/icons/_fabric-dark.scss +124 -112
- package/styles/gantt/icons/_fabric.scss +124 -112
- package/styles/gantt/icons/_fluent-dark.scss +1 -0
- package/styles/gantt/icons/_fluent.scss +124 -112
- package/styles/gantt/icons/_fusionnew.scss +120 -0
- package/styles/gantt/icons/_highcontrast.scss +124 -112
- package/styles/gantt/icons/_material-dark.scss +124 -112
- package/styles/gantt/icons/_material.scss +124 -112
- package/styles/gantt/icons/_material3.scss +124 -0
- package/styles/gantt/icons/_tailwind-dark.scss +124 -113
- package/styles/gantt/icons/_tailwind.scss +124 -113
- package/styles/gantt/material-dark.css +446 -417
- package/styles/gantt/material.css +445 -419
- package/styles/gantt/tailwind-dark.css +452 -482
- package/styles/gantt/tailwind.css +449 -479
- package/styles/highcontrast-light.css +405 -405
- package/styles/highcontrast.css +444 -456
- package/styles/material-dark.css +446 -417
- package/styles/material.css +445 -419
- package/styles/tailwind-dark.css +452 -482
- package/styles/tailwind.css +449 -479
package/styles/tailwind.css
CHANGED
|
@@ -53,6 +53,7 @@
|
|
|
53
53
|
|
|
54
54
|
.e-popup.e-ddl .e-dropdownbase {
|
|
55
55
|
min-height: 26px;
|
|
56
|
+
padding: 4px 0;
|
|
56
57
|
}
|
|
57
58
|
|
|
58
59
|
.e-bigger .e-popup.e-ddl-device-filter .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
|
|
@@ -77,24 +78,6 @@
|
|
|
77
78
|
background-color: #fff;
|
|
78
79
|
}
|
|
79
80
|
|
|
80
|
-
.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon {
|
|
81
|
-
margin: 0;
|
|
82
|
-
min-height: 12px;
|
|
83
|
-
min-width: 12px;
|
|
84
|
-
padding: 6px;
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
.e-bigger .e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
|
|
88
|
-
.e-bigger.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon {
|
|
89
|
-
min-height: 16px;
|
|
90
|
-
min-width: 16px;
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
.e-bigger .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-filter,
|
|
94
|
-
.e-bigger.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-filter {
|
|
95
|
-
padding: 8px 16px 8px 0;
|
|
96
|
-
}
|
|
97
|
-
|
|
98
81
|
.e-input-group.e-ddl,
|
|
99
82
|
.e-input-group.e-ddl .e-input,
|
|
100
83
|
.e-input-group.e-ddl .e-ddl-icon {
|
|
@@ -106,45 +89,6 @@
|
|
|
106
89
|
border-bottom-width: 0;
|
|
107
90
|
}
|
|
108
91
|
|
|
109
|
-
.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-small .e-clear-icon,
|
|
110
|
-
.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
|
|
111
|
-
.e-small.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
|
|
112
|
-
.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-input-focus.e-small .e-clear-icon,
|
|
113
|
-
.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-input-focus .e-clear-icon,
|
|
114
|
-
.e-small.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-input-focus .e-clear-icon {
|
|
115
|
-
margin: 0;
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group .e-input-filter,
|
|
119
|
-
.e-small.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group .e-input-filter,
|
|
120
|
-
.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-small .e-input-filter,
|
|
121
|
-
.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-input-focus .e-input-filter,
|
|
122
|
-
.e-small.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-input-focus .e-input-filter,
|
|
123
|
-
.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-small.e-input-focus .e-input-filter {
|
|
124
|
-
padding: 5px 5px 5px 12px;
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
.e-bigger.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
|
|
128
|
-
.e-bigger.e-small.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
|
|
129
|
-
.e-bigger .e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-small .e-clear-icon,
|
|
130
|
-
.e-bigger.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-small .e-clear-icon,
|
|
131
|
-
.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-bigger .e-clear-icon,
|
|
132
|
-
.e-small.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-bigger .e-clear-icon,
|
|
133
|
-
.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-bigger.e-small .e-clear-icon {
|
|
134
|
-
min-height: 18px;
|
|
135
|
-
min-width: 18px;
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
.e-bigger.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group .e-input-filter,
|
|
139
|
-
.e-bigger.e-small.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group .e-input-filter,
|
|
140
|
-
.e-bigger .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-small .e-input-filter,
|
|
141
|
-
.e-bigger.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-small .e-input-filter,
|
|
142
|
-
.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-bigger .e-input-filter,
|
|
143
|
-
.e-small.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-bigger .e-input-filter,
|
|
144
|
-
.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-bigger.e-small .e-input-filter {
|
|
145
|
-
padding: 8px 16px;
|
|
146
|
-
}
|
|
147
|
-
|
|
148
92
|
.e-ddl.e-popup.e-outline .e-filter-parent {
|
|
149
93
|
padding: 4px 8px;
|
|
150
94
|
}
|
|
@@ -162,7 +106,7 @@
|
|
|
162
106
|
.e-multiselect.e-rtl .e-input-group-icon.e-ddl-icon {
|
|
163
107
|
border-left-width: 0;
|
|
164
108
|
border-radius: 4px 0 0 4px;
|
|
165
|
-
border-right-width:
|
|
109
|
+
border-right-width: 0;
|
|
166
110
|
}
|
|
167
111
|
|
|
168
112
|
.e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
|
|
@@ -171,11 +115,11 @@
|
|
|
171
115
|
}
|
|
172
116
|
|
|
173
117
|
.e-bigger .e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
|
|
174
|
-
height:
|
|
175
|
-
width:
|
|
118
|
+
height: 28px;
|
|
119
|
+
width: 28px;
|
|
176
120
|
}
|
|
177
121
|
|
|
178
|
-
.e-multi-select-wrapper .e-searcher input[type=
|
|
122
|
+
.e-multi-select-wrapper .e-searcher input[type=text] {
|
|
179
123
|
color: #111827;
|
|
180
124
|
height: 100%;
|
|
181
125
|
}
|
|
@@ -192,7 +136,6 @@
|
|
|
192
136
|
box-shadow: 0 0 0 200px rgba(0, 0, 0, 0.12);
|
|
193
137
|
}
|
|
194
138
|
}
|
|
195
|
-
|
|
196
139
|
@keyframes hscroll-alt-popup-shadow {
|
|
197
140
|
0% {
|
|
198
141
|
border-color: rgba(0, 0, 0, 0.12);
|
|
@@ -202,9 +145,10 @@
|
|
|
202
145
|
box-shadow: 0 0 0 200px rgba(0, 0, 0, 0.12);
|
|
203
146
|
}
|
|
204
147
|
}
|
|
205
|
-
|
|
206
148
|
/*! Material specific themes definition's */
|
|
207
149
|
/*! Vertical Tab */
|
|
150
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
151
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
208
152
|
@keyframes material-spinner-rotate {
|
|
209
153
|
0% {
|
|
210
154
|
transform: rotate(0);
|
|
@@ -213,7 +157,6 @@
|
|
|
213
157
|
transform: rotate(360deg);
|
|
214
158
|
}
|
|
215
159
|
}
|
|
216
|
-
|
|
217
160
|
@keyframes fabric-spinner-rotate {
|
|
218
161
|
0% {
|
|
219
162
|
transform: rotate(0);
|
|
@@ -222,128 +165,331 @@
|
|
|
222
165
|
transform: rotate(360deg);
|
|
223
166
|
}
|
|
224
167
|
}
|
|
225
|
-
|
|
168
|
+
/* stylelint-disable */
|
|
226
169
|
.e-gantt .e-add::before {
|
|
227
|
-
content:
|
|
170
|
+
content: "\e805";
|
|
171
|
+
}
|
|
172
|
+
.e-gantt .e-critical-path::before {
|
|
173
|
+
content: "\e88c";
|
|
228
174
|
}
|
|
229
|
-
|
|
230
175
|
.e-gantt .e-edit::before {
|
|
231
|
-
content:
|
|
176
|
+
content: "\e730";
|
|
232
177
|
}
|
|
233
|
-
|
|
234
178
|
.e-gantt .e-delete::before {
|
|
235
|
-
content:
|
|
179
|
+
content: "\e820";
|
|
236
180
|
}
|
|
237
|
-
|
|
238
181
|
.e-gantt .e-cancel::before {
|
|
239
|
-
content:
|
|
182
|
+
content: "\e7e7";
|
|
240
183
|
}
|
|
241
|
-
|
|
242
184
|
.e-gantt .e-save::before {
|
|
243
|
-
content:
|
|
185
|
+
content: "\e7c8";
|
|
244
186
|
}
|
|
245
|
-
|
|
246
187
|
.e-gantt .e-update::before {
|
|
247
|
-
content:
|
|
188
|
+
content: "\e7c8";
|
|
248
189
|
}
|
|
249
|
-
|
|
250
190
|
.e-gantt .e-search-icon::before {
|
|
251
|
-
content:
|
|
191
|
+
content: "\e754";
|
|
252
192
|
}
|
|
253
|
-
|
|
254
193
|
.e-gantt .e-cancel-icon::before {
|
|
255
|
-
content:
|
|
194
|
+
content: "\e7e7";
|
|
256
195
|
}
|
|
257
|
-
|
|
258
196
|
.e-gantt .e-notes-info::before {
|
|
259
|
-
content:
|
|
197
|
+
content: "\e72d";
|
|
260
198
|
}
|
|
261
|
-
|
|
262
199
|
.e-gantt .e-left-resize-gripper::before,
|
|
263
200
|
.e-gantt .e-right-resize-gripper::before {
|
|
264
|
-
content:
|
|
201
|
+
content: "\e770";
|
|
265
202
|
}
|
|
266
|
-
|
|
267
203
|
.e-gantt .e-expandall::before {
|
|
268
|
-
content:
|
|
204
|
+
content: "\e7c9";
|
|
269
205
|
}
|
|
270
|
-
|
|
271
206
|
.e-gantt .e-collapseall::before {
|
|
272
|
-
content:
|
|
207
|
+
content: "\e80f";
|
|
273
208
|
}
|
|
274
|
-
|
|
275
209
|
.e-gantt .e-prevtimespan::before {
|
|
276
|
-
content:
|
|
210
|
+
content: "\e773";
|
|
277
211
|
}
|
|
278
|
-
|
|
279
212
|
.e-gantt .e-nexttimespan::before {
|
|
280
|
-
content:
|
|
213
|
+
content: "\e7f9";
|
|
281
214
|
}
|
|
282
|
-
|
|
283
215
|
.e-gantt .e-zoomin::before {
|
|
284
|
-
content:
|
|
216
|
+
content: "\e795";
|
|
285
217
|
}
|
|
286
|
-
|
|
287
218
|
.e-gantt .e-zoomout::before {
|
|
288
|
-
content:
|
|
219
|
+
content: "\e825";
|
|
289
220
|
}
|
|
290
|
-
|
|
291
221
|
.e-gantt .e-zoomtofit::before {
|
|
292
|
-
content:
|
|
222
|
+
content: "\e838";
|
|
293
223
|
}
|
|
294
|
-
|
|
295
224
|
.e-gantt .e-csvexport::before {
|
|
296
|
-
content:
|
|
225
|
+
content: "\e7ba";
|
|
297
226
|
}
|
|
298
|
-
|
|
299
227
|
.e-gantt .e-excelexport::before {
|
|
300
|
-
content:
|
|
228
|
+
content: "\e7c1";
|
|
301
229
|
}
|
|
302
|
-
|
|
303
230
|
.e-gantt .e-pdfexport::before {
|
|
304
|
-
content:
|
|
231
|
+
content: "\e700";
|
|
305
232
|
}
|
|
306
|
-
|
|
307
233
|
.e-gantt .e-indent::before {
|
|
308
|
-
content:
|
|
234
|
+
content: "\e810";
|
|
309
235
|
}
|
|
310
|
-
|
|
311
236
|
.e-gantt .e-outdent::before {
|
|
312
|
-
content:
|
|
237
|
+
content: "\e72a";
|
|
313
238
|
}
|
|
314
|
-
|
|
315
239
|
.e-gantt .e-add-above::before {
|
|
316
|
-
content:
|
|
240
|
+
content: "\e836";
|
|
317
241
|
}
|
|
318
|
-
|
|
319
242
|
.e-gantt .e-add-below::before {
|
|
320
|
-
content:
|
|
243
|
+
content: "\e801";
|
|
321
244
|
}
|
|
322
245
|
|
|
323
246
|
.e-gantt.e-device .e-backarrowspan::before,
|
|
324
247
|
.e-gantt.e-device .e-icon-dlg-close::before {
|
|
325
|
-
content:
|
|
248
|
+
content: "\e773";
|
|
326
249
|
}
|
|
327
|
-
|
|
328
250
|
.e-gantt.e-device .e-left-resize-gripper::before,
|
|
329
251
|
.e-gantt.e-device .e-right-resize-gripper::before {
|
|
330
|
-
content:
|
|
252
|
+
content: "\e770";
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
.e-gantt-tooltip-arrow-left::before {
|
|
256
|
+
content: "\e773";
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
.e-gantt-tooltip-arrow-right::before {
|
|
260
|
+
content: "\e7f9";
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
.e-bigger .e-gantt .e-gantt-chart .e-timeline-header-container {
|
|
264
|
+
height: 64px;
|
|
265
|
+
}
|
|
266
|
+
.e-bigger .e-gantt .e-gantt-chart .e-timeline-top-header-cell {
|
|
267
|
+
height: 32px;
|
|
268
|
+
}
|
|
269
|
+
.e-bigger .e-gantt .e-gantt-chart .e-event-markers .e-span-label {
|
|
270
|
+
border-radius: 4px !important;
|
|
271
|
+
font-size: 12px !important;
|
|
272
|
+
height: 26px !important;
|
|
273
|
+
padding: 4px 8px 4px 8px !important;
|
|
274
|
+
top: 36px !important;
|
|
275
|
+
}
|
|
276
|
+
.e-bigger .e-gantt .e-gantt-chart .e-event-markers .e-gantt-right-arrow {
|
|
277
|
+
border-bottom: 6px solid transparent;
|
|
278
|
+
border-right: 6px solid transparent;
|
|
279
|
+
border-right-color: #ffedd5;
|
|
280
|
+
border-top: 6px solid transparent;
|
|
281
|
+
top: 43px !important;
|
|
282
|
+
}
|
|
283
|
+
.e-bigger .e-gantt .e-gantt-chart .e-left-resize-gripper::before,
|
|
284
|
+
.e-bigger .e-gantt .e-gantt-chart .e-right-resize-gripper::before {
|
|
285
|
+
content: "\e888";
|
|
286
|
+
}
|
|
287
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right,
|
|
288
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left,
|
|
289
|
+
.e-bigger .e-gantt .e-gantt-chart .e-right-connectorpoint-outer-div,
|
|
290
|
+
.e-bigger .e-gantt .e-gantt-chart .e-left-connectorpoint-outer-div {
|
|
291
|
+
border-radius: 50%;
|
|
292
|
+
display: inline-block;
|
|
293
|
+
position: absolute;
|
|
294
|
+
}
|
|
295
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover,
|
|
296
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
|
|
297
|
+
border-style: solid;
|
|
298
|
+
border-width: 1px;
|
|
299
|
+
box-sizing: content-box;
|
|
300
|
+
cursor: pointer;
|
|
301
|
+
display: inline-block;
|
|
302
|
+
}
|
|
303
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover,
|
|
304
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
|
|
305
|
+
background-color: #291fd9;
|
|
306
|
+
border-color: #fff;
|
|
307
|
+
}
|
|
308
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-left-hover:hover,
|
|
309
|
+
.e-bigger .e-gantt .e-gantt-chart .e-connectorpoint-right-hover:hover {
|
|
310
|
+
background-color: #291fd9;
|
|
311
|
+
border-color: #fff;
|
|
312
|
+
outline: 2px solid #818cf8;
|
|
313
|
+
}
|
|
314
|
+
.e-bigger .e-gantt .e-tab .e-content {
|
|
315
|
+
height: 242px !important;
|
|
316
|
+
}
|
|
317
|
+
.e-bigger .e-gantt .e-gantt-tree-grid-pane .e-columnheader .e-headercell {
|
|
318
|
+
height: 63px !important; /* stylelint-disable-line declaration-no-important */
|
|
319
|
+
}
|
|
320
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header-content {
|
|
321
|
+
padding: 16px 4px 16px 24px !important; /* stylelint-disable-line declaration-no-important */
|
|
322
|
+
}
|
|
323
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
324
|
+
left: -2px !important;
|
|
325
|
+
}
|
|
326
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header-content {
|
|
327
|
+
height: 68px !important; /* stylelint-disable-line declaration-no-important */
|
|
328
|
+
}
|
|
329
|
+
.e-bigger .e-gantt .e-dialog .e-btn .e-btn-icon.e-icon-dlg-close {
|
|
330
|
+
font-size: 16px !important;
|
|
331
|
+
}
|
|
332
|
+
.e-bigger .e-gantt .e-dialog .e-footer-content {
|
|
333
|
+
height: 62px !important;
|
|
334
|
+
padding: 12px 24px 12px 12px !important;
|
|
335
|
+
}
|
|
336
|
+
.e-bigger .e-gantt .e-dialog .e-footer-content .e-btn {
|
|
337
|
+
margin-left: 12px;
|
|
338
|
+
}
|
|
339
|
+
.e-bigger .e-gantt .e-dialog .e-dlg-header {
|
|
340
|
+
line-height: 28px;
|
|
341
|
+
}
|
|
342
|
+
.e-bigger .e-gantt .e-filter-popup.e-popup {
|
|
343
|
+
width: 319px !important;
|
|
344
|
+
}
|
|
345
|
+
.e-bigger .e-gantt .e-grid .e-flmenu-valuediv {
|
|
346
|
+
padding: 24px 0 0 !important;
|
|
347
|
+
}
|
|
348
|
+
.e-bigger .e-gantt .e-filter-popup .e-dlg-content {
|
|
349
|
+
border-radius: 6px !important;
|
|
350
|
+
padding: 23px 24px 15px 24px !important;
|
|
351
|
+
}
|
|
352
|
+
.e-bigger .e-columnmenu {
|
|
353
|
+
top: 35px;
|
|
354
|
+
}
|
|
355
|
+
.e-bigger .e-gantt-dialog .e-dialog {
|
|
356
|
+
border-radius: 6px;
|
|
357
|
+
width: 564px !important;
|
|
358
|
+
}
|
|
359
|
+
.e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
360
|
+
padding: 0 16px !important; /* stylelint-disable-line declaration-no-important */
|
|
361
|
+
}
|
|
362
|
+
.e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(odd) {
|
|
363
|
+
padding: 16px 8px 0 24px;
|
|
364
|
+
}
|
|
365
|
+
.e-bigger .e-gantt-dialog .e-edit-form-column:nth-child(even) {
|
|
366
|
+
padding: 16px 24px 0 8px;
|
|
367
|
+
}
|
|
368
|
+
.e-bigger .e-gantt-dialog .e-edit-form-row.e-scroll .e-edit-form-column:nth-child(even) {
|
|
369
|
+
padding: 16px 18px 0 9px;
|
|
370
|
+
}
|
|
371
|
+
.e-bigger .e-gantt-dialog .e-edit-form-row {
|
|
372
|
+
height: 242px !important;
|
|
373
|
+
}
|
|
374
|
+
.e-bigger .e-gantt-dialog .e-edit-form-column {
|
|
375
|
+
height: 75px !important;
|
|
376
|
+
}
|
|
377
|
+
.e-bigger .e-gantt-dialog .e-dlg-header-content {
|
|
378
|
+
border-bottom: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
379
|
+
}
|
|
380
|
+
.e-bigger .e-gantt-dialog > .e-dlg-content {
|
|
381
|
+
border-radius: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
382
|
+
}
|
|
383
|
+
.e-bigger .e-gantt-dialog .e-dlg-header-content {
|
|
384
|
+
border-radius: 6px 6px 0px 0px;
|
|
385
|
+
padding-bottom: 12px;
|
|
386
|
+
}
|
|
387
|
+
.e-bigger .e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
388
|
+
border-radius: 50%;
|
|
389
|
+
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
390
|
+
width: auto;
|
|
391
|
+
}
|
|
392
|
+
.e-bigger .e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
393
|
+
margin-left: 12px !important;
|
|
394
|
+
}
|
|
395
|
+
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
396
|
+
font-size: 16px !important; /* stylelint-disable-line declaration-no-important */
|
|
397
|
+
}
|
|
398
|
+
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
399
|
+
min-height: 18px !important;
|
|
400
|
+
min-width: 35.82px !important; /* stylelint-disable-line declaration-no-important */
|
|
401
|
+
}
|
|
402
|
+
.e-bigger .e-gantt-dialog .e-btn.e-flat {
|
|
403
|
+
line-height: 24px;
|
|
404
|
+
padding: 6px 16px 6px 15px !important; /* stylelint-disable-line declaration-no-important */
|
|
405
|
+
}
|
|
406
|
+
.e-bigger .e-gantt-dialog .e-btn.e-primary {
|
|
407
|
+
padding: 6px 21px 6px 23px !important; /* stylelint-disable-line declaration-no-important */
|
|
408
|
+
}
|
|
409
|
+
.e-bigger .e-gantt-dialog .e-datetime-wrapper .e-time-icon.e-icons::before {
|
|
410
|
+
font-size: 16px !important; /* stylelint-disable-line declaration-no-important */
|
|
411
|
+
}
|
|
412
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text {
|
|
413
|
+
font-size: 14px;
|
|
414
|
+
line-height: 22px;
|
|
415
|
+
}
|
|
416
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input[disabled] ~ label.e-label-top.e-float-text {
|
|
417
|
+
font-size: 14px;
|
|
418
|
+
line-height: 22px;
|
|
419
|
+
}
|
|
420
|
+
.e-bigger .e-gantt-dialog .e-float-input.e-control-wrapper input {
|
|
421
|
+
height: 36px !important;
|
|
422
|
+
}
|
|
423
|
+
.e-bigger .e-gantt-dialog .e-numeric.e-control-wrapper.e-input-group .e-input-group-icon {
|
|
424
|
+
min-height: 18px !important;
|
|
425
|
+
min-width: 35.82px !important; /* stylelint-disable-line declaration-no-important */
|
|
426
|
+
}
|
|
427
|
+
.e-bigger .e-gantt-dialog .e-control-wrapper .e-input-group-icon.e-time-icon {
|
|
428
|
+
min-height: 18px !important;
|
|
429
|
+
min-width: 35.82px !important; /* stylelint-disable-line declaration-no-important */
|
|
430
|
+
}
|
|
431
|
+
.e-bigger .e-gantt-dialog .e-input-group.e-control-wrapper {
|
|
432
|
+
height: 38px;
|
|
433
|
+
}
|
|
434
|
+
.e-bigger .e-gantt-dialog .e-input-group-icon.e-date-icon {
|
|
435
|
+
min-width: 36px !important; /* stylelint-disable-line declaration-no-important */
|
|
436
|
+
}
|
|
437
|
+
.e-bigger .e-gantt-dialog .e-input-group.e-control-wrapper .e-input-group-icon {
|
|
438
|
+
padding: 7px 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
439
|
+
}
|
|
440
|
+
.e-bigger .e-predecessor-tooltip .e-arrow-tip-outer.e-tip-bottom {
|
|
441
|
+
border-top: 8px solid #000;
|
|
442
|
+
}
|
|
443
|
+
.e-bigger .e-predecessor-tooltip .e-arrow-tip-inner.e-tip-bottom {
|
|
444
|
+
color: #000;
|
|
445
|
+
}
|
|
446
|
+
.e-bigger .e-predecessor-tooltip .e-left-btn:disabled {
|
|
447
|
+
color: #9ca3af !important;
|
|
448
|
+
}
|
|
449
|
+
.e-bigger .e-predecessor-tooltip .e-right-btn:disabled {
|
|
450
|
+
color: #9ca3af !important;
|
|
451
|
+
}
|
|
452
|
+
.e-bigger .e-predecessor-tooltip .e-tip-content {
|
|
453
|
+
padding: 3px !important; /* stylelint-disable-line declaration-no-important */
|
|
454
|
+
}
|
|
455
|
+
.e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type {
|
|
456
|
+
background-color: #000;
|
|
457
|
+
border-color: #000;
|
|
458
|
+
color: #fff;
|
|
459
|
+
font-size: 12px;
|
|
460
|
+
line-height: 18px;
|
|
461
|
+
padding: 0 8px 0 0;
|
|
462
|
+
}
|
|
463
|
+
.e-bigger .e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:last-of-type {
|
|
464
|
+
background-color: #000;
|
|
465
|
+
border-color: #000;
|
|
466
|
+
color: #fff;
|
|
467
|
+
font-size: 12px;
|
|
468
|
+
line-height: 18px;
|
|
469
|
+
padding: 0 0 0 8px;
|
|
470
|
+
}
|
|
471
|
+
.e-bigger .e-predecessor-dialog {
|
|
472
|
+
background-color: #f9fafb;
|
|
473
|
+
}
|
|
474
|
+
.e-bigger .e-predecessor-dialog .e-dlg-content {
|
|
475
|
+
background-color: #f9fafb;
|
|
476
|
+
padding: 10px 9px 9px 14px !important;
|
|
477
|
+
font-size: 12px;
|
|
478
|
+
font-weight: 400;
|
|
479
|
+
line-height: 1.8;
|
|
331
480
|
}
|
|
332
481
|
|
|
333
482
|
.e-gantt {
|
|
334
483
|
display: block;
|
|
335
484
|
width: 100%;
|
|
336
485
|
}
|
|
337
|
-
|
|
338
486
|
.e-gantt .e-cloneproperties {
|
|
339
487
|
padding: 4px 5px;
|
|
340
488
|
}
|
|
341
|
-
|
|
342
489
|
.e-gantt .e-cloneproperties.e-draganddrop .e-row .e-icon-rowdragicon::before {
|
|
343
490
|
left: -5px;
|
|
344
491
|
position: relative;
|
|
345
492
|
}
|
|
346
|
-
|
|
347
493
|
.e-gantt .e-cloneproperties {
|
|
348
494
|
border-style: solid;
|
|
349
495
|
border-width: 1px;
|
|
@@ -361,127 +507,101 @@
|
|
|
361
507
|
white-space: nowrap;
|
|
362
508
|
z-index: 100;
|
|
363
509
|
}
|
|
364
|
-
|
|
365
510
|
.e-gantt .e-cloneproperties.e-draganddrop {
|
|
366
511
|
border-spacing: 0;
|
|
367
512
|
font-size: 14px;
|
|
368
513
|
font-weight: normal;
|
|
369
514
|
overflow: visible;
|
|
370
515
|
}
|
|
371
|
-
|
|
372
516
|
.e-gantt .e-cloneproperties .e-bothganttlines {
|
|
373
517
|
border-width: 1px 0 0 1px;
|
|
374
518
|
}
|
|
375
|
-
|
|
376
519
|
.e-gantt .e-draganddrop {
|
|
377
520
|
border-width: 0 1px 1px;
|
|
378
521
|
font-weight: normal;
|
|
379
522
|
padding: 0;
|
|
380
523
|
}
|
|
381
|
-
|
|
382
524
|
.e-gantt .e-draganddrop .e-rowcell {
|
|
383
|
-
opacity: .95;
|
|
525
|
+
opacity: 0.95;
|
|
384
526
|
}
|
|
385
|
-
|
|
386
527
|
.e-gantt .e-cloneproperties.e-draganddrop table {
|
|
387
528
|
border-spacing: 0;
|
|
388
529
|
}
|
|
389
|
-
|
|
390
530
|
.e-gantt .e-icons.e-errorelem {
|
|
391
531
|
display: inline-block;
|
|
392
532
|
padding-left: 10px;
|
|
393
533
|
vertical-align: middle;
|
|
394
534
|
}
|
|
395
|
-
|
|
396
535
|
.e-gantt .e-errorelem::before {
|
|
397
536
|
color: #dc2626;
|
|
398
|
-
content:
|
|
537
|
+
content: "\e22a";
|
|
399
538
|
transform: rotate(180deg);
|
|
400
539
|
}
|
|
401
|
-
|
|
402
|
-
.e-gantt .e-verticallines .e-cloneproperties.e-draganddrop .e-rowdragdrop,
|
|
403
|
-
.e-gantt .e-bothlines .e-cloneproperties.e-draganddrop .e-rowdragdrop {
|
|
540
|
+
.e-gantt .e-verticallines .e-cloneproperties.e-draganddrop .e-rowdragdrop, .e-gantt .e-bothlines .e-cloneproperties.e-draganddrop .e-rowdragdrop {
|
|
404
541
|
border-bottom: 0;
|
|
405
542
|
border-right: 1px solid #d1d5db;
|
|
406
543
|
border-top: 1px solid #d1d5db;
|
|
407
544
|
}
|
|
408
|
-
|
|
409
545
|
.e-gantt .e-gantt-toolbar {
|
|
410
546
|
border-bottom-left-radius: 0;
|
|
411
547
|
border-bottom-right-radius: 0;
|
|
412
548
|
border-style: solid;
|
|
413
549
|
border-width: 1px 1px 0;
|
|
414
550
|
}
|
|
415
|
-
|
|
416
551
|
.e-gantt .e-flmenu-valuediv {
|
|
417
552
|
padding-top: 18px;
|
|
418
553
|
}
|
|
419
|
-
|
|
420
554
|
.e-gantt .e-gantt-splitter .e-split-bar.e-split-bar-horizontal.e-resizable-split-bar {
|
|
421
555
|
margin: 0;
|
|
422
556
|
}
|
|
423
|
-
|
|
424
557
|
.e-gantt .e-gantt-splitter .e-pane {
|
|
425
|
-
overflow: hidden !important;
|
|
558
|
+
overflow: hidden !important; /* stylelint-disable-line declaration-no-important */
|
|
426
559
|
}
|
|
427
|
-
|
|
428
560
|
.e-gantt .e-temp-content {
|
|
429
561
|
border-left: 1px solid;
|
|
430
562
|
}
|
|
431
|
-
|
|
432
563
|
.e-gantt .e-tab {
|
|
433
564
|
border: 0;
|
|
434
565
|
}
|
|
435
|
-
|
|
436
566
|
.e-gantt .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
437
567
|
border-color: transparent;
|
|
438
568
|
}
|
|
439
|
-
|
|
440
569
|
.e-gantt .e-gantt-tree-grid-pane .e-grid {
|
|
441
570
|
border-width: 0;
|
|
442
571
|
}
|
|
443
|
-
|
|
444
|
-
.e-gantt .e-gantt-tree-grid-pane .e-grid.e-gridhover tr[role=
|
|
445
|
-
.e-gantt .e-gantt-tree-grid-pane .e-grid.e-gridhover tr[role=
|
|
446
|
-
.e-gantt .e-gantt-tree-grid-pane .e-grid.e-gridhover tr[role=
|
|
447
|
-
.e-gantt .e-gantt-tree-grid-pane .e-grid.e-
|
|
448
|
-
.e-gantt .e-gantt-tree-grid-pane .e-grid.e-gridhover tr[role='row']:hover .e-detailrowexpand:not(.e-cellselectionbackground):not(.e-active):not(.e-updatedtd):not(.e-indentcell) {
|
|
572
|
+
.e-gantt .e-gantt-tree-grid-pane .e-grid.e-gridhover tr[role=row]:not(.e-editedrow):hover .e-rowcell:not(.e-cellselectionbackground):not(.e-active):not(.e-updatedtd):not(.e-indentcell),
|
|
573
|
+
.e-gantt .e-gantt-tree-grid-pane .e-grid.e-gridhover tr[role=row]:hover .e-detailrowcollapse:not(.e-cellselectionbackground):not(.e-active):not(.e-updatedtd):not(.e-indentcell),
|
|
574
|
+
.e-gantt .e-gantt-tree-grid-pane .e-grid.e-gridhover tr[role=row]:hover .e-rowdragdrop:not(.e-cellselectionbackground):not(.e-active):not(.e-updatedtd):not(.e-indentcell),
|
|
575
|
+
.e-gantt .e-gantt-tree-grid-pane .e-grid.e-rtl .e-gridhover tr[role=row]:hover .e-rowdragdrop:not(.e-cellselectionbackground):not(.e-active):not(.e-updatedtd):not(.e-indentcell),
|
|
576
|
+
.e-gantt .e-gantt-tree-grid-pane .e-grid.e-gridhover tr[role=row]:hover .e-detailrowexpand:not(.e-cellselectionbackground):not(.e-active):not(.e-updatedtd):not(.e-indentcell) {
|
|
449
577
|
background-color: transparent;
|
|
450
578
|
}
|
|
451
|
-
|
|
452
579
|
.e-gantt .e-gantt-tree-grid-pane .e-gantt-temp-header {
|
|
453
580
|
border-bottom-style: solid;
|
|
454
581
|
border-bottom-width: 1px;
|
|
455
582
|
height: 45px;
|
|
456
583
|
}
|
|
457
|
-
|
|
458
584
|
.e-gantt .e-gantt-tree-grid-pane .e-headercontent {
|
|
459
|
-
border-right-width: 0 !important;
|
|
585
|
+
border-right-width: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
460
586
|
}
|
|
461
|
-
|
|
462
587
|
.e-gantt .e-gantt-tree-grid-pane .e-gridheader {
|
|
463
588
|
border-top-style: none;
|
|
464
589
|
border-top-width: 0;
|
|
465
|
-
padding-right: 0 !important;
|
|
590
|
+
padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
466
591
|
}
|
|
467
|
-
|
|
468
592
|
.e-gantt .e-gantt-tree-grid-pane .e-columnheader,
|
|
469
593
|
.e-gantt .e-gantt-tree-grid-pane .e-headercell {
|
|
470
|
-
height: 48px !important;
|
|
594
|
+
height: 48px !important; /* stylelint-disable-line declaration-no-important */
|
|
471
595
|
}
|
|
472
|
-
|
|
473
596
|
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content {
|
|
474
|
-
overflow-x: scroll !important;
|
|
597
|
+
overflow-x: scroll !important; /* stylelint-disable-line declaration-no-important */
|
|
475
598
|
}
|
|
476
|
-
|
|
477
599
|
.e-gantt .e-gantt-tree-grid-pane .e-gridcontent .e-content.e-gantt-scroll-padding {
|
|
478
600
|
width: calc(100% + 17px);
|
|
479
601
|
}
|
|
480
|
-
|
|
481
602
|
.e-gantt .e-gantt-tree-grid-pane .e-ganttnotes-info {
|
|
482
603
|
text-align: center;
|
|
483
604
|
}
|
|
484
|
-
|
|
485
605
|
.e-gantt .e-gantt-tree-grid-pane .e-icons.e-notes-info {
|
|
486
606
|
display: inline-block;
|
|
487
607
|
font-size: 18px;
|
|
@@ -489,54 +609,45 @@
|
|
|
489
609
|
line-height: 10px;
|
|
490
610
|
vertical-align: middle;
|
|
491
611
|
}
|
|
492
|
-
|
|
493
612
|
.e-gantt .e-gantt-chart {
|
|
494
613
|
height: 100%;
|
|
495
614
|
overflow: hidden;
|
|
496
615
|
position: relative;
|
|
497
616
|
width: 100%;
|
|
498
617
|
}
|
|
499
|
-
|
|
500
618
|
.e-gantt .e-gantt-chart .e-chart-root-container {
|
|
501
619
|
border-right: 0 solid;
|
|
502
620
|
}
|
|
503
|
-
|
|
504
621
|
.e-gantt .e-gantt-chart .e-chart-root-container .e-content {
|
|
505
|
-
-webkit-overflow-scrolling: touch;
|
|
622
|
+
-webkit-overflow-scrolling: touch; /* stylelint-disable-line property-no-vendor-prefix */
|
|
506
623
|
overflow-x: scroll;
|
|
507
624
|
overflow-y: auto;
|
|
508
625
|
position: relative;
|
|
509
626
|
}
|
|
510
|
-
|
|
511
627
|
.e-gantt .e-gantt-chart .e-chart-root-container .e-nonworking-day-container {
|
|
512
628
|
position: absolute;
|
|
513
629
|
}
|
|
514
|
-
|
|
515
630
|
.e-gantt .e-gantt-chart .e-chart-root-container .e-event-markers-container {
|
|
516
631
|
position: absolute;
|
|
517
632
|
}
|
|
518
|
-
|
|
519
633
|
.e-gantt .e-gantt-chart .e-chart-root-container .e-holiday-container {
|
|
634
|
+
height: 100%;
|
|
520
635
|
position: absolute;
|
|
521
636
|
}
|
|
522
|
-
|
|
523
637
|
.e-gantt .e-gantt-chart .e-chart-root-container .e-weekend-container {
|
|
638
|
+
height: 100%;
|
|
524
639
|
position: absolute;
|
|
525
640
|
}
|
|
526
|
-
|
|
527
641
|
.e-gantt .e-gantt-chart .e-timeline-header-container {
|
|
528
642
|
border-bottom-style: solid;
|
|
529
|
-
border-right
|
|
643
|
+
border-right: 1px solid;
|
|
530
644
|
overflow: hidden;
|
|
531
645
|
position: relative;
|
|
532
646
|
z-index: 6;
|
|
533
647
|
}
|
|
534
|
-
|
|
535
648
|
.e-gantt .e-gantt-chart .e-timeline-header-table-container > thead > tr > th {
|
|
536
649
|
border-left: 0;
|
|
537
|
-
padding: 0 3px;
|
|
538
650
|
}
|
|
539
|
-
|
|
540
651
|
.e-gantt .e-gantt-chart .e-timeline-header-table-container {
|
|
541
652
|
border-collapse: collapse;
|
|
542
653
|
border-spacing: 0;
|
|
@@ -545,7 +656,6 @@
|
|
|
545
656
|
margin: 0;
|
|
546
657
|
padding: 0;
|
|
547
658
|
}
|
|
548
|
-
|
|
549
659
|
.e-gantt .e-gantt-chart .e-timeline-header-table-body {
|
|
550
660
|
border-collapse: collapse;
|
|
551
661
|
box-sizing: border-box;
|
|
@@ -553,12 +663,10 @@
|
|
|
553
663
|
transform: scale(1);
|
|
554
664
|
white-space: nowrap;
|
|
555
665
|
}
|
|
556
|
-
|
|
557
666
|
.e-gantt .e-gantt-chart .e-timeline-header-table-body > tr {
|
|
558
667
|
display: -ms-inline-flexbox;
|
|
559
668
|
display: inline-flex;
|
|
560
669
|
}
|
|
561
|
-
|
|
562
670
|
.e-gantt .e-gantt-chart .e-timeline-top-header-cell,
|
|
563
671
|
.e-gantt .e-gantt-chart .e-timeline-single-header-cell {
|
|
564
672
|
border-spacing: 0;
|
|
@@ -579,7 +687,6 @@
|
|
|
579
687
|
user-select: none;
|
|
580
688
|
white-space: nowrap;
|
|
581
689
|
}
|
|
582
|
-
|
|
583
690
|
.e-gantt .e-gantt-chart .e-timeline-top-header-cell .e-header-cell-label,
|
|
584
691
|
.e-gantt .e-gantt-chart .e-timeline-single-header-cell .e-header-cell-label {
|
|
585
692
|
box-sizing: border-box;
|
|
@@ -589,13 +696,11 @@
|
|
|
589
696
|
text-overflow: ellipsis;
|
|
590
697
|
white-space: nowrap;
|
|
591
698
|
}
|
|
592
|
-
|
|
593
699
|
.e-gantt .e-gantt-chart .e-timeline-top-header-cell .e-gantt-top-cell-text,
|
|
594
700
|
.e-gantt .e-gantt-chart .e-timeline-single-header-cell .e-gantt-top-cell-text {
|
|
595
|
-
padding-left:
|
|
701
|
+
padding-left: 11px;
|
|
596
702
|
text-align: left;
|
|
597
703
|
}
|
|
598
|
-
|
|
599
704
|
.e-gantt .e-gantt-chart .e-gantt-grid-lines {
|
|
600
705
|
border-bottom-style: solid;
|
|
601
706
|
border-bottom-width: 1px;
|
|
@@ -603,41 +708,33 @@
|
|
|
603
708
|
border-spacing: 0;
|
|
604
709
|
box-sizing: border-box;
|
|
605
710
|
}
|
|
606
|
-
|
|
607
711
|
.e-gantt .e-gantt-chart .e-zero-spacing {
|
|
608
712
|
border-spacing: 0;
|
|
609
713
|
}
|
|
610
|
-
|
|
611
714
|
.e-gantt .e-gantt-chart .e-chart-row:first-child .e-chart-row-border {
|
|
612
715
|
border-top-color: transparent;
|
|
613
716
|
}
|
|
614
|
-
|
|
615
717
|
.e-gantt .e-gantt-chart .e-chart-row {
|
|
616
718
|
line-height: normal;
|
|
617
719
|
}
|
|
618
|
-
|
|
619
720
|
.e-gantt .e-gantt-chart .e-chart-row .e-chart-row-border {
|
|
620
721
|
border-collapse: separate;
|
|
621
722
|
border-style: solid;
|
|
622
723
|
border-width: 1px 0 0;
|
|
623
724
|
}
|
|
624
|
-
|
|
625
725
|
.e-gantt .e-gantt-chart .e-chart-row .e-chart-row-cell {
|
|
626
726
|
font-size: 0;
|
|
627
727
|
padding: 0;
|
|
628
728
|
}
|
|
629
|
-
|
|
630
729
|
.e-gantt .e-gantt-chart .e-chart-row .e-chart-row-border.e-lastrow {
|
|
631
730
|
border-bottom-width: 1px;
|
|
632
731
|
}
|
|
633
|
-
|
|
634
732
|
.e-gantt .e-gantt-chart .e-line-container-cell {
|
|
635
733
|
border-right-style: solid;
|
|
636
734
|
border-right-width: 1px;
|
|
637
735
|
height: 100%;
|
|
638
736
|
position: absolute;
|
|
639
737
|
}
|
|
640
|
-
|
|
641
738
|
.e-gantt .e-gantt-chart .e-taskbar-main-container {
|
|
642
739
|
cursor: move;
|
|
643
740
|
display: inline-block;
|
|
@@ -645,7 +742,6 @@
|
|
|
645
742
|
vertical-align: middle;
|
|
646
743
|
z-index: 3;
|
|
647
744
|
}
|
|
648
|
-
|
|
649
745
|
.e-gantt .e-gantt-chart .e-left-label-container.e-left-label-temp-container {
|
|
650
746
|
-ms-flex-align: center;
|
|
651
747
|
align-items: center;
|
|
@@ -657,7 +753,6 @@
|
|
|
657
753
|
text-overflow: ellipsis;
|
|
658
754
|
white-space: nowrap;
|
|
659
755
|
}
|
|
660
|
-
|
|
661
756
|
.e-gantt .e-gantt-chart .e-right-label-container.e-right-label-temp-container {
|
|
662
757
|
-ms-flex-align: center;
|
|
663
758
|
align-items: center;
|
|
@@ -670,16 +765,13 @@
|
|
|
670
765
|
text-overflow: ellipsis;
|
|
671
766
|
white-space: nowrap;
|
|
672
767
|
}
|
|
673
|
-
|
|
674
768
|
.e-gantt .e-gantt-chart .e-left-label-container {
|
|
675
769
|
display: inline-block;
|
|
676
770
|
}
|
|
677
|
-
|
|
678
771
|
.e-gantt .e-gantt-chart .e-left-label-inner-div,
|
|
679
772
|
.e-gantt .e-gantt-chart .e-right-label-container {
|
|
680
773
|
overflow: hidden;
|
|
681
774
|
}
|
|
682
|
-
|
|
683
775
|
.e-gantt .e-gantt-chart .e-left-label-inner-div {
|
|
684
776
|
-ms-flex-align: center;
|
|
685
777
|
align-items: center;
|
|
@@ -689,21 +781,18 @@
|
|
|
689
781
|
justify-content: flex-end;
|
|
690
782
|
width: 100%;
|
|
691
783
|
}
|
|
692
|
-
|
|
693
784
|
.e-gantt .e-gantt-chart .e-label {
|
|
694
785
|
margin: 3px;
|
|
695
786
|
overflow: hidden;
|
|
696
787
|
text-overflow: ellipsis;
|
|
697
788
|
white-space: nowrap;
|
|
698
789
|
}
|
|
699
|
-
|
|
700
790
|
.e-gantt .e-gantt-chart .e-right-label-container {
|
|
701
791
|
background-color: transparent;
|
|
702
792
|
display: inline-block;
|
|
703
793
|
margin: 0;
|
|
704
794
|
position: absolute;
|
|
705
795
|
}
|
|
706
|
-
|
|
707
796
|
.e-gantt .e-gantt-chart .e-right-label-inner-div {
|
|
708
797
|
-ms-flex-align: center;
|
|
709
798
|
align-items: center;
|
|
@@ -713,16 +802,14 @@
|
|
|
713
802
|
outline: none;
|
|
714
803
|
overflow: hidden;
|
|
715
804
|
}
|
|
716
|
-
|
|
717
805
|
.e-gantt .e-gantt-chart .e-indicator-span {
|
|
718
806
|
display: inline-block;
|
|
719
807
|
font-size: 13px;
|
|
720
|
-
font-weight:
|
|
808
|
+
font-weight: normal;
|
|
721
809
|
overflow: hidden;
|
|
722
810
|
position: absolute;
|
|
723
811
|
text-overflow: ellipsis;
|
|
724
812
|
}
|
|
725
|
-
|
|
726
813
|
.e-gantt .e-gantt-chart .e-gantt-child-taskbar,
|
|
727
814
|
.e-gantt .e-gantt-chart .e-gantt-parent-taskbar,
|
|
728
815
|
.e-gantt .e-gantt-chart .e-gantt-child-progressbar,
|
|
@@ -733,18 +820,15 @@
|
|
|
733
820
|
display: inline-block;
|
|
734
821
|
width: 100%;
|
|
735
822
|
}
|
|
736
|
-
|
|
737
823
|
.e-gantt .e-gantt-chart .e-manualparent-main-container {
|
|
738
824
|
background-color: transparent;
|
|
739
825
|
cursor: move;
|
|
740
826
|
margin-top: -5px;
|
|
741
827
|
position: absolute;
|
|
742
828
|
}
|
|
743
|
-
|
|
744
829
|
.e-gantt .e-gantt-chart .e-gantt-manualparent-taskbar {
|
|
745
830
|
margin-top: 3px;
|
|
746
831
|
}
|
|
747
|
-
|
|
748
832
|
.e-gantt .e-gantt-chart .e-gantt-split-container-line {
|
|
749
833
|
border-color: inherit;
|
|
750
834
|
border-top-style: dotted;
|
|
@@ -756,7 +840,6 @@
|
|
|
756
840
|
top: 50%;
|
|
757
841
|
width: 98%;
|
|
758
842
|
}
|
|
759
|
-
|
|
760
843
|
.e-gantt .e-gantt-chart .e-gantt-child-taskbar-inner-div,
|
|
761
844
|
.e-gantt .e-gantt-chart .e-gantt-parent-taskbar-inner-div {
|
|
762
845
|
border-spacing: 0;
|
|
@@ -766,28 +849,23 @@
|
|
|
766
849
|
padding: 0;
|
|
767
850
|
z-index: 3;
|
|
768
851
|
}
|
|
769
|
-
|
|
770
852
|
.e-gantt .e-gantt-chart .e-gantt-parent-progressbar-inner-div {
|
|
771
853
|
z-index: 3;
|
|
772
854
|
}
|
|
773
|
-
|
|
774
855
|
.e-gantt .e-gantt-chart .e-gantt-child-progressbar-inner-div,
|
|
775
856
|
.e-gantt .e-gantt-chart .e-gantt-parent-progressbar-inner-div {
|
|
776
857
|
box-sizing: border-box;
|
|
777
858
|
text-align: right;
|
|
778
859
|
}
|
|
779
|
-
|
|
780
860
|
.e-gantt .e-gantt-chart .e-chart-scroll-container,
|
|
781
861
|
.e-gantt .e-gantt-chart .e-chart-rows-container {
|
|
782
862
|
-webkit-user-select: none;
|
|
783
863
|
-ms-user-select: none;
|
|
784
864
|
user-select: none;
|
|
785
865
|
}
|
|
786
|
-
|
|
787
866
|
.e-gantt .e-gantt-chart .e-chart-rows-container {
|
|
788
867
|
line-height: initial;
|
|
789
868
|
}
|
|
790
|
-
|
|
791
869
|
.e-gantt .e-gantt-chart .e-taskbar-left-resizer,
|
|
792
870
|
.e-gantt .e-gantt-chart .e-taskbar-right-resizer {
|
|
793
871
|
display: inline-block;
|
|
@@ -796,7 +874,6 @@
|
|
|
796
874
|
width: 10px;
|
|
797
875
|
z-index: 4;
|
|
798
876
|
}
|
|
799
|
-
|
|
800
877
|
.e-gantt .e-gantt-chart .e-child-progress-resizer {
|
|
801
878
|
display: inline-block;
|
|
802
879
|
height: 15px;
|
|
@@ -805,61 +882,53 @@
|
|
|
805
882
|
width: 20px;
|
|
806
883
|
z-index: 5;
|
|
807
884
|
}
|
|
808
|
-
|
|
809
885
|
.e-gantt .e-gantt-chart .e-progress-resize-gripper {
|
|
810
886
|
cursor: col-resize;
|
|
811
887
|
}
|
|
812
|
-
|
|
813
888
|
.e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler {
|
|
814
|
-
border-style: solid;
|
|
815
889
|
border-width: 1px;
|
|
816
890
|
box-sizing: content-box;
|
|
817
891
|
cursor: col-resize;
|
|
818
892
|
height: 2px;
|
|
819
893
|
position: absolute;
|
|
820
894
|
top: 7px;
|
|
821
|
-
width: 12px;
|
|
822
895
|
}
|
|
823
|
-
|
|
824
896
|
.e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-element {
|
|
825
897
|
border-bottom-style: solid;
|
|
826
|
-
border-bottom-width:
|
|
898
|
+
border-bottom-width: 8px;
|
|
827
899
|
border-left: 7px solid transparent;
|
|
828
900
|
border-right: 7px solid transparent;
|
|
829
901
|
cursor: col-resize;
|
|
830
902
|
height: 0;
|
|
831
|
-
left:
|
|
903
|
+
left: 0;
|
|
832
904
|
position: absolute;
|
|
833
905
|
top: -7px;
|
|
834
906
|
width: 0;
|
|
835
907
|
}
|
|
836
|
-
|
|
837
908
|
.e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-after {
|
|
838
909
|
border-bottom-style: solid;
|
|
839
|
-
border-bottom-width:
|
|
910
|
+
border-bottom-width: 8px;
|
|
840
911
|
border-left: 6px solid transparent;
|
|
841
912
|
border-right: 6px solid transparent;
|
|
842
913
|
cursor: col-resize;
|
|
843
914
|
height: 0;
|
|
844
|
-
left:
|
|
915
|
+
left: 1px;
|
|
845
916
|
position: absolute;
|
|
846
|
-
top: -
|
|
917
|
+
top: -7px;
|
|
847
918
|
width: 0;
|
|
848
919
|
}
|
|
849
|
-
|
|
850
920
|
.e-gantt .e-gantt-chart .e-baseline-bar {
|
|
921
|
+
border-radius: 2px;
|
|
851
922
|
box-sizing: border-box;
|
|
852
923
|
position: absolute;
|
|
853
|
-
z-index:
|
|
924
|
+
z-index: 2;
|
|
854
925
|
}
|
|
855
|
-
|
|
856
926
|
.e-gantt .e-gantt-chart .e-milestone-top,
|
|
857
927
|
.e-gantt .e-gantt-chart .e-parent-milestone-top,
|
|
858
928
|
.e-gantt .e-gantt-chart .e-manualparent-milestone-top {
|
|
859
929
|
border-style: none solid solid;
|
|
860
930
|
border-top: 0;
|
|
861
931
|
}
|
|
862
|
-
|
|
863
932
|
.e-gantt .e-gantt-chart .e-milestone-top,
|
|
864
933
|
.e-gantt .e-gantt-chart .e-milestone-bottom,
|
|
865
934
|
.e-gantt .e-gantt-chart .e-parent-milestone-top,
|
|
@@ -869,19 +938,16 @@
|
|
|
869
938
|
border-left-color: transparent;
|
|
870
939
|
border-right-color: transparent;
|
|
871
940
|
}
|
|
872
|
-
|
|
873
941
|
.e-gantt .e-gantt-chart .e-milestone-bottom,
|
|
874
942
|
.e-gantt .e-gantt-chart .e-parent-milestone-bottom,
|
|
875
943
|
.e-gantt .e-gantt-chart .e-manualparent-milestone-bottom {
|
|
876
944
|
border-bottom: 0;
|
|
877
945
|
border-style: solid solid none;
|
|
878
946
|
}
|
|
879
|
-
|
|
880
947
|
.e-gantt .e-gantt-chart .e-baseline-gantt-milestone-container {
|
|
881
948
|
position: absolute;
|
|
882
949
|
z-index: 2;
|
|
883
950
|
}
|
|
884
|
-
|
|
885
951
|
.e-gantt .e-gantt-chart .e-task-label {
|
|
886
952
|
display: inline;
|
|
887
953
|
font-weight: normal;
|
|
@@ -892,11 +958,9 @@
|
|
|
892
958
|
vertical-align: middle;
|
|
893
959
|
white-space: nowrap;
|
|
894
960
|
}
|
|
895
|
-
|
|
896
961
|
.e-gantt .e-gantt-chart .e-task-table {
|
|
897
962
|
overflow: hidden;
|
|
898
963
|
}
|
|
899
|
-
|
|
900
964
|
.e-gantt .e-gantt-chart .e-left-resize-gripper,
|
|
901
965
|
.e-gantt .e-gantt-chart .e-right-resize-gripper {
|
|
902
966
|
-ms-flex-align: center;
|
|
@@ -905,45 +969,37 @@
|
|
|
905
969
|
display: -ms-inline-flexbox;
|
|
906
970
|
display: inline-flex;
|
|
907
971
|
}
|
|
908
|
-
|
|
909
972
|
.e-gantt .e-gantt-chart .e-holiday {
|
|
910
973
|
display: inline-block;
|
|
911
974
|
position: absolute;
|
|
912
975
|
}
|
|
913
|
-
|
|
914
976
|
.e-gantt .e-gantt-chart .e-holiday .e-span {
|
|
915
|
-
font-size: 13px;
|
|
916
977
|
position: absolute;
|
|
917
978
|
transform: rotate(-90deg);
|
|
918
979
|
white-space: nowrap;
|
|
919
980
|
width: 0;
|
|
920
981
|
}
|
|
921
|
-
|
|
922
982
|
.e-gantt .e-gantt-chart .e-weekend {
|
|
923
983
|
display: inline-block;
|
|
924
984
|
position: absolute;
|
|
925
985
|
z-index: 0;
|
|
926
986
|
}
|
|
927
|
-
|
|
928
987
|
.e-gantt .e-gantt-chart .e-rangecontainer .e-leftarc {
|
|
929
988
|
border-bottom-left-radius: 1px;
|
|
930
989
|
border-top-left-radius: 1px;
|
|
931
990
|
position: absolute;
|
|
932
991
|
}
|
|
933
|
-
|
|
934
992
|
.e-gantt .e-gantt-chart .e-rangecontainer .e-rightarc {
|
|
935
993
|
border-bottom-right-radius: 1px;
|
|
936
994
|
border-top-right-radius: 1px;
|
|
937
995
|
position: absolute;
|
|
938
996
|
}
|
|
939
|
-
|
|
940
997
|
.e-gantt .e-gantt-chart .e-event-markers {
|
|
941
998
|
border-left: 1px dashed;
|
|
942
999
|
position: absolute;
|
|
943
1000
|
width: 1px;
|
|
944
1001
|
z-index: 2;
|
|
945
1002
|
}
|
|
946
|
-
|
|
947
1003
|
.e-gantt .e-gantt-chart .e-event-markers .e-span-label {
|
|
948
1004
|
border-radius: 3px;
|
|
949
1005
|
font-weight: 500;
|
|
@@ -957,7 +1013,6 @@
|
|
|
957
1013
|
width: auto;
|
|
958
1014
|
z-index: 2;
|
|
959
1015
|
}
|
|
960
|
-
|
|
961
1016
|
.e-gantt .e-gantt-chart .e-event-markers .e-gantt-right-arrow {
|
|
962
1017
|
border-bottom: 5px solid transparent;
|
|
963
1018
|
border-right: 5px solid;
|
|
@@ -967,52 +1022,45 @@
|
|
|
967
1022
|
top: 58px;
|
|
968
1023
|
width: 0;
|
|
969
1024
|
}
|
|
970
|
-
|
|
971
1025
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar {
|
|
972
1026
|
border-radius: 0;
|
|
973
1027
|
border-style: none;
|
|
974
1028
|
display: inline-block;
|
|
975
1029
|
}
|
|
976
|
-
|
|
977
1030
|
.e-gantt .e-gantt-chart .e-connector-line-right-arrow {
|
|
978
1031
|
border-left-style: solid;
|
|
979
1032
|
border-left-width: 10px;
|
|
980
1033
|
}
|
|
981
|
-
|
|
982
1034
|
.e-gantt .e-gantt-chart .e-connector-line-left-arrow {
|
|
983
1035
|
border-right-style: solid;
|
|
984
1036
|
border-right-width: 10px;
|
|
985
1037
|
}
|
|
986
|
-
|
|
987
1038
|
.e-gantt .e-gantt-chart .e-connector-line-right-arrow,
|
|
988
1039
|
.e-gantt .e-gantt-chart .e-connector-line-left-arrow {
|
|
989
1040
|
border-bottom: 5px solid transparent;
|
|
990
1041
|
border-top: 5px solid transparent;
|
|
991
1042
|
}
|
|
992
|
-
|
|
993
1043
|
.e-gantt .e-gantt-chart .e-connector-line-container {
|
|
994
1044
|
z-index: 5;
|
|
995
1045
|
}
|
|
996
|
-
|
|
997
1046
|
.e-gantt .e-gantt-chart .e-connector-line-z-index {
|
|
998
1047
|
z-index: 1;
|
|
999
1048
|
}
|
|
1000
|
-
|
|
1001
1049
|
.e-gantt .e-gantt-chart .e-connector-line-hover {
|
|
1002
1050
|
outline: 1px solid;
|
|
1003
1051
|
}
|
|
1004
|
-
|
|
1052
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-hover {
|
|
1053
|
+
outline: 1px solid;
|
|
1054
|
+
}
|
|
1005
1055
|
.e-gantt .e-gantt-chart .e-connector-line-hover-z-index {
|
|
1006
1056
|
z-index: 100;
|
|
1007
1057
|
}
|
|
1008
|
-
|
|
1009
1058
|
.e-gantt .e-gantt-chart .e-connectortouchpoint {
|
|
1010
1059
|
background-color: transparent;
|
|
1011
1060
|
display: block;
|
|
1012
1061
|
position: absolute;
|
|
1013
1062
|
z-index: 5;
|
|
1014
1063
|
}
|
|
1015
|
-
|
|
1016
1064
|
.e-gantt .e-gantt-chart .e-connectorpoint-right,
|
|
1017
1065
|
.e-gantt .e-gantt-chart .e-connectorpoint-left,
|
|
1018
1066
|
.e-gantt .e-gantt-chart .e-right-connectorpoint-outer-div,
|
|
@@ -1021,7 +1069,6 @@
|
|
|
1021
1069
|
display: inline-block;
|
|
1022
1070
|
position: absolute;
|
|
1023
1071
|
}
|
|
1024
|
-
|
|
1025
1072
|
.e-gantt .e-gantt-chart .e-connectorpoint-left-hover,
|
|
1026
1073
|
.e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
|
|
1027
1074
|
border-style: solid;
|
|
@@ -1030,11 +1077,9 @@
|
|
|
1030
1077
|
cursor: pointer;
|
|
1031
1078
|
display: inline-block;
|
|
1032
1079
|
}
|
|
1033
|
-
|
|
1034
1080
|
.e-gantt .e-gantt-chart .e-connectorpoint-allow-block {
|
|
1035
1081
|
cursor: no-drop;
|
|
1036
1082
|
}
|
|
1037
|
-
|
|
1038
1083
|
.e-gantt .e-gantt-chart .e-gantt-manualparenttaskbar-left,
|
|
1039
1084
|
.e-gantt .e-gantt-chart .e-gantt-manualparenttaskbar-right {
|
|
1040
1085
|
background-color: #9ca3af;
|
|
@@ -1046,29 +1091,24 @@
|
|
|
1046
1091
|
position: absolute;
|
|
1047
1092
|
width: 10px;
|
|
1048
1093
|
}
|
|
1049
|
-
|
|
1050
1094
|
.e-gantt .e-gantt-chart .e-manualparent-milestone-top,
|
|
1051
1095
|
.e-gantt .e-gantt-chart .e-manualparent-milestone-bottom {
|
|
1052
1096
|
border-bottom-color: #9ca3af;
|
|
1053
1097
|
}
|
|
1054
|
-
|
|
1055
1098
|
.e-gantt .e-gantt-chart .e-gantt-manualparenttaskbar-right {
|
|
1056
1099
|
cursor: e-resize;
|
|
1057
1100
|
margin-left: -8px;
|
|
1058
1101
|
}
|
|
1059
|
-
|
|
1060
1102
|
.e-gantt .e-gantt-chart .e-gantt-manualparenttaskbar-left {
|
|
1061
1103
|
margin-left: 0;
|
|
1062
1104
|
}
|
|
1063
|
-
|
|
1064
1105
|
.e-gantt .e-gantt-chart .e-gantt-manualparenttaskbar {
|
|
1065
1106
|
background: #9ca3af;
|
|
1066
1107
|
margin-top: 3px;
|
|
1067
1108
|
position: absolute;
|
|
1068
1109
|
}
|
|
1069
|
-
|
|
1070
1110
|
.e-gantt .e-gantt-chart .e-icon {
|
|
1071
|
-
font-family:
|
|
1111
|
+
font-family: "e-icons";
|
|
1072
1112
|
font-size: 13px;
|
|
1073
1113
|
font-style: normal;
|
|
1074
1114
|
font-variant: normal;
|
|
@@ -1077,20 +1117,17 @@
|
|
|
1077
1117
|
text-transform: none;
|
|
1078
1118
|
vertical-align: middle;
|
|
1079
1119
|
}
|
|
1080
|
-
|
|
1081
1120
|
.e-gantt .e-gantt-chart .e-active-container {
|
|
1082
1121
|
outline: 1px solid;
|
|
1083
1122
|
outline-offset: 2px;
|
|
1084
1123
|
}
|
|
1085
1124
|
|
|
1086
1125
|
.e-gantt-dialog .e-tab .e-tab-header {
|
|
1087
|
-
padding-left:
|
|
1126
|
+
padding-left: 0px;
|
|
1088
1127
|
}
|
|
1089
|
-
|
|
1090
1128
|
.e-gantt-dialog .e-tab .e-tab-header .e-indicator {
|
|
1091
1129
|
display: block;
|
|
1092
1130
|
}
|
|
1093
|
-
|
|
1094
1131
|
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
1095
1132
|
border-style: solid;
|
|
1096
1133
|
border-width: 0px;
|
|
@@ -1103,120 +1140,100 @@
|
|
|
1103
1140
|
.e-gantt-dialog {
|
|
1104
1141
|
border: 0;
|
|
1105
1142
|
}
|
|
1106
|
-
|
|
1107
1143
|
.e-gantt-dialog .e-gridform .e-table {
|
|
1108
1144
|
border-spacing: 0;
|
|
1109
1145
|
}
|
|
1110
|
-
|
|
1111
1146
|
.e-gantt-dialog .e-item {
|
|
1112
1147
|
height: 240px;
|
|
1113
1148
|
}
|
|
1114
|
-
|
|
1115
1149
|
.e-gantt-dialog .e-dependent-div {
|
|
1116
1150
|
border-bottom-width: 1px;
|
|
1117
1151
|
}
|
|
1118
|
-
|
|
1119
1152
|
.e-gantt-dialog .e-icon-dlg-close {
|
|
1120
1153
|
opacity: initial;
|
|
1121
1154
|
}
|
|
1122
|
-
|
|
1123
1155
|
.e-gantt-dialog .e-toolbar {
|
|
1124
1156
|
border-top-width: 0;
|
|
1125
1157
|
}
|
|
1126
|
-
|
|
1127
1158
|
.e-gantt-dialog .e-resource-div {
|
|
1128
1159
|
border-bottom-width: 1px;
|
|
1129
1160
|
}
|
|
1130
|
-
|
|
1131
1161
|
.e-gantt-dialog .e-resource-div .e-gridheader {
|
|
1132
1162
|
border-top-width: 0;
|
|
1133
1163
|
}
|
|
1134
|
-
|
|
1135
1164
|
.e-gantt-dialog .e-edit-form-row {
|
|
1136
1165
|
height: 240px;
|
|
1137
1166
|
overflow-y: auto;
|
|
1138
1167
|
}
|
|
1139
|
-
|
|
1140
1168
|
.e-gantt-dialog .e-edit-form-column:nth-child(odd) {
|
|
1141
1169
|
float: left;
|
|
1142
1170
|
padding: 12px 12px 0 19px;
|
|
1143
1171
|
width: 50%;
|
|
1144
1172
|
}
|
|
1145
|
-
|
|
1146
1173
|
.e-gantt-dialog .e-edit-form-column:nth-child(even) {
|
|
1147
1174
|
float: left;
|
|
1148
1175
|
padding: 12px 19px 0 0;
|
|
1149
1176
|
width: 50%;
|
|
1150
1177
|
}
|
|
1151
|
-
|
|
1152
1178
|
.e-gantt-dialog .e-edit-form-row.e-scroll .e-edit-form-column:nth-child(even) {
|
|
1153
1179
|
padding: 12px 15px 0 0;
|
|
1154
1180
|
}
|
|
1155
|
-
|
|
1156
1181
|
.e-gantt-dialog .e-edit-form-column {
|
|
1157
1182
|
height: 75px;
|
|
1158
1183
|
}
|
|
1159
|
-
|
|
1160
1184
|
.e-gantt-dialog .e-dependent-div .e-content {
|
|
1161
1185
|
height: 157px;
|
|
1162
1186
|
}
|
|
1163
|
-
|
|
1164
1187
|
.e-gantt-dialog .e-resource-div .e-content {
|
|
1165
1188
|
height: 200px;
|
|
1166
1189
|
}
|
|
1167
|
-
|
|
1168
1190
|
.e-gantt-dialog .e-richtexteditor {
|
|
1169
1191
|
border-bottom-width: 1px;
|
|
1170
|
-
height: 259px !important;
|
|
1192
|
+
height: 259px !important; /* stylelint-disable-line declaration-no-important */
|
|
1171
1193
|
overflow: hidden;
|
|
1172
1194
|
}
|
|
1173
|
-
|
|
1174
1195
|
.e-gantt-dialog .e-richtexteditor.e-rte-tb-expand {
|
|
1175
1196
|
border-top: 0;
|
|
1176
1197
|
}
|
|
1177
|
-
|
|
1178
1198
|
.e-gantt-dialog .e-richtexteditor .e-rte-content {
|
|
1179
1199
|
border-bottom-width: 0px;
|
|
1180
1200
|
height: 210px;
|
|
1201
|
+
overflow: hidden;
|
|
1181
1202
|
}
|
|
1182
|
-
|
|
1183
1203
|
.e-gantt-dialog > .e-dlg-content {
|
|
1184
|
-
padding: 0 !important;
|
|
1204
|
+
padding: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
1185
1205
|
height: 291px;
|
|
1186
1206
|
}
|
|
1187
|
-
|
|
1188
1207
|
.e-gantt-dialog .e-dlg-header-content {
|
|
1189
|
-
border-bottom: 0 !important;
|
|
1208
|
+
border-bottom: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
1190
1209
|
}
|
|
1191
|
-
|
|
1192
1210
|
.e-gantt-dialog .e-dlg-header-content {
|
|
1193
1211
|
border-radius: 6px;
|
|
1194
1212
|
padding-bottom: 12px;
|
|
1195
1213
|
}
|
|
1196
|
-
|
|
1197
1214
|
.e-gantt-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
|
|
1198
1215
|
border-radius: 50%;
|
|
1216
|
+
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
1217
|
+
width: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
1199
1218
|
}
|
|
1200
1219
|
|
|
1201
1220
|
.e-icon-rowselect::before {
|
|
1202
|
-
content:
|
|
1221
|
+
content: "\e930";
|
|
1203
1222
|
}
|
|
1204
1223
|
|
|
1205
1224
|
.e-ganttpopup {
|
|
1206
|
-
-moz-user-select: none;
|
|
1207
|
-
-ms-user-select: none;
|
|
1208
|
-
-webkit-user-select: none;
|
|
1225
|
+
-moz-user-select: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
1226
|
+
-ms-user-select: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
1227
|
+
-webkit-user-select: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
1209
1228
|
font-weight: normal;
|
|
1210
1229
|
position: absolute;
|
|
1211
1230
|
user-select: none;
|
|
1212
1231
|
z-index: 99999;
|
|
1213
1232
|
}
|
|
1214
|
-
|
|
1215
1233
|
.e-ganttpopup .e-rowselect {
|
|
1216
1234
|
line-height: 18px;
|
|
1217
1235
|
text-indent: 7%;
|
|
1218
1236
|
}
|
|
1219
|
-
|
|
1220
1237
|
.e-ganttpopup span {
|
|
1221
1238
|
border: 1px solid transparent;
|
|
1222
1239
|
cursor: pointer;
|
|
@@ -1225,7 +1242,6 @@
|
|
|
1225
1242
|
padding: 4px;
|
|
1226
1243
|
width: 26px;
|
|
1227
1244
|
}
|
|
1228
|
-
|
|
1229
1245
|
.e-ganttpopup .e-content {
|
|
1230
1246
|
border-radius: 4px;
|
|
1231
1247
|
border-style: solid;
|
|
@@ -1233,18 +1249,16 @@
|
|
|
1233
1249
|
font-size: 14px;
|
|
1234
1250
|
padding: 4px;
|
|
1235
1251
|
}
|
|
1236
|
-
|
|
1237
1252
|
.e-ganttpopup .e-tail::after,
|
|
1238
1253
|
.e-ganttpopup .e-tail::before,
|
|
1239
1254
|
.e-ganttpopup .e-ganttpopup {
|
|
1240
1255
|
border: 10px solid transparent;
|
|
1241
|
-
content:
|
|
1256
|
+
content: "";
|
|
1242
1257
|
height: 0;
|
|
1243
1258
|
left: 8px;
|
|
1244
1259
|
position: absolute;
|
|
1245
1260
|
width: 0;
|
|
1246
1261
|
}
|
|
1247
|
-
|
|
1248
1262
|
.e-ganttpopup .e-downtail::after {
|
|
1249
1263
|
top: 34px;
|
|
1250
1264
|
}
|
|
@@ -1258,7 +1272,7 @@
|
|
|
1258
1272
|
}
|
|
1259
1273
|
|
|
1260
1274
|
.e-gantt .e-cloneproperties.e-draganddrop .e-row .e-rowcell .e-treecolumn-container .e-icons.e-none::before {
|
|
1261
|
-
content:
|
|
1275
|
+
content: "";
|
|
1262
1276
|
}
|
|
1263
1277
|
|
|
1264
1278
|
.e-bigger .e-gantt .e-gantt-chart .e-label {
|
|
@@ -1276,140 +1290,159 @@
|
|
|
1276
1290
|
padding: 12px 12px 0 19px;
|
|
1277
1291
|
width: 100%;
|
|
1278
1292
|
}
|
|
1279
|
-
|
|
1280
1293
|
.e-gantt.e-device .e-edit-form-row {
|
|
1281
1294
|
height: auto;
|
|
1282
1295
|
}
|
|
1283
|
-
|
|
1284
1296
|
.e-gantt.e-device .e-adaptive-searchbar {
|
|
1285
1297
|
padding: 5px 10px;
|
|
1286
1298
|
width: 90%;
|
|
1287
1299
|
}
|
|
1288
|
-
|
|
1289
1300
|
.e-gantt.e-device .e-backarrowspan {
|
|
1290
1301
|
font-size: 16px;
|
|
1291
1302
|
padding: 5px 10px;
|
|
1292
1303
|
}
|
|
1293
|
-
|
|
1294
1304
|
.e-gantt.e-device .e-gantt-dialog {
|
|
1295
1305
|
max-height: none;
|
|
1296
1306
|
}
|
|
1297
|
-
|
|
1298
1307
|
.e-gantt.e-device .e-gantt-dialog .e-dlg-closeicon-btn {
|
|
1299
1308
|
float: left;
|
|
1300
1309
|
left: -4px;
|
|
1301
1310
|
}
|
|
1302
|
-
|
|
1303
1311
|
.e-gantt.e-device .e-gantt-dialog .e-icon-dlg-close {
|
|
1304
1312
|
font-size: 16px;
|
|
1305
1313
|
}
|
|
1306
|
-
|
|
1307
1314
|
.e-gantt.e-device .e-gantt-dialog .e-dlg-header {
|
|
1308
1315
|
display: inline-block;
|
|
1309
1316
|
}
|
|
1310
|
-
|
|
1311
1317
|
.e-gantt.e-device .e-toolbar-item {
|
|
1312
1318
|
padding: 7px;
|
|
1313
1319
|
}
|
|
1314
|
-
|
|
1315
1320
|
.e-gantt.e-device .e-toolbar .e-icons {
|
|
1316
1321
|
font-size: 18px;
|
|
1317
1322
|
}
|
|
1318
|
-
|
|
1319
1323
|
.e-gantt.e-device .e-gridheader .e-icons {
|
|
1320
1324
|
font-size: 12px;
|
|
1321
1325
|
}
|
|
1322
|
-
|
|
1323
1326
|
.e-gantt.e-device .e-right-resize-gripper,
|
|
1324
1327
|
.e-gantt.e-device .e-left-resize-gripper {
|
|
1325
1328
|
border: 7px solid;
|
|
1326
1329
|
z-index: -1;
|
|
1327
1330
|
}
|
|
1328
|
-
|
|
1329
1331
|
.e-gantt.e-device .e-right-resize-gripper::before,
|
|
1330
1332
|
.e-gantt.e-device .e-left-resize-gripper::before {
|
|
1331
1333
|
font-size: 14px;
|
|
1332
1334
|
margin-left: -7px;
|
|
1333
1335
|
}
|
|
1334
|
-
|
|
1335
1336
|
.e-gantt.e-device .e-dependent-div .e-content {
|
|
1336
1337
|
height: 100%;
|
|
1337
1338
|
}
|
|
1338
|
-
|
|
1339
1339
|
.e-gantt.e-device .e-resource-div .e-content {
|
|
1340
1340
|
height: 100%;
|
|
1341
1341
|
}
|
|
1342
|
-
|
|
1343
1342
|
.e-gantt.e-device .e-richtexteditor {
|
|
1344
1343
|
height: 100%;
|
|
1345
1344
|
}
|
|
1346
|
-
|
|
1347
1345
|
.e-gantt.e-device .e-richtexteditor .e-rte-content {
|
|
1348
1346
|
height: 100%;
|
|
1349
1347
|
}
|
|
1350
1348
|
|
|
1349
|
+
.e-predecessor-tooltip {
|
|
1350
|
+
background-color: #000 !important; /* stylelint-disable-line declaration-no-important */
|
|
1351
|
+
border-color: #000 !important; /* stylelint-disable-line declaration-no-important */
|
|
1352
|
+
visibility: hidden;
|
|
1353
|
+
}
|
|
1354
|
+
.e-predecessor-tooltip .e-arrow-tip-outer.e-tip-bottom {
|
|
1355
|
+
border-top: 8px solid #000;
|
|
1356
|
+
}
|
|
1357
|
+
.e-predecessor-tooltip .e-arrow-tip-inner.e-tip-bottom {
|
|
1358
|
+
color: #000;
|
|
1359
|
+
}
|
|
1360
|
+
.e-predecessor-tooltip .e-left-btn:disabled {
|
|
1361
|
+
color: #9ca3af !important;
|
|
1362
|
+
}
|
|
1363
|
+
.e-predecessor-tooltip .e-right-btn:disabled {
|
|
1364
|
+
color: #9ca3af !important;
|
|
1365
|
+
}
|
|
1366
|
+
.e-predecessor-tooltip .e-tip-content {
|
|
1367
|
+
padding: 3px !important; /* stylelint-disable-line declaration-no-important */
|
|
1368
|
+
}
|
|
1369
|
+
.e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type {
|
|
1370
|
+
background-color: #000;
|
|
1371
|
+
border-color: #000;
|
|
1372
|
+
color: #fff;
|
|
1373
|
+
font-size: 12px;
|
|
1374
|
+
line-height: 18px;
|
|
1375
|
+
padding: 0 8px 0 0;
|
|
1376
|
+
}
|
|
1377
|
+
.e-predecessor-tooltip .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:last-of-type {
|
|
1378
|
+
background-color: #000;
|
|
1379
|
+
border-color: #000;
|
|
1380
|
+
color: #fff;
|
|
1381
|
+
font-size: 12px;
|
|
1382
|
+
line-height: 18px;
|
|
1383
|
+
padding: 0 0 0 8px;
|
|
1384
|
+
}
|
|
1385
|
+
|
|
1386
|
+
.e-predecessor-dialog {
|
|
1387
|
+
background-color: #f9fafb;
|
|
1388
|
+
}
|
|
1389
|
+
.e-predecessor-dialog .e-dlg-content {
|
|
1390
|
+
background-color: #f9fafb;
|
|
1391
|
+
padding: 10px 9px 9px 14px !important;
|
|
1392
|
+
font-size: 12px;
|
|
1393
|
+
font-weight: 400;
|
|
1394
|
+
line-height: 1.8;
|
|
1395
|
+
}
|
|
1396
|
+
|
|
1351
1397
|
/*! Gantt theme */
|
|
1352
1398
|
.e-gantt .e-gantt-splitter {
|
|
1353
1399
|
border-color: #e5e7eb;
|
|
1354
1400
|
border-radius: 0px;
|
|
1355
1401
|
}
|
|
1356
|
-
|
|
1357
1402
|
.e-gantt .e-cloneproperties.e-draganddrop {
|
|
1358
1403
|
box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.26);
|
|
1359
|
-
opacity: .95;
|
|
1404
|
+
opacity: 0.95;
|
|
1360
1405
|
overflow: visible;
|
|
1361
1406
|
}
|
|
1362
|
-
|
|
1363
1407
|
.e-gantt .e-cloneproperties {
|
|
1364
1408
|
background-color: #fff;
|
|
1365
1409
|
border-color: #e5e7eb;
|
|
1366
1410
|
color: #111827;
|
|
1367
1411
|
}
|
|
1368
|
-
|
|
1369
1412
|
.e-gantt .e-cloneproperties.e-draganddrop .e-rowcell {
|
|
1370
1413
|
color: #111827;
|
|
1371
1414
|
}
|
|
1372
|
-
|
|
1373
1415
|
.e-gantt .e-cloneproperties.e-draganddrop table,
|
|
1374
1416
|
.e-gantt .e-cloneproperties.e-draganddrop table .e-selectionbackground {
|
|
1375
1417
|
background-color: #fff;
|
|
1376
1418
|
height: 30px;
|
|
1377
1419
|
}
|
|
1378
|
-
|
|
1379
1420
|
.e-gantt .e-gantt-toolbar + .e-gantt-splitter {
|
|
1380
1421
|
border-top-left-radius: 0px;
|
|
1381
1422
|
border-top-right-radius: 0px;
|
|
1382
1423
|
}
|
|
1383
|
-
|
|
1384
1424
|
.e-gantt .e-grid .e-focused:not(.e-menu-item) {
|
|
1385
|
-
box-shadow: 0 0 0 1px #d1d5db inset !important;
|
|
1425
|
+
box-shadow: 0 0 0 1px #d1d5db inset !important; /* stylelint-disable-line declaration-no-important */
|
|
1386
1426
|
}
|
|
1387
|
-
|
|
1388
1427
|
.e-gantt .e-temp-content {
|
|
1389
1428
|
border-color: #e5e7eb;
|
|
1390
1429
|
}
|
|
1391
|
-
|
|
1392
1430
|
.e-gantt .e-splitter-box {
|
|
1393
1431
|
border-color: #e5e7eb;
|
|
1394
1432
|
}
|
|
1395
|
-
|
|
1396
1433
|
.e-gantt .e-gantt-temp-header {
|
|
1397
1434
|
border-color: #e5e7eb;
|
|
1398
1435
|
}
|
|
1399
|
-
|
|
1400
1436
|
.e-gantt .e-gantt-chart-pane {
|
|
1401
1437
|
border-color: #e5e7eb;
|
|
1402
1438
|
}
|
|
1403
|
-
|
|
1404
1439
|
.e-gantt .e-gantt-tree-grid-pane .e-timeline-single-header-outer-div {
|
|
1405
|
-
height: 45px !important;
|
|
1440
|
+
height: 45px !important; /* stylelint-disable-line declaration-no-important */
|
|
1406
1441
|
}
|
|
1407
|
-
|
|
1408
1442
|
.e-gantt .e-gantt-tree-grid-pane .e-grid td.e-active {
|
|
1409
1443
|
background: #e5e7eb;
|
|
1410
1444
|
opacity: 0.9;
|
|
1411
1445
|
}
|
|
1412
|
-
|
|
1413
1446
|
.e-gantt .e-gantt-chart .e-timeline-header-container {
|
|
1414
1447
|
background: #f9fafb;
|
|
1415
1448
|
border-bottom-color: #e5e7eb;
|
|
@@ -1418,521 +1451,408 @@
|
|
|
1418
1451
|
color: #6b7280;
|
|
1419
1452
|
height: 49px;
|
|
1420
1453
|
}
|
|
1421
|
-
|
|
1422
1454
|
.e-gantt .e-gantt-chart .e-timeline-top-header-cell,
|
|
1423
1455
|
.e-gantt .e-gantt-chart .e-timeline-single-header-cell {
|
|
1424
1456
|
border-color: #e5e7eb;
|
|
1425
1457
|
color: #6b7280;
|
|
1426
1458
|
}
|
|
1427
|
-
|
|
1428
1459
|
.e-gantt .e-gantt-chart .e-timeline-single-header-cell {
|
|
1429
1460
|
height: 46px;
|
|
1430
1461
|
line-height: 46px;
|
|
1431
1462
|
}
|
|
1432
|
-
|
|
1433
1463
|
.e-gantt .e-gantt-chart .e-timeline-single-header-outer-div {
|
|
1434
|
-
height: 46px !important;
|
|
1464
|
+
height: 46px !important; /* stylelint-disable-line declaration-no-important */
|
|
1435
1465
|
}
|
|
1436
|
-
|
|
1437
1466
|
.e-gantt .e-gantt-chart .e-timeline-top-header-cell {
|
|
1438
|
-
height:
|
|
1467
|
+
height: 24px;
|
|
1439
1468
|
}
|
|
1440
|
-
|
|
1441
1469
|
.e-gantt .e-gantt-chart .e-chart-root-container {
|
|
1442
1470
|
background-color: #fff;
|
|
1443
1471
|
border-color: #e5e7eb;
|
|
1444
1472
|
}
|
|
1445
|
-
|
|
1446
1473
|
.e-gantt .e-gantt-chart .e-timeline-header-table-body {
|
|
1447
1474
|
border-spacing: 0;
|
|
1448
1475
|
}
|
|
1449
|
-
|
|
1450
1476
|
.e-gantt .e-gantt-chart .e-chart-row-border {
|
|
1451
1477
|
border-top-color: #e5e7eb;
|
|
1452
1478
|
}
|
|
1453
|
-
|
|
1454
1479
|
.e-gantt .e-gantt-chart .e-chart-row-cell {
|
|
1455
1480
|
color: #6b7280;
|
|
1456
1481
|
}
|
|
1457
|
-
|
|
1458
1482
|
.e-gantt .e-gantt-chart .e-chart-row-border.e-lastrow {
|
|
1459
1483
|
border-bottom-color: #e5e7eb;
|
|
1460
1484
|
}
|
|
1461
|
-
|
|
1462
1485
|
.e-gantt .e-gantt-chart .e-line-container-cell {
|
|
1463
1486
|
border-color: #e5e7eb;
|
|
1464
1487
|
}
|
|
1465
|
-
|
|
1466
1488
|
.e-gantt .e-gantt-chart .e-active-container {
|
|
1467
1489
|
outline-color: #d1d5db;
|
|
1468
1490
|
}
|
|
1469
|
-
|
|
1470
1491
|
.e-gantt .e-gantt-chart .e-gantt-child-taskbar-inner-div {
|
|
1471
1492
|
background-color: #818cf8;
|
|
1472
1493
|
border: 1px solid #4f46e5;
|
|
1473
1494
|
border-radius: 4px;
|
|
1474
1495
|
}
|
|
1475
|
-
|
|
1476
1496
|
.e-gantt .e-gantt-chart .e-collapse-parent .e-gantt-child-taskbar-inner-div {
|
|
1477
1497
|
border: 1px solid #fff;
|
|
1478
1498
|
border-bottom: 0;
|
|
1479
1499
|
border-top: 0;
|
|
1480
1500
|
}
|
|
1481
|
-
|
|
1482
1501
|
.e-gantt .e-gantt-chart .e-collapse-parent .e-gantt-child-progressbar {
|
|
1483
1502
|
width: 0px !important;
|
|
1484
1503
|
}
|
|
1485
|
-
|
|
1486
1504
|
.e-gantt .e-gantt-chart .e-collapse-parent .e-collapsed-taskbar-drag {
|
|
1487
1505
|
background-color: #4f46e5;
|
|
1488
1506
|
}
|
|
1489
|
-
|
|
1490
1507
|
.e-gantt .e-gantt-chart .e-collapse-parent .e-left-connectorpoint-outer-div {
|
|
1491
1508
|
display: none;
|
|
1492
1509
|
}
|
|
1493
|
-
|
|
1494
1510
|
.e-gantt .e-gantt-chart .e-collapse-parent .e-right-connectorpoint-outer-div {
|
|
1495
1511
|
display: none;
|
|
1496
1512
|
}
|
|
1497
|
-
|
|
1498
1513
|
.e-gantt .e-gantt-chart .e-gantt-parent-taskbar-inner-div {
|
|
1499
1514
|
background-color: #d1d5db;
|
|
1500
1515
|
border: 1px solid #9ca3af;
|
|
1501
1516
|
border-radius: 4px;
|
|
1502
1517
|
}
|
|
1503
|
-
|
|
1504
1518
|
.e-gantt .e-gantt-chart .e-gantt-parent-progressbar-inner-div {
|
|
1505
1519
|
background-color: #9ca3af;
|
|
1506
1520
|
border: 0px;
|
|
1521
|
+
border-radius: 4px;
|
|
1507
1522
|
}
|
|
1508
|
-
|
|
1509
1523
|
.e-gantt .e-gantt-chart .e-gantt-child-progressbar-inner-div {
|
|
1510
1524
|
background-color: #4f46e5;
|
|
1511
1525
|
border: 0px;
|
|
1526
|
+
border-radius: 4px;
|
|
1512
1527
|
}
|
|
1513
|
-
|
|
1514
1528
|
.e-gantt .e-gantt-chart .e-gantt-child-manualtaskbar {
|
|
1515
1529
|
background-color: #dcfce7;
|
|
1516
1530
|
border: 1px solid #15803d;
|
|
1517
1531
|
}
|
|
1518
|
-
|
|
1519
1532
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar.e-gantt-child-manualtaskbar {
|
|
1520
1533
|
background: linear-gradient(to right, #dcfce7, #15803d 30%, #15803d 70%, #15803d 70%, #dcfce7 100%);
|
|
1521
1534
|
}
|
|
1522
|
-
|
|
1523
1535
|
.e-gantt .e-gantt-chart .e-gantt-child-manualprogressbar {
|
|
1524
1536
|
background-color: #15803d;
|
|
1525
1537
|
border: 0px;
|
|
1526
1538
|
}
|
|
1527
|
-
|
|
1539
|
+
.e-gantt .e-gantt-chart .e-gantt-critical-child-manualprogressbar {
|
|
1540
|
+
background-color: #15803d;
|
|
1541
|
+
border: 0px;
|
|
1542
|
+
}
|
|
1528
1543
|
.e-gantt .e-gantt-chart .e-holiday {
|
|
1529
1544
|
background: #f9fafb;
|
|
1530
1545
|
}
|
|
1531
|
-
|
|
1532
1546
|
.e-gantt .e-gantt-chart .e-holiday .e-span {
|
|
1533
1547
|
color: #6b7280;
|
|
1534
1548
|
font-size: 12px;
|
|
1535
1549
|
}
|
|
1536
|
-
|
|
1537
1550
|
.e-gantt .e-gantt-chart .e-weekend {
|
|
1538
1551
|
background: #f3f4f6;
|
|
1539
1552
|
}
|
|
1540
|
-
|
|
1541
1553
|
.e-gantt .e-gantt-chart .e-weekend-header-cell {
|
|
1542
1554
|
background: #f3f4f6;
|
|
1543
1555
|
}
|
|
1544
|
-
|
|
1545
1556
|
.e-gantt .e-gantt-chart .e-rangecontainer .e-rg-rangdiv {
|
|
1546
1557
|
border: 2px solid #c2410c;
|
|
1547
1558
|
width: 5px;
|
|
1548
1559
|
z-index: 6;
|
|
1549
1560
|
}
|
|
1550
|
-
|
|
1551
1561
|
.e-gantt .e-gantt-chart .e-event-markers {
|
|
1552
1562
|
border-left-color: #4f46e5;
|
|
1553
1563
|
}
|
|
1554
|
-
|
|
1555
1564
|
.e-gantt .e-gantt-chart .e-event-markers .e-span-label {
|
|
1556
1565
|
background-color: #ffedd5;
|
|
1557
1566
|
color: #c2410c;
|
|
1558
1567
|
font-size: 12px;
|
|
1559
1568
|
}
|
|
1560
|
-
|
|
1561
1569
|
.e-gantt .e-gantt-chart .e-event-markers .e-gantt-right-arrow {
|
|
1562
1570
|
border-right-color: #ffedd5;
|
|
1563
1571
|
}
|
|
1564
|
-
|
|
1565
1572
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar {
|
|
1566
1573
|
background: linear-gradient(to right, #818cf8, #4f46e5 30%, #4f46e5 70%, #4f46e5 70%, #818cf8 100%);
|
|
1567
|
-
background-color: rgba(63, 81, 181, 0.2);
|
|
1568
1574
|
border: 0px;
|
|
1569
1575
|
border-radius: 2px;
|
|
1570
1576
|
}
|
|
1571
|
-
|
|
1572
1577
|
.e-gantt .e-gantt-chart .e-unscheduled-milestone-top {
|
|
1573
1578
|
border-bottom-color: #9ca3af;
|
|
1574
1579
|
}
|
|
1575
|
-
|
|
1576
1580
|
.e-gantt .e-gantt-chart .e-unscheduled-milestone-bottom {
|
|
1577
1581
|
border-top-color: #9ca3af;
|
|
1578
1582
|
}
|
|
1579
|
-
|
|
1580
1583
|
.e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler {
|
|
1581
1584
|
background: #111827;
|
|
1582
|
-
border-color: #fff;
|
|
1583
1585
|
}
|
|
1584
|
-
|
|
1585
|
-
.e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-element {
|
|
1586
|
-
border-bottom-color: #fff;
|
|
1587
|
-
}
|
|
1588
|
-
|
|
1589
1586
|
.e-gantt .e-gantt-chart .e-progress-resize-gripper .e-progressbar-handler-after {
|
|
1590
1587
|
border-bottom-color: #111827;
|
|
1591
1588
|
}
|
|
1592
|
-
|
|
1593
1589
|
.e-gantt .e-gantt-chart .e-gantt-dependency-view-container {
|
|
1594
1590
|
display: block;
|
|
1595
1591
|
z-index: 5;
|
|
1596
1592
|
}
|
|
1597
|
-
|
|
1598
1593
|
.e-gantt .e-gantt-chart .e-line {
|
|
1599
1594
|
border-color: #4f46e5;
|
|
1600
1595
|
}
|
|
1601
|
-
|
|
1602
1596
|
.e-gantt .e-gantt-chart .e-connector-line-right-arrow {
|
|
1603
1597
|
border-left-color: #4f46e5;
|
|
1604
1598
|
}
|
|
1605
|
-
|
|
1606
1599
|
.e-gantt .e-gantt-chart .e-connector-line-left-arrow {
|
|
1607
1600
|
border-right-color: #4f46e5;
|
|
1608
1601
|
}
|
|
1609
|
-
|
|
1610
1602
|
.e-gantt .e-gantt-chart .e-connector-line-right-arrow-hover {
|
|
1611
1603
|
border-left-color: #4f46e5;
|
|
1612
1604
|
}
|
|
1613
|
-
|
|
1614
1605
|
.e-gantt .e-gantt-chart .e-connector-line-left-arrow-hover {
|
|
1615
1606
|
border-right-color: #4f46e5;
|
|
1616
1607
|
}
|
|
1617
|
-
|
|
1618
1608
|
.e-gantt .e-gantt-chart .e-connector-line-hover {
|
|
1619
1609
|
border-color: #4f46e5;
|
|
1620
1610
|
outline-color: #4f46e5;
|
|
1621
1611
|
}
|
|
1622
|
-
|
|
1623
1612
|
.e-gantt .e-gantt-chart .e-gantt-false-line {
|
|
1624
1613
|
border-top-color: #4f46e5;
|
|
1625
1614
|
}
|
|
1626
|
-
|
|
1627
1615
|
.e-gantt .e-gantt-chart .e-connectorpoint-left-hover,
|
|
1628
1616
|
.e-gantt .e-gantt-chart .e-connectorpoint-right-hover {
|
|
1629
|
-
background-color: #
|
|
1617
|
+
background-color: #291fd9;
|
|
1630
1618
|
border-color: #fff;
|
|
1631
1619
|
}
|
|
1632
|
-
|
|
1633
1620
|
.e-gantt .e-gantt-chart .e-connectorpoint-left-hover:hover,
|
|
1634
1621
|
.e-gantt .e-gantt-chart .e-connectorpoint-right-hover:hover {
|
|
1635
1622
|
background-color: #374151;
|
|
1636
1623
|
border-color: #fff;
|
|
1637
1624
|
}
|
|
1638
|
-
|
|
1639
1625
|
.e-gantt .e-gantt-chart .e-left-label-inner-div,
|
|
1640
1626
|
.e-gantt .e-gantt-chart .e-right-label-inner-div {
|
|
1641
1627
|
color: #6b7280;
|
|
1642
1628
|
font-size: 14px;
|
|
1643
1629
|
}
|
|
1644
|
-
|
|
1645
1630
|
.e-gantt .e-gantt-chart .e-left-label-temp-container {
|
|
1646
1631
|
color: #6b7280;
|
|
1647
1632
|
font-size: 14px;
|
|
1648
|
-
padding-right:
|
|
1633
|
+
padding-right: 25px;
|
|
1649
1634
|
}
|
|
1650
|
-
|
|
1651
1635
|
.e-gantt .e-gantt-chart .e-right-label-temp-container {
|
|
1652
1636
|
color: #6b7280;
|
|
1653
1637
|
font-size: 14px;
|
|
1654
|
-
margin-left:
|
|
1638
|
+
margin-left: 25px;
|
|
1655
1639
|
}
|
|
1656
|
-
|
|
1657
1640
|
.e-gantt .e-gantt-chart .e-right-label-container {
|
|
1658
|
-
margin-left:
|
|
1641
|
+
margin-left: 25px;
|
|
1659
1642
|
}
|
|
1660
|
-
|
|
1661
1643
|
.e-gantt .e-gantt-chart .e-left-label-container {
|
|
1662
|
-
padding-right:
|
|
1644
|
+
padding-right: 25px;
|
|
1663
1645
|
}
|
|
1664
|
-
|
|
1665
1646
|
.e-gantt .e-gantt-chart .e-connectorpoint-right {
|
|
1666
1647
|
margin-left: 2px;
|
|
1667
1648
|
}
|
|
1668
|
-
|
|
1669
1649
|
.e-gantt .e-gantt-chart .e-right-connectorpoint-outer-div,
|
|
1670
1650
|
.e-gantt .e-gantt-chart .e-left-connectorpoint-outer-div {
|
|
1671
1651
|
height: 8px;
|
|
1672
1652
|
width: 12px;
|
|
1673
1653
|
}
|
|
1674
|
-
|
|
1675
1654
|
.e-gantt .e-gantt-chart .e-left-connectorpoint-outer-div {
|
|
1676
1655
|
left: -12px;
|
|
1677
1656
|
}
|
|
1678
|
-
|
|
1679
1657
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar-left,
|
|
1680
1658
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar-right {
|
|
1681
1659
|
border-right: transparent;
|
|
1682
1660
|
border-width: 3px;
|
|
1683
1661
|
}
|
|
1684
|
-
|
|
1685
1662
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar-right {
|
|
1686
1663
|
border-bottom-left-radius: 0px;
|
|
1687
1664
|
border-bottom-right-radius: 2px;
|
|
1688
1665
|
border-top-left-radius: 0px;
|
|
1689
1666
|
border-top-right-radius: 2px;
|
|
1690
1667
|
}
|
|
1691
|
-
|
|
1692
1668
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-taskbar-left {
|
|
1693
1669
|
border-bottom-left-radius: 2px;
|
|
1694
1670
|
border-top-left-radius: 2px;
|
|
1695
1671
|
}
|
|
1696
|
-
|
|
1697
1672
|
.e-gantt .e-gantt-chart .e-task-label {
|
|
1698
1673
|
color: #fff;
|
|
1699
1674
|
font-size: 12px;
|
|
1700
1675
|
}
|
|
1701
|
-
|
|
1702
1676
|
.e-gantt .e-gantt-chart .e-icon {
|
|
1703
1677
|
color: #fff;
|
|
1704
1678
|
}
|
|
1705
|
-
|
|
1706
1679
|
.e-gantt .e-gantt-chart .e-milestone-top {
|
|
1707
1680
|
border-bottom-color: #9ca3af;
|
|
1708
1681
|
}
|
|
1709
|
-
|
|
1710
1682
|
.e-gantt .e-gantt-chart .e-milestone-bottom {
|
|
1711
1683
|
border-top-color: #9ca3af;
|
|
1712
1684
|
}
|
|
1713
|
-
|
|
1714
1685
|
.e-gantt .e-gantt-chart .e-parent-milestone-top {
|
|
1715
1686
|
border-bottom-color: #9ca3af;
|
|
1716
1687
|
}
|
|
1717
|
-
|
|
1718
1688
|
.e-gantt .e-gantt-chart .e-parent-milestone-bottom {
|
|
1719
1689
|
border-top-color: #9ca3af;
|
|
1720
1690
|
}
|
|
1721
|
-
|
|
1722
1691
|
.e-gantt .e-gantt-chart .e-manualparent-milestone-top {
|
|
1723
1692
|
border-bottom-color: #9ca3af;
|
|
1724
1693
|
}
|
|
1725
|
-
|
|
1726
1694
|
.e-gantt .e-gantt-chart .e-manualparent-milestone-bottom {
|
|
1727
1695
|
border-top-color: #9ca3af;
|
|
1728
1696
|
}
|
|
1729
|
-
|
|
1730
1697
|
.e-gantt .e-gantt-chart .e-gantt-unscheduled-manualtask {
|
|
1731
1698
|
background: linear-gradient(to right, rgba(63, 81, 181, 0.2), #989A9C 30%, #989A9C 70%, #989A9C 70%, rgba(63, 81, 181, 0.2) 100%);
|
|
1732
1699
|
}
|
|
1733
|
-
|
|
1734
1700
|
.e-gantt .e-gantt-chart .e-label {
|
|
1735
1701
|
color: #6b7280;
|
|
1736
1702
|
font-size: 14px;
|
|
1737
1703
|
}
|
|
1738
|
-
|
|
1739
1704
|
.e-gantt .e-gantt-chart .e-active {
|
|
1740
1705
|
background: #e5e7eb;
|
|
1741
1706
|
color: #111827;
|
|
1742
1707
|
opacity: 0.9;
|
|
1743
1708
|
}
|
|
1744
|
-
|
|
1745
1709
|
.e-gantt .e-gantt-chart .e-active .e-label {
|
|
1746
1710
|
color: #111827;
|
|
1747
1711
|
}
|
|
1748
|
-
|
|
1749
1712
|
.e-gantt .e-gantt-chart .e-baseline-bar {
|
|
1750
1713
|
background-color: #c2410c;
|
|
1751
1714
|
}
|
|
1752
|
-
|
|
1753
1715
|
.e-gantt .e-gantt-chart .e-baseline-milestone-top {
|
|
1754
1716
|
border-bottom-color: #c2410c;
|
|
1755
1717
|
}
|
|
1756
|
-
|
|
1757
1718
|
.e-gantt .e-gantt-chart .e-baseline-milestone-bottom {
|
|
1758
1719
|
border-top-color: #c2410c;
|
|
1759
1720
|
}
|
|
1760
|
-
|
|
1761
1721
|
.e-gantt .e-gantt-chart .e-uptail::before {
|
|
1762
1722
|
border-bottom-color: #e5e7eb;
|
|
1763
1723
|
}
|
|
1764
|
-
|
|
1765
1724
|
.e-gantt .e-gantt-chart .e-downtail::after {
|
|
1766
1725
|
border-top-color: #fff;
|
|
1767
1726
|
}
|
|
1768
|
-
|
|
1769
1727
|
.e-gantt .e-gantt-chart .e-downtail::before {
|
|
1770
1728
|
border-top-color: #e5e7eb;
|
|
1771
1729
|
}
|
|
1772
|
-
|
|
1773
1730
|
.e-gantt .e-gantt-chart .e-ganttpopup .e-content {
|
|
1774
1731
|
background-color: #fff;
|
|
1775
1732
|
border-color: #e5e7eb;
|
|
1776
1733
|
}
|
|
1777
|
-
|
|
1778
1734
|
.e-gantt .e-gantt-chart .e-spanclicked,
|
|
1779
1735
|
.e-gantt .e-gantt-chart .e-grid .e-gridpopup .e-spanclicked {
|
|
1780
1736
|
border-color: #000;
|
|
1781
1737
|
}
|
|
1782
|
-
|
|
1783
1738
|
.e-gantt .e-gantt-chart .e-active-parent-task {
|
|
1784
1739
|
border-radius: 4px;
|
|
1785
1740
|
box-shadow: 4px 4px 3px 0 rgba(0, 0, 0, 0.5);
|
|
1786
1741
|
}
|
|
1787
|
-
|
|
1788
1742
|
.e-gantt .e-gantt-chart .e-active-parent-task .e-gantt-parent-taskbar-inner-div {
|
|
1789
1743
|
background: #1a1a1a;
|
|
1790
1744
|
border: #1a1a1a;
|
|
1791
1745
|
}
|
|
1792
|
-
|
|
1793
1746
|
.e-gantt .e-gantt-chart .e-active-parent-task .e-gantt-parent-progressbar-inner-div {
|
|
1794
1747
|
background-color: transparent;
|
|
1795
1748
|
border: transparent;
|
|
1796
1749
|
}
|
|
1797
|
-
|
|
1798
1750
|
.e-gantt .e-gantt-chart .e-active-parent-task .e-task-label {
|
|
1799
1751
|
color: transparent;
|
|
1800
1752
|
}
|
|
1801
|
-
|
|
1802
1753
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-task-label {
|
|
1803
|
-
color: transparent !important;
|
|
1754
|
+
color: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1804
1755
|
}
|
|
1805
|
-
|
|
1806
1756
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-line {
|
|
1807
|
-
border-color: #d1d5db !important;
|
|
1757
|
+
border-color: #d1d5db !important; /* stylelint-disable-line declaration-no-important */
|
|
1808
1758
|
}
|
|
1809
|
-
|
|
1810
1759
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-connector-line-right-arrow {
|
|
1811
|
-
border-left-color: #d1d5db !important;
|
|
1760
|
+
border-left-color: #d1d5db !important; /* stylelint-disable-line declaration-no-important */
|
|
1812
1761
|
}
|
|
1813
|
-
|
|
1814
1762
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-connector-line-left-arrow {
|
|
1815
|
-
border-right-color: #d1d5db !important;
|
|
1763
|
+
border-right-color: #d1d5db !important; /* stylelint-disable-line declaration-no-important */
|
|
1816
1764
|
}
|
|
1817
|
-
|
|
1818
1765
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-child-taskbar-inner-div {
|
|
1819
|
-
background: #818cf8 !important;
|
|
1820
|
-
border: #818cf8 !important;
|
|
1766
|
+
background: #818cf8 !important; /* stylelint-disable-line declaration-no-important */
|
|
1767
|
+
border: #818cf8 !important; /* stylelint-disable-line declaration-no-important */
|
|
1821
1768
|
}
|
|
1822
|
-
|
|
1823
1769
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-child-progressbar-inner-div {
|
|
1824
|
-
background-color: transparent !important;
|
|
1825
|
-
border: transparent !important;
|
|
1770
|
+
background-color: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1771
|
+
border: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1826
1772
|
}
|
|
1827
|
-
|
|
1828
1773
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-milestone-top {
|
|
1829
|
-
border-bottom-color: #818cf8 !important;
|
|
1774
|
+
border-bottom-color: #818cf8 !important; /* stylelint-disable-line declaration-no-important */
|
|
1830
1775
|
}
|
|
1831
|
-
|
|
1832
1776
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-milestone-bottom {
|
|
1833
|
-
border-top-color: #818cf8 !important;
|
|
1777
|
+
border-top-color: #818cf8 !important; /* stylelint-disable-line declaration-no-important */
|
|
1834
1778
|
}
|
|
1835
|
-
|
|
1836
1779
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-parent-taskbar-inner-div {
|
|
1837
|
-
background-color: #d1d5db !important;
|
|
1838
|
-
border: #d1d5db !important;
|
|
1780
|
+
background-color: #d1d5db !important; /* stylelint-disable-line declaration-no-important */
|
|
1781
|
+
border: #d1d5db !important; /* stylelint-disable-line declaration-no-important */
|
|
1839
1782
|
}
|
|
1840
|
-
|
|
1841
1783
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-gantt-parent-progressbar-inner-div {
|
|
1842
|
-
background-color: transparent !important;
|
|
1843
|
-
border: transparent !important;
|
|
1784
|
+
background-color: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1785
|
+
border: transparent !important; /* stylelint-disable-line declaration-no-important */
|
|
1844
1786
|
}
|
|
1845
|
-
|
|
1846
1787
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-gantt-child-taskbar-inner-div {
|
|
1847
|
-
background: #4f46e5 !important;
|
|
1848
|
-
border: #4f46e5 !important;
|
|
1788
|
+
background: #4f46e5 !important; /* stylelint-disable-line declaration-no-important */
|
|
1789
|
+
border: #4f46e5 !important; /* stylelint-disable-line declaration-no-important */
|
|
1849
1790
|
}
|
|
1850
|
-
|
|
1851
1791
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-milestone-top {
|
|
1852
|
-
border-bottom-color: #4f46e5 !important;
|
|
1792
|
+
border-bottom-color: #4f46e5 !important; /* stylelint-disable-line declaration-no-important */
|
|
1853
1793
|
}
|
|
1854
|
-
|
|
1855
1794
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-child-task .e-milestone-bottom {
|
|
1856
|
-
border-top-color: #4f46e5 !important;
|
|
1795
|
+
border-top-color: #4f46e5 !important; /* stylelint-disable-line declaration-no-important */
|
|
1857
1796
|
}
|
|
1858
|
-
|
|
1859
1797
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-gantt-child-taskbar-inner-div {
|
|
1860
|
-
background: #a49ff2 !important;
|
|
1861
|
-
border: #a49ff2 !important;
|
|
1798
|
+
background: #a49ff2 !important; /* stylelint-disable-line declaration-no-important */
|
|
1799
|
+
border: #a49ff2 !important; /* stylelint-disable-line declaration-no-important */
|
|
1862
1800
|
}
|
|
1863
|
-
|
|
1864
1801
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-milestone-top {
|
|
1865
|
-
border-bottom-color: #a49ff2 !important;
|
|
1802
|
+
border-bottom-color: #a49ff2 !important; /* stylelint-disable-line declaration-no-important */
|
|
1866
1803
|
}
|
|
1867
|
-
|
|
1868
1804
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-milestone-bottom {
|
|
1869
|
-
border-top-color: #a49ff2 !important;
|
|
1805
|
+
border-top-color: #a49ff2 !important; /* stylelint-disable-line declaration-no-important */
|
|
1870
1806
|
}
|
|
1871
|
-
|
|
1872
1807
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-line {
|
|
1873
|
-
border-color: #4f46e5 !important;
|
|
1808
|
+
border-color: #4f46e5 !important; /* stylelint-disable-line declaration-no-important */
|
|
1874
1809
|
}
|
|
1875
|
-
|
|
1876
1810
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-connector-line-right-arrow {
|
|
1877
|
-
border-left-color: #4f46e5 !important;
|
|
1811
|
+
border-left-color: #4f46e5 !important; /* stylelint-disable-line declaration-no-important */
|
|
1878
1812
|
}
|
|
1879
|
-
|
|
1880
1813
|
.e-gantt .e-gantt-chart .e-predecessor-touch-mode .e-active-connected-task .e-connector-line-left-arrow {
|
|
1881
|
-
border-right-color: #4f46e5 !important;
|
|
1814
|
+
border-right-color: #4f46e5 !important; /* stylelint-disable-line declaration-no-important */
|
|
1882
1815
|
}
|
|
1883
|
-
|
|
1884
1816
|
.e-gantt .e-icons {
|
|
1885
1817
|
color: #6b7280;
|
|
1886
1818
|
}
|
|
1887
|
-
|
|
1888
1819
|
.e-gantt .e-grid .e-icons:not(.e-stop):not(.e-check):not(.e-icon-left):not(.e-date-icon) {
|
|
1889
|
-
color: #6b7280 !important;
|
|
1820
|
+
color: #6b7280 !important; /* stylelint-disable-line declaration-no-important */
|
|
1890
1821
|
}
|
|
1891
1822
|
|
|
1892
1823
|
.e-gantt-dialog .e-dlg-header {
|
|
1893
1824
|
color: #111827;
|
|
1894
1825
|
}
|
|
1895
|
-
|
|
1896
1826
|
.e-gantt-dialog .e-dlg-header-content {
|
|
1897
1827
|
background: #f9fafb;
|
|
1898
1828
|
}
|
|
1899
|
-
|
|
1900
1829
|
.e-gantt-dialog .e-icon-dlg-close {
|
|
1901
1830
|
color: #6b7280;
|
|
1902
1831
|
}
|
|
1903
|
-
|
|
1904
1832
|
.e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover {
|
|
1905
1833
|
background-color: #f9fafb;
|
|
1906
1834
|
}
|
|
1907
|
-
|
|
1908
1835
|
.e-gantt-dialog .e-btn.e-dlg-closeicon-btn:hover .e-icon-dlg-close {
|
|
1909
1836
|
color: #6b7280;
|
|
1910
1837
|
}
|
|
1911
|
-
|
|
1912
1838
|
.e-gantt-dialog .e-tab .e-tab-header {
|
|
1913
1839
|
background: #f9fafb;
|
|
1914
1840
|
}
|
|
1915
|
-
|
|
1916
1841
|
.e-gantt-dialog .e-tab .e-tab-header .e-indicator {
|
|
1917
1842
|
background: #4f46e5;
|
|
1918
1843
|
}
|
|
1919
|
-
|
|
1920
1844
|
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
1921
1845
|
background-color: transparent;
|
|
1922
1846
|
}
|
|
1923
|
-
|
|
1924
1847
|
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item.e-active .e-tab-wrap .e-tab-text {
|
|
1925
1848
|
color: #4f46e5;
|
|
1926
1849
|
}
|
|
1927
|
-
|
|
1928
1850
|
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
1929
1851
|
border-color: transparent;
|
|
1930
1852
|
}
|
|
1931
|
-
|
|
1932
1853
|
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap .e-tab-text {
|
|
1933
1854
|
color: #6b7280;
|
|
1934
1855
|
}
|
|
1935
|
-
|
|
1936
1856
|
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item:not(.e-active) .e-tab-wrap:hover {
|
|
1937
1857
|
background: transparent;
|
|
1938
1858
|
border-bottom: 0px;
|
|
@@ -1940,7 +1860,6 @@
|
|
|
1940
1860
|
border-bottom-right-radius: 0px;
|
|
1941
1861
|
border-color: transparent;
|
|
1942
1862
|
}
|
|
1943
|
-
|
|
1944
1863
|
.e-gantt-dialog .e-tab .e-tab-header .e-toolbar-item:not(.e-active) .e-tab-wrap:hover .e-tab-text {
|
|
1945
1864
|
color: #6b7280;
|
|
1946
1865
|
}
|
|
@@ -1950,7 +1869,58 @@
|
|
|
1950
1869
|
border-color: #d1d5db;
|
|
1951
1870
|
color: #fff;
|
|
1952
1871
|
}
|
|
1953
|
-
|
|
1954
1872
|
.e-gantt.e-device .e-backarrowspan {
|
|
1955
1873
|
color: #000;
|
|
1956
1874
|
}
|
|
1875
|
+
|
|
1876
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line {
|
|
1877
|
+
border-color: #dc2626;
|
|
1878
|
+
}
|
|
1879
|
+
|
|
1880
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line-right-arrow {
|
|
1881
|
+
border-left-color: #dc2626;
|
|
1882
|
+
}
|
|
1883
|
+
|
|
1884
|
+
.e-gantt .e-gantt-chart .e-criticalconnector-line-left-arrow {
|
|
1885
|
+
border-right-color: #dc2626;
|
|
1886
|
+
}
|
|
1887
|
+
|
|
1888
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-hover {
|
|
1889
|
+
border-color: #fee2e2;
|
|
1890
|
+
outline-color: #fee2e2;
|
|
1891
|
+
}
|
|
1892
|
+
|
|
1893
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-right-arrow-hover {
|
|
1894
|
+
border-left-color: #fee2e2;
|
|
1895
|
+
}
|
|
1896
|
+
|
|
1897
|
+
.e-gantt .e-gantt-chart .e-critical-connector-line-left-arrow-hover {
|
|
1898
|
+
border-right-color: #fee2e2;
|
|
1899
|
+
}
|
|
1900
|
+
|
|
1901
|
+
.e-gantt .e-gantt-chart .e-gantt-child-critical-taskbar-inner-div {
|
|
1902
|
+
background-color: #fee2e2;
|
|
1903
|
+
border: 1px solid #fee2e2;
|
|
1904
|
+
border-radius: 4px;
|
|
1905
|
+
}
|
|
1906
|
+
|
|
1907
|
+
.e-gantt .e-gantt-chart .e-gantt-child-critical-progressbar-inner-div {
|
|
1908
|
+
background-color: #dc2626;
|
|
1909
|
+
border: 0px;
|
|
1910
|
+
border-radius: 4px;
|
|
1911
|
+
}
|
|
1912
|
+
|
|
1913
|
+
.e-gantt .e-gantt-chart .e-gantt-critical-unscheduled-taskbar {
|
|
1914
|
+
background: linear-gradient(to right, rgba(255, 85, 85, 0.2), #dc2626 30%, #dc2626 70%, #dc2626 70%, rgba(255, 85, 85, 0.2) 100%);
|
|
1915
|
+
background-color: rgba(255, 85, 85, 0.2);
|
|
1916
|
+
border: 0px;
|
|
1917
|
+
border-radius: 2px;
|
|
1918
|
+
}
|
|
1919
|
+
|
|
1920
|
+
.e-gantt .e-gantt-chart .e-critical-milestone-top {
|
|
1921
|
+
border-bottom-color: #dc2626;
|
|
1922
|
+
}
|
|
1923
|
+
|
|
1924
|
+
.e-gantt .e-gantt-chart .e-critical-milestone-bottom {
|
|
1925
|
+
border-top-color: #dc2626;
|
|
1926
|
+
}
|