# TASK — v0.11.9 UI Polish Fixes ## Context These are UI-only fixes for the deploy/settings page backup section introduced in v0.11.8. No backend changes needed. All changes are in `deploy.html` and `style.css`. **Important design principle:** Use minimal emojis in the UI. The project prefers a clean, professional look. Replace emoji indicators with text or CSS-styled elements instead. ## Files to modify - `internal/web/templates/deploy.html` - `internal/web/templates/style.css` - `internal/web/templates/backups.html` (emoji cleanup in cross-drive summary section) --- ## Fix 1: Spacing between cards and "Automatikusan generált értékek" **Problem:** No clear visual separation between the last card above the deploy form (`deploy-cross-drive` or `deploy-stale-data`) and the "Automatikusan generált értékek" section inside `.deploy-form`. **Root cause:** `.deploy-cross-drive` has `margin-bottom: 1rem` which doesn't provide enough separation before the next card. When stale data card exists without cross-drive, it's also tight. **Fix in `style.css`:** ```css /* Change margin-bottom from 1rem to 1.5rem */ .deploy-cross-drive { /* ... existing ... */ margin-bottom: 1.5rem; /* was 1rem */ } ``` No change needed for `.deploy-stale-data` — it already has `margin-bottom: 1.5rem`. But verify the margin is actually applied (check if another element is overriding it or if the stale data card is inside a container that collapses margins). --- ## Fix 2: Rename restic method + add info tooltip on "Módszer" **Problem:** "Verziózott mentés (restic)" doesn't highlight the most important differentiator (encryption). Users should also understand the tradeoffs before picking. **Fix in `deploy.html` — method dropdown (around line 16934-16942):** Replace: ```html