@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.
Files changed (211) hide show
  1. package/CHANGELOG.md +1072 -1060
  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 +274 -176
  6. package/dist/es6/ej2-gantt.es2015.js.map +1 -1
  7. package/dist/es6/ej2-gantt.es5.js +642 -534
  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 +11 -2
  91. package/src/gantt/actions/rowdragdrop.js +37 -15
  92. package/src/gantt/actions/taskbar-edit.js +24 -24
  93. package/src/gantt/base/date-processor.js +0 -1
  94. package/src/gantt/base/gantt-chart.js +9 -4
  95. package/src/gantt/base/gantt-model.d.ts +779 -779
  96. package/src/gantt/base/gantt.d.ts +27 -27
  97. package/src/gantt/base/gantt.js +22 -22
  98. package/src/gantt/base/splitter.js +1 -0
  99. package/src/gantt/base/task-processor.js +13 -13
  100. package/src/gantt/base/tree-grid.js +3 -1
  101. package/src/gantt/export/pdf-base/treegrid-layouter.js +13 -13
  102. package/src/gantt/export/pdf-connector-line.js +11 -11
  103. package/src/gantt/export/pdf-gantt.js +24 -24
  104. package/src/gantt/export/pdf-taskbar.js +11 -11
  105. package/src/gantt/export/pdf-treegrid.js +13 -13
  106. package/src/gantt/models/add-dialog-field-settings-model.d.ts +21 -21
  107. package/src/gantt/models/add-dialog-field-settings.js +19 -19
  108. package/src/gantt/models/day-working-time-model.d.ts +11 -11
  109. package/src/gantt/models/day-working-time.js +19 -19
  110. package/src/gantt/models/edit-dialog-field-settings-model.d.ts +21 -21
  111. package/src/gantt/models/edit-dialog-field-settings.js +19 -19
  112. package/src/gantt/models/edit-settings-model.d.ts +50 -50
  113. package/src/gantt/models/edit-settings.js +19 -19
  114. package/src/gantt/models/event-marker-model.d.ts +16 -16
  115. package/src/gantt/models/event-marker.js +19 -19
  116. package/src/gantt/models/filter-settings-model.d.ts +34 -34
  117. package/src/gantt/models/filter-settings.js +19 -19
  118. package/src/gantt/models/holiday-model.d.ts +21 -21
  119. package/src/gantt/models/holiday.js +19 -19
  120. package/src/gantt/models/label-settings-model.d.ts +16 -16
  121. package/src/gantt/models/label-settings.js +19 -19
  122. package/src/gantt/models/resource-fields-model.d.ts +21 -21
  123. package/src/gantt/models/resource-fields.js +19 -19
  124. package/src/gantt/models/search-settings-model.d.ts +56 -56
  125. package/src/gantt/models/search-settings.js +19 -19
  126. package/src/gantt/models/selection-settings-model.d.ts +35 -35
  127. package/src/gantt/models/selection-settings.js +19 -19
  128. package/src/gantt/models/sort-settings-model.d.ts +24 -24
  129. package/src/gantt/models/sort-settings.js +19 -19
  130. package/src/gantt/models/splitter-settings-model.d.ts +30 -30
  131. package/src/gantt/models/splitter-settings.js +19 -19
  132. package/src/gantt/models/task-fields-model.d.ts +110 -110
  133. package/src/gantt/models/task-fields.js +19 -19
  134. package/src/gantt/models/timeline-settings-model.d.ts +71 -71
  135. package/src/gantt/models/timeline-settings.js +19 -19
  136. package/src/gantt/models/tooltip-settings-model.d.ts +26 -26
  137. package/src/gantt/models/tooltip-settings.js +19 -19
  138. package/src/gantt/renderer/chart-rows.js +49 -37
  139. package/src/gantt/renderer/connector-line.js +22 -18
  140. package/src/gantt/renderer/event-marker.js +1 -0
  141. package/src/gantt/renderer/nonworking-day.js +13 -6
  142. package/src/gantt/renderer/timeline.d.ts +1 -0
  143. package/src/gantt/renderer/timeline.js +48 -12
  144. package/src/gantt/renderer/tooltip.js +11 -3
  145. package/styles/bootstrap-dark.css +442 -427
  146. package/styles/bootstrap.css +442 -433
  147. package/styles/bootstrap4.css +454 -479
  148. package/styles/bootstrap5-dark.css +457 -433
  149. package/styles/bootstrap5.css +457 -433
  150. package/styles/fabric-dark.css +438 -421
  151. package/styles/fabric.css +445 -428
  152. package/styles/fluent-dark.css +1938 -0
  153. package/styles/fluent-dark.scss +1 -0
  154. package/styles/fluent.css +1938 -0
  155. package/styles/fluent.scss +1 -0
  156. package/styles/gantt/_all.scss +2 -2
  157. package/styles/gantt/_bootstrap-dark-definition.scss +210 -156
  158. package/styles/gantt/_bootstrap-definition.scss +211 -157
  159. package/styles/gantt/_bootstrap4-definition.scss +213 -158
  160. package/styles/gantt/_bootstrap5-definition.scss +215 -162
  161. package/styles/gantt/_fabric-dark-definition.scss +211 -157
  162. package/styles/gantt/_fabric-definition.scss +211 -157
  163. package/styles/gantt/_fluent-dark-definition.scss +1 -0
  164. package/styles/gantt/_fluent-definition.scss +215 -162
  165. package/styles/gantt/_fusionnew-definition.scss +214 -0
  166. package/styles/gantt/_highcontrast-definition.scss +211 -157
  167. package/styles/gantt/_highcontrast-light-definition.scss +211 -157
  168. package/styles/gantt/_layout.scss +1446 -1027
  169. package/styles/gantt/_material-dark-definition.scss +212 -157
  170. package/styles/gantt/_material-definition.scss +212 -157
  171. package/styles/gantt/_material3-definition.scss +215 -0
  172. package/styles/gantt/_tailwind-definition.scss +215 -161
  173. package/styles/gantt/_theme.scss +702 -668
  174. package/styles/gantt/bootstrap-dark.css +442 -427
  175. package/styles/gantt/bootstrap.css +442 -433
  176. package/styles/gantt/bootstrap4.css +454 -479
  177. package/styles/gantt/bootstrap5-dark.css +457 -433
  178. package/styles/gantt/bootstrap5.css +457 -433
  179. package/styles/gantt/fabric-dark.css +438 -421
  180. package/styles/gantt/fabric.css +445 -428
  181. package/styles/gantt/fluent-dark.css +1938 -0
  182. package/styles/gantt/fluent-dark.scss +22 -0
  183. package/styles/gantt/fluent.css +1938 -0
  184. package/styles/gantt/fluent.scss +22 -0
  185. package/styles/gantt/highcontrast-light.css +405 -405
  186. package/styles/gantt/highcontrast.css +444 -456
  187. package/styles/gantt/icons/_bootstrap-dark.scss +124 -113
  188. package/styles/gantt/icons/_bootstrap.scss +124 -113
  189. package/styles/gantt/icons/_bootstrap4.scss +124 -113
  190. package/styles/gantt/icons/_bootstrap5.scss +124 -112
  191. package/styles/gantt/icons/_fabric-dark.scss +124 -112
  192. package/styles/gantt/icons/_fabric.scss +124 -112
  193. package/styles/gantt/icons/_fluent-dark.scss +1 -0
  194. package/styles/gantt/icons/_fluent.scss +124 -112
  195. package/styles/gantt/icons/_fusionnew.scss +120 -0
  196. package/styles/gantt/icons/_highcontrast.scss +124 -112
  197. package/styles/gantt/icons/_material-dark.scss +124 -112
  198. package/styles/gantt/icons/_material.scss +124 -112
  199. package/styles/gantt/icons/_material3.scss +124 -0
  200. package/styles/gantt/icons/_tailwind-dark.scss +124 -113
  201. package/styles/gantt/icons/_tailwind.scss +124 -113
  202. package/styles/gantt/material-dark.css +446 -417
  203. package/styles/gantt/material.css +445 -419
  204. package/styles/gantt/tailwind-dark.css +452 -482
  205. package/styles/gantt/tailwind.css +449 -479
  206. package/styles/highcontrast-light.css +405 -405
  207. package/styles/highcontrast.css +444 -456
  208. package/styles/material-dark.css +446 -417
  209. package/styles/material.css +445 -419
  210. package/styles/tailwind-dark.css +452 -482
  211. package/styles/tailwind.css +449 -479
