From 16977d8ff72fd822605becc471731b98be784429 Mon Sep 17 00:00:00 2001 From: Superlogicai Date: Thu, 20 Aug 2026 14:06:57 -1000 Subject: [PATCH 1/2] Add rainbow gradient border to "Left behind" section divider --- package.json | 1 + src/components/SidePanel.tsx | 9 +++++++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 1873fdd..ea84545 100644 --- a/package.json +++ b/package.json @@ -43,3 +43,4 @@ "vite": "^7.0.4" } } +// test diff --git a/src/components/SidePanel.tsx b/src/components/SidePanel.tsx index a583e7c..809f0fd 100644 --- a/src/components/SidePanel.tsx +++ b/src/components/SidePanel.tsx @@ -2,9 +2,14 @@ import { useCallback, useEffect, useRef, useState } from "react"; import { invoke } from "@tauri-apps/api/core"; import * as repo from "../lib/repo"; import { burst } from "../lib/confetti"; -import { RainbowText } from "./RainbowText"; +import { HUES, RainbowText, cycle } from "./RainbowText"; import type { AgentState, Blocker, Commit, Decision, FanOutRollup, Note, ToolEvent } from "../types"; +// Horizontal rainbow for the "Left behind" section's bottom divider — +// same hue table as the heading text, applied via border-image so a +// single-pixel border-bottom can carry a gradient (background can't). +const RAINBOW_DIVIDER = `linear-gradient(90deg, ${HUES.map((_, i) => cycle(i, 0.6)).join(", ")})`; + interface Props { cwd: string; // expanded absolute project dir of the active tab sessionId: string | null; // session currently bound to the active tab, for scoping decisions/tool events away from sibling tabs on the same cwd @@ -341,7 +346,7 @@ export function SidePanel({ )}
{prevCwd && prevCwd !== cwd && ( -
+

{prevState && } From 76fbcc5d9ec4f9b088b6a44f64f8d980016558e8 Mon Sep 17 00:00:00 2001 From: Superlogicai Date: Thu, 20 Aug 2026 14:26:50 -1000 Subject: [PATCH 2/2] Add test comment to package.json --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index ea84545..1c1aabc 100644 --- a/package.json +++ b/package.json @@ -44,3 +44,4 @@ } } // test +// test 2