Merge pull request #840 from getmaxun/output-tabs-run

feat: highlight current run action
This commit is contained in:
Karishma
2025-10-22 14:36:29 +05:30
committed by GitHub

View File

@@ -671,7 +671,7 @@ export const RunContent = ({ row, currentLog, interpretationInProgress, logEndRe
? '#121111ff' ? '#121111ff'
: '#e9ecef' : '#e9ecef'
: 'transparent', : 'transparent',
fontWeight: currentSchemaIndex === idx ? 600 : 400, borderBottom: currentSchemaIndex === idx ? '3px solid #FF00C3' : 'none',
color: (theme) => theme.palette.mode === 'dark' ? '#fff' : '#000', color: (theme) => theme.palette.mode === 'dark' ? '#fff' : '#000',
}} }}
> >
@@ -726,7 +726,7 @@ export const RunContent = ({ row, currentLog, interpretationInProgress, logEndRe
? '#121111ff' ? '#121111ff'
: '#e9ecef' : '#e9ecef'
: 'transparent', : 'transparent',
fontWeight: currentListIndex === idx ? 600 : 400, borderBottom: currentListIndex === idx ? '3px solid #FF00C3' : 'none',
color: (theme) => theme.palette.mode === 'dark' ? '#fff' : '#000', color: (theme) => theme.palette.mode === 'dark' ? '#fff' : '#000',
}} }}
> >
@@ -880,7 +880,7 @@ export const RunContent = ({ row, currentLog, interpretationInProgress, logEndRe
? '#121111ff' ? '#121111ff'
: '#e9ecef' : '#e9ecef'
: 'transparent', : 'transparent',
fontWeight: currentScreenshotIndex === idx ? 600 : 400, borderBottom: currentScreenshotIndex === idx ? '3px solid #FF00C3' : 'none',
color: (theme) => theme.palette.mode === 'dark' ? '#fff' : '#000', color: (theme) => theme.palette.mode === 'dark' ? '#fff' : '#000',
}} }}
> >