Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion webview-ui/src/components/common/Tab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,12 @@ export const Tab = ({ className, children, ...props }: TabProps) => (
)

export const TabHeader = ({ className, children, ...props }: TabProps) => (
<div className={cn("px-5 py-2.5 border-b border-vscode-panel-border", className)} {...props}>
<div
className={cn(
"px-5 py-2.5 border-b border-vscode-panel-border bg-vscode-sideBar-background/95 backdrop-blur-sm z-10",
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The z-10 class has no effect here because z-index only applies to positioned elements. Without a position value (relative, absolute, fixed, or sticky), the z-index is ignored. Adding relative would make the z-10 and backdrop-blur-sm work as intended.

Suggested change
"px-5 py-2.5 border-b border-vscode-panel-border bg-vscode-sideBar-background/95 backdrop-blur-sm z-10",
"px-5 py-2.5 border-b border-vscode-panel-border bg-vscode-sideBar-background/95 backdrop-blur-sm relative z-10",

Fix it with Roo Code or mention @roomote and request a fix.

className,
)}
{...props}>
{children}
</div>
)
Expand Down
Loading