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

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