From 18fecdafac904efde36945263d388153e1398f2c Mon Sep 17 00:00:00 2001 From: amhsirak Date: Wed, 22 Oct 2025 14:16:25 +0530 Subject: [PATCH 1/6] feat: remove fontweight based on current list index --- src/components/run/RunContent.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/run/RunContent.tsx b/src/components/run/RunContent.tsx index 010eeda6..2477a4c5 100644 --- a/src/components/run/RunContent.tsx +++ b/src/components/run/RunContent.tsx @@ -726,7 +726,7 @@ export const RunContent = ({ row, currentLog, interpretationInProgress, logEndRe ? '#121111ff' : '#e9ecef' : 'transparent', - fontWeight: currentListIndex === idx ? 600 : 400, + color: (theme) => theme.palette.mode === 'dark' ? '#fff' : '#000', }} > From 3a7a7a14aab34c87f08546a5b7aa2c16b9f87eba Mon Sep 17 00:00:00 2001 From: amhsirak Date: Wed, 22 Oct 2025 14:23:27 +0530 Subject: [PATCH 2/6] feat: border bottom for current list --- src/components/run/RunContent.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/run/RunContent.tsx b/src/components/run/RunContent.tsx index 2477a4c5..b497453a 100644 --- a/src/components/run/RunContent.tsx +++ b/src/components/run/RunContent.tsx @@ -726,7 +726,7 @@ export const RunContent = ({ row, currentLog, interpretationInProgress, logEndRe ? '#121111ff' : '#e9ecef' : 'transparent', - + borderBottom: currentListIndex === idx ? '3px solid #FF00C3' : 'none', color: (theme) => theme.palette.mode === 'dark' ? '#fff' : '#000', }} > From 3cfbfa60f28e7e040ebd73825677d38fe3856ada Mon Sep 17 00:00:00 2001 From: amhsirak Date: Wed, 22 Oct 2025 14:33:34 +0530 Subject: [PATCH 3/6] feat: border bottom for current ss --- src/components/run/RunContent.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/run/RunContent.tsx b/src/components/run/RunContent.tsx index b497453a..68dc75fe 100644 --- a/src/components/run/RunContent.tsx +++ b/src/components/run/RunContent.tsx @@ -881,6 +881,7 @@ export const RunContent = ({ row, currentLog, interpretationInProgress, logEndRe : '#e9ecef' : 'transparent', fontWeight: currentScreenshotIndex === idx ? 600 : 400, + borderBottom: currentScreenshotIndex === idx ? '3px solid #FF00C3' : 'none', color: (theme) => theme.palette.mode === 'dark' ? '#fff' : '#000', }} > From dcacd5f0c29d47834974d42f53fb4d99b8ee3be6 Mon Sep 17 00:00:00 2001 From: amhsirak Date: Wed, 22 Oct 2025 14:33:50 +0530 Subject: [PATCH 4/6] feat: remove fontweight based on current ss index --- src/components/run/RunContent.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/components/run/RunContent.tsx b/src/components/run/RunContent.tsx index 68dc75fe..ae579df7 100644 --- a/src/components/run/RunContent.tsx +++ b/src/components/run/RunContent.tsx @@ -880,7 +880,6 @@ export const RunContent = ({ row, currentLog, interpretationInProgress, logEndRe ? '#121111ff' : '#e9ecef' : 'transparent', - fontWeight: currentScreenshotIndex === idx ? 600 : 400, borderBottom: currentScreenshotIndex === idx ? '3px solid #FF00C3' : 'none', color: (theme) => theme.palette.mode === 'dark' ? '#fff' : '#000', }} From 0b36072303475a9f97b016cf8349a6f832091cc9 Mon Sep 17 00:00:00 2001 From: amhsirak Date: Wed, 22 Oct 2025 14:36:06 +0530 Subject: [PATCH 5/6] feat: border bottom for current text --- src/components/run/RunContent.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/run/RunContent.tsx b/src/components/run/RunContent.tsx index ae579df7..085a8763 100644 --- a/src/components/run/RunContent.tsx +++ b/src/components/run/RunContent.tsx @@ -672,6 +672,7 @@ export const RunContent = ({ row, currentLog, interpretationInProgress, logEndRe : '#e9ecef' : 'transparent', fontWeight: currentSchemaIndex === idx ? 600 : 400, + borderBottom: currentSchemaIndex === idx ? '3px solid #FF00C3' : 'none', color: (theme) => theme.palette.mode === 'dark' ? '#fff' : '#000', }} > From 9b63f6603dbabf04f344dc53a167ffd606405928 Mon Sep 17 00:00:00 2001 From: amhsirak Date: Wed, 22 Oct 2025 14:36:19 +0530 Subject: [PATCH 6/6] feat: remove fontweight based on current schema index --- src/components/run/RunContent.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/components/run/RunContent.tsx b/src/components/run/RunContent.tsx index 085a8763..ee397bf4 100644 --- a/src/components/run/RunContent.tsx +++ b/src/components/run/RunContent.tsx @@ -671,7 +671,6 @@ export const RunContent = ({ row, currentLog, interpretationInProgress, logEndRe ? '#121111ff' : '#e9ecef' : 'transparent', - fontWeight: currentSchemaIndex === idx ? 600 : 400, borderBottom: currentSchemaIndex === idx ? '3px solid #FF00C3' : 'none', color: (theme) => theme.palette.mode === 'dark' ? '#fff' : '#000', }}