From eac063e86dc2ace9c575f627e73950579b14fe2c Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Thu, 9 Feb 2023 14:00:16 +0000 Subject: [PATCH] Style of scope icon --- epicyon-profile.css | 9 +++++++++ webapp_post.py | 6 +++--- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/epicyon-profile.css b/epicyon-profile.css index c77389a20..32908b13d 100644 --- a/epicyon-profile.css +++ b/epicyon-profile.css @@ -758,6 +758,15 @@ a:focus { vertical-align: middle; } +.container img.postScopeIcon { + float: none; + width: 30px; + margin: 0 0; + padding: 0 0; + border-radius: 0; + vertical-align: middle; +} + .container.darker { background-color: var(--main-bg-color-reply); } diff --git a/webapp_post.py b/webapp_post.py index 09368de6f..f16d78cbf 100644 --- a/webapp_post.py +++ b/webapp_post.py @@ -2188,17 +2188,17 @@ def individual_post_as_html(signing_priv_key_pem: str, if is_followers_post(post_json_object): title_str += \ ' \n' elif is_unlisted_post(post_json_object): title_str += \ ' \n' elif is_reminder(post_json_object): title_str += \ ' \n' display_name = get_display_name(base_dir, post_actor, person_cache)