Revert "fix: standardize all tooltips to match sidebar RowTooltip design"

This reverts commit 9e1d97d39e.
This commit is contained in:
SaelixCode
2026-07-03 15:21:35 -04:00
parent 9e1d97d39e
commit f83f01417c
7 changed files with 18 additions and 20 deletions
@@ -30,7 +30,7 @@ export function SidebarActions({ createStackSlot, onScan, isScanning, bulkMode,
</Button>
</TooltipTrigger>
<TooltipContent side="bottom">
<span className="font-mono text-xs tabular-nums text-stat-value">Bulk mode (B)</span>
<p>Bulk mode (B)</p>
</TooltipContent>
</Tooltip>
</TooltipProvider>
@@ -50,7 +50,7 @@ export function SidebarActions({ createStackSlot, onScan, isScanning, bulkMode,
</Button>
</TooltipTrigger>
<TooltipContent side="bottom">
<span className="font-mono text-xs tabular-nums text-stat-value">Scan stacks folder</span>
<p>Scan stacks folder</p>
</TooltipContent>
</Tooltip>
</TooltipProvider>
@@ -43,7 +43,7 @@ describe('StackRow', () => {
});
it('wraps the partial pill in a hover tooltip', () => {
render(<StackRow {...base({ status: 'partial', running: 3, total: 5 })} />);
const { container } = render(<StackRow {...base({ status: 'partial', running: 3, total: 5 })} />);
const trigger = screen.getByText('PT');
// Radix TooltipTrigger adds data-state to the wrapped element.
expect(trigger.getAttribute('data-state')).toBe('closed');