librelad d75024b22c fix(webui): portal custom-select popup to body so cards' hover-transform can't break it
Location config dropdowns (Type, Path, etc.) live inside .task-item cards,
whose :hover applies transform: translateY(-2px). A transformed element
becomes the containing block for position:fixed descendants, so the popup —
previously a child of the card — was positioned with viewport coords against
the card instead of the viewport (wrong placement) and perturbed layout
(content shifted left).

Portal the popup to <body> on open and detach on close, so position:fixed is
always relative to the viewport regardless of any transformed/overflow
ancestor. flip-up styling moves onto the popup element and the topbar's wider
popup is carried via a class, since the popup no longer nests in the wrapper.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
Signed-off-by: librelad <librelad@digitalangels.vip>
2026-05-22 14:57:59 +01:00

258 lines
5.4 KiB
CSS

/* Topbar layout, nav pills, donate/logout buttons. Extracted from style.css. Theme via var(--*) tokens. */
/* Topbar */
.topbar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 24px;
height: 60px;
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
background: var(--bg-primary, #1a1a1a);
border-bottom: 1px solid var(--border-color, #444);
backdrop-filter: blur(12px) saturate(140%);
-webkit-backdrop-filter: blur(12px) saturate(140%);
}
.topbar-left {
display: flex;
align-items: center;
flex: 0 0 auto;
}
.topbar .logo {
font-size: 20px;
font-weight: 600;
}
.topbar .donate-btn {
padding: 8px 16px;
border: none;
border-radius: 6px;
background: var(--primary-color);
color: var(--text-primary);
cursor: pointer;
transition: background 0.2s;
font-weight: 600;
}
.topbar .logout-btn {
display: flex;
align-items: center;
gap: 6px;
padding: 6px 12px;
border: 1px solid rgba(var(--status-danger-rgb), 0.3);
border-radius: 6px;
background: rgba(var(--status-danger-rgb), 0.08);
color: var(--status-danger);
cursor: pointer;
font-size: 0.8rem;
font-weight: 500;
transition: background 0.15s ease, border-color 0.15s ease;
}
.topbar .logout-btn:hover {
background: rgba(var(--status-danger-rgb), 0.18);
border-color: rgba(var(--status-danger-rgb), 0.5);
}
.topbar-nav {
display: flex;
gap: 8px;
align-items: center;
}
.topbar-nav .nav-item {
background: rgba(var(--text-rgb), 0.1);
border: 1px solid rgba(var(--text-rgb), 0.2);
border-radius: 8px;
padding: 12px 16px;
font-size: 14px;
font-weight: 500;
color: var(--text-muted);
text-decoration: none;
display: flex;
align-items: center;
gap: 8px;
transition: all 0.2s ease;
cursor: pointer;
min-height: 44px;
white-space: nowrap;
}
.topbar-nav .nav-item:hover {
background: rgba(var(--text-rgb), 0.2);
transform: translateY(-1px);
}
.topbar-nav .nav-item.active {
background: var(--primary-color);
color: var(--text-primary);
border-color: var(--primary-color);
}
.topbar-nav .nav-item.nav-active {
background: var(--primary-color);
color: var(--text-primary);
border-color: var(--primary-color);
}
.topbar-nav .nav-item.nav-active:hover {
background: var(--accent-hover);
border-color: var(--accent-hover);
}
.topbar-nav .nav-item svg {
width: 16px;
height: 16px;
}
/* Disabled state used while a system-wide task (e.g. config_update) is running
so the user can't navigate to App Center / Config mid-flight and act on
stale data. */
.topbar-nav .nav-item.nav-item-disabled {
opacity: 0.45;
cursor: not-allowed;
pointer-events: auto; /* keep cursor styling, but the JS click handler returns early */
}
.topbar-nav .nav-item.nav-item-disabled:hover {
background: transparent;
}
.topbar-controls {
display: flex;
align-items: center;
gap: 12px;
}
.mobile-drawer {
display: flex;
align-items: center;
flex: 1;
justify-content: space-between;
gap: 12px;
min-width: 0;
}
.mobile-drawer-page-section {
display: none;
}
@media (max-width: 768px) {
.topbar {
padding: 0 12px;
gap: 8px;
justify-content: flex-start;
}
.topbar-left {
flex: 0 0 auto;
}
.mobile-drawer {
position: fixed;
top: 60px;
left: 0;
width: 100vw;
height: calc(100vh - 60px);
flex-direction: column;
align-items: stretch;
justify-content: flex-start;
gap: 0;
padding: 16px;
background: var(--surface-bg-solid, #1a1a1a);
border-right: 1px solid var(--border-color, #444);
box-shadow: 6px 0 24px rgba(0, 0, 0, 0.35);
overflow-y: auto;
overscroll-behavior: contain;
transform: translateX(-100%);
transition: transform 0.3s ease;
z-index: 101;
}
.mobile-drawer.mobile-open {
transform: translateX(0);
}
.mobile-drawer .topbar-nav {
flex-direction: column;
align-items: stretch;
gap: 6px;
width: 100%;
}
.mobile-drawer .topbar-nav .nav-item {
width: 100%;
justify-content: flex-start;
padding: 12px 14px;
}
.mobile-drawer-page-section {
display: flex;
flex-direction: column;
gap: 4px;
margin-top: 16px;
padding-top: 16px;
border-top: 1px solid rgba(var(--text-rgb), 0.12);
}
.mobile-drawer-page-section:empty {
display: none;
}
.mobile-drawer .topbar-controls {
flex-direction: column;
align-items: stretch;
gap: 8px;
width: 100%;
margin-top: auto;
padding-top: 16px;
padding-bottom: 16px;
border-top: 1px solid rgba(var(--text-rgb), 0.12);
position: sticky;
bottom: -16px;
flex-shrink: 0;
background: var(--surface-bg-solid, #1a1a1a);
z-index: 1;
}
.mobile-drawer .topbar-controls .custom-select,
.mobile-drawer .topbar-controls .donate-btn,
.mobile-drawer .topbar-controls .logout-btn {
width: 100%;
justify-content: center;
}
.mobile-drawer .topbar-controls .custom-select-button {
width: 100%;
justify-content: space-between;
}
}
/* Compact custom-select for the topbar theme switcher. The default
.custom-select-button is form-input sized (12px 16px padding,
14px font), too tall for the 60px topbar. */
.topbar-controls .custom-select {
width: auto;
min-width: 110px;
}
.topbar-controls .custom-select-button {
padding: 6px 12px;
font-size: 13px;
border-radius: 6px;
min-height: 0;
line-height: 1.2;
}
.custom-select-popup-topbar {
min-width: 140px;
}