fix(gantt): isolate chart stacking context so date picker renders above it
Sets position: relative and z-index: 0 on .gantt-chart-container to create a new stacking context. This ensures z-index values inside the Gantt chart (e.g. the sticky timeline header) cannot compete with the Flatpickr popup that renders at the body level. Ref #2337
This commit is contained in:
parent
f25147d09c
commit
174c67cfd8
|
|
@ -162,6 +162,8 @@ const flatPickerConfig = computed(() => ({
|
|||
<style lang="scss" scoped>
|
||||
.gantt-chart-container {
|
||||
padding-block-end: 1rem;
|
||||
position: relative;
|
||||
z-index: 0;
|
||||
}
|
||||
|
||||
.gantt-options {
|
||||
|
|
|
|||
Loading…
Reference in New Issue