From 4b2a50d902a3eac22f452a98c7c18cd88af992f4 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Mon, 20 Jan 2025 18:35:55 +0000 Subject: [PATCH] Instance software display --- epicyon-profile.css | 6 ++++++ webapp_post.py | 10 ++++++---- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/epicyon-profile.css b/epicyon-profile.css index b384cb514..a55afb4e1 100644 --- a/epicyon-profile.css +++ b/epicyon-profile.css @@ -353,6 +353,12 @@ details { color: var(--cw-color); } +.instanceSoftware { + background-color: var(--main-bg-color); + color: var(--main-fg-color); + font-size: 50%; +} + .leftColIcons { width: 100%; background-color: var(--column-left-color); diff --git a/webapp_post.py b/webapp_post.py index e301453f8..513aae293 100644 --- a/webapp_post.py +++ b/webapp_post.py @@ -1553,8 +1553,9 @@ def _get_post_title_announce_html(base_dir: str, if software_name: title_str += \ - '
[' + \ - software_name.title() + ']' + '
' # show avatar of person replied to announce_actor = attributed_to @@ -1836,8 +1837,9 @@ def _get_post_title_reply_html(base_dir: str, if software_name: title_str += \ - '
[' + \ - software_name.title() + ']' + '
' _log_post_timing(enable_timing_log, post_start_time, '13.7')