Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,12 @@
.vis-item-content
transform: translateX(-100%)

// Gates group row: we override the height so that the gates appear visually closer to the phases
.vis-group.op-timeline-group--gates
border-bottom-color: transparent
height: 2.25rem !important
overflow: visible

// Cluster items
.vis-item.vis-cluster
background: var(--body-background)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ export class ProjectTimelineItemBuilder {
}

const groups = [
{ id: GROUP_GATES, content: '' },
{ id: GROUP_GATES, content: '', className: 'op-timeline-group--gates' },
{ id: GROUP_PHASES, content: '' },
{ id: GROUP_MILESTONES, content: '' },
{ id: GROUP_SPRINTS, content: '' },
Expand Down
Loading