[agent-pipeline] pipe-20260317063830-0nfs round-2
This commit is contained in:
@@ -839,7 +839,7 @@ export const SplitPanelLayoutComponent: React.FC<SplitPanelLayoutComponentProps>
|
||||
height: "100%",
|
||||
minHeight: getHeightValue(),
|
||||
cursor: "pointer",
|
||||
border: isSelected ? "2px solid #3b82f6" : "1px solid #e5e7eb",
|
||||
border: isSelected ? "2px solid hsl(var(--primary))" : "1px solid hsl(var(--border))",
|
||||
}
|
||||
: {
|
||||
position: "relative",
|
||||
@@ -1040,12 +1040,12 @@ export const SplitPanelLayoutComponent: React.FC<SplitPanelLayoutComponentProps>
|
||||
const barWidth = Math.min(percentage, 100);
|
||||
const barColor =
|
||||
percentage > 100
|
||||
? "bg-red-600"
|
||||
? "bg-destructive"
|
||||
: percentage >= 90
|
||||
? "bg-red-500"
|
||||
? "bg-destructive"
|
||||
: percentage >= 70
|
||||
? "bg-amber-500"
|
||||
: "bg-emerald-500";
|
||||
? "bg-warning"
|
||||
: "bg-success";
|
||||
|
||||
return (
|
||||
<div className="flex min-w-[120px] items-center gap-2">
|
||||
|
||||
Reference in New Issue
Block a user