@@ -1,1027 +1,1446 @@
1
- @include export-module('gantt-layout') {
2
- #{&}.e-gantt {
3
- display: block;
4
- width: 100%;
5
-
6
- .e-cloneproperties {
7
- padding: $gantt-bigger-clone-padding;
8
- }
9
-
10
- & .e-cloneproperties.e-draganddrop .e-row .e-icon-rowdragicon::before {
11
- left: -5px;
12
- position: relative;
13
- }
14
-
15
- .e-cloneproperties {
16
- border-style: solid;
17
- border-width: $gantt-border-size;
18
- box-shadow: $gantt-group-clone-box-shadow;
19
- font-size: $gantt-header-font-size;
20
- font-weight: $gantt-drag-clone-font-weight;
21
- opacity: $gantt-drag-clone-opacity;
22
- overflow: hidden;
23
- padding: $gantt-clone-padding;
24
- text-align: $gantt-group-clone-text-align;
25
- user-select: none;
26
- vertical-align: middle;
27
- white-space: nowrap;
28
- z-index: 100;
29
- }
30
-
31
- .e-cloneproperties.e-draganddrop {
32
- border-spacing: 0;
33
- font-size: $gantt-header-font-size;
34
- font-weight: normal;
35
- overflow: visible;
36
- }
37
-
38
- .e-cloneproperties .e-bothganttlines {
39
- border-width: 1px 0 0 1px;
40
- }
41
-
42
- .e-draganddrop {
43
- border-width: 0 1px 1px;
44
- font-weight: normal;
45
- padding: 0;
46
- }
47
-
48
- .e-draganddrop .e-rowcell {
49
- opacity: .95;
50
- }
51
-
52
- .e-cloneproperties.e-draganddrop table {
53
- border-spacing: 0;
54
- }
55
-
56
- .e-icons.e-errorelem {
57
- display: inline-block;
58
- padding-left: 10px;
59
- vertical-align: middle;
60
- }
61
-
62
- .e-errorelem::before {
63
- color: $error-elem-color;
64
- content: '\e22a';
65
- transform: rotate(180deg);
66
- }
67
-
68
- & .e-verticallines .e-cloneproperties.e-draganddrop .e-rowdragdrop,
69
- & .e-bothlines .e-cloneproperties.e-draganddrop .e-rowdragdrop {
70
- border-bottom: 0;
71
- border-right: 1px solid $gantt-cell-border-color;
72
- border-top: 1px solid $gantt-cell-border-color;
73
- }
74
-
75
- .e-gantt-toolbar {
76
- border-bottom-left-radius: 0;
77
- border-bottom-right-radius: 0;
78
- border-style: solid;
79
- border-width: 1px 1px 0;
80
- }
81
-
82
- .e-flmenu-valuediv {
83
- padding-top: $gantt-filter-menu-value-div-padding;
84
- }
85
-
86
- .e-gantt-splitter {
87
- .e-split-bar.e-split-bar-horizontal.e-resizable-split-bar {
88
- margin: 0;
89
- }
90
-
91
- .e-pane {
92
- overflow: hidden !important; // sass-lint:disable-line no-important
93
- }
94
- }
95
-
96
- .e-temp-content {
97
- border-left: 1px solid;
98
- }
99
-
100
- .e-tab {
101
- border: 0;
102
-
103
- .e-tab-header .e-toolbar-item.e-active {
104
- border-color: transparent;
105
- }
106
- }
107
-
108
- .e-gantt-tree-grid-pane {
109
- .e-grid {
110
- border-width: 0;
111
- }
112
-
113
- .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),
114
- .e-grid.e-gridhover tr[role='row']:hover .e-detailrowcollapse:not(.e-cellselectionbackground):not(.e-active):not(.e-updatedtd):not(.e-indentcell),
115
- .e-grid.e-gridhover tr[role='row']:hover .e-rowdragdrop:not(.e-cellselectionbackground):not(.e-active):not(.e-updatedtd):not(.e-indentcell),
116
- .e-grid.e-rtl .e-gridhover tr[role='row']:hover .e-rowdragdrop:not(.e-cellselectionbackground):not(.e-active):not(.e-updatedtd):not(.e-indentcell),
117
- .e-grid.e-gridhover tr[role='row']:hover .e-detailrowexpand:not(.e-cellselectionbackground):not(.e-active):not(.e-updatedtd):not(.e-indentcell) {
118
- background-color: transparent;
119
- }
120
-
121
- .e-gantt-temp-header {
122
- border-bottom-style: solid;
123
- border-bottom-width: 1px;
124
- height: 45px;
125
- }
126
-
127
- .e-headercontent {
128
- border-right-width: 0 !important; // sass-lint:disable-line no-important
129
- }
130
-
131
- .e-gridheader {
132
- border-top-style: none;
133
- border-top-width: 0;
134
- padding-right: 0 !important; // sass-lint:disable-line no-important
135
- }
136
-
137
- .e-columnheader,
138
- .e-headercell {
139
- height: $gantt-treegrid-header-border-height !important; // sass-lint:disable-line no-important
140
- }
141
-
142
- .e-gridcontent .e-content {
143
- overflow-x: scroll !important; // sass-lint:disable-line no-important
144
- }
145
-
146
- .e-gridcontent .e-content.e-gantt-scroll-padding {
147
- width: calc(100% + 17px);
148
- }
149
-
150
- .e-ganttnotes-info {
151
- text-align: center;
152
- }
153
-
154
- .e-icons.e-notes-info {
155
- display: inline-block;
156
- font-size: 18px;
157
- height: 15px;
158
- line-height: 10px;
159
- vertical-align: middle;
160
- }
161
-
162
- }
163
-
164
- .e-gantt-chart {
165
- height: 100%;
166
- overflow: hidden;
167
- position: relative;
168
- width: 100%;
169
-
170
- .e-chart-root-container {
171
- border-right: 0 solid;
172
-
173
- .e-content {
174
- -webkit-overflow-scrolling: touch; // sass-lint:disable-line no-vendor-prefixes
175
- overflow-x: scroll;
176
- overflow-y: auto;
177
- position: relative;
178
- }
179
-
180
- .e-nonworking-day-container {
181
- position: absolute;
182
- }
183
-
184
- .e-event-markers-container {
185
- position: absolute;
186
- }
187
-
188
- .e-holiday-container {
189
- position: absolute;
190
- }
191
-
192
- .e-weekend-container {
193
- position: absolute;
194
- }
195
-
196
- }
197
-
198
-
199
- .e-timeline-header-container {
200
- border-bottom-style: solid;
201
- border-right-width: 0;
202
- overflow: hidden;
203
- position: relative;
204
- z-index: 6;
205
- }
206
-
207
- .e-timeline-header-table-container > thead > tr > th {
208
- border-left: 0;
209
- padding: 0 3px;
210
- }
211
-
212
- .e-timeline-header-table-container {
213
- border-collapse: collapse;
214
- border-spacing: 0;
215
- border-width: 0;
216
- box-sizing: border-box;
217
- margin: 0;
218
- padding: 0;
219
- }
220
-
221
- .e-timeline-header-table-body {
222
- border-collapse: collapse;
223
- box-sizing: border-box;
224
- display: inline-block;
225
- transform: scale(1);
226
- white-space: nowrap;
227
- }
228
-
229
- .e-timeline-header-table-body > tr {
230
- display: inline-flex;
231
- }
232
-
233
- .e-timeline-top-header-cell,
234
- .e-timeline-single-header-cell {
235
- border-spacing: 0;
236
- border-style: solid;
237
- border-top: 0;
238
- border-width: 1px;
239
- box-sizing: border-box;
240
- display: inline-flex;
241
- font-size: $gantt-timeline-top-headercell-font-size;
242
- font-weight: $gantt-timeline-top-headercell-font-weight;
243
- margin: 0;
244
- padding: 0;
245
- position: static;
246
- text-align: center;
247
- user-select: none;
248
- white-space: nowrap;
249
-
250
- .e-header-cell-label {
251
- box-sizing: border-box;
252
- margin: auto;
253
- overflow: hidden;
254
- position: static;
255
- text-overflow: ellipsis;
256
- white-space: nowrap;
257
- }
258
-
259
- .e-gantt-top-cell-text {
260
- padding-left: 8px;
261
- text-align: left;
262
- }
263
-
264
- }
265
-
266
- .e-gantt-grid-lines {
267
- border-bottom-style: solid;
268
- border-bottom-width: 1px;
269
- border-collapse: collapse;
270
- border-spacing: 0;
271
- box-sizing: border-box;
272
- }
273
-
274
- .e-zero-spacing {
275
- border-spacing: 0;
276
- }
277
-
278
- .e-chart-row:first-child .e-chart-row-border {
279
- //border-width: 0;
280
- border-top-color: transparent;
281
- }
282
-
283
- .e-chart-row {
284
- .e-chart-row-border {
285
- border-collapse: separate;
286
- border-style: solid;
287
- border-width: 1px 0 0;
288
- }
289
-
290
- .e-chart-row-cell {
291
- font-size: 0;
292
- padding: 0;
293
- }
294
-
295
- .e-chart-row-border.e-lastrow {
296
- border-bottom-width: 1px;
297
- }
298
-
299
- @if $skin-name == 'tailwind' or $skin-name == 'tailwind-dark' {
300
- line-height: normal;
301
- }
302
- }
303
-
304
- .e-line-container-cell {
305
- border-right-style: solid;
306
- border-right-width: 1px;
307
- height: 100%;
308
- position: absolute;
309
- }
310
-
311
- .e-taskbar-main-container {
312
- cursor: move;
313
- display: inline-block;
314
- position: absolute;
315
- vertical-align: middle;
316
- z-index: 3;
317
- }
318
-
319
- .e-left-label-container.e-left-label-temp-container {
320
- align-items: center;
321
- display: inline-flex;
322
- justify-content: flex-end;
323
- overflow: hidden;
324
- text-overflow: ellipsis;
325
- white-space: nowrap;
326
- }
327
-
328
- .e-right-label-container.e-right-label-temp-container {
329
- align-items: center;
330
- display: inline-flex;
331
- float: left;
332
- outline: none;
333
- overflow: hidden;
334
- position: absolute;
335
- text-overflow: ellipsis;
336
- white-space: nowrap;
337
- }
338
-
339
- .e-left-label-container {
340
- display: inline-block;
341
- }
342
-
343
- .e-left-label-inner-div,
344
- .e-right-label-container {
345
- overflow: hidden;
346
- }
347
-
348
- .e-left-label-inner-div {
349
- align-items: center;
350
- display: inline-flex;
351
- justify-content: flex-end;
352
- width: 100%;
353
- }
354
-
355
- .e-label {
356
- margin: 3px;
357
- overflow: hidden;
358
- text-overflow: ellipsis;
359
- white-space: nowrap;
360
- }
361
-
362
- .e-right-label-container {
363
- background-color: transparent;
364
- display: inline-block;
365
- margin: 0;
366
- position: absolute;
367
- }
368
-
369
- .e-right-label-inner-div {
370
- align-items: center;
371
- display: inline-flex;
372
- float: left;
373
- outline: none;
374
- overflow: hidden;
375
- }
376
-
377
- .e-indicator-span {
378
- display: inline-block;
379
- font-size: 13px;
380
- font-weight: 400;
381
- overflow: hidden;
382
- position: absolute;
383
- text-overflow: ellipsis;
384
- }
385
-
386
- .e-gantt-child-taskbar,
387
- .e-gantt-parent-taskbar,
388
- .e-gantt-child-progressbar,
389
- .e-gantt-parent-progressbar,
390
- .e-gantt-milestone,
391
- .e-gantt-parent-milestone,
392
- .e-gantt-manualparent-milestone {
393
- display: inline-block;
394
- width: 100%;
395
- }
396
-
397
- .e-manualparent-main-container {
398
- background-color: transparent;
399
- cursor: move;
400
- margin-top: -5px;
401
- position: absolute;
402
- }
403
-
404
- .e-gantt-manualparent-taskbar {
405
- margin-top: 3px;
406
- }
407
-
408
- .e-gantt-split-container-line {
409
- @if ($theme-name == 'material-dark' or $theme-name == 'fabric-dark') {
410
- border-color: $gantt-active-background-color;
411
- }
412
- @else {
413
- border-color: inherit;
414
- }
415
- border-top-style: dotted;
416
- border-top-width: 2px;
417
- height: 0;
418
- left: 2px;
419
- pointer-events: none;
420
- position: absolute;
421
- top: 50%;
422
- width: 98%;
423
- }
424
-
425
- .e-gantt-child-taskbar-inner-div,
426
- .e-gantt-parent-taskbar-inner-div {
427
- border-spacing: 0;
428
- box-sizing: border-box;
429
- margin: auto;
430
- overflow: hidden;
431
- padding: 0;
432
- z-index: 3;
433
- }
434
-
435
- .e-gantt-parent-progressbar-inner-div {
436
- z-index: 3;
437
- }
438
-
439
- .e-gantt-child-progressbar-inner-div,
440
- .e-gantt-parent-progressbar-inner-div {
441
- box-sizing: border-box;
442
- text-align: right;
443
- }
444
-
445
- .e-chart-scroll-container,
446
- .e-chart-rows-container {
447
- user-select: none;
448
- }
449
-
450
- .e-chart-rows-container {
451
- line-height: initial;
452
- }
453
-
454
- .e-taskbar-left-resizer,
455
- .e-taskbar-right-resizer {
456
- display: inline-block;
457
- position: absolute;
458
- top: 0;
459
- width: 10px;
460
- z-index: 4;
461
- }
462
-
463
- .e-child-progress-resizer {
464
- display: inline-block;
465
- height: 15px;
466
- position: absolute;
467
- top: 0;
468
- width: 20px;
469
- z-index: 5;
470
- }
471
-
472
- .e-progress-resize-gripper {
473
- cursor: col-resize;
474
-
475
- .e-progressbar-handler {
476
- border-style: solid;
477
- border-width: 1px;
478
- box-sizing: content-box;
479
- cursor: col-resize;
480
- height: 2px;
481
- position: absolute;
482
- top: 7px;
483
- width: 12px;
484
- }
485
-
486
- .e-progressbar-handler-element {
487
- border-bottom-style: solid;
488
- border-bottom-width: 6px;
489
- border-left: 7px solid transparent;
490
- border-right: 7px solid transparent;
491
- cursor: col-resize;
492
- height: 0;
493
- left: -1px;
494
- position: absolute;
495
- top: -7px;
496
- width: 0;
497
- }
498
-
499
- .e-progressbar-handler-after {
500
- border-bottom-style: solid;
501
- border-bottom-width: 6px;
502
- border-left: 6px solid transparent;
503
- border-right: 6px solid transparent;
504
- cursor: col-resize;
505
- height: 0;
506
- left: -1px;
507
- position: absolute;
508
- top: -6px;
509
- width: 0;
510
- }
511
- }
512
-
513
- .e-baseline-bar {
514
- box-sizing: border-box;
515
- position: absolute;
516
- z-index: 3;
517
- }
518
-
519
- .e-milestone-top,
520
- .e-parent-milestone-top,
521
- .e-manualparent-milestone-top {
522
- border-style: none solid solid;
523
- border-top: 0;
524
- }
525
-
526
- .e-milestone-top,
527
- .e-milestone-bottom,
528
- .e-parent-milestone-top,
529
- .e-parent-milestone-bottom,
530
- .e-manualparent-milestone-top,
531
- .e-manualparent-milestone-bottom {
532
- border-left-color: transparent;
533
- border-right-color: transparent;
534
- }
535
-
536
- .e-milestone-bottom,
537
- .e-parent-milestone-bottom,
538
- .e-manualparent-milestone-bottom {
539
- border-bottom: 0;
540
- border-style: solid solid none;
541
- }
542
-
543
- .e-baseline-gantt-milestone-container {
544
- position: absolute;
545
- z-index: 2;
546
- }
547
-
548
- .e-task-label {
549
- display: inline;
550
- font-weight: normal;
551
- margin-left: 8px;
552
- margin-right: 15px;
553
- overflow: hidden;
554
- text-overflow: ellipsis;
555
- vertical-align: middle;
556
- white-space: nowrap;
557
- }
558
-
559
- .e-task-table {
560
- overflow: hidden;
561
- }
562
-
563
- .e-left-resize-gripper,
564
- .e-right-resize-gripper {
565
- align-items: center;
566
- cursor: ew-resize;
567
- display: inline-flex;
568
- }
569
-
570
- .e-holiday {
571
- display: inline-block;
572
- position: absolute;
573
-
574
- .e-span {
575
- font-size: 13px;
576
- position: absolute;
577
- transform: rotate(-90deg);
578
- white-space: nowrap;
579
- width: 0;
580
- }
581
- }
582
-
583
- .e-weekend {
584
- display: inline-block;
585
- position: absolute;
586
- z-index: 0;
587
- }
588
-
589
- .e-rangecontainer {
590
-
591
- .e-leftarc {
592
- border-bottom-left-radius: $gantt-range-container-arc-radius;
593
- border-top-left-radius: $gantt-range-container-arc-radius;
594
- position: absolute;
595
- }
596
-
597
- .e-rightarc {
598
- border-bottom-right-radius: $gantt-range-container-arc-radius;
599
- border-top-right-radius: $gantt-range-container-arc-radius;
600
- position: absolute;
601
- }
602
- }
603
-
604
- .e-event-markers {
605
- border-left: 1px dashed;
606
- position: absolute;
607
- width: 1px;
608
- z-index: 2;
609
-
610
- .e-span-label {
611
- border-radius: 3px;
612
- font-weight: 500;
613
- height: $event-marker-label-height;
614
- left: 5px;
615
- line-height: $event-marker-line-height;
616
- padding: $event-marker-label-padding;
617
- position: absolute;
618
- top: 50px;
619
- white-space: nowrap;
620
- width: auto;
621
- z-index: 2;
622
- }
623
-
624
- .e-gantt-right-arrow {
625
- border-bottom: 5px solid transparent;
626
- border-right: 5px solid;
627
- border-top: 5px solid transparent;
628
- height: 0;
629
- position: absolute;
630
- top: $event-marker-label-arrow-top;
631
- width: 0;
632
- }
633
- }
634
-
635
- .e-gantt-unscheduled-taskbar {
636
- border-radius: 0;
637
- border-style: none;
638
- display: inline-block;
639
- }
640
-
641
- .e-connector-line-right-arrow {
642
- border-left-style: solid;
643
- border-left-width: 10px;
644
- }
645
-
646
- .e-connector-line-left-arrow {
647
- border-right-style: solid;
648
- border-right-width: 10px;
649
- }
650
-
651
- .e-connector-line-right-arrow,
652
- .e-connector-line-left-arrow {
653
- border-bottom: 5px solid transparent;
654
- border-top: 5px solid transparent;
655
- }
656
-
657
- .e-connector-line-container {
658
- z-index: 5;
659
- }
660
-
661
- .e-connector-line-z-index {
662
- z-index: 1;
663
- }
664
-
665
- .e-connector-line-hover {
666
- outline: 1px solid;
667
- }
668
-
669
- .e-connector-line-hover-z-index {
670
- z-index: 100;
671
- }
672
-
673
- .e-connectortouchpoint {
674
- background-color: transparent;
675
- display: block;
676
- position: absolute;
677
- z-index: 5;
678
- }
679
-
680
- .e-connectorpoint-right,
681
- .e-connectorpoint-left,
682
- .e-right-connectorpoint-outer-div,
683
- .e-left-connectorpoint-outer-div {
684
- border-radius: 50%;
685
- display: inline-block;
686
- position: absolute;
687
- }
688
-
689
- .e-connectorpoint-left-hover,
690
- .e-connectorpoint-right-hover {
691
- border-style: solid;
692
- border-width: 1px;
693
- box-sizing: content-box;
694
- cursor: pointer;
695
- display: inline-block;
696
- }
697
-
698
- .e-connectorpoint-allow-block {
699
- cursor: no-drop;
700
- }
701
-
702
- .e-gantt-manualparenttaskbar-left,
703
- .e-gantt-manualparenttaskbar-right {
704
- background-color: $gantt-manualparent-background-color;
705
- border-color: $gantt-manualparent-background-color;
706
- border-radius: 50%;
707
- display: inline-block;
708
- height: 10px;
709
- margin: -1px;
710
- position: absolute;
711
- width: 10px;
712
- }
713
-
714
- .e-manualparent-milestone-top,
715
- .e-manualparent-milestone-bottom {
716
- border-bottom-color: $gantt-manualparent-background-color;
717
- }
718
-
719
- .e-gantt-manualparenttaskbar-right {
720
- cursor: e-resize;
721
- margin-left: -8px;
722
- }
723
-
724
- .e-gantt-manualparenttaskbar-left {
725
- margin-left: 0;
726
- }
727
-
728
- .e-gantt-manualparenttaskbar {
729
- background: $gantt-manualparent-background-color;
730
- margin-top: 3px;
731
- position: absolute;
732
- }
733
-
734
- .e-icon {
735
- font-family: 'e-icons';
736
- font-size: 13px;
737
- font-style: normal;
738
- font-variant: normal;
739
- font-weight: normal;
740
- line-height: 1;
741
- text-transform: none;
742
- vertical-align: middle;
743
- }
744
-
745
- .e-active-container {
746
- outline: 1px solid;
747
- outline-offset: 2px;
748
- }
749
-
750
- }
751
-
752
- }
753
-
754
- .e-gantt-dialog .e-tab .e-tab-header {
755
- padding-left: $gantt-dialog-tab-padding-left;
756
-
757
- .e-indicator {
758
- display: block;
759
- }
760
-
761
- .e-toolbar-item .e-tab-wrap {
762
- border-style: solid;
763
- border-width: $gantt-tab-header-border-width;
764
- }
765
-
766
- }
767
-
768
- .e-gantt-dialog .e-tab .e-tab-header:not(.e-vertical)::before {
769
- border: 0;
770
- }
771
-
772
- .e-gantt-dialog {
773
- border: 0;
774
-
775
- .e-gridform .e-table {
776
- border-spacing: 0;
777
- }
778
-
779
- .e-item {
780
- height: $gantt-dialog-general-height;
781
- }
782
-
783
- .e-dependent-div {
784
- border-bottom-width: $gantt-depedent-div-border-bottom;
785
- }
786
-
787
- .e-icon-dlg-close {
788
- opacity: initial;
789
- }
790
-
791
- .e-toolbar {
792
- border-top-width: 0;
793
- }
794
-
795
- .e-resource-div {
796
- border-bottom-width: $gantt-resource-div-border-bottom;
797
-
798
- .e-gridheader {
799
- border-top-width: 0;
800
- }
801
-
802
- }
803
-
804
- .e-edit-form-row {
805
- height: $gantt-dialog-general-height;
806
- overflow-y: auto;
807
- }
808
-
809
- .e-edit-form-column:nth-child(odd) {
810
- float: left;
811
- padding: $gantt-dialog-edit-form-odd-padding;
812
- width: 50%;
813
- }
814
-
815
- .e-edit-form-column:nth-child(even) {
816
- float: left;
817
- padding: $gantt-dialog-edit-form-even-padding;
818
- width: 50%;
819
- }
820
-
821
- .e-edit-form-row.e-scroll .e-edit-form-column:nth-child(even) {
822
- padding: $gantt-dialog-edit-form-scroll-padding;
823
- }
824
-
825
- .e-edit-form-column {
826
- height: 75px;
827
- }
828
-
829
- .e-dependent-div .e-content {
830
- height: $gantt-dialog-dependent-height;
831
- }
832
-
833
- .e-resource-div .e-content {
834
- height: $gantt-dialog-resource-height;
835
- }
836
-
837
- .e-richtexteditor {
838
- border-bottom-width: $gantt-richtext-border-bottom;
839
- height: $gantt-dialog-rte-height !important; // sass-lint:disable-line no-important
840
- overflow: hidden;
841
- }
842
-
843
- .e-richtexteditor.e-rte-tb-expand {
844
- border-top: 0;
845
- }
846
-
847
- .e-richtexteditor .e-rte-content {
848
- border-bottom-width: $gantt-richtext-content-border-bottom;
849
- height: $gantt-dialog-rte-content-height;
850
- }
851
-
852
- > .e-dlg-content {
853
- padding: 0 !important; // sass-lint:disable-line no-important
854
- @if $skin-name == 'tailwind' or $skin-name == 'tailwind-dark' {
855
- height: 291px;
856
- }
857
- }
858
-
859
- .e-dlg-header-content {
860
- border-bottom: 0 !important; // sass-lint:disable-line no-important
861
- }
862
-
863
- .e-dlg-header-content {
864
- border-radius: $gantt-dialog-border-radius;
865
- padding-bottom: $gantt-dialog-padding-bottom;
866
-
867
- .e-btn.e-dlg-closeicon-btn {
868
- border-radius: 50%;
869
- }
870
-
871
- }
872
- }
873
-
874
- .e-icon-rowselect::before {
875
- content: '\e930';
876
- }
877
-
878
- .e-ganttpopup {
879
- -moz-user-select: none; // sass-lint:disable-line no-vendor-prefixes
880
- -ms-user-select: none; // sass-lint:disable-line no-vendor-prefixes
881
- -webkit-user-select: none; // sass-lint:disable-line no-vendor-prefixes
882
- font-weight: normal;
883
- position: absolute;
884
- user-select: none;
885
- z-index: 99999;
886
-
887
- .e-rowselect {
888
- line-height: 18px;
889
- text-indent: 7%;
890
- }
891
-
892
- span {
893
- border: 1px solid transparent;
894
- cursor: pointer;
895
- display: inline-block;
896
- height: 26px;
897
- padding: 4px;
898
- width: 26px;
899
- }
900
-
901
- .e-content {
902
- border-radius: 4px;
903
- border-style: solid;
904
- border-width: 1px;
905
- font-size: 14px;
906
- padding: 4px;
907
- }
908
-
909
- .e-tail::after,
910
- .e-tail::before,
911
- .e-ganttpopup {
912
- border: 10px solid transparent;
913
- content: '';
914
- height: 0;
915
- left: 8px;
916
- position: absolute;
917
- width: 0;
918
- }
919
-
920
- .e-downtail::after {
921
- top: 34px;
922
- }
923
- }
924
-
925
- .e-gantt-tooltip.e-tooltip-wrap {
926
- opacity: 1;
927
- }
928
-
929
- .e-gantt-tooltip {
930
- visibility: hidden;
931
- }
932
-
933
- .e-gantt .e-cloneproperties.e-draganddrop .e-row .e-rowcell .e-treecolumn-container .e-icons.e-none::before {
934
- content: '';
935
- }
936
-
937
- .e-bigger .e-gantt .e-gantt-chart .e-label {
938
- font-size: $gantt-bigger-label-font-size;
939
- }
940
-
941
- .e-gantt-tooltip-label {
942
- padding-bottom: 2px;
943
- padding-right: 2px;
944
- text-align: left;
945
- }
946
-
947
- .e-gantt.e-device {
948
- .e-edit-form-column {
949
- &:nth-child(odd),
950
- &:nth-child(even) {
951
- float: none;
952
- padding: $gantt-dialog-edit-form-odd-padding;
953
- width: 100%;
954
- }
955
- }
956
-
957
- .e-edit-form-row {
958
- height: auto;
959
- }
960
-
961
- .e-adaptive-searchbar {
962
- padding: 5px 10px;
963
- width: 90%;
964
- }
965
-
966
- .e-backarrowspan {
967
- font-size: 16px;
968
- padding: 5px 10px;
969
- }
970
-
971
- .e-gantt-dialog {
972
- max-height: none;
973
-
974
- .e-dlg-closeicon-btn {
975
- float: left;
976
- left: -4px;
977
- }
978
-
979
- .e-icon-dlg-close {
980
- font-size: 16px;
981
- }
982
-
983
- .e-dlg-header {
984
- display: inline-block;
985
- }
986
- }
987
-
988
- .e-toolbar-item {
989
- padding: 7px;
990
- }
991
-
992
- .e-toolbar .e-icons {
993
- font-size: 18px;
994
- }
995
-
996
- .e-gridheader .e-icons {
997
- font-size: 12px;
998
- }
999
-
1000
- .e-right-resize-gripper,
1001
- .e-left-resize-gripper {
1002
- border: 7px solid;
1003
- z-index: -1;
1004
-
1005
- &::before {
1006
- font-size: 14px;
1007
- margin-left: -7px;
1008
- }
1009
- }
1010
-
1011
- .e-dependent-div .e-content {
1012
- height: 100%;
1013
- }
1014
-
1015
- .e-resource-div .e-content {
1016
- height: 100%;
1017
- }
1018
-
1019
- .e-richtexteditor {
1020
- height: 100%;
1021
-
1022
- .e-rte-content {
1023
- height: 100%;
1024
- }
1025
- }
1026
- }
1027
- }
1
+ @include export-module('gantt-layout') {
2
+
3
+ .e-bigger {
4
+ .e-gantt {
5
+ .e-gantt-chart {
6
+ .e-timeline-header-container {
7
+ height: $gantt-bigger-header-border-height;
8
+ }
9
+
10
+ .e-timeline-top-header-cell {
11
+ height: $gantt-bigger-timeline-top-header-cell-height;
12
+ }
13
+
14
+ .e-event-markers {
15
+ .e-span-label {
16
+ border-radius: $gantt-bigger-event-markers-border-radius;
17
+ font-size: $gantt-bigger-event-arrow-font-size;
18
+ height: $gantt-bigger-event-markers-height;
19
+ padding: $gantt-bigger-event-markers-padding;
20
+ top: $gantt-bigger-event-markers-top;
21
+ }
22
+
23
+ .e-gantt-right-arrow {
24
+ border-bottom: $gantt-bigger-event-arrow-bottom;
25
+ border-right: $gantt-bigger-event-arrow-right;
26
+ border-right-color: $gantt-bigger-event-arrow-color;
27
+ border-top: $gantt-bigger-event-arrow-top;
28
+ top: $gantt-bigger-event-arrow-top-value;
29
+ }
30
+ }
31
+
32
+ @if ($skin-name == 'FluentUI' or $skin-name == 'bootstrap5' or $skin-name == 'tailwind') {
33
+ .e-left-resize-gripper::before,
34
+ .e-right-resize-gripper::before {
35
+ content: '\e888';
36
+ }
37
+ }
38
+ @else {
39
+ .e-left-resize-gripper::before,
40
+ .e-right-resize-gripper::before {
41
+ content: '\e92c';
42
+ }
43
+ }
44
+
45
+ .e-connectorpoint-right,
46
+ .e-connectorpoint-left,
47
+ .e-right-connectorpoint-outer-div,
48
+ .e-left-connectorpoint-outer-div {
49
+ border-radius: 50%;
50
+ display: inline-block;
51
+ position: absolute;
52
+ }
53
+
54
+ .e-connectorpoint-left-hover,
55
+ .e-connectorpoint-right-hover {
56
+ border-style: solid;
57
+ border-width: 1px;
58
+ box-sizing: content-box;
59
+ cursor: pointer;
60
+ display: inline-block;
61
+ }
62
+
63
+ .e-connectorpoint-left-hover,
64
+ .e-connectorpoint-right-hover {
65
+ background-color: $connector-point-hover-color;
66
+ border-color: $connector-point-border-color;
67
+ }
68
+
69
+ .e-connectorpoint-left-hover:hover,
70
+ .e-connectorpoint-right-hover:hover {
71
+ background-color: $connector-point-hover-color;
72
+ border-color: $connector-point-border-color;
73
+ outline: 2px solid $connector-point-hover-outerline-color;
74
+ }
75
+ }
76
+
77
+ .e-tab .e-content {
78
+ height: $gantt-bigger-add-dialog-content-height;
79
+ }
80
+
81
+ .e-gantt-tree-grid-pane {
82
+ .e-columnheader {
83
+ .e-headercell {
84
+ height: $gantt-bigger-treegrid-header-border-height !important; /* stylelint-disable-line declaration-no-important */
85
+ }
86
+ }
87
+ }
88
+
89
+ .e-dialog {
90
+ .e-dlg-header-content {
91
+ padding: $gantt-bigger-dialog-header-padding; /* stylelint-disable-line declaration-no-important */
92
+
93
+ .e-btn.e-dlg-closeicon-btn {
94
+ left: $gantt-bigger-dialog-close-button-left;
95
+ }
96
+ }
97
+ @if ($skin-name == 'FluentUI' or $skin-name == 'fluent-dark') {
98
+ .e-dlg-content {
99
+ margin-bottom: 0;
100
+ }
101
+ }
102
+ @if ($skin-name == 'tailwind') {
103
+ .e-dlg-header-content {
104
+ height: 68px !important; /* stylelint-disable-line declaration-no-important */
105
+ }
106
+ }
107
+
108
+ .e-btn .e-btn-icon.e-icon-dlg-close {
109
+ font-size: $gantt-bigger-dialog-close-button-size;
110
+ }
111
+
112
+ .e-footer-content {
113
+ height: $gantt-bigger-filter-dialog-footer-height;
114
+ padding: $gantt-bigger-filter-dialog-footer-padding;
115
+
116
+ .e-btn {
117
+ margin-left: 12px;
118
+ }
119
+ }
120
+
121
+ .e-dlg-header {
122
+ line-height: 28px;
123
+ }
124
+ }
125
+
126
+ .e-filter-popup.e-popup {
127
+ width: $gantt-bigger-filter-dialog-width;
128
+ }
129
+
130
+ .e-grid .e-flmenu-valuediv {
131
+ padding: $gantt-bigger-filter-dialog-input-padding;
132
+ }
133
+
134
+ .e-filter-popup {
135
+ .e-dlg-content {
136
+ border-radius: $gantt-dialog-bigger-border-radius;
137
+ padding: $gantt-dialog-bigger-input-padding-field;
138
+ }
139
+ }
140
+ }
141
+
142
+ .e-columnmenu {
143
+ @if $skin-name == 'bootstrap5-dark' or $skin-name == 'tailwind-dark' {
144
+ top: 35px;
145
+ }
146
+ @else if $skin-name == 'fluent-dark' {
147
+ top: 38px;
148
+ }
149
+ @else {
150
+ top: $bigger-column-menu-size;
151
+ }
152
+ }
153
+
154
+ .e-gantt-dialog {
155
+ .e-dialog {
156
+ border-radius: 6px;
157
+ width: $gantt-bigger-dialog-width;
158
+ }
159
+ .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
160
+ padding: 0 16px !important; /* stylelint-disable-line declaration-no-important */
161
+ }
162
+
163
+ .e-edit-form-column:nth-child(odd) {
164
+ padding: $gantt-bigger-dialog-edit-form-odd-padding;
165
+ }
166
+
167
+ .e-edit-form-column:nth-child(even) {
168
+ padding: $gantt-bigger-dialog-edit-form-even-padding;
169
+ }
170
+
171
+ .e-edit-form-row.e-scroll .e-edit-form-column:nth-child(even) {
172
+ padding: $gantt-bigger-dialog-edit-form-scroll-padding;
173
+ }
174
+
175
+ .e-edit-form-row {
176
+ height: $gantt-bigger-add-dialog-content-height;
177
+ }
178
+
179
+ .e-edit-form-column {
180
+ height: $gantt-bigger-add-dialog-input-height;
181
+ }
182
+
183
+ .e-dlg-header-content {
184
+ border-bottom: 0 !important; /* stylelint-disable-line declaration-no-important */
185
+ }
186
+
187
+ > .e-dlg-content {
188
+ border-radius: 0 !important; /* stylelint-disable-line declaration-no-important */
189
+ }
190
+
191
+ .e-dlg-header-content {
192
+ border-radius: $gantt-bigger-dialog-border-radius;
193
+ padding-bottom: $gantt-dialog-padding-bottom;
194
+
195
+ .e-btn.e-dlg-closeicon-btn {
196
+ border-radius: 50%;
197
+ height: auto !important; /* stylelint-disable-line declaration-no-important */
198
+ width: auto;
199
+ }
200
+ }
201
+
202
+ .e-tab {
203
+ .e-tab-header .e-toolbar-item.e-active {
204
+ margin-left: $gantt-bigger-dialog-tab-padding-left;
205
+ }
206
+ }
207
+
208
+ @if ($skin-name == 'bootstrap4') {
209
+ .e-icon-dlg-close {
210
+ color: $gantt-bigger-dialog-icon-color;
211
+ }
212
+ }
213
+
214
+ .e-control-wrapper .e-input-group-icon.e-date-icon {
215
+ font-size: 16px !important; /* stylelint-disable-line declaration-no-important */
216
+ }
217
+
218
+ .e-control-wrapper .e-input-group-icon.e-date-icon {
219
+ min-height: $gantt-bigger-dialog-input-icon;
220
+ min-width: 35.82px !important; /* stylelint-disable-line declaration-no-important */
221
+ }
222
+
223
+ .e-btn.e-flat {
224
+ line-height: 24px;
225
+ padding: 6px 16px 6px 15px !important; /* stylelint-disable-line declaration-no-important */
226
+ }
227
+
228
+ .e-btn.e-primary {
229
+ padding: 6px 21px 6px 23px !important; /* stylelint-disable-line declaration-no-important */
230
+ }
231
+
232
+ .e-datetime-wrapper .e-time-icon.e-icons::before {
233
+ font-size: 16px !important; /* stylelint-disable-line declaration-no-important */
234
+ }
235
+
236
+ .e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text {
237
+ font-size: 14px;
238
+ line-height: 22px;
239
+ }
240
+
241
+ .e-float-input.e-control-wrapper input[disabled] ~ label.e-label-top.e-float-text {
242
+ font-size: 14px;
243
+ line-height: 22px;
244
+ }
245
+
246
+ .e-float-input.e-control-wrapper input {
247
+ height: $gantt-bigger-dialog-input-field-height;
248
+
249
+ @if ($skin-name == 'material') {
250
+ padding: 5px 0 11px !important; /* stylelint-disable-line declaration-no-important */
251
+ }
252
+ }
253
+
254
+ .e-numeric.e-control-wrapper.e-input-group .e-input-group-icon {
255
+ min-height: $gantt-bigger-dialog-input-icon;
256
+ min-width: 35.82px !important; /* stylelint-disable-line declaration-no-important */
257
+ }
258
+
259
+ .e-control-wrapper .e-input-group-icon.e-time-icon {
260
+ min-height: $gantt-bigger-dialog-input-icon;
261
+ min-width: 35.82px !important; /* stylelint-disable-line declaration-no-important */
262
+ }
263
+
264
+ .e-input-group.e-control-wrapper {
265
+ height: $gantt-dialog-bigger-input-field;
266
+ }
267
+
268
+ .e-input-group-icon.e-date-icon {
269
+ min-width: 36px !important; /* stylelint-disable-line declaration-no-important */
270
+ }
271
+
272
+ @if ($skin-name == 'material') {
273
+ .e-datetime-wrapper .e-input-group-icon.e-time-icon {
274
+ margin: 5px 0 6px !important; /* stylelint-disable-line declaration-no-important */
275
+ }
276
+
277
+ .e-input-group.e-control-wrapper .e-input-group-icon {
278
+ margin-right: 0 !important; /* stylelint-disable-line declaration-no-important */
279
+ }
280
+ }
281
+
282
+ @if ($skin-name == 'tailwind') {
283
+ .e-input-group.e-control-wrapper .e-input-group-icon {
284
+ padding: 7px 0 !important; /* stylelint-disable-line declaration-no-important */
285
+ }
286
+ }
287
+ }
288
+
289
+ .e-predecessor-tooltip {
290
+ .e-arrow-tip-outer.e-tip-bottom {
291
+ border-top: 8px solid $gantt-bigger-tooltip-button-color;
292
+ @if ($skin-name == 'FluentUI')
293
+ {
294
+ border-top: 12.5px solid $gantt-bigger-tooltip-button-color;
295
+ }
296
+ @else if ($skin-name == 'highcontrast'){
297
+ border-top: 7px solid $gantt-bigger-tooltip-button-color;
298
+ }
299
+ }
300
+
301
+ .e-arrow-tip-inner.e-tip-bottom {
302
+ color: $gantt-bigger-tooltip-button-color;
303
+ }
304
+
305
+ .e-left-btn:disabled {
306
+ color: $gantt-bigger-tooltip-disabled-button-color;
307
+ }
308
+
309
+ .e-right-btn:disabled {
310
+ color: $gantt-bigger-tooltip-disabled-button-color;
311
+ }
312
+
313
+ .e-tip-content {
314
+ padding: 3px !important; /* stylelint-disable-line declaration-no-important */
315
+ }
316
+
317
+ .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type {
318
+ background-color: $gantt-bigger-tooltip-button-color;
319
+ border-color: $gantt-bigger-tooltip-button-color;
320
+ color: $gantt-bigger-tooltip-button-text-color;
321
+ font-size: 12px;
322
+ line-height: 18px;
323
+ padding: 0 8px 0 0;
324
+ }
325
+
326
+ .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:last-of-type {
327
+ background-color: $gantt-bigger-tooltip-button-color;
328
+ border-color: $gantt-bigger-tooltip-button-color;
329
+ color: $gantt-bigger-tooltip-button-text-color;
330
+ font-size: 12px;
331
+ line-height: 18px;
332
+ padding: 0 0 0 8px;
333
+ }
334
+ }
335
+
336
+ .e-predecessor-dialog {
337
+ background-color: $gantt-bigger-tooltip-dialog-color;
338
+
339
+ .e-dlg-content {
340
+ background-color: $gantt-bigger-tooltip-dialog-color;
341
+ padding: $gantt-bigger-predecessor-dialog-padding;
342
+ font-size: $gantt-bigger-predecessor-dialog-font-size;
343
+ font-weight: $gantt-bigger-predecessor-dialog-font-weight;
344
+ line-height: $gantt-bigger-predecessor-dialog-line-height;
345
+ @if ($skin-name == 'FluentUI') {
346
+ margin-bottom: 0;
347
+ }
348
+ @if ($skin-name == 'bootstrap-dark' or $skin-name == 'fabric-dark' or $theme-name == 'material-dark') {
349
+ color: $gantt-bigger-tooltip-button-color;
350
+ }
351
+ }
352
+ }
353
+ }
354
+
355
+ #{&}.e-gantt {
356
+ display: block;
357
+ width: 100%;
358
+
359
+ .e-cloneproperties {
360
+ padding: $gantt-bigger-clone-padding;
361
+ }
362
+
363
+ & .e-cloneproperties.e-draganddrop .e-row .e-icon-rowdragicon::before {
364
+ left: -5px;
365
+ position: relative;
366
+ }
367
+
368
+ .e-cloneproperties {
369
+ border-style: solid;
370
+ border-width: $gantt-border-size;
371
+ box-shadow: $gantt-group-clone-box-shadow;
372
+ font-size: $gantt-header-font-size;
373
+ font-weight: $gantt-drag-clone-font-weight;
374
+ opacity: $gantt-drag-clone-opacity;
375
+ overflow: hidden;
376
+ padding: $gantt-clone-padding;
377
+ text-align: $gantt-group-clone-text-align;
378
+ user-select: none;
379
+ vertical-align: middle;
380
+ white-space: nowrap;
381
+ z-index: 100;
382
+ }
383
+
384
+ .e-cloneproperties.e-draganddrop {
385
+ border-spacing: 0;
386
+ font-size: $gantt-header-font-size;
387
+ font-weight: normal;
388
+ overflow: visible;
389
+ }
390
+
391
+ .e-cloneproperties .e-bothganttlines {
392
+ border-width: 1px 0 0 1px;
393
+ }
394
+
395
+ .e-draganddrop {
396
+ border-width: 0 1px 1px;
397
+ font-weight: normal;
398
+ padding: 0;
399
+ }
400
+
401
+ .e-draganddrop .e-rowcell {
402
+ opacity: .95;
403
+ }
404
+
405
+ .e-cloneproperties.e-draganddrop table {
406
+ border-spacing: 0;
407
+ }
408
+
409
+ .e-icons.e-errorelem {
410
+ display: inline-block;
411
+ padding-left: 10px;
412
+ vertical-align: middle;
413
+ }
414
+
415
+ .e-errorelem::before {
416
+ color: $error-elem-color;
417
+ content: '\e22a';
418
+ transform: rotate(180deg);
419
+ }
420
+
421
+ & .e-verticallines .e-cloneproperties.e-draganddrop .e-rowdragdrop,
422
+ & .e-bothlines .e-cloneproperties.e-draganddrop .e-rowdragdrop {
423
+ border-bottom: 0;
424
+ border-right: 1px solid $gantt-cell-border-color;
425
+ border-top: 1px solid $gantt-cell-border-color;
426
+ }
427
+
428
+ .e-gantt-toolbar {
429
+ border-bottom-left-radius: 0;
430
+ border-bottom-right-radius: 0;
431
+ border-style: solid;
432
+ border-width: 1px 1px 0;
433
+ }
434
+
435
+ .e-flmenu-valuediv {
436
+ padding-top: $gantt-filter-menu-value-div-padding;
437
+ }
438
+
439
+ .e-gantt-splitter {
440
+ .e-split-bar.e-split-bar-horizontal.e-resizable-split-bar {
441
+ margin: 0;
442
+ }
443
+
444
+ .e-pane {
445
+ overflow: hidden !important; /* stylelint-disable-line declaration-no-important */
446
+ }
447
+ }
448
+
449
+ .e-temp-content {
450
+ border-left: 1px solid;
451
+ }
452
+
453
+ .e-tab {
454
+ border: 0;
455
+
456
+ .e-tab-header .e-toolbar-item.e-active {
457
+ border-color: transparent;
458
+ }
459
+ }
460
+
461
+ .e-gantt-tree-grid-pane {
462
+ .e-grid {
463
+ border-width: 0;
464
+ }
465
+
466
+ .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),
467
+ .e-grid.e-gridhover tr[role = 'row']:hover .e-detailrowcollapse:not(.e-cellselectionbackground):not(.e-active):not(.e-updatedtd):not(.e-indentcell),
468
+ .e-grid.e-gridhover tr[role = 'row']:hover .e-rowdragdrop:not(.e-cellselectionbackground):not(.e-active):not(.e-updatedtd):not(.e-indentcell),
469
+ .e-grid.e-rtl .e-gridhover tr[role = 'row']:hover .e-rowdragdrop:not(.e-cellselectionbackground):not(.e-active):not(.e-updatedtd):not(.e-indentcell),
470
+ .e-grid.e-gridhover tr[role = 'row']:hover .e-detailrowexpand:not(.e-cellselectionbackground):not(.e-active):not(.e-updatedtd):not(.e-indentcell) {
471
+ background-color: transparent;
472
+ }
473
+
474
+ .e-gantt-temp-header {
475
+ border-bottom-style: solid;
476
+ border-bottom-width: 1px;
477
+ height: 45px;
478
+ }
479
+
480
+ .e-headercontent {
481
+ border-right-width: 0 !important; /* stylelint-disable-line declaration-no-important */
482
+ }
483
+
484
+ .e-gridheader {
485
+ border-top-style: none;
486
+ border-top-width: 0;
487
+ padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
488
+ }
489
+
490
+ .e-columnheader,
491
+ .e-headercell {
492
+ height: $gantt-treegrid-header-border-height !important; /* stylelint-disable-line declaration-no-important */
493
+ }
494
+
495
+ .e-gridcontent .e-content {
496
+ overflow-x: scroll !important; /* stylelint-disable-line declaration-no-important */
497
+ }
498
+
499
+ .e-gridcontent .e-content.e-gantt-scroll-padding {
500
+ width: calc(100% + 17px);
501
+ }
502
+
503
+ .e-ganttnotes-info {
504
+ text-align: center;
505
+ }
506
+
507
+ .e-icons.e-notes-info {
508
+ display: inline-block;
509
+ font-size: 18px;
510
+ height: 15px;
511
+ line-height: 10px;
512
+ vertical-align: middle;
513
+ }
514
+ }
515
+
516
+ .e-gantt-chart {
517
+ height: 100%;
518
+ overflow: hidden;
519
+ position: relative;
520
+ width: 100%;
521
+
522
+ .e-chart-root-container {
523
+ border-right: 0 solid;
524
+
525
+ .e-content {
526
+ -webkit-overflow-scrolling: touch; /* stylelint-disable-line property-no-vendor-prefix */
527
+ overflow-x: scroll;
528
+ overflow-y: auto;
529
+ position: relative;
530
+ }
531
+
532
+ .e-nonworking-day-container {
533
+ position: absolute;
534
+ }
535
+
536
+ .e-event-markers-container {
537
+ position: absolute;
538
+ }
539
+
540
+ .e-holiday-container {
541
+ height: 100%;
542
+ position: absolute;
543
+ }
544
+
545
+ .e-weekend-container {
546
+ height: 100%;
547
+ position: absolute;
548
+ }
549
+ }
550
+
551
+ .e-timeline-header-container {
552
+ border-bottom-style: solid;
553
+ border-right: 1px solid;
554
+ overflow: hidden;
555
+ position: relative;
556
+ z-index: 6;
557
+ }
558
+
559
+ .e-timeline-header-table-container > thead > tr > th {
560
+ border-left: 0;
561
+ }
562
+
563
+ .e-timeline-header-table-container {
564
+ border-collapse: collapse;
565
+ border-spacing: 0;
566
+ border-width: 0;
567
+ box-sizing: border-box;
568
+ margin: 0;
569
+ padding: 0;
570
+ }
571
+
572
+ .e-timeline-header-table-body {
573
+ border-collapse: collapse;
574
+ box-sizing: border-box;
575
+ display: inline-block;
576
+ transform: scale(1);
577
+ white-space: nowrap;
578
+ }
579
+
580
+ .e-timeline-header-table-body > tr {
581
+ display: inline-flex;
582
+ }
583
+
584
+ .e-timeline-top-header-cell,
585
+ .e-timeline-single-header-cell {
586
+ border-spacing: 0;
587
+ border-style: solid;
588
+ border-top: 0;
589
+ border-width: 1px;
590
+ box-sizing: border-box;
591
+ display: inline-flex;
592
+ font-size: $gantt-timeline-top-headercell-font-size;
593
+ font-weight: $gantt-timeline-top-headercell-font-weight;
594
+ margin: 0;
595
+ padding: 0;
596
+ position: static;
597
+ text-align: center;
598
+ user-select: none;
599
+ white-space: nowrap;
600
+
601
+ .e-header-cell-label {
602
+ box-sizing: border-box;
603
+ margin: auto;
604
+ overflow: hidden;
605
+ position: static;
606
+ text-overflow: ellipsis;
607
+ white-space: nowrap;
608
+ }
609
+
610
+ .e-gantt-top-cell-text {
611
+ padding-left: 11px;
612
+ text-align: left;
613
+ }
614
+ }
615
+
616
+ .e-gantt-grid-lines {
617
+ border-bottom-style: solid;
618
+ border-bottom-width: 1px;
619
+ border-collapse: collapse;
620
+ border-spacing: 0;
621
+ box-sizing: border-box;
622
+ }
623
+
624
+ .e-zero-spacing {
625
+ border-spacing: 0;
626
+ }
627
+
628
+ .e-chart-row:first-child .e-chart-row-border {
629
+ //border-width: 0;
630
+ border-top-color: transparent;
631
+ }
632
+
633
+ .e-chart-row {
634
+ .e-chart-row-border {
635
+ border-collapse: separate;
636
+ border-style: solid;
637
+ border-width: 1px 0 0;
638
+ }
639
+
640
+ .e-chart-row-cell {
641
+ font-size: 0;
642
+ padding: 0;
643
+ }
644
+
645
+ .e-chart-row-border.e-lastrow {
646
+ border-bottom-width: 1px;
647
+ }
648
+
649
+ @if $skin-name == 'tailwind' or $skin-name == 'tailwind-dark' {
650
+ line-height: normal;
651
+ }
652
+ }
653
+
654
+ .e-line-container-cell {
655
+ border-right-style: solid;
656
+ border-right-width: 1px;
657
+ height: 100%;
658
+ position: absolute;
659
+ }
660
+
661
+ .e-taskbar-main-container {
662
+ cursor: move;
663
+ display: inline-block;
664
+ position: absolute;
665
+ vertical-align: middle;
666
+ z-index: 3;
667
+ }
668
+
669
+ .e-left-label-container.e-left-label-temp-container {
670
+ align-items: center;
671
+ display: inline-flex;
672
+ justify-content: flex-end;
673
+ overflow: hidden;
674
+ text-overflow: ellipsis;
675
+ white-space: nowrap;
676
+ }
677
+
678
+ .e-right-label-container.e-right-label-temp-container {
679
+ align-items: center;
680
+ display: inline-flex;
681
+ float: left;
682
+ outline: none;
683
+ overflow: hidden;
684
+ position: absolute;
685
+ text-overflow: ellipsis;
686
+ white-space: nowrap;
687
+ }
688
+
689
+ .e-left-label-container {
690
+ display: inline-block;
691
+ }
692
+
693
+ .e-left-label-inner-div,
694
+ .e-right-label-container {
695
+ overflow: hidden;
696
+ }
697
+
698
+ .e-left-label-inner-div {
699
+ align-items: center;
700
+ display: inline-flex;
701
+ justify-content: flex-end;
702
+ width: 100%;
703
+ }
704
+
705
+ .e-label {
706
+ margin: 3px;
707
+ overflow: hidden;
708
+ text-overflow: ellipsis;
709
+ white-space: nowrap;
710
+ }
711
+
712
+ .e-right-label-container {
713
+ background-color: transparent;
714
+ display: inline-block;
715
+ margin: 0;
716
+ position: absolute;
717
+ }
718
+
719
+ .e-right-label-inner-div {
720
+ align-items: center;
721
+ display: inline-flex;
722
+ float: left;
723
+ outline: none;
724
+ overflow: hidden;
725
+ }
726
+
727
+ .e-indicator-span {
728
+ display: inline-block;
729
+ font-size: 13px;
730
+ font-weight: normal;
731
+ overflow: hidden;
732
+ position: absolute;
733
+ text-overflow: ellipsis;
734
+ }
735
+
736
+ .e-gantt-child-taskbar,
737
+ .e-gantt-parent-taskbar,
738
+ .e-gantt-child-progressbar,
739
+ .e-gantt-parent-progressbar,
740
+ .e-gantt-milestone,
741
+ .e-gantt-parent-milestone,
742
+ .e-gantt-manualparent-milestone {
743
+ display: inline-block;
744
+ width: 100%;
745
+ }
746
+
747
+ .e-manualparent-main-container {
748
+ background-color: transparent;
749
+ cursor: move;
750
+ margin-top: -5px;
751
+ position: absolute;
752
+ }
753
+
754
+ .e-gantt-manualparent-taskbar {
755
+ margin-top: 3px;
756
+ }
757
+
758
+ .e-gantt-split-container-line {
759
+ @if ($theme-name == 'material-dark' or $theme-name == 'fabric-dark') {
760
+ border-color: $gantt-active-background-color;
761
+ }
762
+ @else {
763
+ border-color: inherit;
764
+ }
765
+ border-top-style: dotted;
766
+ border-top-width: 2px;
767
+ height: 0;
768
+ left: 2px;
769
+ pointer-events: none;
770
+ position: absolute;
771
+ top: 50%;
772
+ width: 98%;
773
+ }
774
+
775
+ .e-gantt-child-taskbar-inner-div,
776
+ .e-gantt-parent-taskbar-inner-div {
777
+ border-spacing: 0;
778
+ box-sizing: border-box;
779
+ margin: auto;
780
+ overflow: hidden;
781
+ padding: 0;
782
+ z-index: 3;
783
+ }
784
+
785
+ .e-gantt-parent-progressbar-inner-div {
786
+ z-index: 3;
787
+ }
788
+
789
+ .e-gantt-child-progressbar-inner-div,
790
+ .e-gantt-parent-progressbar-inner-div {
791
+ box-sizing: border-box;
792
+ text-align: right;
793
+ }
794
+
795
+ .e-chart-scroll-container,
796
+ .e-chart-rows-container {
797
+ user-select: none;
798
+ }
799
+
800
+ .e-chart-rows-container {
801
+ line-height: initial;
802
+ }
803
+
804
+ .e-taskbar-left-resizer,
805
+ .e-taskbar-right-resizer {
806
+ display: inline-block;
807
+ position: absolute;
808
+ top: 0;
809
+ width: 10px;
810
+ z-index: 4;
811
+ }
812
+
813
+ .e-child-progress-resizer {
814
+ display: inline-block;
815
+ height: 15px;
816
+ position: absolute;
817
+ top: 0;
818
+ width: 20px;
819
+ z-index: 5;
820
+ }
821
+
822
+ .e-progress-resize-gripper {
823
+ cursor: col-resize;
824
+
825
+ .e-progressbar-handler {
826
+ border-width: 1px;
827
+ box-sizing: content-box;
828
+ cursor: col-resize;
829
+ height: 2px;
830
+ position: absolute;
831
+ top: 7px;
832
+ }
833
+
834
+ .e-progressbar-handler-element {
835
+ border-bottom-style: solid;
836
+ border-bottom-width: 8px;
837
+ border-left: 7px solid transparent;
838
+ border-right: 7px solid transparent;
839
+ cursor: col-resize;
840
+ height: 0;
841
+ left: 0;
842
+ position: absolute;
843
+ top: -7px;
844
+ width: 0;
845
+ }
846
+
847
+ .e-progressbar-handler-after {
848
+ border-bottom-style: solid;
849
+ border-bottom-width: 8px;
850
+ border-left: 6px solid transparent;
851
+ border-right: 6px solid transparent;
852
+ cursor: col-resize;
853
+ height: 0;
854
+ left: 1px;
855
+ position: absolute;
856
+ top: -7px;
857
+ width: 0;
858
+ }
859
+ }
860
+
861
+ .e-baseline-bar {
862
+ border-radius: 2px;
863
+ box-sizing: border-box;
864
+ position: absolute;
865
+ z-index: 2;
866
+ }
867
+
868
+ .e-milestone-top,
869
+ .e-parent-milestone-top,
870
+ .e-manualparent-milestone-top {
871
+ border-style: none solid solid;
872
+ border-top: 0;
873
+ }
874
+
875
+ .e-milestone-top,
876
+ .e-milestone-bottom,
877
+ .e-parent-milestone-top,
878
+ .e-parent-milestone-bottom,
879
+ .e-manualparent-milestone-top,
880
+ .e-manualparent-milestone-bottom {
881
+ border-left-color: transparent;
882
+ border-right-color: transparent;
883
+ }
884
+
885
+ .e-milestone-bottom,
886
+ .e-parent-milestone-bottom,
887
+ .e-manualparent-milestone-bottom {
888
+ border-bottom: 0;
889
+ border-style: solid solid none;
890
+ }
891
+
892
+ .e-baseline-gantt-milestone-container {
893
+ position: absolute;
894
+ z-index: 2;
895
+ }
896
+
897
+ .e-task-label {
898
+ display: inline;
899
+ font-weight: normal;
900
+ margin-left: 8px;
901
+ margin-right: 15px;
902
+ overflow: hidden;
903
+ text-overflow: ellipsis;
904
+ vertical-align: middle;
905
+ white-space: nowrap;
906
+ }
907
+
908
+ .e-task-table {
909
+ overflow: hidden;
910
+ }
911
+
912
+ .e-left-resize-gripper,
913
+ .e-right-resize-gripper {
914
+ align-items: center;
915
+ cursor: ew-resize;
916
+ display: inline-flex;
917
+ }
918
+
919
+ .e-holiday {
920
+ display: inline-block;
921
+ position: absolute;
922
+
923
+ .e-span {
924
+ position: absolute;
925
+ transform: rotate(-90deg);
926
+ white-space: nowrap;
927
+ width: 0;
928
+ }
929
+ }
930
+
931
+ .e-weekend {
932
+ display: inline-block;
933
+ position: absolute;
934
+ z-index: 0;
935
+ }
936
+
937
+ .e-rangecontainer {
938
+
939
+ .e-leftarc {
940
+ border-bottom-left-radius: $gantt-range-container-arc-radius;
941
+ border-top-left-radius: $gantt-range-container-arc-radius;
942
+ position: absolute;
943
+ }
944
+
945
+ .e-rightarc {
946
+ border-bottom-right-radius: $gantt-range-container-arc-radius;
947
+ border-top-right-radius: $gantt-range-container-arc-radius;
948
+ position: absolute;
949
+ }
950
+ }
951
+
952
+ .e-event-markers {
953
+ border-left: 1px dashed;
954
+ position: absolute;
955
+ width: 1px;
956
+ z-index: 2;
957
+
958
+ .e-span-label {
959
+ border-radius: 3px;
960
+ font-weight: 500;
961
+ height: $event-marker-label-height;
962
+ left: 5px;
963
+ line-height: $event-marker-line-height;
964
+ padding: $event-marker-label-padding;
965
+ position: absolute;
966
+ top: 50px;
967
+ white-space: nowrap;
968
+ width: auto;
969
+ z-index: 2;
970
+ }
971
+
972
+ .e-gantt-right-arrow {
973
+ border-bottom: 5px solid transparent;
974
+ border-right: 5px solid;
975
+ border-top: 5px solid transparent;
976
+ height: 0;
977
+ position: absolute;
978
+ top: $event-marker-label-arrow-top;
979
+ width: 0;
980
+ }
981
+ }
982
+
983
+ .e-gantt-unscheduled-taskbar {
984
+ border-radius: 0;
985
+ border-style: none;
986
+ display: inline-block;
987
+ }
988
+
989
+ .e-connector-line-right-arrow {
990
+ border-left-style: solid;
991
+ border-left-width: 10px;
992
+ }
993
+
994
+ .e-connector-line-left-arrow {
995
+ border-right-style: solid;
996
+ border-right-width: 10px;
997
+ }
998
+
999
+ .e-connector-line-right-arrow,
1000
+ .e-connector-line-left-arrow {
1001
+ border-bottom: 5px solid transparent;
1002
+ border-top: 5px solid transparent;
1003
+ }
1004
+
1005
+ .e-connector-line-container {
1006
+ z-index: 5;
1007
+ }
1008
+
1009
+ .e-connector-line-z-index {
1010
+ z-index: 1;
1011
+ }
1012
+
1013
+ .e-connector-line-hover {
1014
+ outline: 1px solid;
1015
+ }
1016
+
1017
+ .e-critical-connector-line-hover {
1018
+ outline: 1px solid;
1019
+ }
1020
+
1021
+ .e-connector-line-hover-z-index {
1022
+ z-index: 100;
1023
+ }
1024
+
1025
+ .e-connectortouchpoint {
1026
+ background-color: transparent;
1027
+ display: block;
1028
+ position: absolute;
1029
+ z-index: 5;
1030
+ }
1031
+
1032
+ .e-connectorpoint-right,
1033
+ .e-connectorpoint-left,
1034
+ .e-right-connectorpoint-outer-div,
1035
+ .e-left-connectorpoint-outer-div {
1036
+ border-radius: 50%;
1037
+ display: inline-block;
1038
+ position: absolute;
1039
+ }
1040
+
1041
+ .e-connectorpoint-left-hover,
1042
+ .e-connectorpoint-right-hover {
1043
+ border-style: solid;
1044
+ border-width: 1px;
1045
+ box-sizing: content-box;
1046
+ cursor: pointer;
1047
+ display: inline-block;
1048
+ }
1049
+
1050
+ .e-connectorpoint-allow-block {
1051
+ cursor: no-drop;
1052
+ }
1053
+
1054
+ .e-gantt-manualparenttaskbar-left,
1055
+ .e-gantt-manualparenttaskbar-right {
1056
+ background-color: $gantt-manualparent-background-color;
1057
+ border-color: $gantt-manualparent-background-color;
1058
+ border-radius: 50%;
1059
+ display: inline-block;
1060
+ height: 10px;
1061
+ margin: -1px;
1062
+ position: absolute;
1063
+ width: 10px;
1064
+ }
1065
+
1066
+ .e-manualparent-milestone-top,
1067
+ .e-manualparent-milestone-bottom {
1068
+ border-bottom-color: $gantt-manualparent-background-color;
1069
+ }
1070
+
1071
+ .e-gantt-manualparenttaskbar-right {
1072
+ cursor: e-resize;
1073
+ margin-left: -8px;
1074
+ }
1075
+
1076
+ .e-gantt-manualparenttaskbar-left {
1077
+ margin-left: 0;
1078
+ }
1079
+
1080
+ .e-gantt-manualparenttaskbar {
1081
+ background: $gantt-manualparent-background-color;
1082
+ margin-top: 3px;
1083
+ position: absolute;
1084
+ }
1085
+
1086
+ .e-icon {
1087
+ font-family: 'e-icons';
1088
+ font-size: 13px;
1089
+ font-style: normal;
1090
+ font-variant: normal;
1091
+ font-weight: normal;
1092
+ line-height: 1;
1093
+ text-transform: none;
1094
+ vertical-align: middle;
1095
+ }
1096
+
1097
+ .e-active-container {
1098
+ outline: 1px solid;
1099
+ outline-offset: 2px;
1100
+ }
1101
+ }
1102
+ }
1103
+
1104
+ .e-gantt-dialog .e-tab .e-tab-header {
1105
+ padding-left: $gantt-dialog-tab-padding-left;
1106
+
1107
+ .e-indicator {
1108
+ display: block;
1109
+ }
1110
+
1111
+ .e-toolbar-item .e-tab-wrap {
1112
+ border-style: solid;
1113
+ border-width: $gantt-tab-header-border-width;
1114
+ }
1115
+ }
1116
+
1117
+ .e-gantt-dialog .e-tab .e-tab-header:not(.e-vertical)::before {
1118
+ border: 0;
1119
+ }
1120
+
1121
+ .e-gantt-dialog {
1122
+ border: 0;
1123
+
1124
+ .e-gridform .e-table {
1125
+ border-spacing: 0;
1126
+ }
1127
+
1128
+ .e-item {
1129
+ height: $gantt-dialog-general-height;
1130
+ }
1131
+
1132
+ .e-dependent-div {
1133
+ border-bottom-width: $gantt-depedent-div-border-bottom;
1134
+ }
1135
+
1136
+ .e-icon-dlg-close {
1137
+ opacity: initial;
1138
+ }
1139
+
1140
+ .e-toolbar {
1141
+ border-top-width: 0;
1142
+ }
1143
+
1144
+ .e-resource-div {
1145
+ border-bottom-width: $gantt-resource-div-border-bottom;
1146
+
1147
+ .e-gridheader {
1148
+ border-top-width: 0;
1149
+ }
1150
+ }
1151
+
1152
+ .e-edit-form-row {
1153
+ height: $gantt-dialog-general-height;
1154
+ overflow-y: auto;
1155
+ }
1156
+
1157
+ .e-edit-form-column:nth-child(odd) {
1158
+ float: left;
1159
+ padding: $gantt-dialog-edit-form-odd-padding;
1160
+ width: 50%;
1161
+ }
1162
+
1163
+ .e-edit-form-column:nth-child(even) {
1164
+ float: left;
1165
+ padding: $gantt-dialog-edit-form-even-padding;
1166
+ width: 50%;
1167
+ }
1168
+
1169
+ .e-edit-form-row.e-scroll .e-edit-form-column:nth-child(even) {
1170
+ padding: $gantt-dialog-edit-form-scroll-padding;
1171
+ }
1172
+
1173
+ .e-edit-form-column {
1174
+ height: 75px;
1175
+ }
1176
+
1177
+ .e-dependent-div .e-content {
1178
+ height: $gantt-dialog-dependent-height;
1179
+ }
1180
+
1181
+ .e-resource-div .e-content {
1182
+ height: $gantt-dialog-resource-height;
1183
+ }
1184
+
1185
+ .e-richtexteditor {
1186
+ border-bottom-width: $gantt-richtext-border-bottom;
1187
+ height: $gantt-dialog-rte-height !important; /* stylelint-disable-line declaration-no-important */
1188
+ overflow: hidden;
1189
+ }
1190
+
1191
+ .e-richtexteditor.e-rte-tb-expand {
1192
+ border-top: 0;
1193
+ }
1194
+
1195
+ .e-richtexteditor .e-rte-content {
1196
+ border-bottom-width: $gantt-richtext-content-border-bottom;
1197
+ height: $gantt-dialog-rte-content-height;
1198
+ overflow: hidden;
1199
+ }
1200
+
1201
+ > .e-dlg-content {
1202
+ padding: 0 !important; /* stylelint-disable-line declaration-no-important */
1203
+ @if $skin-name == 'tailwind' or $skin-name == 'tailwind-dark' {
1204
+ height: 291px;
1205
+ }
1206
+ }
1207
+
1208
+ .e-dlg-header-content {
1209
+ border-bottom: 0 !important; /* stylelint-disable-line declaration-no-important */
1210
+ }
1211
+
1212
+ .e-dlg-header-content {
1213
+ border-radius: $gantt-dialog-border-radius;
1214
+ padding-bottom: $gantt-dialog-padding-bottom;
1215
+
1216
+ .e-btn.e-dlg-closeicon-btn {
1217
+ border-radius: 50%;
1218
+ height: auto !important; /* stylelint-disable-line declaration-no-important */
1219
+ width: auto !important; /* stylelint-disable-line declaration-no-important */
1220
+ }
1221
+ }
1222
+ }
1223
+
1224
+ .e-icon-rowselect::before {
1225
+ content: '\e930';
1226
+ }
1227
+
1228
+ .e-ganttpopup {
1229
+ -moz-user-select: none; /* stylelint-disable-line property-no-vendor-prefix */
1230
+ -ms-user-select: none; /* stylelint-disable-line property-no-vendor-prefix */
1231
+ -webkit-user-select: none; /* stylelint-disable-line property-no-vendor-prefix */
1232
+ font-weight: normal;
1233
+ position: absolute;
1234
+ user-select: none;
1235
+ z-index: 99999;
1236
+
1237
+ .e-rowselect {
1238
+ line-height: 18px;
1239
+ text-indent: 7%;
1240
+ }
1241
+
1242
+ span {
1243
+ border: 1px solid transparent;
1244
+ cursor: pointer;
1245
+ display: inline-block;
1246
+ height: 26px;
1247
+ padding: 4px;
1248
+ width: 26px;
1249
+ }
1250
+
1251
+ .e-content {
1252
+ border-radius: 4px;
1253
+ border-style: solid;
1254
+ border-width: 1px;
1255
+ font-size: 14px;
1256
+ padding: 4px;
1257
+ }
1258
+
1259
+ .e-tail::after,
1260
+ .e-tail::before,
1261
+ .e-ganttpopup {
1262
+ border: 10px solid transparent;
1263
+ content: '';
1264
+ height: 0;
1265
+ left: 8px;
1266
+ position: absolute;
1267
+ width: 0;
1268
+ }
1269
+
1270
+ .e-downtail::after {
1271
+ top: 34px;
1272
+ }
1273
+ }
1274
+
1275
+ .e-gantt-tooltip.e-tooltip-wrap {
1276
+ opacity: 1;
1277
+ }
1278
+
1279
+ .e-gantt-tooltip {
1280
+ visibility: hidden;
1281
+ }
1282
+
1283
+ .e-gantt .e-cloneproperties.e-draganddrop .e-row .e-rowcell .e-treecolumn-container .e-icons.e-none::before {
1284
+ content: '';
1285
+ }
1286
+
1287
+ .e-bigger .e-gantt .e-gantt-chart .e-label {
1288
+ font-size: $gantt-bigger-label-font-size;
1289
+ }
1290
+
1291
+ .e-gantt-tooltip-label {
1292
+ padding-bottom: 2px;
1293
+ padding-right: 2px;
1294
+ text-align: left;
1295
+ }
1296
+
1297
+ .e-gantt.e-device {
1298
+ .e-edit-form-column {
1299
+ &:nth-child(odd),
1300
+ &:nth-child(even) {
1301
+ float: none;
1302
+ padding: $gantt-dialog-edit-form-odd-padding;
1303
+ width: 100%;
1304
+ }
1305
+ }
1306
+
1307
+ .e-edit-form-row {
1308
+ height: auto;
1309
+ }
1310
+
1311
+ .e-adaptive-searchbar {
1312
+ padding: 5px 10px;
1313
+ width: 90%;
1314
+ }
1315
+
1316
+ .e-backarrowspan {
1317
+ font-size: 16px;
1318
+ padding: 5px 10px;
1319
+ }
1320
+
1321
+ .e-gantt-dialog {
1322
+ max-height: none;
1323
+
1324
+ .e-dlg-closeicon-btn {
1325
+ float: left;
1326
+ left: -4px;
1327
+ }
1328
+
1329
+ .e-icon-dlg-close {
1330
+ font-size: 16px;
1331
+ }
1332
+
1333
+ .e-dlg-header {
1334
+ display: inline-block;
1335
+ }
1336
+ }
1337
+
1338
+ .e-toolbar-item {
1339
+ padding: 7px;
1340
+ }
1341
+
1342
+ .e-toolbar .e-icons {
1343
+ font-size: 18px;
1344
+ }
1345
+
1346
+ .e-gridheader .e-icons {
1347
+ font-size: 12px;
1348
+ }
1349
+
1350
+ .e-right-resize-gripper,
1351
+ .e-left-resize-gripper {
1352
+ border: 7px solid;
1353
+ z-index: -1;
1354
+
1355
+ &::before {
1356
+ font-size: 14px;
1357
+ margin-left: -7px;
1358
+ }
1359
+ }
1360
+
1361
+ .e-dependent-div .e-content {
1362
+ height: 100%;
1363
+ }
1364
+
1365
+ .e-resource-div .e-content {
1366
+ height: 100%;
1367
+ }
1368
+
1369
+ .e-richtexteditor {
1370
+ height: 100%;
1371
+
1372
+ .e-rte-content {
1373
+ height: 100%;
1374
+ }
1375
+ }
1376
+ }
1377
+
1378
+ .e-predecessor-tooltip {
1379
+ background-color: $gantt-bigger-tooltip-button-color !important; /* stylelint-disable-line declaration-no-important */
1380
+ border-color: $gantt-bigger-tooltip-button-color !important; /* stylelint-disable-line declaration-no-important */
1381
+ visibility: hidden;
1382
+
1383
+ .e-arrow-tip-outer.e-tip-bottom {
1384
+ border-top: 8px solid $gantt-bigger-tooltip-button-color;
1385
+ @if ($skin-name == 'FluentUI')
1386
+ {
1387
+ border-top: 12.5px solid $gantt-bigger-tooltip-button-color;
1388
+ }
1389
+ @else if ($skin-name == 'highcontrast'){
1390
+ border-top: 7px solid $gantt-bigger-tooltip-button-color;
1391
+ }
1392
+ }
1393
+
1394
+ .e-arrow-tip-inner.e-tip-bottom {
1395
+ color: $gantt-bigger-tooltip-button-color;
1396
+ }
1397
+
1398
+ .e-left-btn:disabled {
1399
+ color: $gantt-bigger-tooltip-disabled-button-color;
1400
+ }
1401
+
1402
+ .e-right-btn:disabled {
1403
+ color: $gantt-bigger-tooltip-disabled-button-color;
1404
+ }
1405
+
1406
+ .e-tip-content {
1407
+ padding: 3px !important; /* stylelint-disable-line declaration-no-important */
1408
+ }
1409
+
1410
+ .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type {
1411
+ background-color: $gantt-bigger-tooltip-button-color;
1412
+ border-color: $gantt-bigger-tooltip-button-color;
1413
+ color: $gantt-bigger-tooltip-button-text-color;
1414
+ font-size: 12px;
1415
+ line-height: 18px;
1416
+ padding: 0 8px 0 0;
1417
+ }
1418
+
1419
+ .e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:last-of-type {
1420
+ background-color: $gantt-bigger-tooltip-button-color;
1421
+ border-color: $gantt-bigger-tooltip-button-color;
1422
+ color: $gantt-bigger-tooltip-button-text-color;
1423
+ font-size: 12px;
1424
+ line-height: 18px;
1425
+ padding: 0 0 0 8px;
1426
+ }
1427
+ }
1428
+
1429
+ .e-predecessor-dialog {
1430
+ background-color: $gantt-bigger-tooltip-dialog-color;
1431
+
1432
+ .e-dlg-content {
1433
+ background-color: $gantt-bigger-tooltip-dialog-color;
1434
+ padding: $gantt-bigger-predecessor-dialog-padding;
1435
+ font-size: $gantt-bigger-predecessor-dialog-font-size;
1436
+ font-weight: $gantt-bigger-predecessor-dialog-font-weight;
1437
+ line-height: $gantt-bigger-predecessor-dialog-line-height;
1438
+ @if ($skin-name == 'FluentUI') {
1439
+ margin-bottom: 0;
1440
+ }
1441
+ @if ($skin-name == 'bootstrap-dark' or $skin-name == 'fabric-dark' or $theme-name == 'material-dark') {
1442
+ color: $gantt-bigger-tooltip-button-color;
1443
+ }
1444
+ }
1445
+ }
1446
+ }