fix: Notizen-Toolbar erweitert + Essen-Widget 2×2-Grid auf Desktop

Pinnwand: Pflichtfeld-Stern entfernt, Markdown-Hinweis ergänzt,
Formatierungs-Toolbar um Unterstreichen, Durchgestrichen, Überschrift,
nummerierte Liste, Checkliste, Link, Code, Zitat und Trennlinie erweitert.
Dashboard: Essen-Widget nutzt ab Desktop 2×2-Layout statt 4×1 für
bessere Lesbarkeit der Mahlzeiten-Labels.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Ulas
2026-03-27 15:31:50 +01:00
parent 2f0b0c05ec
commit cb8b108d3c
2 changed files with 139 additions and 4 deletions
+23
View File
@@ -454,6 +454,29 @@
font-weight: var(--font-weight-medium);
}
/* Desktop: 2x2 Grid statt 4x1 für mehr Breite pro Slot */
@media (min-width: 1024px) {
.meal-slots {
grid-template-columns: repeat(2, 1fr);
}
.meal-slot:first-child {
border-bottom-left-radius: 0;
}
.meal-slot:last-child {
border-bottom-right-radius: 0;
}
.meal-slot:nth-child(3) {
border-bottom-left-radius: var(--radius-md);
}
.meal-slot:nth-child(4) {
border-bottom-right-radius: var(--radius-md);
}
}
/* --------------------------------------------------------
* Notizen-Grid-Widget
* -------------------------------------------------------- */