@syncfusion/ej2-gantt 19.4.55 → 20.1.47-1460716

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