From 0267233f8795d92e745e95bae7b6467a585d6dd1 Mon Sep 17 00:00:00 2001 From: Laan Tungir Date: Thu, 25 Jun 2026 20:29:51 -0400 Subject: [PATCH] =?UTF-8?q?Fix=20post-feed.html=20reply=20composer=20forma?= =?UTF-8?q?tting=20=E2=80=94=20add=20missing=20.topPostComposerInput=20CSS?= =?UTF-8?q?=20rule?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The reply composer was missing the CSS rule that gives it visible formatting (border, padding, min-height, border-radius). Copied the rule from post.html. --- www/js/version.json | 6 +++--- www/post-feed.html | 8 ++++++++ 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/www/js/version.json b/www/js/version.json index f8f6f90..2aa9fce 100644 --- a/www/js/version.json +++ b/www/js/version.json @@ -1,5 +1,5 @@ { - "VERSION": "v0.7.28", - "VERSION_NUMBER": "0.7.28", - "BUILD_DATE": "2026-06-26T00:20:10.087Z" + "VERSION": "v0.7.29", + "VERSION_NUMBER": "0.7.29", + "BUILD_DATE": "2026-06-26T00:29:51.222Z" } diff --git a/www/post-feed.html b/www/post-feed.html index 2e5f2f2..651774f 100644 --- a/www/post-feed.html +++ b/www/post-feed.html @@ -109,6 +109,14 @@ width: 100%; } + .topPostComposerInput { + min-height: 6em; + padding: 8px; + line-height: 1.4; + border: 2px solid var(--primary-color); + border-radius: 10px; + } + .divPostItem .post-composer-wrapper { width: 100%; }