Frontend: Teilnehmer-Grid und Teilnehmer-Style wie im PHP-Template 2-spaltig, dezente Chips, Hervorhebung für eigene Person.
All checks were successful
Deploy Workshop-Wahlen (DEV / PROD) / deploy (push) Successful in 12s

This commit is contained in:
ProgrammGamer
2026-01-30 21:09:46 +01:00
parent 67a5182670
commit 3f91746f17

View File

@@ -129,24 +129,27 @@
.kc-workshop-card .title .teamers small{font-weight:500;color:#4c7a6a;opacity:0.9;font-size:0.85rem;margin-left:6px;} .kc-workshop-card .title .teamers small{font-weight:500;color:#4c7a6a;opacity:0.9;font-size:0.85rem;margin-left:6px;}
.kc-workshop-card .content{padding:12px 18px 18px 18px;} .kc-workshop-card .content{padding:12px 18px 18px 18px;}
.kc-participants { .kc-participants {
display: block; display: grid;
font-size: 1em; grid-template-columns: 1fr 1fr;
gap: 6px 12px;
font-size: 0.95rem;
color: #2b2b2b; color: #2b2b2b;
} }
.kc-participant { .kc-participant {
padding: 0; padding: 6px 8px;
border-radius: 0; border-radius: 6px;
background: none; background: transparent;
white-space: normal; white-space: normal;
display: block; display: block;
max-width: 100%; max-width: 100%;
overflow: visible; overflow: visible;
text-overflow: unset; text-overflow: unset;
margin: 0 0 2px 0; margin: 0;
} }
.kc-participant.me { .kc-participant.me {
background: none; background: #fffbe6;
color: #2da66a; border: 1px solid #ffeab2;
color: inherit;
font-weight: bold; font-weight: bold;
} }
.kc-notassigned{background:#fff6f6;border:1px solid #ffd2d2;padding:12px;border-radius:10px;margin-top:12px;} .kc-notassigned{background:#fff6f6;border:1px solid #ffd2d2;padding:12px;border-radius:10px;margin-top:12px;}