From 1d4aa43b02010ad5c660a07963fc2f65000a5d85 Mon Sep 17 00:00:00 2001 From: "Torsten Schulz (local)" Date: Wed, 8 Oct 2025 11:22:45 +0200 Subject: [PATCH] =?UTF-8?q?Aktualisiert=20das=20Styling=20in=20App.vue=20d?= =?UTF-8?q?urch=20Hinzuf=C3=BCgen=20von=20Padding=20am=20unteren=20Rand=20?= =?UTF-8?q?f=C3=BCr=20die=20Statusleiste.=20=C3=84ndert=20den=20Hintergrun?= =?UTF-8?q?d=20und=20die=20Polsterung=20in=20DialogManager.vue,=20um=20das?= =?UTF-8?q?=20visuelle=20Design=20zu=20verbessern=20und=20die=20Benutzerob?= =?UTF-8?q?erfl=C3=A4che=20zu=20optimieren.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/App.vue | 1 + frontend/src/components/DialogManager.vue | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/frontend/src/App.vue b/frontend/src/App.vue index 0a8110b..237966a 100644 --- a/frontend/src/App.vue +++ b/frontend/src/App.vue @@ -466,6 +466,7 @@ export default { overflow-y: auto; background: var(--background-light); min-height: 0; + padding-bottom: 32px; /* Platz für Statusleiste (24px + 8px padding) */ } /* Footer */ diff --git a/frontend/src/components/DialogManager.vue b/frontend/src/components/DialogManager.vue index ee81de5..7b30496 100644 --- a/frontend/src/components/DialogManager.vue +++ b/frontend/src/components/DialogManager.vue @@ -315,13 +315,13 @@ export default { bottom: 0; left: 0; right: 0; - background: rgba(0, 0, 0, 0.8); - padding: 8px 16px; + background: linear-gradient(135deg, rgba(160, 112, 64, 0.95), rgba(128, 75, 41, 0.95)); + padding: 4px 16px; display: flex; gap: 8px; z-index: 2000; pointer-events: auto; - min-height: 40px; + min-height: 24px; align-items: center; }