feat: Gruppentermin-Button in der Gruppenansicht + Banner in Akzentfarbe

- "+ Gruppentermin"-Button im Gruppenansicht-Banner: oeffnet den Editor mit
  dem Gruppenkalender vorausgewaehlt -> jeder kann direkt eintragen.
- Banner + aktive Gruppe nutzen jetzt die Akzentfarbe (color-mix, Fallback)
  statt Blau. Version v35.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Scarriffle
2026-05-31 18:38:35 +02:00
parent 7429a309c3
commit fd7f7ddfe0
5 changed files with 22 additions and 4 deletions

View File

@@ -1811,13 +1811,15 @@ a { color: var(--primary); text-decoration: none; }
justify-content: space-between;
gap: 12px;
padding: 8px 16px;
background: rgba(66, 133, 244, 0.12);
border-bottom: 1px solid var(--border);
background: var(--bg-surface); /* fallback for browsers without color-mix */
background: color-mix(in srgb, var(--accent) 15%, var(--bg-app));
border-bottom: 1px solid var(--accent);
font-size: 14px;
color: var(--text-1);
}
.group-item-active {
background: rgba(66, 133, 244, 0.15);
background: var(--bg-surface);
background: color-mix(in srgb, var(--accent) 18%, transparent);
border-radius: 8px;
}
.group-item .cal-item-name { cursor: pointer; flex: 1; }