fix(ui): fix subscription access and mobile menu positioning

Add the subscription link for cloud team admins, anchor the mobile account menu below its trigger, and protect the subscription modal from Livewire morphing.
This commit is contained in:
Andras Bacsai
2026-08-16 08:02:23 +02:00
parent 0a35909ddf
commit bb45668a80
6 changed files with 64 additions and 2 deletions
+13
View File
@@ -1959,6 +1959,19 @@ html[data-theme="custom"] textarea:disabled {
transform: translate(-50%, -50%) !important;
z-index: 9999 !important;
}
/* The mobile top bar's backdrop filter makes it the containing block for
fixed descendants. Keep this menu anchored below its trigger instead
of centering it within the short top bar. */
.listbox-panel.top-user-menu-panel {
position: absolute !important;
top: calc(100% + 0.25rem) !important;
right: 0 !important;
left: auto !important;
max-height: calc(100dvh - 4.5rem) !important;
overflow-y: auto !important;
transform: none !important;
}
}
.listbox-option {