.ax-timeline {
display: grid;
gap: 0;
margin: 0;
padding: 0;
list-style: none;
}
.ax-timeline__item {
position: relative;
display: grid;
grid-template-columns: auto 1fr;
gap: 0.8rem;
padding: 0.2rem 0 1.2rem;
}
.ax-timeline__item::before {
content: '';
position: absolute;
left: 0.39rem;
top: 1rem;
bottom: 0;
width: 1px;
background: var(--ax-border);
}
.ax-timeline__item:last-child::before {
display: none;
}
.ax-timeline__dot {
width: 0.85rem;
height: 0.85rem;
margin-top: 0.25rem;
border: 1px solid var(--ax-border-strong);
border-radius: 999px;
background: var(--ax-surface-2);
box-shadow: 0 0 0 4px color-mix(in srgb, var(--ax-surface) 88%, transparent);
}
.ax-timeline__item[data-tone='success'] .ax-timeline__dot {
background: var(--ax-success);
}
.ax-timeline__item[data-tone='warning'] .ax-timeline__dot {
background: var(--ax-warning);
}
.ax-timeline__item[data-tone='danger'] .ax-timeline__dot {
background: var(--ax-danger);
}
.ax-timeline__content {
display: grid;
gap: 0.35rem;
color: var(--ax-text-soft);
}
.ax-timeline__time {
color: var(--ax-text-muted);
font-family: var(--ax-font-mono);
font-size: 0.74rem;
}
.ax-timeline[data-density='sm'] .ax-timeline__item {
padding-bottom: 0.75rem;
}