diff --git a/app/scss/custom.scss b/app/scss/custom.scss index 860497bd..81ee30ff 100644 --- a/app/scss/custom.scss +++ b/app/scss/custom.scss @@ -64,6 +64,10 @@ p, .content li { line-height: 1.6em; } +.markdown { + word-break: break-word; +} + pre code { display: block; border: 1px solid rgba(255, 255, 255, 0.1); diff --git a/app/templates/base.html b/app/templates/base.html index 1d09b91d..a488b36f 100644 --- a/app/templates/base.html +++ b/app/templates/base.html @@ -6,7 +6,7 @@ {% block title %}title{% endblock %} - {{ config.USER_APP_NAME }} - + diff --git a/app/templates/macros/reviews.html b/app/templates/macros/reviews.html index ea3ce1d9..0389c222 100644 --- a/app/templates/macros/reviews.html +++ b/app/templates/macros/reviews.html @@ -30,7 +30,7 @@ -
+
{% if current_user == review.author %} diff --git a/app/templates/macros/threads.html b/app/templates/macros/threads.html index 08e09712..e9009482 100644 --- a/app/templates/macros/threads.html +++ b/app/templates/macros/threads.html @@ -16,6 +16,12 @@ {{ r.author.display_name }} + {% if r.author.username != r.author.display_name %} + + ({{ r.author.username }}) + + {% endif %} + {% if r.author in thread.package.maintainers %} {{ _("Maintainer") }} @@ -33,7 +39,7 @@
-
+