Skip to content

Commit e995867

Browse files
committed
feat: adjusted job details active states
1 parent b31dff8 commit e995867

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

app/src/components/AgentRunRow.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export default function AgentRunRow({ run, jobId }: Props) {
4242
return (
4343
<div
4444
class={`rounded-lg border p-3 transition-colors ${
45-
isRunning ? 'border-green-800 bg-green-950/20' : 'border-zinc-800 bg-zinc-900/50'
45+
isRunning ? 'border-hermes-300/30 bg-zinc-900/50' : 'border-zinc-800 bg-zinc-900/50'
4646
}`}
4747
>
4848
<div class="flex items-center gap-3">
@@ -54,8 +54,8 @@ export default function AgentRunRow({ run, jobId }: Props) {
5454
{/* Status, with model + duration on a meta line beneath */}
5555
<div class="flex-1 min-w-0 leading-tight">
5656
{isRunning ? (
57-
<span class="flex items-center gap-1.5 text-xs text-green-400 font-medium">
58-
<span class="w-1.5 h-1.5 rounded-full bg-green-400 animate-pulse" />
57+
<span class="flex items-center gap-1.5 text-xs text-hermes-400 font-medium">
58+
<span class="w-1.5 h-1.5 rounded-full bg-hermes-400 animate-pulse" />
5959
Running
6060
</span>
6161
) : isJudge && run.status === 'SUCCEEDED' ? (

app/src/components/JobDetail.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -250,16 +250,16 @@ export default function JobDetail() {
250250
{(activeRun || !TERMINAL_STATES.has(job.state) || job.state === 'FAILED') && (
251251
<div class="flex items-stretch gap-2">
252252
{activeRun && (
253-
<div class="flex-1 min-w-0 rounded-lg border border-green-900 bg-green-950/30 px-3 py-2.5 flex items-center gap-2.5">
254-
<span class="w-1.5 h-1.5 rounded-full bg-green-400 animate-pulse shrink-0" />
255-
<span class="text-xs text-green-400 font-mono">{activeRun.phase}</span>
253+
<div class="flex-1 min-w-0 rounded-lg border border-hermes-300/30 bg-hermes-400/10 px-3 py-2.5 flex items-center gap-2.5">
254+
<span class="w-1.5 h-1.5 rounded-full bg-hermes-400 animate-pulse shrink-0" />
255+
<span class="text-xs text-hermes-400 font-mono">{activeRun.phase}</span>
256256
{activeRun.model && (
257-
<span class="text-xs text-green-900 truncate hidden sm:block">
257+
<span class="text-xs text-zinc-500 truncate hidden sm:block">
258258
{activeRun.model}
259259
</span>
260260
)}
261261
<button
262-
class="ml-auto shrink-0 text-xs font-medium text-green-300 hover:text-green-100 transition-colors"
262+
class="ml-auto shrink-0 text-xs font-medium text-hermes-400 hover:text-hermes-300 transition-colors"
263263
onClick={() => navigate(`/jobs/${id}/runs/${activeRun.id}`)}
264264
>
265265
Watch live →

0 commit comments

Comments
 (0)