From 1fb1735faf15e4b24c541f1c12f1a9d525a89efc Mon Sep 17 00:00:00 2001 From: rimu <3310831+rimu@users.noreply.github.com> Date: Thu, 9 Nov 2023 21:32:29 +1300 Subject: [PATCH] design improvements --- app/static/scss/_typography.scss | 4 ++-- app/static/structure.css | 4 ++-- app/static/styles.css | 12 ++++++++++-- app/static/styles.scss | 8 ++++++++ app/templates/base.html | 2 +- app/templates/community/_post_teaser.html | 3 ++- app/templates/community/add_post.html | 2 +- app/templates/community/add_reply.html | 2 +- app/templates/community/community.html | 2 +- app/templates/community/continue_discussion.html | 2 +- app/templates/community/post.html | 7 ++++++- app/templates/user/edit_profile.html | 2 +- app/templates/user/edit_settings.html | 2 +- app/templates/user/show_profile.html | 2 +- 14 files changed, 38 insertions(+), 16 deletions(-) diff --git a/app/static/scss/_typography.scss b/app/static/scss/_typography.scss index c8324d72..70321ebc 100644 --- a/app/static/scss/_typography.scss +++ b/app/static/scss/_typography.scss @@ -147,11 +147,11 @@ .fe-reply { position: relative; - top: 2px; + top: 1px; } .fe-reply::before { - content: "\e991"; + content: "\e990"; } .fe-report::before { diff --git a/app/static/structure.css b/app/static/structure.css index 265d3233..be979896 100644 --- a/app/static/structure.css +++ b/app/static/structure.css @@ -150,11 +150,11 @@ nav, etc which are used site-wide */ .fe-reply { position: relative; - top: 2px; + top: 1px; } .fe-reply::before { - content: "\e991"; + content: "\e990"; } .fe-report::before { diff --git a/app/static/styles.css b/app/static/styles.css index 8ace3140..b328b581 100644 --- a/app/static/styles.css +++ b/app/static/styles.css @@ -149,11 +149,11 @@ .fe-reply { position: relative; - top: 2px; + top: 1px; } .fe-reply::before { - content: "\e991"; + content: "\e990"; } .fe-report::before { @@ -309,6 +309,14 @@ nav.navbar { background-color: #f8d7da; } +.main_pane { + border: solid 1px #ddd; + border-radius: 5px; + background-color: white; + padding-top: 8px; + padding-bottom: 12px; +} + .community_icon { width: 30px; height: auto; diff --git a/app/static/styles.scss b/app/static/styles.scss index e15ff953..0518382b 100644 --- a/app/static/styles.scss +++ b/app/static/styles.scss @@ -73,6 +73,14 @@ nav.navbar { background-color: #f8d7da; } +.main_pane { + border: solid 1px $light-grey; + border-radius: 5px; + background-color: white; + padding-top: 8px; + padding-bottom: 12px; +} + .community_icon { width: 30px; height: auto; diff --git a/app/templates/base.html b/app/templates/base.html index 2a74c1b8..246d090a 100644 --- a/app/templates/base.html +++ b/app/templates/base.html @@ -80,7 +80,7 @@ {% endblock %} {% block content %} -