All checks were successful
Deploy baustelle-pwa / deploy (push) Successful in 5s
- FAB unten rechts (halbtransparent) öffnet Fullscreen-Modal zur Auftrags-Anlage: Kundensuche mit Debounce und "Zuletzt verwendet"- Quick-Pick aus IndexedDB → Anzeige der übernommenen Defaults → Titel + optional Kunden-Ref → direkter Sprung auf #/orders/<id> wo die Fotos aufgenommen werden können. - appBoot() preloadet das JWT aktiv aus IndexedDB bevor der Router läuft — fixt "nach App-Neustart immer wieder einloggen müssen". - setNav() steuert zusätzlich die FAB-Sichtbarkeit mit. - api.createOrder() als neuer Wrapper für POST /orders.php?action=create. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
877 lines
20 KiB
CSS
877 lines
20 KiB
CSS
/* Baustelle PWA — Mobile-first CSS */
|
|
|
|
* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
|
|
html, body { margin: 0; padding: 0; height: 100%; }
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
|
|
background: #1a1a1f;
|
|
color: #f0f0f0;
|
|
-webkit-font-smoothing: antialiased;
|
|
overscroll-behavior-y: contain;
|
|
}
|
|
|
|
#app {
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 100vh;
|
|
min-height: 100dvh;
|
|
}
|
|
|
|
#topbar {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
padding: 14px 16px;
|
|
background: #25252b;
|
|
border-bottom: 1px solid #333;
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 10;
|
|
}
|
|
#topbar h1 {
|
|
flex: 1;
|
|
margin: 0;
|
|
font-size: 17px;
|
|
font-weight: 600;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
.icon-btn {
|
|
background: transparent;
|
|
border: none;
|
|
color: #f0f0f0;
|
|
font-size: 22px;
|
|
padding: 4px 8px;
|
|
cursor: pointer;
|
|
-webkit-appearance: none;
|
|
}
|
|
#status-badge { font-size: 14px; }
|
|
|
|
#main {
|
|
flex: 1;
|
|
padding: 16px;
|
|
overflow-y: auto;
|
|
-webkit-overflow-scrolling: touch;
|
|
}
|
|
|
|
#bottom-nav {
|
|
display: flex;
|
|
background: #25252b;
|
|
border-top: 1px solid #333;
|
|
padding-bottom: env(safe-area-inset-bottom);
|
|
}
|
|
#bottom-nav button {
|
|
flex: 1;
|
|
background: transparent;
|
|
border: none;
|
|
color: #888;
|
|
padding: 14px 8px;
|
|
font-size: 12px;
|
|
cursor: pointer;
|
|
}
|
|
#bottom-nav button.active { color: #7aa2f7; }
|
|
|
|
/* ----- FAB (Neuer Auftrag) ----- */
|
|
.fab {
|
|
position: fixed;
|
|
right: 18px;
|
|
bottom: calc(68px + env(safe-area-inset-bottom, 0px));
|
|
width: 56px;
|
|
height: 56px;
|
|
border-radius: 50%;
|
|
border: none;
|
|
font-size: 30px;
|
|
line-height: 1;
|
|
font-weight: 300;
|
|
background: rgba(122, 162, 247, 0.85);
|
|
color: #fff;
|
|
box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
|
|
backdrop-filter: blur(6px);
|
|
-webkit-backdrop-filter: blur(6px);
|
|
z-index: 50;
|
|
cursor: pointer;
|
|
transition: transform 0.1s ease, background 0.15s ease;
|
|
}
|
|
.fab:active { transform: scale(0.92); background: rgba(122, 162, 247, 1); }
|
|
.fab[hidden] { display: none; }
|
|
|
|
/* ----- Neuer Auftrag Modal (nutzt .fullscreen-modal) ----- */
|
|
.new-order-customer-row {
|
|
display: flex;
|
|
gap: 10px;
|
|
padding: 10px 12px;
|
|
background: #2a2a30;
|
|
border: 1px solid #3a3a42;
|
|
border-radius: 8px;
|
|
margin-bottom: 10px;
|
|
align-items: center;
|
|
}
|
|
.new-order-customer-row .nc-name { font-weight: 600; flex: 1; }
|
|
.new-order-customer-row .nc-meta { color: #888; font-size: 12px; }
|
|
.new-order-customer-row .nc-change {
|
|
background: transparent; border: 1px solid #555;
|
|
color: #7aa2f7; border-radius: 6px; padding: 4px 10px; cursor: pointer;
|
|
}
|
|
.new-order-defaults {
|
|
font-size: 12px; color: #aaa;
|
|
padding: 6px 12px; margin-bottom: 10px;
|
|
border-left: 2px solid #7aa2f7;
|
|
}
|
|
.new-order-customer-search {
|
|
display: block; width: 100%;
|
|
padding: 12px; border-radius: 8px;
|
|
border: 1px solid #444; background: #2a2a30; color: #eee;
|
|
font-size: 15px; margin-bottom: 8px;
|
|
}
|
|
.new-order-customer-list {
|
|
max-height: 45vh; overflow-y: auto;
|
|
border: 1px solid #333; border-radius: 8px; background: #222228;
|
|
}
|
|
.new-order-customer-list .nc-item {
|
|
padding: 12px; border-bottom: 1px solid #2a2a30; cursor: pointer;
|
|
}
|
|
.new-order-customer-list .nc-item:last-child { border-bottom: none; }
|
|
.new-order-customer-list .nc-item:active { background: #2e2e35; }
|
|
.new-order-customer-list .nc-item .nc-sub { color: #888; font-size: 12px; }
|
|
.new-order-customer-list .nc-item.recent { background: rgba(122,162,247,0.06); }
|
|
.new-order-empty { padding: 16px; color: #888; text-align: center; }
|
|
|
|
/* ----- Login ----- */
|
|
.login-form {
|
|
max-width: 360px;
|
|
margin: 60px auto 0;
|
|
text-align: center;
|
|
}
|
|
.login-form h2 { margin: 0 0 24px; font-weight: 600; }
|
|
.login-form input {
|
|
display: block;
|
|
width: 100%;
|
|
padding: 16px;
|
|
margin-bottom: 12px;
|
|
border-radius: 8px;
|
|
border: 1px solid #444;
|
|
background: #2a2a30;
|
|
color: #f0f0f0;
|
|
font-size: 16px;
|
|
-webkit-appearance: none;
|
|
}
|
|
.login-form input:focus { outline: 2px solid #337ab7; }
|
|
|
|
/* ----- Buttons ----- */
|
|
.btn {
|
|
display: block;
|
|
width: 100%;
|
|
padding: 16px 20px;
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
border-radius: 10px;
|
|
border: none;
|
|
cursor: pointer;
|
|
background: #337ab7;
|
|
color: #fff;
|
|
margin: 8px 0;
|
|
-webkit-appearance: none;
|
|
transition: transform 0.1s;
|
|
}
|
|
.btn:active { transform: scale(0.97); }
|
|
.btn-secondary {
|
|
background: #2a2a30;
|
|
border: 1px solid #444;
|
|
color: #f0f0f0;
|
|
}
|
|
.btn-large { padding: 22px; font-size: 18px; }
|
|
.btn-danger {
|
|
background: #d9534f;
|
|
color: #fff;
|
|
margin-top: 24px;
|
|
}
|
|
.btn-danger:active { background: #c9302c; }
|
|
|
|
.hidden-input { display: none; }
|
|
|
|
/* ----- Order List ----- */
|
|
.search-bar {
|
|
margin-bottom: 12px;
|
|
}
|
|
.search-bar input[type="search"] {
|
|
width: 100%;
|
|
padding: 12px 16px;
|
|
border-radius: 24px;
|
|
border: 1px solid #444;
|
|
background: #2a2a30;
|
|
color: #f0f0f0;
|
|
font-size: 15px;
|
|
-webkit-appearance: none;
|
|
}
|
|
.filter-toggle {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
margin-top: 8px;
|
|
font-size: 14px;
|
|
color: #aaa;
|
|
cursor: pointer;
|
|
}
|
|
.filter-toggle input[type="checkbox"] {
|
|
width: 18px;
|
|
height: 18px;
|
|
accent-color: #7aa2f7;
|
|
}
|
|
|
|
.order-card {
|
|
background: #25252b;
|
|
border-radius: 10px;
|
|
padding: 14px 16px;
|
|
margin-bottom: 10px;
|
|
cursor: pointer;
|
|
transition: background 0.15s;
|
|
}
|
|
.order-card:active { background: #2f2f35; }
|
|
.order-card .ref {
|
|
font-weight: 600;
|
|
color: #7aa2f7;
|
|
font-size: 14px;
|
|
}
|
|
.order-card .ref-client {
|
|
font-weight: 400;
|
|
color: #aaa;
|
|
font-size: 13px;
|
|
}
|
|
.order-card .name {
|
|
font-size: 15px;
|
|
margin-top: 4px;
|
|
}
|
|
.order-card .meta {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin-top: 6px;
|
|
font-size: 12px;
|
|
opacity: 0.7;
|
|
}
|
|
.order-card .badge {
|
|
background: #337ab7;
|
|
color: #fff;
|
|
padding: 2px 8px;
|
|
border-radius: 10px;
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
/* ----- Order Detail ----- */
|
|
.detail-section {
|
|
background: #25252b;
|
|
border-radius: 10px;
|
|
padding: 14px 16px;
|
|
margin-bottom: 12px;
|
|
}
|
|
.detail-section h3 {
|
|
margin: 0 0 8px;
|
|
font-size: 13px;
|
|
text-transform: uppercase;
|
|
color: #7aa2f7;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
.detail-section p { margin: 4px 0; font-size: 14px; }
|
|
.detail-section .label { opacity: 0.6; font-size: 12px; }
|
|
|
|
.photo-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
|
|
gap: 6px;
|
|
margin-top: 10px;
|
|
max-width: 600px;
|
|
}
|
|
.photo-grid .thumb {
|
|
aspect-ratio: 1;
|
|
max-width: 160px;
|
|
background: #2a2a30;
|
|
border-radius: 6px;
|
|
overflow: hidden;
|
|
position: relative;
|
|
cursor: pointer;
|
|
}
|
|
.photo-grid .thumb img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
.photo-grid .thumb-placeholder {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 24px;
|
|
opacity: 0.5;
|
|
}
|
|
|
|
/* ----- Toast ----- */
|
|
#toast-container {
|
|
position: fixed;
|
|
top: 16px;
|
|
left: 16px;
|
|
right: 16px;
|
|
z-index: 100;
|
|
pointer-events: none;
|
|
}
|
|
.toast {
|
|
background: #5cb85c;
|
|
color: #fff;
|
|
padding: 14px 16px;
|
|
border-radius: 8px;
|
|
margin-bottom: 8px;
|
|
text-align: center;
|
|
box-shadow: 0 4px 16px rgba(0,0,0,0.4);
|
|
animation: slide-down 0.2s;
|
|
pointer-events: auto;
|
|
}
|
|
.toast.error { background: #d9534f; }
|
|
.toast.warn { background: #f0ad4e; }
|
|
@keyframes slide-down { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; } }
|
|
|
|
.empty-state {
|
|
text-align: center;
|
|
padding: 40px 20px;
|
|
opacity: 0.6;
|
|
}
|
|
.empty-state .icon { font-size: 48px; margin-bottom: 12px; }
|
|
|
|
/* Loader */
|
|
.loader {
|
|
text-align: center;
|
|
padding: 40px;
|
|
opacity: 0.6;
|
|
}
|
|
|
|
.status-draft {
|
|
background: #6c757d;
|
|
color: #fff;
|
|
font-size: 10px;
|
|
padding: 2px 6px;
|
|
border-radius: 8px;
|
|
margin-left: 6px;
|
|
vertical-align: middle;
|
|
}
|
|
.status-final {
|
|
background: #5cb85c;
|
|
color: #fff;
|
|
font-size: 10px;
|
|
padding: 2px 6px;
|
|
border-radius: 8px;
|
|
margin-left: 6px;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
/* ============================================================
|
|
* Fullscreen Modals (Foto-Vollbild, Voice, Sketch)
|
|
* ============================================================ */
|
|
.fullscreen-modal {
|
|
position: fixed;
|
|
inset: 0;
|
|
background: #000;
|
|
z-index: 1000;
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding-top: env(safe-area-inset-top);
|
|
padding-bottom: env(safe-area-inset-bottom);
|
|
}
|
|
.fs-header {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
padding: 10px 12px;
|
|
background: rgba(0,0,0,0.7);
|
|
color: #fff;
|
|
border-bottom: 1px solid #222;
|
|
}
|
|
.fs-header .fs-title {
|
|
flex: 1;
|
|
font-size: 14px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
.fs-header .icon-btn { color: #fff; }
|
|
.fs-body {
|
|
flex: 1;
|
|
overflow: auto;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 12px;
|
|
}
|
|
.fs-body img {
|
|
max-width: 100%;
|
|
max-height: 100%;
|
|
object-fit: contain;
|
|
}
|
|
|
|
/* Voice Modal */
|
|
.voice-modal .voice-body {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 20px;
|
|
gap: 16px;
|
|
color: #fff;
|
|
}
|
|
.voice-indicator {
|
|
font-size: 80px;
|
|
color: #444;
|
|
transition: color 0.3s;
|
|
}
|
|
.voice-indicator.recording {
|
|
color: #d9534f;
|
|
animation: pulse 1s infinite;
|
|
}
|
|
@keyframes pulse {
|
|
0%, 100% { opacity: 1; }
|
|
50% { opacity: 0.4; }
|
|
}
|
|
.voice-time {
|
|
font-size: 32px;
|
|
font-variant-numeric: tabular-nums;
|
|
color: #7aa2f7;
|
|
}
|
|
|
|
/* Sketch Modal */
|
|
.sketch-modal .sketch-body {
|
|
flex: 1;
|
|
background: #222;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
overflow: hidden;
|
|
}
|
|
.sketch-modal .sketch-body canvas {
|
|
background: #fff;
|
|
box-shadow: 0 0 20px rgba(0,0,0,0.5);
|
|
touch-action: none;
|
|
}
|
|
.sketch-toolbar {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
padding: 8px 12px;
|
|
background: #1a1a1f;
|
|
border-bottom: 1px solid #333;
|
|
overflow-x: auto;
|
|
-webkit-overflow-scrolling: touch;
|
|
}
|
|
.sketch-toolbar button {
|
|
background: #2a2a30;
|
|
color: #fff;
|
|
border: 1px solid #444;
|
|
border-radius: 6px;
|
|
padding: 8px 12px;
|
|
font-size: 16px;
|
|
cursor: pointer;
|
|
flex-shrink: 0;
|
|
}
|
|
.sketch-toolbar button.active {
|
|
background: #337ab7;
|
|
border-color: #2868a0;
|
|
}
|
|
.sketch-toolbar .sep {
|
|
width: 1px;
|
|
background: #444;
|
|
height: 24px;
|
|
margin: 0 6px;
|
|
flex-shrink: 0;
|
|
}
|
|
.sketch-toolbar input[type="color"] {
|
|
width: 40px;
|
|
height: 36px;
|
|
border: 1px solid #444;
|
|
background: #2a2a30;
|
|
border-radius: 6px;
|
|
padding: 2px;
|
|
flex-shrink: 0;
|
|
}
|
|
.sketch-toolbar input[type="range"] {
|
|
width: 100px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
/* Audio-Items in Auftrags-Detail */
|
|
.audio-list { display: flex; flex-direction: column; gap: 8px; }
|
|
.audio-item {
|
|
background: #2a2a30;
|
|
border-radius: 6px;
|
|
padding: 10px 12px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
flex-wrap: wrap;
|
|
}
|
|
.audio-item .audio-name {
|
|
flex: 1;
|
|
font-size: 13px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
.audio-item .audio-play {
|
|
background: #337ab7;
|
|
color: #fff;
|
|
border: none;
|
|
border-radius: 50%;
|
|
width: 36px;
|
|
height: 36px;
|
|
font-size: 14px;
|
|
cursor: pointer;
|
|
flex-shrink: 0;
|
|
}
|
|
.audio-item audio { width: 100%; flex-basis: 100%; }
|
|
.audio-item .audio-transcribe {
|
|
background: #2a2a30;
|
|
color: #7aa2f7;
|
|
border: 1px solid #444;
|
|
border-radius: 50%;
|
|
width: 36px;
|
|
height: 36px;
|
|
font-size: 14px;
|
|
cursor: pointer;
|
|
flex-shrink: 0;
|
|
}
|
|
.audio-transcript {
|
|
flex-basis: 100%;
|
|
background: #1a1a1f;
|
|
padding: 10px 12px;
|
|
margin-top: 6px;
|
|
border-radius: 4px;
|
|
border-left: 3px solid #7aa2f7;
|
|
font-size: 13px;
|
|
line-height: 1.5;
|
|
color: #e0e0e0;
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
.btn[disabled] { opacity: 0.5; cursor: not-allowed; }
|
|
|
|
/* PIN-Modal */
|
|
.pin-modal .pin-body {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 24px;
|
|
background: #1a1a1f;
|
|
}
|
|
.pin-modal .pin-icon { font-size: 56px; margin-bottom: 12px; }
|
|
.pin-modal .pin-title { font-size: 18px; color: #e0e0e0; margin-bottom: 24px; }
|
|
.pin-modal .pin-display {
|
|
display: flex; gap: 16px; margin-bottom: 32px;
|
|
}
|
|
.pin-modal .pin-display span {
|
|
width: 18px; height: 18px; border-radius: 50%;
|
|
border: 2px solid #7aa2f7; background: transparent;
|
|
transition: background 0.1s;
|
|
}
|
|
.pin-modal .pin-display span.filled { background: #7aa2f7; }
|
|
.pin-modal .pin-keypad {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 72px);
|
|
gap: 12px;
|
|
}
|
|
.pin-modal .pin-key {
|
|
width: 72px; height: 72px;
|
|
border-radius: 50%;
|
|
background: #2a2a30;
|
|
color: #fff;
|
|
border: 1px solid #444;
|
|
font-size: 24px;
|
|
cursor: pointer;
|
|
-webkit-appearance: none;
|
|
}
|
|
.pin-modal .pin-key:active { background: #3a3a40; transform: scale(0.97); }
|
|
.pin-modal .pin-cancel {
|
|
margin-top: 32px;
|
|
background: transparent;
|
|
border: none;
|
|
color: #999;
|
|
cursor: pointer;
|
|
font-size: 14px;
|
|
}
|
|
|
|
/* Toggle-Row für Settings */
|
|
.toggle-row {
|
|
display: flex; align-items: center; gap: 10px;
|
|
padding: 10px 0;
|
|
cursor: pointer;
|
|
}
|
|
.toggle-row input[type="checkbox"] {
|
|
width: 18px; height: 18px;
|
|
accent-color: #337ab7;
|
|
}
|
|
|
|
/* Mini-Cards für Kundendetail (Aufträge/Rechnungen/Berichte) */
|
|
.mini-card {
|
|
background: #2a2a30;
|
|
border-radius: 6px;
|
|
padding: 10px 12px;
|
|
margin-bottom: 6px;
|
|
cursor: pointer;
|
|
transition: background 0.15s;
|
|
}
|
|
.mini-card:active { background: #35353b; }
|
|
.mini-card .mini-ref {
|
|
font-weight: 600;
|
|
color: #7aa2f7;
|
|
font-size: 13px;
|
|
}
|
|
.mini-card .mini-meta {
|
|
font-size: 12px;
|
|
opacity: 0.7;
|
|
margin-top: 3px;
|
|
}
|
|
|
|
.customer-actions {
|
|
display: flex;
|
|
gap: 8px;
|
|
margin-top: 12px;
|
|
}
|
|
.customer-actions a {
|
|
text-decoration: none;
|
|
text-align: center;
|
|
flex: 1;
|
|
}
|
|
|
|
/* Report-Page-Thumb mit Nummer */
|
|
.report-page-thumb { position: relative; transition: transform 0.1s, opacity 0.1s; }
|
|
.report-page-thumb.dragging {
|
|
opacity: 0.6;
|
|
transform: scale(1.05);
|
|
box-shadow: 0 4px 20px rgba(51, 122, 183, 0.5);
|
|
}
|
|
.report-page-thumb .page-num {
|
|
position: absolute;
|
|
top: 4px; left: 4px;
|
|
background: rgba(0,0,0,0.7);
|
|
color: #fff;
|
|
font-size: 11px;
|
|
padding: 2px 6px;
|
|
border-radius: 10px;
|
|
font-weight: 600;
|
|
}
|
|
.report-page-thumb .page-title-badge {
|
|
position: absolute;
|
|
bottom: 0; left: 0; right: 0;
|
|
background: rgba(0,0,0,0.75);
|
|
color: #fff;
|
|
font-size: 10px;
|
|
padding: 3px 6px;
|
|
text-align: center;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
/* Unterschrift-Modal */
|
|
.signature-modal .signature-meta {
|
|
padding: 12px 16px;
|
|
background: #1a1a1f;
|
|
border-bottom: 1px solid #333;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
}
|
|
.signature-modal .signature-meta input[type="text"] {
|
|
width: 100%;
|
|
padding: 12px 14px;
|
|
background: #2a2a30;
|
|
color: #fff;
|
|
border: 1px solid #444;
|
|
border-radius: 6px;
|
|
font-size: 15px;
|
|
box-sizing: border-box;
|
|
}
|
|
.signature-modal .sig-gps-label {
|
|
color: #e0e0e0;
|
|
font-size: 13px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
.signature-modal .sig-legal {
|
|
color: #999;
|
|
font-size: 11px;
|
|
line-height: 1.4;
|
|
}
|
|
.signature-modal .signature-toolbar {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
padding: 10px 16px;
|
|
background: #1a1a1f;
|
|
border-bottom: 1px solid #333;
|
|
}
|
|
.signature-modal .signature-toolbar button {
|
|
background: #2a2a30;
|
|
color: #fff;
|
|
border: 1px solid #444;
|
|
border-radius: 6px;
|
|
padding: 8px 14px;
|
|
cursor: pointer;
|
|
}
|
|
.signature-modal .sig-hint {
|
|
opacity: 0.6;
|
|
font-size: 13px;
|
|
}
|
|
.signature-modal .signature-body {
|
|
flex: 1;
|
|
background: #222;
|
|
padding: 16px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.signature-modal canvas {
|
|
background: #fff;
|
|
width: 100%;
|
|
max-width: 900px;
|
|
aspect-ratio: 2 / 1;
|
|
border-radius: 6px;
|
|
touch-action: none;
|
|
box-shadow: 0 0 20px rgba(0,0,0,0.5);
|
|
}
|
|
|
|
/* Hilfe-Modal */
|
|
.help-modal .help-body {
|
|
flex: 1;
|
|
overflow-y: auto;
|
|
-webkit-overflow-scrolling: touch;
|
|
padding: 20px;
|
|
color: #e0e0e0;
|
|
max-width: 780px;
|
|
margin: 0 auto;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
background: #1a1a1f;
|
|
}
|
|
.help-modal h2 {
|
|
color: #7aa2f7;
|
|
margin: 0 0 20px;
|
|
font-size: 22px;
|
|
}
|
|
.help-modal section {
|
|
background: #25252b;
|
|
border-radius: 10px;
|
|
padding: 14px 18px;
|
|
margin-bottom: 14px;
|
|
}
|
|
.help-modal section h3 {
|
|
color: #7aa2f7;
|
|
font-size: 16px;
|
|
margin: 0 0 10px;
|
|
}
|
|
.help-modal p { margin: 6px 0; line-height: 1.5; font-size: 14px; }
|
|
.help-modal ul { margin: 6px 0 6px 20px; padding: 0; }
|
|
.help-modal li { margin: 4px 0; font-size: 14px; line-height: 1.5; }
|
|
.help-modal strong { color: #fff; }
|
|
.help-modal .tip {
|
|
background: rgba(122, 162, 247, 0.1);
|
|
border-left: 3px solid #7aa2f7;
|
|
padding: 10px 12px;
|
|
border-radius: 4px;
|
|
margin: 10px 0;
|
|
font-size: 13px;
|
|
}
|
|
.help-modal .status-badge-help {
|
|
background: #2a2a30;
|
|
padding: 2px 8px;
|
|
border-radius: 10px;
|
|
font-size: 12px;
|
|
border: 1px solid #444;
|
|
}
|
|
.help-modal .help-footer {
|
|
margin-top: 24px;
|
|
padding-top: 16px;
|
|
border-top: 1px solid #333;
|
|
text-align: center;
|
|
opacity: 0.6;
|
|
font-size: 12px;
|
|
}
|
|
|
|
/* help-btn in Topbar kleiner machen */
|
|
#help-btn { font-size: 18px; padding: 4px 8px; }
|
|
|
|
/* ========== Photo Viewer mit Zoom + Swipe ========== */
|
|
.photo-viewer-modal .pv-body {
|
|
flex: 1;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
overflow: hidden;
|
|
touch-action: none;
|
|
background: #000;
|
|
}
|
|
.photo-viewer-modal #pv-image {
|
|
max-width: 100%;
|
|
max-height: 100%;
|
|
object-fit: contain;
|
|
transform-origin: center center;
|
|
transition: transform 0.15s ease-out, opacity 0.2s;
|
|
cursor: grab;
|
|
user-select: none;
|
|
-webkit-user-drag: none;
|
|
}
|
|
.photo-viewer-modal #pv-image.dragging {
|
|
cursor: grabbing;
|
|
transition: none;
|
|
}
|
|
.photo-viewer-modal .pv-counter {
|
|
font-size: 13px;
|
|
color: #888;
|
|
margin-left: auto;
|
|
margin-right: 8px;
|
|
}
|
|
.photo-viewer-modal .pv-nav {
|
|
position: absolute;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
width: 50px;
|
|
height: 80px;
|
|
border: none;
|
|
background: rgba(255, 255, 255, 0.1);
|
|
color: #fff;
|
|
font-size: 32px;
|
|
cursor: pointer;
|
|
z-index: 10;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 4px;
|
|
}
|
|
.photo-viewer-modal .pv-nav:disabled { opacity: 0.2; cursor: default; }
|
|
.photo-viewer-modal .pv-prev { left: 8px; }
|
|
.photo-viewer-modal .pv-next { right: 8px; }
|
|
.photo-viewer-modal .pv-zoom-btns {
|
|
position: absolute;
|
|
bottom: 16px;
|
|
right: 12px;
|
|
display: flex;
|
|
gap: 8px;
|
|
z-index: 10;
|
|
}
|
|
.photo-viewer-modal .pv-zoom-btns button {
|
|
width: 40px;
|
|
height: 40px;
|
|
border: none;
|
|
background: rgba(255, 255, 255, 0.15);
|
|
color: #fff;
|
|
font-size: 20px;
|
|
cursor: pointer;
|
|
border-radius: 6px;
|
|
}
|
|
.photo-viewer-modal .pv-zoom-btns button:active {
|
|
background: rgba(255, 255, 255, 0.3);
|
|
}
|
|
@media (max-width: 600px) {
|
|
.photo-viewer-modal .pv-nav { width: 40px; height: 60px; font-size: 24px; }
|
|
.photo-viewer-modal .pv-zoom-btns button { width: 36px; height: 36px; font-size: 18px; }
|
|
}
|