diff --git a/core/static/core/style.scss b/core/static/core/style.scss index 183fea3a3cdc77f5036fda6dfa115f5da674b6b9..26a374bf50964e5f291a6cddeb8ae6a4b4b9344f 100644 --- a/core/static/core/style.scss +++ b/core/static/core/style.scss @@ -1137,6 +1137,14 @@ textarea { /*------------------------------FORUM----------------------------------*/ #forum { + .button { + background-color: $primary-neutral-light-color; + border: outset $primary-neutral-dark-color 2px; + padding: 4px; + &:hover { + border: inset $primary-neutral-dark-color 2px; + } + } .topic { border: solid $primary-neutral-color 1px; padding: 1px; diff --git a/forum/templates/forum/forum.jinja b/forum/templates/forum/forum.jinja index 1886838f1950ec7bf83d1ebac810063e2e8d8f88..426160ff190939f94c360bce2915b383e2914c27 100644 --- a/forum/templates/forum/forum.jinja +++ b/forum/templates/forum/forum.jinja @@ -17,10 +17,10 @@
{% if user.is_in_group(settings.SITH_GROUP_FORUM_ADMIN_ID) or user.is_in_group(settings.SITH_GROUP_COM_ADMIN_ID) %}
- {% trans %}New forum{% endtrans %}
+ {% trans %}New forum{% endtrans %}
{% endif %}
{% if not forum.is_category %}
- {% trans %}New topic{% endtrans %}
+ {% trans %}New topic{% endtrans %}
{% endif %}
Forum > + {% trans %}Last unread messages{% endtrans %}
- {% trans %}Mark all as read{% endtrans %} - {% trans %}Refresh{% endtrans %} + {% trans %}Mark all as read{% endtrans %} + {% trans %}Refresh{% endtrans %}
{% for t in page_obj.object_list %} {% if user.can_view(t) %} diff --git a/forum/templates/forum/main.jinja b/forum/templates/forum/main.jinja index ccca49cb7abc88c8bb4acd06c4ac99b12fb7ffc9..ac2ac764844e66480a750a35f098a3e0f211c969 100644 --- a/forum/templates/forum/main.jinja +++ b/forum/templates/forum/main.jinja @@ -13,7 +13,7 @@- {% trans %}View last unread messages{% endtrans %} + {% trans %}View last unread messages{% endtrans %}
{% if user.is_in_group(settings.SITH_GROUP_FORUM_ADMIN_ID) or user.is_in_group(settings.SITH_GROUP_COM_ADMIN_ID) %}