bug fix zu adresse

This commit is contained in:
kai
2026-08-26 10:37:02 +02:00
parent 4035176370
commit a18dba1c8f
8 changed files with 339 additions and 142 deletions
+56 -3
View File
@@ -263,15 +263,24 @@ form .button {
display: block;
}
.venue-results {
.venue-search-control {
position: relative;
}
.venue-results {
position: absolute;
top: calc(100% + 5px);
left: 0;
right: 0;
background: var(--surface);
border: 1px solid var(--border);
border-radius: 10px;
margin-top: 5px;
overflow: hidden;
margin-top: 0;
max-height: min(55vh, 420px);
overflow-y: auto;
overscroll-behavior: contain;
z-index: 50;
}
@@ -301,6 +310,50 @@ form .button {
}
}
/* Admin */
.admin-nav {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-bottom: 24px;
}
.admin-nav a {
padding: 10px 14px;
color: var(--muted);
background: var(--surface);
border: 1px solid var(--border);
border-radius: 9px;
text-decoration: none;
}
.admin-nav a:hover,
.admin-nav a.active {
color: var(--text);
border-color: var(--accent);
background: var(--surface-hover);
}
.admin-section {
margin-bottom: 28px;
padding: 24px;
background: var(--surface);
border: 1px solid var(--border);
border-radius: 16px;
}
.admin-meta { color: var(--muted); font-size: .9rem; }
.admin-list { display: grid; gap: 12px; }
.admin-row { padding: 16px; background: #0f1420; border: 1px solid var(--border); border-radius: 10px; }
.admin-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.admin-danger { padding: 9px 12px; color: #fecaca; border: 1px solid #7f1d1d; background: #450a0a; border-radius: 8px; cursor: pointer; }
.admin-danger:disabled { opacity: .4; cursor: not-allowed; }
@media (max-width: 700px) {
.admin-nav { display: grid; grid-template-columns: 1fr; }
.admin-section { padding: 16px; }
}
.venue-result {
width: 100%;
display: flex;