gantt-source_management 3.37.5

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 (166) hide show
  1. package/.editorconfig +9 -0
  2. package/.eslintrc.json +39 -0
  3. package/.prettierrc.cjs +5 -0
  4. package/README.md +129 -0
  5. package/cypress/e2e/add-rows-items.test.ts +26 -0
  6. package/cypress/e2e/basic.test.ts +173 -0
  7. package/cypress/e2e/calculated-zoom-mode.test.ts +163 -0
  8. package/cypress/e2e/calendar-dates.test.ts +285 -0
  9. package/cypress/e2e/dst.test.ts +691 -0
  10. package/cypress/e2e/grid-cells.test.ts +72 -0
  11. package/cypress/e2e/items-vertical.test.ts +305 -0
  12. package/cypress/e2e/items.test.ts +501 -0
  13. package/cypress/e2e/list-columns-toggle.test.ts +124 -0
  14. package/cypress/e2e/list-header-resize.test.ts +30 -0
  15. package/cypress/e2e/locale.test.ts +102 -0
  16. package/cypress/e2e/move-items-outside.test.ts +437 -0
  17. package/cypress/e2e/rows.test.ts +50 -0
  18. package/cypress/e2e/scroll-bar.test.ts +357 -0
  19. package/cypress/e2e/time-bookmarks.test.ts +92 -0
  20. package/cypress/e2e/utc-mode.test.ts +51 -0
  21. package/cypress/fixtures/example.json +5 -0
  22. package/cypress/helpers.ts +12 -0
  23. package/cypress/plugins/index.js +22 -0
  24. package/cypress/support/commands.ts +175 -0
  25. package/cypress/support/e2e.ts +31 -0
  26. package/cypress.config.js +24 -0
  27. package/dist/api/api.d.ts +182 -0
  28. package/dist/api/helpers.d.ts +9 -0
  29. package/dist/api/id.d.ts +14 -0
  30. package/dist/api/locale.d.ts +3 -0
  31. package/dist/api/main.d.ts +47 -0
  32. package/dist/api/public.d.ts +32 -0
  33. package/dist/api/slots.d.ts +22 -0
  34. package/dist/api/time.d.ts +104 -0
  35. package/dist/assets/2f1f893a.wasm +0 -0
  36. package/dist/gstc.d.ts +708 -0
  37. package/dist/gstc.esm.min.d.ts +708 -0
  38. package/dist/gstc.esm.min.js +574 -0
  39. package/dist/gstc.umd.min.d.ts +708 -0
  40. package/dist/gstc.umd.min.js +701 -0
  41. package/dist/gstc.wasm.esm.min.d.ts +708 -0
  42. package/dist/gstc.wasm.esm.min.js +574 -0
  43. package/dist/gstc.wasm.umd.min.d.ts +708 -0
  44. package/dist/gstc.wasm.umd.min.js +701 -0
  45. package/dist/plugins/calendar-scroll.d.ts +15 -0
  46. package/dist/plugins/calendar-scroll.esm.min.d.ts +15 -0
  47. package/dist/plugins/calendar-scroll.esm.min.js +13 -0
  48. package/dist/plugins/calendar-scroll.umd.min.d.ts +15 -0
  49. package/dist/plugins/calendar-scroll.umd.min.js +13 -0
  50. package/dist/plugins/dependency-lines.d.ts +47 -0
  51. package/dist/plugins/dependency-lines.esm.min.d.ts +47 -0
  52. package/dist/plugins/dependency-lines.esm.min.js +38 -0
  53. package/dist/plugins/dependency-lines.umd.min.d.ts +47 -0
  54. package/dist/plugins/dependency-lines.umd.min.js +38 -0
  55. package/dist/plugins/export-image.d.ts +12 -0
  56. package/dist/plugins/export-image.esm.min.d.ts +12 -0
  57. package/dist/plugins/export-image.esm.min.js +28 -0
  58. package/dist/plugins/export-image.umd.min.d.ts +12 -0
  59. package/dist/plugins/export-image.umd.min.js +34 -0
  60. package/dist/plugins/export-pdf.d.ts +12 -0
  61. package/dist/plugins/export-pdf.esm.min.d.ts +12 -0
  62. package/dist/plugins/export-pdf.esm.min.js +389 -0
  63. package/dist/plugins/export-pdf.umd.min.d.ts +12 -0
  64. package/dist/plugins/export-pdf.umd.min.js +511 -0
  65. package/dist/plugins/grab-scroll.d.ts +14 -0
  66. package/dist/plugins/grab-scroll.esm.min.d.ts +14 -0
  67. package/dist/plugins/grab-scroll.umd.min.d.ts +14 -0
  68. package/dist/plugins/highlight-weekends.d.ts +12 -0
  69. package/dist/plugins/highlight-weekends.esm.min.d.ts +12 -0
  70. package/dist/plugins/highlight-weekends.esm.min.js +14 -0
  71. package/dist/plugins/highlight-weekends.umd.min.d.ts +12 -0
  72. package/dist/plugins/highlight-weekends.umd.min.js +14 -0
  73. package/dist/plugins/item-movement.d.ts +97 -0
  74. package/dist/plugins/item-movement.esm.min.d.ts +97 -0
  75. package/dist/plugins/item-movement.esm.min.js +25 -0
  76. package/dist/plugins/item-movement.umd.min.d.ts +97 -0
  77. package/dist/plugins/item-movement.umd.min.js +25 -0
  78. package/dist/plugins/item-resizing.d.ts +102 -0
  79. package/dist/plugins/item-resizing.esm.min.d.ts +102 -0
  80. package/dist/plugins/item-resizing.esm.min.js +37 -0
  81. package/dist/plugins/item-resizing.umd.min.d.ts +102 -0
  82. package/dist/plugins/item-resizing.umd.min.js +37 -0
  83. package/dist/plugins/item-types.d.ts +13 -0
  84. package/dist/plugins/item-types.esm.min.d.ts +13 -0
  85. package/dist/plugins/item-types.esm.min.js +127 -0
  86. package/dist/plugins/item-types.umd.min.d.ts +13 -0
  87. package/dist/plugins/item-types.umd.min.js +127 -0
  88. package/dist/plugins/progress-bar.d.ts +13 -0
  89. package/dist/plugins/progress-bar.esm.min.d.ts +13 -0
  90. package/dist/plugins/progress-bar.esm.min.js +27 -0
  91. package/dist/plugins/progress-bar.umd.min.d.ts +13 -0
  92. package/dist/plugins/progress-bar.umd.min.js +27 -0
  93. package/dist/plugins/selection.d.ts +94 -0
  94. package/dist/plugins/selection.esm.min.d.ts +94 -0
  95. package/dist/plugins/selection.esm.min.js +26 -0
  96. package/dist/plugins/selection.umd.min.d.ts +94 -0
  97. package/dist/plugins/selection.umd.min.js +26 -0
  98. package/dist/plugins/time-bookmarks.d.ts +38 -0
  99. package/dist/plugins/time-bookmarks.esm.min.d.ts +38 -0
  100. package/dist/plugins/time-bookmarks.esm.min.js +50 -0
  101. package/dist/plugins/time-bookmarks.umd.min.d.ts +38 -0
  102. package/dist/plugins/time-bookmarks.umd.min.js +50 -0
  103. package/dist/plugins/timeline-pointer.d.ts +83 -0
  104. package/dist/plugins/timeline-pointer.esm.min.d.ts +83 -0
  105. package/dist/plugins/timeline-pointer.esm.min.js +13 -0
  106. package/dist/plugins/timeline-pointer.umd.min.d.ts +83 -0
  107. package/dist/plugins/timeline-pointer.umd.min.js +13 -0
  108. package/dist/style.css +811 -0
  109. package/dist/vendor.esm.min.js +128 -0
  110. package/examples/complex-1/faces/face-1.jpg +0 -0
  111. package/examples/complex-1/faces/face-10.jpg +0 -0
  112. package/examples/complex-1/faces/face-11.jpg +0 -0
  113. package/examples/complex-1/faces/face-12.jpg +0 -0
  114. package/examples/complex-1/faces/face-13.jpg +0 -0
  115. package/examples/complex-1/faces/face-14.jpg +0 -0
  116. package/examples/complex-1/faces/face-15.jpg +0 -0
  117. package/examples/complex-1/faces/face-16.jpg +0 -0
  118. package/examples/complex-1/faces/face-17.jpg +0 -0
  119. package/examples/complex-1/faces/face-18.jpg +0 -0
  120. package/examples/complex-1/faces/face-19.jpg +0 -0
  121. package/examples/complex-1/faces/face-2.jpg +0 -0
  122. package/examples/complex-1/faces/face-20.jpg +0 -0
  123. package/examples/complex-1/faces/face-21.jpg +0 -0
  124. package/examples/complex-1/faces/face-22.jpg +0 -0
  125. package/examples/complex-1/faces/face-23.jpg +0 -0
  126. package/examples/complex-1/faces/face-24.jpg +0 -0
  127. package/examples/complex-1/faces/face-25.jpg +0 -0
  128. package/examples/complex-1/faces/face-26.jpg +0 -0
  129. package/examples/complex-1/faces/face-27.jpg +0 -0
  130. package/examples/complex-1/faces/face-28.jpg +0 -0
  131. package/examples/complex-1/faces/face-29.jpg +0 -0
  132. package/examples/complex-1/faces/face-3.jpg +0 -0
  133. package/examples/complex-1/faces/face-30.jpg +0 -0
  134. package/examples/complex-1/faces/face-31.jpg +0 -0
  135. package/examples/complex-1/faces/face-32.jpg +0 -0
  136. package/examples/complex-1/faces/face-33.jpg +0 -0
  137. package/examples/complex-1/faces/face-34.jpg +0 -0
  138. package/examples/complex-1/faces/face-35.jpg +0 -0
  139. package/examples/complex-1/faces/face-36.jpg +0 -0
  140. package/examples/complex-1/faces/face-37.jpg +0 -0
  141. package/examples/complex-1/faces/face-38.jpg +0 -0
  142. package/examples/complex-1/faces/face-39.jpg +0 -0
  143. package/examples/complex-1/faces/face-4.jpg +0 -0
  144. package/examples/complex-1/faces/face-40.jpg +0 -0
  145. package/examples/complex-1/faces/face-41.jpg +0 -0
  146. package/examples/complex-1/faces/face-42.jpg +0 -0
  147. package/examples/complex-1/faces/face-43.jpg +0 -0
  148. package/examples/complex-1/faces/face-44.jpg +0 -0
  149. package/examples/complex-1/faces/face-45.jpg +0 -0
  150. package/examples/complex-1/faces/face-46.jpg +0 -0
  151. package/examples/complex-1/faces/face-47.jpg +0 -0
  152. package/examples/complex-1/faces/face-48.jpg +0 -0
  153. package/examples/complex-1/faces/face-49.jpg +0 -0
  154. package/examples/complex-1/faces/face-5.jpg +0 -0
  155. package/examples/complex-1/faces/face-50.jpg +0 -0
  156. package/examples/complex-1/faces/face-6.jpg +0 -0
  157. package/examples/complex-1/faces/face-7.jpg +0 -0
  158. package/examples/complex-1/faces/face-8.jpg +0 -0
  159. package/examples/complex-1/faces/face-9.jpg +0 -0
  160. package/examples/complex-1/index.html +61 -0
  161. package/examples/complex-1/index.js +923 -0
  162. package/examples/index.html +22 -0
  163. package/examples/reset.css +455 -0
  164. package/examples/server.js +18 -0
  165. package/package.json +150 -0
  166. package/tsconfig.json +17 -0
