feat: sticky headers (v1.6.2)

This commit is contained in:
Kantine Wrapper
2026-03-05 11:34:19 +01:00
parent edec109552
commit 6a70a5a5e8
8 changed files with 210 additions and 80 deletions
+1
View File
@@ -43,6 +43,7 @@ trigger: always_on
- **Visuals**: Generate screenshots/mockups for UI changes. - **Visuals**: Generate screenshots/mockups for UI changes.
- **Evidence**: Log outputs for verification. - **Evidence**: Log outputs for verification.
3. **Design**: Optimize code for AI readability (context efficiency). 3. **Design**: Optimize code for AI readability (context efficiency).
4. **Retry on Failure**: When an operation does not finish or does not work as expected, do not try endlessly to fix this. Try a few times and ask the user if no progress can be made.
## 6. Workspace Scopes ## 6. Workspace Scopes
- **Browser**: Allowed for documentation and safe browsing. No automated logins without permission. - **Browser**: Allowed for documentation and safe browsing. No automated logins without permission.
+6
View File
@@ -1,3 +1,9 @@
## v1.6.2 (2026-03-05)
-**Feature**: Wochentags-Header (Montag, Dienstag etc.) scrollen nun als "Sticky Header" mit und bleiben am oberen Bildschirmrand haften.
- Das Layout clippt scrollende Speisen ordentlich darunter weg.
- Vollständiges Viewport-Scrolling: Das Layout nutzt nun die ganze Höhe aus (`100dvh`), wodurch Scrollbalken sauber am Rand positioniert sind.
- 🐛 **Bugfix**: Probleme mit Bessa's default `overflow` Verhalten behoben, das `position: sticky` auf iOS/WebKit-Browsern blockierte.
## v1.6.0 (2026-03-04) ## v1.6.0 (2026-03-04)
-**Feature**: Sprachfilter für zweisprachige Menübeschreibungen. Neuer DE/EN/ALL Toggle im Header ermöglicht das Umschalten zwischen Deutsch, Englisch und dem vollen Originaltext. Allergen-Codes werden in allen Modi angezeigt. Einstellung wird persistent gespeichert. -**Feature**: Sprachfilter für zweisprachige Menübeschreibungen. Neuer DE/EN/ALL Toggle im Header ermöglicht das Umschalten zwischen Deutsch, Englisch und dem vollen Originaltext. Allergen-Codes werden in allen Modi angezeigt. Einstellung wird persistent gespeichert.
+2 -2
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
File diff suppressed because one or more lines are too long
+12 -5
View File
File diff suppressed because one or more lines are too long
+95 -37
View File
@@ -67,12 +67,22 @@ body {
} }
/* Fix scrolling bug: Reset html/body styles from host page */ /* Fix scrolling bug: Reset html/body styles from host page */
html, /* IMPORTANT: html must NOT have overflow set, or it creates a scroll container that breaks position: sticky */
html {
height: auto !important;
min-height: 100% !important;
overflow: visible !important;
position: static !important;
margin: 0 !important;
padding: 0 !important;
}
body { body {
height: auto !important; height: auto !important;
min-height: 100% !important; min-height: 100% !important;
overflow-y: auto !important; overflow-x: clip !important;
overflow-x: hidden !important; /* clip prevents horizontal overflow without breaking sticky */
overflow-y: visible !important;
position: static !important; position: static !important;
margin: 0 !important; margin: 0 !important;
padding: 0 !important; padding: 0 !important;
@@ -80,8 +90,7 @@ body {
/* Header */ /* Header */
.app-header { .app-header {
position: sticky; flex-shrink: 0;
top: 0;
z-index: 100; z-index: 100;
backdrop-filter: blur(12px); backdrop-filter: blur(12px);
background-color: var(--header-bg); background-color: var(--header-bg);
@@ -423,13 +432,21 @@ body {
font-size: 18px; font-size: 18px;
} }
/* Container */ /* Container - flex column, full width so child scrollbar is at edge */
.container { .container {
flex: 1;
width: 100%; width: 100%;
/* Full width */ overflow: hidden;
margin: 2rem auto; padding: 2rem 0 0 0;
padding: 0 2rem; /* Only top padding, no horizontal so child fills width */
min-height: 80vh; display: flex;
flex-direction: column;
}
/* Add horizontal padding to direct children of container to maintain layout */
.container>*:not(.menu-grid) {
padding-left: 2rem;
padding-right: 2rem;
} }
/* Banner */ /* Banner */
@@ -778,14 +795,17 @@ body {
display: none !important; display: none !important;
} }
/* Menu Grid */ /* Menu Grid Container */
.menu-grid { .menu-grid {
display: grid; display: flex;
gap: 2rem; flex-direction: column;
flex: 1;
overflow: hidden;
gap: 1rem;
} }
.week-section { .week-section {
margin-bottom: 3rem; margin-bottom: 2rem;
} }
.week-header { .week-header {
@@ -807,10 +827,25 @@ body {
margin-top: 0.25rem; margin-top: 0.25rem;
} }
/* Full-viewport layout: header + scrollable content + footer */
#kantine-wrapper {
display: flex;
flex-direction: column;
height: 100vh;
height: 100dvh;
/* Dynamic viewport height for mobile browsers */
overflow: hidden;
}
.days-grid { .days-grid {
display: grid; display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 0.75rem; gap: 0.75rem;
flex: 1;
overflow-y: auto;
/* This is the scroll container at the window edge */
align-content: start;
padding: 0 2rem 2rem 2rem;
} }
/* Card */ /* Card */
@@ -819,21 +854,33 @@ body {
border-radius: 12px; border-radius: 12px;
border: 1px solid var(--border-color); border: 1px solid var(--border-color);
box-shadow: var(--card-shadow); box-shadow: var(--card-shadow);
overflow: hidden; overflow: clip;
transition: transform 0.2s ease, box-shadow 0.2s ease; /* Clips scrolling content behind sticky header */
transition: box-shadow 0.2s ease;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
} }
/* Past Day Styling - Target specific elements so ordered items can remain visible */ /* Past Day Styling - Target specific elements so ordered items can remain visible AND preserve sticky context */
.menu-card.past-day .card-header, /* We MUST apply filter/opacity to children, not the parent .menu-card, or else position: sticky breaks */
/* Header keeps fully opaque background to hide scrolling items, only grayscales */
.menu-card.past-day .card-header {
filter: grayscale(0.8);
transition: filter 0.3s;
}
/* Items become semi-transparent */
.menu-card.past-day .menu-item:not(.ordered) { .menu-card.past-day .menu-item:not(.ordered) {
opacity: 0.6; opacity: 0.6;
filter: grayscale(0.8); filter: grayscale(0.8);
transition: opacity 0.3s, filter 0.3s; transition: opacity 0.3s, filter 0.3s;
} }
.menu-card.past-day:hover .card-header, .menu-card.past-day:hover .card-header {
filter: grayscale(0.4);
}
.menu-card.past-day:hover .menu-item:not(.ordered) { .menu-card.past-day:hover .menu-item:not(.ordered) {
opacity: 0.8; opacity: 0.8;
filter: grayscale(0.4); filter: grayscale(0.4);
@@ -880,7 +927,6 @@ body {
.menu-card:hover { .menu-card:hover {
transform: translateY(-2px);
box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
} }
@@ -890,7 +936,23 @@ body {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
align-items: baseline; align-items: baseline;
background-color: rgba(100, 116, 139, 0.05); background-color: var(--bg-card);
/* Removed border-radius: 12px 12px 0 0;
.menu-card's overflow: clip will round the corners initially.
When sticky at the top, it will be square and perfectly hide scrolling content! */
/* Sticky within .container scroll area */
position: sticky;
top: 0;
z-index: 90;
}
.card-body {
padding: 1.25rem;
display: grid;
grid-template-rows: auto;
align-content: start;
} }
.day-name { .day-name {
@@ -903,13 +965,6 @@ body {
color: var(--text-secondary); color: var(--text-secondary);
} }
.card-body {
padding: 1.25rem;
display: grid;
grid-template-rows: auto;
/* Each menu item gets its own row */
align-content: start;
}
.empty-state { .empty-state {
color: var(--text-secondary); color: var(--text-secondary);
@@ -1038,12 +1093,12 @@ body {
/* Footer */ /* Footer */
.app-footer { .app-footer {
flex-shrink: 0;
text-align: center; text-align: center;
padding: 2rem; padding: 1rem 2rem;
color: var(--text-secondary); color: var(--text-secondary);
font-size: 0.875rem; font-size: 0.875rem;
border-top: 1px solid var(--border-color); border-top: 1px solid var(--border-color);
margin-top: auto;
} }
/* === Order / Cancel Buttons (inline in status row) === */ /* === Order / Cancel Buttons (inline in status row) === */
@@ -1374,17 +1429,20 @@ body {
/* Day Header Status Colors (User Request) */ /* Day Header Status Colors (User Request) */
.card-header.header-violet { .card-header.header-violet {
background-color: rgba(139, 92, 246, 0.15); background-color: var(--bg-card);
background-image: linear-gradient(rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.15));
border-bottom: 2px solid #8b5cf6; border-bottom: 2px solid #8b5cf6;
} }
.card-header.header-green { .card-header.header-green {
background-color: rgba(16, 185, 129, 0.15); background-color: var(--bg-card);
background-image: linear-gradient(rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.15));
border-bottom: 2px solid var(--success-color); border-bottom: 2px solid var(--success-color);
} }
.card-header.header-red { .card-header.header-red {
background-color: rgba(239, 68, 68, 0.15); background-color: var(--bg-card);
background-image: linear-gradient(rgba(239, 68, 68, 0.15), rgba(239, 68, 68, 0.15));
border-bottom: 2px solid var(--error-color); border-bottom: 2px solid var(--error-color);
} }
@@ -2065,7 +2123,7 @@ body {
<div class="brand"> <div class="brand">
<span class="material-icons-round logo-icon">restaurant_menu</span> <span class="material-icons-round logo-icon">restaurant_menu</span>
<div class="header-left"> <div class="header-left">
<h1>Kantinen Übersicht <small class="version-tag" style="font-size: 0.6em; opacity: 0.7; font-weight: 400; cursor: pointer;" title="Klick für Versionsmenü">v1.6.1</small></h1> <h1>Kantinen Übersicht <small class="version-tag" style="font-size: 0.6em; opacity: 0.7; font-weight: 400; cursor: pointer;" title="Klick für Versionsmenü">v1.6.2</small></h1>
<div id="last-updated-subtitle" class="subtitle"></div> <div id="last-updated-subtitle" class="subtitle"></div>
</div> </div>
<div class="nav-group" style="margin-left: 1rem;"> <div class="nav-group" style="margin-left: 1rem;">
@@ -2212,7 +2270,7 @@ body {
</div> </div>
<div class="modal-body"> <div class="modal-body">
<div style="margin-bottom: 1rem;"> <div style="margin-bottom: 1rem;">
<strong>Aktuell:</strong> <span id="version-current">v1.6.1</span> <strong>Aktuell:</strong> <span id="version-current">v1.6.2</span>
</div> </div>
<div class="dev-toggle"> <div class="dev-toggle">
<label style="display:flex;align-items:center;gap:8px;cursor:pointer;"> <label style="display:flex;align-items:center;gap:8px;cursor:pointer;">
@@ -4080,7 +4138,7 @@ body {
// Periodic update check (runs on init + every hour) // Periodic update check (runs on init + every hour)
async function checkForUpdates() { async function checkForUpdates() {
const currentVersion = 'v1.6.1'; const currentVersion = 'v1.6.2';
const devMode = localStorage.getItem('kantine_dev_mode') === 'true'; const devMode = localStorage.getItem('kantine_dev_mode') === 'true';
try { try {
@@ -4121,7 +4179,7 @@ body {
const modal = document.getElementById('version-modal'); const modal = document.getElementById('version-modal');
const container = document.getElementById('version-list-container'); const container = document.getElementById('version-list-container');
const devToggle = document.getElementById('dev-mode-toggle'); const devToggle = document.getElementById('dev-mode-toggle');
const currentVersion = 'v1.6.1'; const currentVersion = 'v1.6.2';
if (!modal) return; if (!modal) return;
modal.classList.remove('hidden'); modal.classList.remove('hidden');
+91 -33
View File
@@ -56,12 +56,22 @@ body {
} }
/* Fix scrolling bug: Reset html/body styles from host page */ /* Fix scrolling bug: Reset html/body styles from host page */
html, /* IMPORTANT: html must NOT have overflow set, or it creates a scroll container that breaks position: sticky */
html {
height: auto !important;
min-height: 100% !important;
overflow: visible !important;
position: static !important;
margin: 0 !important;
padding: 0 !important;
}
body { body {
height: auto !important; height: auto !important;
min-height: 100% !important; min-height: 100% !important;
overflow-y: auto !important; overflow-x: clip !important;
overflow-x: hidden !important; /* clip prevents horizontal overflow without breaking sticky */
overflow-y: visible !important;
position: static !important; position: static !important;
margin: 0 !important; margin: 0 !important;
padding: 0 !important; padding: 0 !important;
@@ -69,8 +79,7 @@ body {
/* Header */ /* Header */
.app-header { .app-header {
position: sticky; flex-shrink: 0;
top: 0;
z-index: 100; z-index: 100;
backdrop-filter: blur(12px); backdrop-filter: blur(12px);
background-color: var(--header-bg); background-color: var(--header-bg);
@@ -412,13 +421,21 @@ body {
font-size: 18px; font-size: 18px;
} }
/* Container */ /* Container - flex column, full width so child scrollbar is at edge */
.container { .container {
flex: 1;
width: 100%; width: 100%;
/* Full width */ overflow: hidden;
margin: 2rem auto; padding: 2rem 0 0 0;
padding: 0 2rem; /* Only top padding, no horizontal so child fills width */
min-height: 80vh; display: flex;
flex-direction: column;
}
/* Add horizontal padding to direct children of container to maintain layout */
.container>*:not(.menu-grid) {
padding-left: 2rem;
padding-right: 2rem;
} }
/* Banner */ /* Banner */
@@ -767,14 +784,17 @@ body {
display: none !important; display: none !important;
} }
/* Menu Grid */ /* Menu Grid Container */
.menu-grid { .menu-grid {
display: grid; display: flex;
gap: 2rem; flex-direction: column;
flex: 1;
overflow: hidden;
gap: 1rem;
} }
.week-section { .week-section {
margin-bottom: 3rem; margin-bottom: 2rem;
} }
.week-header { .week-header {
@@ -796,10 +816,25 @@ body {
margin-top: 0.25rem; margin-top: 0.25rem;
} }
/* Full-viewport layout: header + scrollable content + footer */
#kantine-wrapper {
display: flex;
flex-direction: column;
height: 100vh;
height: 100dvh;
/* Dynamic viewport height for mobile browsers */
overflow: hidden;
}
.days-grid { .days-grid {
display: grid; display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 0.75rem; gap: 0.75rem;
flex: 1;
overflow-y: auto;
/* This is the scroll container at the window edge */
align-content: start;
padding: 0 2rem 2rem 2rem;
} }
/* Card */ /* Card */
@@ -808,21 +843,33 @@ body {
border-radius: 12px; border-radius: 12px;
border: 1px solid var(--border-color); border: 1px solid var(--border-color);
box-shadow: var(--card-shadow); box-shadow: var(--card-shadow);
overflow: hidden; overflow: clip;
transition: transform 0.2s ease, box-shadow 0.2s ease; /* Clips scrolling content behind sticky header */
transition: box-shadow 0.2s ease;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
} }
/* Past Day Styling - Target specific elements so ordered items can remain visible */ /* Past Day Styling - Target specific elements so ordered items can remain visible AND preserve sticky context */
.menu-card.past-day .card-header, /* We MUST apply filter/opacity to children, not the parent .menu-card, or else position: sticky breaks */
/* Header keeps fully opaque background to hide scrolling items, only grayscales */
.menu-card.past-day .card-header {
filter: grayscale(0.8);
transition: filter 0.3s;
}
/* Items become semi-transparent */
.menu-card.past-day .menu-item:not(.ordered) { .menu-card.past-day .menu-item:not(.ordered) {
opacity: 0.6; opacity: 0.6;
filter: grayscale(0.8); filter: grayscale(0.8);
transition: opacity 0.3s, filter 0.3s; transition: opacity 0.3s, filter 0.3s;
} }
.menu-card.past-day:hover .card-header, .menu-card.past-day:hover .card-header {
filter: grayscale(0.4);
}
.menu-card.past-day:hover .menu-item:not(.ordered) { .menu-card.past-day:hover .menu-item:not(.ordered) {
opacity: 0.8; opacity: 0.8;
filter: grayscale(0.4); filter: grayscale(0.4);
@@ -869,7 +916,6 @@ body {
.menu-card:hover { .menu-card:hover {
transform: translateY(-2px);
box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
} }
@@ -879,7 +925,23 @@ body {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
align-items: baseline; align-items: baseline;
background-color: rgba(100, 116, 139, 0.05); background-color: var(--bg-card);
/* Removed border-radius: 12px 12px 0 0;
.menu-card's overflow: clip will round the corners initially.
When sticky at the top, it will be square and perfectly hide scrolling content! */
/* Sticky within .container scroll area */
position: sticky;
top: 0;
z-index: 90;
}
.card-body {
padding: 1.25rem;
display: grid;
grid-template-rows: auto;
align-content: start;
} }
.day-name { .day-name {
@@ -892,13 +954,6 @@ body {
color: var(--text-secondary); color: var(--text-secondary);
} }
.card-body {
padding: 1.25rem;
display: grid;
grid-template-rows: auto;
/* Each menu item gets its own row */
align-content: start;
}
.empty-state { .empty-state {
color: var(--text-secondary); color: var(--text-secondary);
@@ -1027,12 +1082,12 @@ body {
/* Footer */ /* Footer */
.app-footer { .app-footer {
flex-shrink: 0;
text-align: center; text-align: center;
padding: 2rem; padding: 1rem 2rem;
color: var(--text-secondary); color: var(--text-secondary);
font-size: 0.875rem; font-size: 0.875rem;
border-top: 1px solid var(--border-color); border-top: 1px solid var(--border-color);
margin-top: auto;
} }
/* === Order / Cancel Buttons (inline in status row) === */ /* === Order / Cancel Buttons (inline in status row) === */
@@ -1363,17 +1418,20 @@ body {
/* Day Header Status Colors (User Request) */ /* Day Header Status Colors (User Request) */
.card-header.header-violet { .card-header.header-violet {
background-color: rgba(139, 92, 246, 0.15); background-color: var(--bg-card);
background-image: linear-gradient(rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.15));
border-bottom: 2px solid #8b5cf6; border-bottom: 2px solid #8b5cf6;
} }
.card-header.header-green { .card-header.header-green {
background-color: rgba(16, 185, 129, 0.15); background-color: var(--bg-card);
background-image: linear-gradient(rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.15));
border-bottom: 2px solid var(--success-color); border-bottom: 2px solid var(--success-color);
} }
.card-header.header-red { .card-header.header-red {
background-color: rgba(239, 68, 68, 0.15); background-color: var(--bg-card);
background-image: linear-gradient(rgba(239, 68, 68, 0.15), rgba(239, 68, 68, 0.15));
border-bottom: 2px solid var(--error-color); border-bottom: 2px solid var(--error-color);
} }
+1 -1
View File
@@ -1 +1 @@
v1.6.1 v1.6.2