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