From caa6d0168a836b61c494522afa0252cce7cc519b Mon Sep 17 00:00:00 2001 From: Eduard Wisch Date: Wed, 8 Apr 2026 16:03:41 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20Action-Buttons=20im=20Editor-Footer=20du?= =?UTF-8?q?nkel-theme-f=C3=A4hig?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 (1M context) [deploy] --- css/bericht.css | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/css/bericht.css b/css/bericht.css index 3ebdda9..0419fb6 100644 --- a/css/bericht.css +++ b/css/bericht.css @@ -156,6 +156,33 @@ margin-top: 16px; display: flex; gap: 8px; justify-content: flex-end; } +.bericht-actions .butAction, +.bericht-actions .butActionConfirm, +.bericht-actions .butActionDelete { + background: var(--colorbacktitle1, #f5f5f5); + color: var(--colortext, #222); + border: 1px solid var(--colorboxbordertitle1, #ccc); + padding: 8px 16px; + border-radius: 4px; + text-decoration: none; + cursor: pointer; + font-weight: 500; +} +.bericht-actions .butActionConfirm { + background: var(--colorbackhmenu1, #337ab7); + color: var(--colortextbackhmenu, #fff); + border-color: var(--colorbackhmenu1, #2e6da4); +} +.bericht-actions .butActionDelete { + background: var(--colorbackerror, #d9534f); + color: #fff; + border-color: var(--colorbackerror, #d43f3a); +} +.bericht-actions .butAction:hover, +.bericht-actions .butActionConfirm:hover, +.bericht-actions .butActionDelete:hover { + filter: brightness(1.1); +} .bericht-toast { position: fixed; top: 20px; right: 20px;