From 6a4b3ba461e2a6112d9c5ca526031a90d05cc085 Mon Sep 17 00:00:00 2001 From: Vojtech <119944107+cvrysanek@users.noreply.github.com> Date: Thu, 14 May 2026 23:49:13 +0400 Subject: [PATCH] fix(store-upload): Next/Back/Finish buttons missing .btn base class (#310) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The wizard nav buttons used class="btn-primary" / "btn-secondary" without the .btn base class, so the padding (10px 20px), border-radius (8px), font-size, and inline-flex centering rules from .btn never applied. Buttons rendered as ~18px-tall colored boxes with no padding (visible mismatch against the sibling Cancel which correctly used class="btn btn-secondary"). Added .btn to all three buttons (#next-btn, #back-btn, #finish-btn). No CSS change — purely a markup fix. Playwright before: next.padding="0px" borderRadius="0px" height=18 Playwright after: next.padding="10px 20px" borderRadius="8px" height=38 --- CHANGELOG.md | 10 ++++++++++ app/web/templates/store_edit.html | 2 +- app/web/templates/store_upload.html | 6 +++--- pyproject.toml | 2 +- 4 files changed, 15 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a538f4..750baf7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,16 @@ CalVer image tags (`stable-YYYY.MM.N`, `dev-YYYY.MM.N`) are produced for every C ## [Unreleased] +## [0.54.16] — 2026-05-14 + +### Fixed +- Store submit-flow wizard buttons were missing the `.btn` base class — + Next / Back / Finish on `/store/new` and Save on `/store/edit/` + carried only the `.btn-primary` / `.btn-secondary` color modifier, so + they rendered with no padding, border-radius, or proper sizing + (~18px-tall color boxes) instead of matching their sibling Cancel + links. Added the `.btn` base class on all four. + ## [0.54.15] — 2026-05-14 ### Added diff --git a/app/web/templates/store_edit.html b/app/web/templates/store_edit.html index a6fe706..16e3848 100644 --- a/app/web/templates/store_edit.html +++ b/app/web/templates/store_edit.html @@ -163,7 +163,7 @@
- Cancel
diff --git a/app/web/templates/store_upload.html b/app/web/templates/store_upload.html index b131032..0a343e0 100644 --- a/app/web/templates/store_upload.html +++ b/app/web/templates/store_upload.html @@ -418,7 +418,7 @@
- + Cancel
@@ -533,8 +533,8 @@
- - + +
diff --git a/pyproject.toml b/pyproject.toml index f658e08..a7eafa5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "agnes-the-ai-analyst" -version = "0.54.15" +version = "0.54.16" description = "Agnes — AI Data Analyst platform for AI analytical systems" requires-python = ">=3.11,<3.14" license = "MIT"