1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Fix Chart legend badges

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2021-07-22 11:24:49 +03:00
parent 895b81fd72
commit 000b5a0edd
2 changed files with 3 additions and 7 deletions

View File

@ -25,10 +25,6 @@
max-width: 100%;
}
.badge + .badge {
margin-left: 8px;
}
.badge.interactive:hover {
background-color: var(--mainBackground);
cursor: pointer;

View File

@ -171,8 +171,8 @@ export class Chart extends React.Component<ChartProps> {
key={title}
className="LegendBadge flex gaps align-center"
label={(
<div>
<StatusBrick style={{ backgroundColor: color }}/>
<div className="flex items-center">
<StatusBrick style={{ backgroundColor: color }} className="flex-shrink-0"/>
<span>{title}</span>
</div>
)}
@ -182,7 +182,7 @@ export class Chart extends React.Component<ChartProps> {
);
return (
<div className="legend flex wrap gaps">
<div className="legend flex wrap">
{labels && labels.map((label: string, index) => {
const { backgroundColor } = datasets[0] as any;
const color = legendColors ? legendColors[index] : backgroundColor[index];