package/dist/style.css ADDED
@@ -0,0 +1,811 @@
1
+ body.gstc-items-resizing-left * {
2
+ cursor: w-resize !important;
3
+ }
4
+ body.gstc-items-resizing-right * {
5
+ cursor: e-resize !important;
6
+ }
7
+ .gstc__chart-timeline-items-row-item.gstc__selected {
8
+ z-index: 2 !important;
9
+ }
10
+ body.gstc-items-moving * {
11
+ cursor: grabbing !important;
12
+ }
13
+ .gstc__timeline-chart-items-row-item--moving {
14
+ z-index: 3 !important;
15
+ }
16
+ body.gstc-scrolling * {
17
+ cursor: grabbing !important;
18
+ }
19
+ .gstc-error {
20
+ background: #d73c2c;
21
+ color: #fff;
22
+ padding: 10px;
23
+ margin: 10px;
24
+ line-height: 2em;
25
+ }
26
+ .gstc-error a {
27
+ color: #fff;
28
+ }
29
+ .gstc-code {
30
+ background: #ddd;
31
+ color: #000;
32
+ font-family: monospace;
33
+ padding: 4px 7px;
34
+ border-radius: 4px;
35
+ box-shadow: inset 2px 2px 3px rgba(0,0,0,0.314);
36
+ }
37
+ .gstc {
38
+ display: flex;
39
+ overflow: hidden;
40
+ color: #606060;
41
+ font-size: 14px;
42
+ background: #fdfdfd;
43
+ line-height: 1.2;
44
+ box-sizing: border-box;
45
+ position: relative;
46
+ }
47
+ .gstc * {
48
+ box-sizing: border-box;
49
+ }
50
+ .gstc__helper-center {
51
+ text-align: center;
52
+ }
53
+ .gstc__helper-dark {
54
+ background: #f9fafb;
55
+ }
56
+ .gstc__is-selecting .gstc__selected,
57
+ .gstc-scrolling .gstc__selected {
58
+ animation-name: none !important;
59
+ }
60
+ .gstc__list-column-header-resizer--active {
61
+ cursor: ew-resize;
62
+ }
63
+ .gstc__list-column-header-resizer--active * {
64
+ -webkit-user-select: none; /* Safari 3.1+ */
65
+ -moz-user-select: none; /* Firefox 2+ */
66
+ -ms-user-select: none; /* IE 10+ */
67
+ user-select: none; /* Standard syntax */
68
+ }
69
+ .gstc__scroll-bar {
70
+ overflow: hidden;
71
+ position: absolute;
72
+ background: rgba(253,253,253,0.471);
73
+ cursor: grab;
74
+ }
75
+ .gstc__scroll-bar--vertical {
76
+ flex-shrink: 0;
77
+ right: 0px;
78
+ }
79
+ .gstc__scroll-bar--horizontal {
80
+ bottom: 0px;
81
+ }
82
+ .gstc__scroll-bar-inner {
83
+ background: rgba(0,0,0,0.16);
84
+ border-radius: 4px;
85
+ position: absolute;
86
+ touch-action: none;
87
+ }
88
+ .gstc__scroll-bar-inner:hover,
89
+ .gstc__scroll-bar-inner--active {
90
+ background: rgba(0,0,0,0.25);
91
+ }
92
+ .gstc__list {
93
+ border-collapse: collapse;
94
+ display: flex;
95
+ overflow: hidden;
96
+ flex-grow: 0;
97
+ flex-shrink: 0;
98
+ user-select: none;
99
+ position: relative;
100
+ }
101
+ .gstc__list > * {
102
+ touch-action: none;
103
+ }
104
+ .gstc__list-toggle {
105
+ position: absolute;
106
+ user-select: none;
107
+ left: 0px;
108
+ top: 0px;
109
+ overflow: hidden;
110
+ cursor: pointer;
111
+ padding: 14px;
112
+ background: rgba(255,255,255,0.502);
113
+ transition: box-shadow 250ms;
114
+ box-shadow: 0px 0px 0px rgba(0,0,0,0);
115
+ border-bottom-right-radius: 9px;
116
+ }
117
+ .gstc__list-toggle:hover {
118
+ box-shadow: 0px 0px 6px rgba(0,0,0,0.15);
119
+ background: #fff;
120
+ }
121
+ .gstc__list-toggle img {
122
+ opacity: 0.5;
123
+ }
124
+ .gstc__list-column-row-expander {
125
+ display: flex;
126
+ height: var(--height);
127
+ width: calc(var(--expander-padding-width) + var(--expander-size));
128
+ flex-shrink: 0;
129
+ }
130
+ .gstc__list-column-row-expander-toggle {
131
+ padding-left: var(--expander-padding-width);
132
+ display: block;
133
+ flex-shrink: 0;
134
+ height: var(--height);
135
+ width: calc(var(--expander-size) + var(--expander-padding-width));
136
+ overflow: hidden;
137
+ text-align: center;
138
+ margin: 0 auto;
139
+ }
140
+ .gstc__list-column-row-expander-toggle img {
141
+ width: 16px;
142
+ height: 16px;
143
+ vertical-align: middle;
144
+ }
145
+ .gstc__list-column-row-expander-toggle-child {
146
+ cursor: default;
147
+ }
148
+ .gstc__list-column-row-expander-toggle-open {
149
+ cursor: pointer;
150
+ }
151
+ .gstc__list-column-row-expander-toggle-closed {
152
+ cursor: pointer;
153
+ }
154
+ .gstc__list-column {
155
+ width: var(--width);
156
+ position: relative;
157
+ }
158
+ .gstc__list-column-rows {
159
+ width: var(--width);
160
+ overflow: hidden;
161
+ position: absolute;
162
+ }
163
+ .gstc__list-column-rows-offset {
164
+ overflow: hidden;
165
+ }
166
+ .gstc__list-column-row,
167
+ .gstc__list-column-header {
168
+ overflow: hidden;
169
+ text-overflow: ellipsis;
170
+ white-space: nowrap;
171
+ height: var(--height);
172
+ line-height: var(--height);
173
+ vertical-align: middle;
174
+ font-size: 14px;
175
+ display: flex;
176
+ }
177
+ .gstc__list-column-row * {
178
+ overflow: hidden;
179
+ text-overflow: ellipsis;
180
+ vertical-align: text-bottom;
181
+ line-height: var(--height);
182
+ }
183
+ .gstc__list-column-row {
184
+ border-bottom: 1px solid rgba(237,241,242,0.75);
185
+ border-right: 1px solid rgba(237,241,242,0.75);
186
+ width: var(--width);
187
+ }
188
+ .gstc__list-column-row-content {
189
+ width: calc(var(--width) - var(--expander-padding-width) - var(--expander-size));
190
+ height: var(--height);
191
+ overflow: hidden;
192
+ padding-left: 6px;
193
+ flex-shrink: 0;
194
+ flex-grow: 1;
195
+ }
196
+ .gstc__list-column-header {
197
+ background: #f9fafb;
198
+ font-weight: 500;
199
+ color: #707070;
200
+ height: var(--height);
201
+ width: var(--width);
202
+ line-height: var(--height);
203
+ display: flex;
204
+ }
205
+ .gstc__list-column-header-content {
206
+ vertical-align: middle;
207
+ line-height: calc(var(--height) - 2px);
208
+ width: 100%;
209
+ display: flex;
210
+ }
211
+ .gstc__list-column-header-resizer {
212
+ display: flex;
213
+ justify-content: space-between;
214
+ flex-grow: 1;
215
+ background: transparent;
216
+ vertical-align: middle;
217
+ height: var(--height);
218
+ overflow: hidden;
219
+ text-overflow: ellipsis;
220
+ }
221
+ .gstc__list-column-header-resizer-container {
222
+ overflow: hidden;
223
+ text-overflow: ellipsis;
224
+ padding-left: 6px;
225
+ flex-shrink: 1;
226
+ cursor: pointer;
227
+ }
228
+ .gstc__list-column-header-resizer-container,
229
+ .gstc__list-column-header-resizer-dots {
230
+ display: block;
231
+ }
232
+ .gstc__list-column-header-resizer-line {
233
+ position: absolute;
234
+ top: 0;
235
+ width: 0px;
236
+ height: 100%;
237
+ border-right: 2px dashed #000;
238
+ display: var(--display);
239
+ left: var(--left);
240
+ z-index: 1000;
241
+ }
242
+ .gstc__list-column-header-resizer-dots {
243
+ cursor: ew-resize;
244
+ background: transparent;
245
+ width: 10px;
246
+ flex-shrink: 0;
247
+ display: flex;
248
+ flex-direction: column;
249
+ align-content: space-around;
250
+ justify-content: center;
251
+ align-items: flex-end;
252
+ }
253
+ .gstc__list-column-header-resizer-dots-dot {
254
+ background: #f4f4f4;
255
+ width: 3px;
256
+ height: 3px;
257
+ border-radius: 100%;
258
+ margin-bottom: 6px;
259
+ box-shadow: inset 1px 1px 0px rgba(0,0,0,0.05);
260
+ }
261
+ .gstc__list-column-header-resizer-dots-dot:last-child {
262
+ margin-bottom: 0;
263
+ }
264
+ .gstc__list-column-header-resizer-sort-icon {
265
+ margin-left: 4px;
266
+ }
267
+ .gstc__chart {
268
+ flex-grow: 1;
269
+ flex-shrink: 1;
270
+ overflow: hidden;
271
+ position: relative;
272
+ }
273
+ .gstc__chart-time-bookmarks {
274
+ position: absolute;
275
+ left: 0;
276
+ top: 0;
277
+ width: 100%;
278
+ user-select: none;
279
+ pointer-events: none;
280
+ overflow: hidden;
281
+ }
282
+ .gstc__chart-time-bookmark-label {
283
+ position: absolute;
284
+ height: 100%;
285
+ color: #fff;
286
+ font-size: 10px;
287
+ }
288
+ .gstc__chart-time-bookmark-label-content {
289
+ opacity: 0.6;
290
+ pointer-events: all;
291
+ padding: 2px 4px;
292
+ border-radius: 4px;
293
+ border-bottom-left-radius: 0px;
294
+ }
295
+ .gstc__chart-time-bookmark-label-content:hover {
296
+ pointer-events: all;
297
+ opacity: 1;
298
+ z-index: 2;
299
+ }
300
+ .gstc__chart-time-bookmark-line {
301
+ position: absolute;
302
+ height: 100%;
303
+ opacity: 0.6;
304
+ }
305
+ .gstc__chart-time-bookmark-line-content {
306
+ height: 100%;
307
+ }
308
+ .gstc__chart-selection {
309
+ position: absolute;
310
+ left: 0;
311
+ top: 0;
312
+ background: rgba(0,119,192,0.2);
313
+ border: 2px dashed rgba(0,119,192,0.75);
314
+ }
315
+ .gstc__chart-calendar {
316
+ background: #f9fafb;
317
+ margin-right: -17px;
318
+ display: flex;
319
+ flex-wrap: wrap;
320
+ }
321
+ .gstc__chart-calendar-dates {
322
+ overflow: hidden;
323
+ color: #747a81;
324
+ user-select: none;
325
+ display: flex;
326
+ width: 100%;
327
+ }
328
+ .gstc__chart-calendar-dates--level-main {
329
+ flex-grow: 1;
330
+ }
331
+ .gstc__chart-calendar-date {
332
+ flex-grow: 0;
333
+ flex-shrink: 0;
334
+ border: none;
335
+ white-space: nowrap;
336
+ border-right: 1px solid rgba(177,184,189,0.5);
337
+ overflow: hidden;
338
+ display: flex;
339
+ flex-direction: column;
340
+ }
341
+ .gstc__chart-calendar-date--month {
342
+ font-size: 14px;
343
+ overflow: hidden;
344
+ text-overflow: ellipsis;
345
+ white-space: nowrap;
346
+ }
347
+ .gstc__chart-calendar-date--day,
348
+ .gstc__chart-calendar-date--week,
349
+ .gstc__chart-calendar-date--minute {
350
+ text-align: center;
351
+ }
352
+ .gstc__chart-calendar-date--main-date.gstc-current {
353
+ box-shadow: inset 0px 0px 4px rgba(177,184,189,0.45);
354
+ }
355
+ .gstc__chart-calendar-date--non-main-date .gstc__chart-calendar-date-content {
356
+ margin-left: 4px;
357
+ }
358
+ .gstc__chart-calendar-date-content {
359
+ white-space: nowrap;
360
+ }
361
+ .gstc__chart-calendar-date-content .gstc-dash {
362
+ line-height: 15px;
363
+ }
364
+ .gstc__chart-calendar-date-content.gstc-date-bold {
365
+ font-weight: 500;
366
+ }
367
+ .gstc__chart-calendar-date-content.gstc-date-thin {
368
+ font-weight: 300;
369
+ }
370
+ .gstc__chart-calendar-date-content.gstc-date-normal {
371
+ font-weight: 400 !important;
372
+ }
373
+ .gstc__chart-calendar-date-content.gstc-date-bottom {
374
+ margin-top: 4px;
375
+ }
376
+ .gstc__chart-calendar-date-content.gstc-date-left {
377
+ text-align: left;
378
+ }
379
+ .gstc__chart-calendar-date-content.gstc-date-center {
380
+ text-align: center;
381
+ }
382
+ .gstc__chart-calendar-date-content.gstc-date-vertical {
383
+ font-size: 14px;
384
+ }
385
+ .gstc__chart-calendar-date-content.gstc-date-vertical .gstc-date-top {
386
+ margin-top: 2px;
387
+ }
388
+ .gstc__chart-calendar-date-content.gstc-date-small {
389
+ font-size: 13px;
390
+ font-weight: 300;
391
+ line-height: 1em;
392
+ }
393
+ .gstc__chart-calendar-date-content.gstc-date-extra-small {
394
+ font-size: 9px;
395
+ }
396
+ .gstc__chart-calendar-date-content.gstc-date-medium {
397
+ font-size: 16px;
398
+ }
399
+ .gstc__chart-calendar-date-content.gstc-date-month-level-1 {
400
+ font-size: 16px;
401
+ line-height: 1.6em;
402
+ text-align: center;
403
+ }
404
+ .gstc__chart-calendar-date-content.gstc-date-big {
405
+ text-align: center;
406
+ font-size: 23px;
407
+ height: var(--calendar-height);
408
+ line-height: var(--calendar-height);
409
+ }
410
+ .gstc__chart-calendar-date-content--hour {
411
+ text-align: center;
412
+ }
413
+ .gstc__chart-calendar-date-content--day,
414
+ .gstc__chart-calendar-date-content--week,
415
+ .gstc__chart-calendar-date-content--minute {
416
+ font-size: 18px;
417
+ line-height: 1.6em;
418
+ overflow: visible;
419
+ }
420
+ .gstc__chart-calendar-date-content--day.gstc-date-week-small,
421
+ .gstc__chart-calendar-date-content--week.gstc-date-week-small,
422
+ .gstc__chart-calendar-date-content--minute.gstc-date-week-small {
423
+ line-height: 1.2em;
424
+ height: calc(var(--calendar-height) - 20px);
425
+ font-size: 14px;
426
+ }
427
+ .gstc__chart-calendar-date-content--day.current,
428
+ .gstc__chart-calendar-date-content--week.current,
429
+ .gstc__chart-calendar-date-content--minute.current {
430
+ border-right: none;
431
+ }
432
+ .gstc__chart-calendar-date-content--day.previous,
433
+ .gstc__chart-calendar-date-content--week.previous,
434
+ .gstc__chart-calendar-date-content--minute.previous {
435
+ border-right: none;
436
+ }
437
+ .gstc__chart-timeline {
438
+ overflow: hidden;
439
+ position: absolute;
440
+ }
441
+ .gstc__chart-timeline-inner {
442
+ overflow: hidden;
443
+ }
444
+ .gstc__chart-timeline-grid {
445
+ overflow: hidden;
446
+ }
447
+ .gstc__chart-timeline-grid * {
448
+ user-select: none;
449
+ }
450
+ .gstc__chart-timeline-grid-row {
451
+ display: flex;
452
+ text-align: center;
453
+ user-select: none;
454
+ pointer-events: all;
455
+ overflow: hidden;
456
+ width: 100%;
457
+ }
458
+ .gstc__chart-timeline-grid-row-cell {
459
+ pointer-events: all;
460
+ flex-grow: 0;
461
+ flex-shrink: 0;
462
+ vertical-align: middle;
463
+ overflow: hidden;
464
+ border-right: 1px solid rgba(237,241,242,0.75);
465
+ border-bottom: 1px solid rgba(237,241,242,0.75);
466
+ touch-action: none;
467
+ height: 100%;
468
+ }
469
+ .gstc__chart-timeline-grid-row-cell--selecting {
470
+ background: rgba(0,119,192,0.5) !important;
471
+ }
472
+ .gstc__chart-timeline-grid-row-cell--selecting:last-child {
473
+ border-right: 1px solid #f00;
474
+ }
475
+ .gstc__chart-timeline-grid-row-cell--selected {
476
+ background: rgba(0,119,192,0.75) !important;
477
+ }
478
+ .gstc__chart-timeline-grid-row-cell.current {
479
+ background: rgba(241,196,15,0.1);
480
+ }
481
+ .gstc__chart-timeline-grid-row-cell--weekend {
482
+ background: #f9fafb;
483
+ }
484
+ .gstc__chart-timeline-grid-row-cell.gstc__selecting {
485
+ background: rgba(52,152,219,0.627) !important;
486
+ }
487
+ .gstc__chart-timeline-grid-row-cell.gstc__selected {
488
+ background: #3498db !important;
489
+ }
490
+ .gstc__chart-timeline-dependency-lines {
491
+ position: absolute;
492
+ left: 0;
493
+ top: 0;
494
+ width: 100%;
495
+ height: 100%;
496
+ overflow: hidden;
497
+ pointer-events: none;
498
+ user-select: none;
499
+ }
500
+ .gstc__chart-timeline-dependency-lines-lines {
501
+ pointer-events: none;
502
+ user-select: none;
503
+ }
504
+ .gstc__chart-timeline-dependency-lines-lines-line {
505
+ position: absolute;
506
+ pointer-events: none;
507
+ user-select: none;
508
+ }
509
+ .gstc__chart-timeline-dependency-lines-lines-line path {
510
+ stroke: rgba(189,195,199,0.62);
511
+ stroke-width: 2px;
512
+ fill: transparent;
513
+ }
514
+ .gstc__chart-timeline-dependency-lines-points {
515
+ pointer-events: none;
516
+ user-select: none;
517
+ position: absolute;
518
+ left: 0;
519
+ top: 0;
520
+ overflow: hidden;
521
+ }
522
+ .gstc__chart-timeline-dependency-lines-points-point {
523
+ position: absolute;
524
+ pointer-events: none;
525
+ user-select: none;
526
+ }
527
+ .gstc__chart-timeline-dependency-lines-points-point--left {
528
+ z-index: 3;
529
+ width: 100%;
530
+ height: 100%;
531
+ border-radius: 100%;
532
+ background: rgba(189,195,199,0.631);
533
+ border: 1px solid rgba(0,0,0,0.278);
534
+ pointer-events: all;
535
+ }
536
+ .gstc__chart-timeline-dependency-lines-points-point--right {
537
+ z-index: 3;
538
+ width: 100%;
539
+ height: 100%;
540
+ pointer-events: all;
541
+ background: rgba(189,195,199,0.631);
542
+ border: 1px solid rgba(0,0,0,0.278);
543
+ transform: rotate(45deg);
544
+ }
545
+ .gstc__chart-timeline-dependency-lines * {
546
+ user-select: none;
547
+ }
548
+ .gstc__chart-timeline-items {
549
+ position: absolute;
550
+ left: 0;
551
+ top: 0;
552
+ width: 100%;
553
+ height: 100%;
554
+ pointer-events: none !important;
555
+ overflow: hidden;
556
+ touch-action: none;
557
+ }
558
+ .gstc__chart-timeline-items * {
559
+ user-select: none;
560
+ }
561
+ .gstc__chart-timeline-items-row {
562
+ overflow: hidden;
563
+ position: relative;
564
+ pointer-events: none !important;
565
+ touch-action: none;
566
+ }
567
+ .gstc__chart-timeline-items-row * {
568
+ touch-action: none;
569
+ pointer-events: all;
570
+ }
571
+ .gstc__chart-timeline-items-row-item {
572
+ touch-action: none;
573
+ position: absolute;
574
+ user-select: none;
575
+ background: #e74c3c;
576
+ border-radius: 14px;
577
+ color: #fff;
578
+ line-height: 22px;
579
+ display: flex;
580
+ }
581
+ .gstc__chart-timeline-items-row-item--left-cut {
582
+ border-top-left-radius: 0px;
583
+ border-bottom-left-radius: 0px;
584
+ }
585
+ .gstc__chart-timeline-items-row-item--right-cut {
586
+ border-top-right-radius: 0px;
587
+ border-bottom-right-radius: 0px;
588
+ }
589
+ .gstc__chart-timeline-items-row-item-cut {
590
+ height: 100%;
591
+ }
592
+ .gstc__chart-timeline-items-row-item-cut-image {
593
+ vertical-align: bottom;
594
+ width: 18px;
595
+ opacity: 0.7;
596
+ margin: auto;
597
+ }
598
+ .gstc__chart-timeline-items-row-item-label {
599
+ touch-action: none;
600
+ display: flex;
601
+ flex-grow: 1;
602
+ overflow: hidden;
603
+ text-overflow: ellipsis;
604
+ white-space: nowrap;
605
+ margin: 4px 10px;
606
+ -webkit-mask-image: linear-gradient(to right, #000 0%, #000 75%, transparent 90%);
607
+ mask-image: linear-gradient(to right, #000 0%, #000 75%, transparent 90%);
608
+ }
609
+ .gstc__chart-timeline-items-row-item-resizing-handle {
610
+ overflow: hidden;
611
+ z-index: 100;
612
+ pointer-events: all;
613
+ display: flex;
614
+ flex-shrink: 0;
615
+ background-blend-mode: overlay;
616
+ background: rgba(0,0,0,0.06);
617
+ }
618
+ .gstc__chart-timeline-items-row-item-resizing-handle-content-line {
619
+ width: 1px;
620
+ height: 40%;
621
+ background: rgba(255,255,255,0.4);
622
+ box-shadow: -1px -1px 0px rgba(0,0,0,0.05);
623
+ background-blend-mode: overlay;
624
+ border-radius: 1px;
625
+ margin: auto 1px;
626
+ margin-left: 1px;
627
+ }
628
+ .gstc__chart-timeline-items-row-item-resizing-handle--right {
629
+ cursor: e-resize;
630
+ padding-left: 5px;
631
+ }
632
+ .gstc__chart-timeline-items-row-item-resizing-handle--left {
633
+ cursor: w-resize;
634
+ padding-left: 7px;
635
+ }
636
+ .gstc__chart-timeline-items-row-item-resizing-handle--right-outside {
637
+ border-radius: 14px;
638
+ cursor: e-resize;
639
+ padding-left: 4px;
640
+ background: rgba(0,0,0,0.122);
641
+ }
642
+ .gstc__chart-timeline-items-row-item-resizing-handle--left-outside {
643
+ border-radius: 14px;
644
+ cursor: w-resize;
645
+ padding-left: 4px;
646
+ background: rgba(0,0,0,0.122);
647
+ }
648
+ .gstc__chart-timeline-items-row-item-progress-bar {
649
+ background-size: auto auto;
650
+ background-color: rgba(255,255,255,0);
651
+ background-image: repeating-linear-gradient(135deg, transparent, transparent 10px, rgba(255,255,255,0.15) 10px, rgba(255,255,255,0.15) 20px);
652
+ position: absolute;
653
+ right: 0px;
654
+ top: 0px;
655
+ height: 100%;
656
+ }
657
+ .gstc__chart-timeline-items-row-item.gstc__selecting {
658
+ box-shadow: 0px 0px 1px 2px rgba(0,119,192,0.5);
659
+ }
660
+ .gstc__chart-timeline-items-row-item.gstc__selected {
661
+ box-shadow: 0px 0px 1px 2px #0077c0;
662
+ cursor: grab;
663
+ }
664
+ .gstc__chart-timeline-items-row-item-dependency-line {
665
+ position: absolute;
666
+ }
667
+ .gstc__chart-timeline-items-row-item-dependency-handle {
668
+ position: absolute;
669
+ border-radius: 100%;
670
+ background: #e74c3c;
671
+ box-shadow: 0px 4px 4px rgba(199,44,28,0.678);
672
+ }
673
+ .gstc__item-type.gstc__chart-timeline-items-row-item {
674
+ background: transparent;
675
+ border-radius: 0;
676
+ }
677
+ .gstc__item-type.gstc__selected {
678
+ box-shadow: none !important;
679
+ }
680
+ .gstc__item-type.gstc__selected svg {
681
+ filter: drop-shadow(0px 0px 1px #0077c0) drop-shadow(0px 0px 2px #0077c0);
682
+ }
683
+ .gstc__item-type .gstc__chart-timeline-items-row-item-resizing-handle--left-outside {
684
+ border-radius: 5px;
685
+ background: rgba(0,0,0,0.2);
686
+ }
687
+ .gstc__item-type .gstc__chart-timeline-items-row-item-resizing-handle--right-outside {
688
+ border-radius: 5px;
689
+ background: rgba(0,0,0,0.2);
690
+ }
691
+ .gstc__item-type .gstc__chart-timeline-items-row-item-resizing-handle--left {
692
+ border-radius: 0;
693
+ }
694
+ .gstc__item-type .gstc__chart-timeline-items-row-item-resizing-handle--right {
695
+ border-radius: 0;
696
+ }
697
+ .gstc__item-type.gstc__chart-timeline-items-row-item-label {
698
+ margin: 4px 16px;
699
+ }
700
+ .gstc__item-type-progress-line {
701
+ stroke: rgba(255,255,255,0.145);
702
+ stroke-width: 20;
703
+ }
704
+ .gstc__item-type-content {
705
+ display: flex;
706
+ }
707
+ /* DARK MODE */
708
+ .gstc--dark .gstc {
709
+ background: #323743;
710
+ color: rgba(255,255,255,0.749);
711
+ }
712
+ .gstc--dark .gstc__chart-calendar {
713
+ background: rgba(31,32,41,0.51);
714
+ color: rgba(255,255,255,0.749);
715
+ }
716
+ .gstc--dark .gstc__chart-calendar-date {
717
+ border-right: 1px solid rgba(255,255,255,0.102);
718
+ color: rgba(255,255,255,0.631);
719
+ }
720
+ .gstc--dark .gstc__list-column-header-resizer-dots-dot {
721
+ background: rgba(255,255,255,0.102);
722
+ }
723
+ .gstc--dark .gstc__list-column-header {
724
+ background: rgba(31,32,41,0.51);
725
+ color: rgba(255,255,255,0.871);
726
+ }
727
+ .gstc--dark .gstc__list-column-row {
728
+ border-bottom: 1px solid rgba(30,30,30,0.314);
729
+ border-right: 1px solid rgba(30,30,30,0.314);
730
+ color: #ababb1;
731
+ }
732
+ .gstc--dark .gstc__chart-timeline-grid-row-cell {
733
+ border-bottom: 1px solid rgba(30,30,30,0.314);
734
+ border-right: 1px solid rgba(30,30,30,0.314);
735
+ }
736
+ .gstc--dark .gstc__chart-timeline-grid-row-cell--weekend {
737
+ background: rgba(31,32,41,0.141);
738
+ }
739
+ .gstc--dark .gstc__list-toggle {
740
+ background: rgba(31,32,41,0.188);
741
+ }
742
+ .gstc--dark .gstc__scroll-bar {
743
+ background: transparent;
744
+ }
745
+ .gstc--dark .gstc__scroll-bar-inner {
746
+ background: rgba(26,27,30,0.741);
747
+ }
748
+ @-moz-keyframes selected-animation {
749
+ 0% {
750
+ background: #3498db;
751
+ }
752
+ 100% {
753
+ background: #3498db;
754
+ }
755
+ }
756
+ @-webkit-keyframes selected-animation {
757
+ 0% {
758
+ background: #3498db;
759
+ }
760
+ 100% {
761
+ background: #3498db;
762
+ }
763
+ }
764
+ @-o-keyframes selected-animation {
765
+ 0% {
766
+ background: #3498db;
767
+ }
768
+ 100% {
769
+ background: #3498db;
770
+ }
771
+ }
772
+ @keyframes selected-animation {
773
+ 0% {
774
+ background: #3498db;
775
+ }
776
+ 100% {
777
+ background: #3498db;
778
+ }
779
+ }
780
+ @-moz-keyframes selected-item-animation {
781
+ 0% {
782
+ box-shadow: 0px 0px 1px 2px #0077c0;
783
+ }
784
+ 100% {
785
+ box-shadow: 0px 0px 1px 2px #0077c0;
786
+ }
787
+ }
788
+ @-webkit-keyframes selected-item-animation {
789
+ 0% {
790
+ box-shadow: 0px 0px 1px 2px #0077c0;
791
+ }
792
+ 100% {
793
+ box-shadow: 0px 0px 1px 2px #0077c0;
794
+ }
795
+ }
796
+ @-o-keyframes selected-item-animation {
797
+ 0% {
798
+ box-shadow: 0px 0px 1px 2px #0077c0;
799
+ }
800
+ 100% {
801
+ box-shadow: 0px 0px 1px 2px #0077c0;
802
+ }
803
+ }
804
+ @keyframes selected-item-animation {
805
+ 0% {
806
+ box-shadow: 0px 0px 1px 2px #0077c0;
807
+ }
808
+ 100% {
809
+ box-shadow: 0px 0px 1px 2px #0077c0;
810
+ }
811
+ }