mirror of
https://github.com/hyperdxio/hyperdx
synced 2026-04-21 13:37:15 +00:00
20 lines
355 B
SCSS
20 lines
355 B
SCSS
.timelineRow {
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
background-color: var(--color-bg-highlighted);
|
|
}
|
|
}
|
|
|
|
.timelineRowActive {
|
|
background-color: var(--color-bg-highlighted);
|
|
border-radius: var(--mantine-radius-xs);
|
|
}
|
|
|
|
.labelContainer {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
padding-right: 8px;
|
|
position: relative;
|
|
}
|