From 76bc1d3eda8404eb4848ceac7a370b6efad31270 Mon Sep 17 00:00:00 2001 From: Jason Zimdars Date: Thu, 6 Nov 2025 15:22:57 -0600 Subject: [PATCH 1/4] Need a place to display board title --- app/views/layouts/public.html.erb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/views/layouts/public.html.erb b/app/views/layouts/public.html.erb index 98c42de94..1373a87d5 100644 --- a/app/views/layouts/public.html.erb +++ b/app/views/layouts/public.html.erb @@ -11,6 +11,8 @@ Fizzy <% end %> + + <%= yield :header %>
From f8421eca89bd31691bf916c40a3f36a41a37bd9d Mon Sep 17 00:00:00 2001 From: Jason Zimdars Date: Thu, 6 Nov 2025 15:23:17 -0600 Subject: [PATCH 2/4] Match style of back-to-board buttons inside the app --- app/views/public/cards/show.html.erb | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/app/views/public/cards/show.html.erb b/app/views/public/cards/show.html.erb index b1201b1f3..2d12431a0 100644 --- a/app/views/public/cards/show.html.erb +++ b/app/views/public/cards/show.html.erb @@ -13,12 +13,14 @@ <% end %> <% content_for :header do %> - <%= link_to published_board_url(@card.board), class: "header__title btn borderless txt-large", style: "--btn-padding: 0.25ch 1ch 0.25ch 0.75ch; view-transistion-name: card-board-title;", data: { controller: "hotkey", action: "keydown.esc@document->hotkey#click" } do %> - - ← - <%= @card.board.name %> - - <% end %> +
+ <%= link_to published_board_url(@card.board), class: "btn borderless txt-medium", style: "view-transistion-name: card-board-title;", data: { controller: "hotkey", action: "keydown.esc@document->hotkey#click" } do %> + + ← + <%= @card.board.name %> + + <% end %> +
<% end %>
Date: Thu, 6 Nov 2025 15:36:00 -0600 Subject: [PATCH 3/4] Fix the column mark-up had drifted This ensure the transitions work properly and that the columns all align nicely at the top of the board --- app/views/public/boards/show/_closed.html.erb | 8 ++++++-- app/views/public/boards/show/_column.html.erb | 8 ++++++-- app/views/public/boards/show/_not_now.html.erb | 8 ++++++-- 3 files changed, 18 insertions(+), 6 deletions(-) diff --git a/app/views/public/boards/show/_closed.html.erb b/app/views/public/boards/show/_closed.html.erb index 717f81324..e83f2eae0 100644 --- a/app/views/public/boards/show/_closed.html.erb +++ b/app/views/public/boards/show/_closed.html.erb @@ -3,7 +3,11 @@ data-action="turbo:before-morph-attribute->collapsible-columns#preventToggle" > - <%= render "boards/show/expander", title: "Done", count: board.cards.closed.count, column_id: "closed-cards" %> +
+
+ <%= render "boards/show/expander", title: "Done", count: board.cards.closed.count, column_id: "closed-cards" %> +
- <%= column_frame_tag :closed_column, src: public_board_columns_closed_path(board.publication.key) %> + <%= column_frame_tag :closed_column, src: public_board_columns_closed_path(board.publication.key) %> +
diff --git a/app/views/public/boards/show/_column.html.erb b/app/views/public/boards/show/_column.html.erb index 99e59de0d..ae6b515fd 100644 --- a/app/views/public/boards/show/_column.html.erb +++ b/app/views/public/boards/show/_column.html.erb @@ -4,7 +4,11 @@ data-controller="clicker" data-action="turbo:before-morph-attribute->collapsible-columns#preventToggle" > - <%= render "boards/show/expander", title: column.name, count: column.cards.active.count, column_id: dom_id(column) %> +
+
+ <%= render "boards/show/expander", title: column.name, count: column.cards.active.count, column_id: dom_id(column) %> +
- <%= column_frame_tag dom_id(column, :cards), src: public_board_column_path(column.board.publication.key, column) %> + <%= column_frame_tag dom_id(column, :cards), src: public_board_column_path(column.board.publication.key, column) %> +
diff --git a/app/views/public/boards/show/_not_now.html.erb b/app/views/public/boards/show/_not_now.html.erb index dad3ca0e4..f108596b2 100644 --- a/app/views/public/boards/show/_not_now.html.erb +++ b/app/views/public/boards/show/_not_now.html.erb @@ -3,7 +3,11 @@ data-action="turbo:before-morph-attribute->collapsible-columns#preventToggle" > - <%= render "boards/show/expander", title: "Not Now", count: board.cards.postponed.count, column_id: "not-now" %> +
+
+ <%= render "boards/show/expander", title: "Not Now", count: board.cards.postponed.count, column_id: "not-now" %> +
- <%= column_frame_tag :not_now_column, src: public_board_columns_not_now_path(board.publication.key) %> + <%= column_frame_tag :not_now_column, src: public_board_columns_not_now_path(board.publication.key) %> +
From 7dd56c71c45c26ef035b792a1699ebc78d873277 Mon Sep 17 00:00:00 2001 From: Jason Zimdars Date: Thu, 6 Nov 2025 15:38:28 -0600 Subject: [PATCH 4/4] Match style with private boards --- app/views/public/boards/show.html.erb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/public/boards/show.html.erb b/app/views/public/boards/show.html.erb index ae5b75912..f5585f5e9 100644 --- a/app/views/public/boards/show.html.erb +++ b/app/views/public/boards/show.html.erb @@ -13,8 +13,8 @@ <% end %> <% content_for :header do %> -

- <%= @page_title %> +

+ <%= @page_title %>

<% end %>