@syncfusion/ej2-angular-gantt 22.2.10-ngcc → 22.2.10

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