Cursor: the default state is now just the green dot - the orbital ring and satellite only appear over interactive elements, where the core switches to white with a dark rim so it contrasts with the brand-green buttons instead of vanishing green-on-green. The click pulse is white for the same reason. Packages: new optional price_text field (schema column, migration, controllers, export/import columns, admin form). While set, it replaces the "ab ca." label and computed price on the tile - e.g. "Coming soon". Layouts: third package_card_layout option "coverflow" - a scroll-snap row with CSS 3D perspective where the centered card faces front and its neighbors rotate away, transforms driven per scroll frame (rAF-throttled, ResizeObserver covers card expansion). Selectable in the admin website settings next to grid and strip. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
7 lines
354 B
SQL
7 lines
354 B
SQL
-- Optionaler Freitext, der auf der Paket-Kachel den Preis ersetzt (z. B. "Coming soon").
|
|
-- Additiv, nichts wird geloescht.
|
|
-- Hinweis: Auf der Live-Seite reicht stattdessen ein Klick auf "Datenbankstruktur aktualisieren"
|
|
-- unter Admin-Panel -> Einstellungen -> Datenbank.
|
|
|
|
ALTER TABLE packages
|
|
ADD COLUMN IF NOT EXISTS price_text VARCHAR(100) NULL;
|