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