style(nexus): drop cyan arbitrary shadows (phase 7)

This commit is contained in:
Nexus Dev 2026-04-11 16:41:21 +00:00
parent 5ab0b19d4a
commit 9329e5d9ad
4 changed files with 5 additions and 5 deletions

View file

@ -93,7 +93,7 @@ function AgentRunCard({
<div className={cn(
"flex h-[320px] flex-col overflow-hidden rounded-lg border",
isActive
? "border-primary/25 bg-primary/[0.04] shadow-[0_16px_40px_rgba(6,182,212,0.08)]"
? "border-primary/25 bg-primary/[0.04]"
: "border-border bg-background/70",
)}>
<div className="border-b border-border/60 px-3 py-3">

View file

@ -87,7 +87,7 @@ export function LiveRunWidget({ issueId, companyId }: LiveRunWidgetProps) {
if (runs.length === 0) return null;
return (
<div className="overflow-hidden rounded-lg border border-primary/25 bg-background/80 shadow-[0_18px_50px_rgba(6,182,212,0.08)]">
<div className="overflow-hidden rounded-lg border border-primary/25 bg-background/80">
<div className="border-b border-border/60 bg-primary/[0.04] px-4 py-3">
<div className="text-xs font-semibold uppercase tracking-[0.18em] text-primary">
Live Runs

View file

@ -1104,7 +1104,7 @@ function LatestRunCard({ runs, agentId }: { runs: HeartbeatRun[]; agentId: strin
to={`/agents/${agentId}/runs/${run.id}`}
className={cn(
"block border rounded-lg p-4 space-y-2 w-full no-underline transition-colors hover:bg-muted/50 cursor-pointer",
isLive ? "border-primary/30 shadow-[0_0_12px_rgba(6,182,212,0.08)]" : "border-border"
isLive ? "border-primary/30" : "border-border"
)}
>
<div className="flex items-center gap-2">

View file

@ -97,7 +97,7 @@ function LiveWidgetPreview({
density: TranscriptDensity;
}) {
return (
<div className="overflow-hidden rounded-lg border border-primary/25 bg-background/85 shadow-[0_20px_50px_rgba(6,182,212,0.10)]">
<div className="overflow-hidden rounded-lg border border-primary/25 bg-background/85">
<div className="border-b border-border/60 bg-primary/[0.05] px-5 py-4">
<div className="text-xs font-semibold uppercase tracking-[0.2em] text-primary">
Live Runs
@ -225,7 +225,7 @@ export function RunTranscriptUxLab() {
className={cn(
"w-full rounded-lg border px-4 py-3 text-left transition-all",
selectedSurface === option.id
? "border-primary/35 bg-primary/[0.10] shadow-[0_12px_24px_rgba(6,182,212,0.12)]"
? "border-primary/35 bg-primary/[0.10]"
: "border-border/70 bg-background/70 hover:border-primary/20 hover:bg-primary/[0.04]",
)}
>