Browse Source

fix(47-02): match Settings bar bg to content area when expanded

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
handoff-20260429-1057
shrimbly 4 months ago
parent
commit
7bf0a1d436
  1. 2
      src/components/nodes/InlineParameterPanel.tsx

2
src/components/nodes/InlineParameterPanel.tsx

@ -25,7 +25,7 @@ export function InlineParameterPanel({
<button
type="button"
onClick={onToggle}
className="nodrag nopan w-full flex items-center justify-center gap-1 py-1 text-neutral-500 hover:text-neutral-300 transition-colors"
className={`nodrag nopan w-full flex items-center justify-center gap-1 py-1 text-neutral-500 hover:text-neutral-300 transition-colors ${expanded ? "bg-[#1a1a1a]" : ""}`}
aria-label={expanded ? "Collapse parameters" : "Expand parameters"}
aria-expanded={expanded}
aria-controls={`params-${nodeId}`}

Loading…
Cancel
Save