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