Remove public emoji UI and unify booking accent

This commit is contained in:
2026-07-11 12:43:42 +02:00
parent 70c0918ce6
commit ab41dd927e
8 changed files with 90 additions and 13 deletions
+28 -3
View File
@@ -189,8 +189,20 @@ section { padding: 5rem 0; }
border: 1px solid var(--line);
color: var(--text);
border-radius: 8px;
padding: 0.4rem 0.75rem;
padding: 0.55rem 0.65rem;
cursor: pointer;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 0.22rem;
}
.menu-toggle-bar {
display: block;
width: 1rem;
height: 2px;
border-radius: 999px;
background: currentColor;
}
/* ---------------- Buttons ---------------- */
@@ -806,12 +818,20 @@ select:focus, input:focus, textarea:focus {
background: var(--accent); color: #0b0c10; border-color: var(--accent);
font-weight: 600;
}
.bpf-step.done { border-color: var(--ok); color: var(--ok); }
.bpf-step.done {
border-color: rgba(196, 138, 66, 0.65);
background: rgba(196, 138, 66, 0.06);
color: var(--accent-strong);
}
.bpf-step-num {
display: inline-grid; place-items: center;
width: 1.5rem; height: 1.5rem; border-radius: 50%;
background: rgba(255,255,255,0.1); font-size: 0.75rem; font-weight: 700;
}
.bpf-step.done .bpf-step-num {
background: rgba(196, 138, 66, 0.16);
color: var(--accent-strong);
}
.bpf-step.active .bpf-step-num { background: rgba(0,0,0,0.2); color: #0b0c10; }
.bpf-step-arrow { color: var(--muted); font-size: 1.2rem; }
@@ -867,7 +887,12 @@ select:focus, input:focus, textarea:focus {
min-height: 120px;
}
.bpf-upload-box:hover { border-color: var(--accent); background: rgba(196,138,66,0.04); }
.bpf-upload-icon { font-size: 1.5rem; }
.bpf-upload-icon {
display: inline-flex;
align-items: center;
justify-content: center;
color: var(--accent-strong);
}
.bpf-file-input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.bpf-file-name { font-size: 0.82rem; color: var(--ok); margin-top: 0.3rem; min-height: 1.2rem; }