mirror of
https://github.com/hyperdxio/hyperdx
synced 2026-04-21 13:37:15 +00:00
also upgrade stylelint to avoid this issue having a regression <img width="1243" height="347" alt="Screenshot 2025-12-11 at 1 15 30 PM" src="https://github.com/user-attachments/assets/fb218768-fcd7-41aa-8d05-c12996137539" />
52 lines
843 B
SCSS
52 lines
843 B
SCSS
.legend {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.legendItem {
|
|
font-size: 11px;
|
|
margin-right: 8px;
|
|
margin-bottom: 4px;
|
|
display: flex;
|
|
align-items: center;
|
|
text-wrap: wrap;
|
|
word-break: break-all;
|
|
word-wrap: break-word;
|
|
line-height: 1.2;
|
|
|
|
&:active {
|
|
opacity: 0.5;
|
|
}
|
|
}
|
|
|
|
.legendMoreLink {
|
|
color: var(--color-text-muted);
|
|
cursor: pointer;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.legendTooltipContent {
|
|
padding: 8px;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
max-width: 40vw;
|
|
overflow: hidden;
|
|
gap: 2px;
|
|
}
|
|
|
|
.chartTooltip {
|
|
backdrop-filter: blur(8px);
|
|
background-color: var(--color-bg-surface);
|
|
border: 1px solid var(--color-border);
|
|
border-radius: 2px;
|
|
font-size: 11px;
|
|
}
|
|
|
|
.chartTooltipHeader {
|
|
padding: 2px 12px;
|
|
border-bottom: 1px solid var(--color-border);
|
|
}
|
|
|
|
.chartTooltipContent {
|
|
padding: 6px 12px;
|
|
}
|