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