fix: make the new-chat + menu visible and clickable
Nightly Build / build (push) Successful in 7m45s

The menu opened but never appeared: it was absolutely positioned inside
.copilot-tabs, whose overflow-x: auto clips on both axes, so the dropdown
was cut off inside the tab strip. And once visible, every click would have
landed on the transparent full-screen overlay (z-index 99) above the menu
(z-index 20), closing it instead of choosing an entry.

Anchor the menu to the + button with fixed positioning (the same escape
the model dropdown gets from living outside any clipping container) and
raise it to z-index 100, above the overlay it shares with the other pills.
This commit is contained in:
2026-08-04 23:01:36 +01:00
parent e5c0f53f75
commit 40663373d4
2 changed files with 12 additions and 7 deletions
+2 -4
View File
@@ -280,10 +280,8 @@ app-copilot[mode="full"] .copilot-msg {
}
.copilot-tab-menu {
position: absolute;
top: 100%;
left: 0;
z-index: 20;
position: fixed;
z-index: 100;
min-width: 180px;
max-height: 260px;
overflow-y: auto;